Skip to content

Instantly share code, notes, and snippets.

@rbrick
Last active November 23, 2022 18:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rbrick/5f5dc64b2640e6246440b8abcea837b5 to your computer and use it in GitHub Desktop.
Save rbrick/5f5dc64b2640e6246440b8abcea837b5 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.13+commit.abaa5c0e.js&optimize=false&runs=200&gist=
This file has been truncated, but you can view the full file.
{
"id": "fabf6ed337c6b03a3609297074230883",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.13",
"solcLongVersion": "0.8.13+commit.abaa5c0e",
"input": {
"language": "Solidity",
"sources": {
"contracts/TelosNFT.sol": {
"content": "pragma solidity ^0.8.13;\n\nimport \"@openzeppelin/contracts/access/Ownable.sol\";\nimport \"@openzeppelin/contracts/security/ReentrancyGuard.sol\";\nimport \"@openzeppelin/contracts/utils/Strings.sol\";\nimport \"./ERC721A.sol\";\n\n\ncontract TelosNFT is ERC721A, Ownable, ReentrancyGuard {\n using Strings for uint256;\n\n enum MintState {\n\n // PUBLIC: open for all, integer id: 0\n PUBLIC,\n // WHITELIST: only used for\n WHITELIST,\n // mint is closed, only admin/owner may mint\n CLOSED\n }\n\n uint256 public immutable MAX_SUPPLY;\n uint256 public immutable MINT_PRICE;\n\n\n uint256 public immutable MAX_MINT_PER_CALL;\n\n\n // the state of whether minting is allowed.\n MintState private mintingState = MintState.CLOSED;\n\n // the base uri for the token\n string public baseURI;\n\n string public unrevealedURI;\n\n constructor(\n uint256 maxSupply,\n uint256 mintPrice,\n uint256 maxMintPerCall,\n string memory name, string memory symbol\n ) ERC721A(name, symbol) {\n MAX_SUPPLY = maxSupply;\n MINT_PRICE = mintPrice;\n MAX_MINT_PER_CALL = maxMintPerCall;\n }\n\n /**\n * To change the starting tokenId, please override this function.\n */\n function _startTokenId() internal override view virtual returns (uint256) {\n return 1;\n }\n\n function setBaseURI(string calldata _uri) external onlyOwner {\n baseURI = _uri;\n }\n\n function setUnrevealedURI(string calldata _uri) external onlyOwner {\n unrevealedURI = _uri;\n }\n\n function tokenURI(uint256 tokenId)\n public\n view\n override\n returns (string memory)\n {\n require(\n _exists(tokenId),\n \"ERC721Metadata: URI query for nonexistent token\"\n );\n \n return bytes(baseURI).length > 0\n ? string(\n abi.encodePacked(\n baseURI,\n tokenId.toString(),\n \".json\"))\n : string(abi.encodePacked(unrevealedURI));\n }\n\n modifier mintOpen() {\n require(mintingState != MintState.CLOSED, \"minting not active.\");\n _;\n }\n\n function ownerMint(uint16 amount) external onlyOwner {\n uint256 totalSupply = totalSupply();\n // ensure minting the amount entered would not mint over the max supply\n require(\n totalSupply + amount < MAX_SUPPLY,\n \"mint amount would be out of range.\"\n );\n\n _safeMint(_msgSender(), amount);\n }\n\n // whitelist only mint function\n function mint(uint256 amount) external payable nonReentrant mintOpen {\n // require(amount > 0 && amount <= MAX_MINT_PER_CALL, \"invalid amount.\"); // For ACWulf: remove mint txn limit\n // ensure minting the amount entered would not mint over the max supply\n require(\n totalSupply() + amount < MAX_SUPPLY,\n \"mint amount would be out of range.\"\n );\n // ensure enough ether was sent - don't allow for overpayment\n require(msg.value == (MINT_PRICE * amount), \"not enough ether sent\");\n _safeMint(msg.sender, amount);\n }\n\n // toggles the state of mint\n function setMintingState(MintState state) external onlyOwner {\n mintingState = state;\n }\n\n\n\n // Issue a withdrawal to a specific address\n function withdraw(address sendTo) external onlyOwner {\n (bool ok, ) = payable(sendTo).call{value: address(this).balance}(\"\");\n require(ok);\n }\n}\n"
},
"contracts/ERC721A.sol": {
"content": "// SPDX-License-Identifier: MIT\n// Creator: Chiru Labs\n\npragma solidity ^0.8.4;\n\nimport '@openzeppelin/contracts/token/ERC721/IERC721.sol';\nimport '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';\nimport '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';\nimport '@openzeppelin/contracts/utils/Address.sol';\nimport '@openzeppelin/contracts/utils/Context.sol';\nimport '@openzeppelin/contracts/utils/Strings.sol';\nimport '@openzeppelin/contracts/utils/introspection/ERC165.sol';\n\nerror ApprovalCallerNotOwnerNorApproved();\nerror ApprovalQueryForNonexistentToken();\nerror ApproveToCaller();\nerror ApprovalToCurrentOwner();\nerror BalanceQueryForZeroAddress();\nerror MintToZeroAddress();\nerror MintZeroQuantity();\nerror OwnerQueryForNonexistentToken();\nerror TransferCallerNotOwnerNorApproved();\nerror TransferFromIncorrectOwner();\nerror TransferToNonERC721ReceiverImplementer();\nerror TransferToZeroAddress();\nerror URIQueryForNonexistentToken();\n\n/**\n * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including\n * the Metadata extension. Built to optimize for lower gas during batch mints.\n *\n * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).\n *\n * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.\n *\n * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).\n */\ncontract ERC721A is Context, ERC165, IERC721, IERC721Metadata {\n using Address for address;\n using Strings for uint256;\n\n // Compiler will pack this into a single 256bit word.\n struct TokenOwnership {\n // The address of the owner.\n address addr;\n // Keeps track of the start time of ownership with minimal overhead for tokenomics.\n uint64 startTimestamp;\n // Whether the token has been burned.\n bool burned;\n }\n\n // Compiler will pack this into a single 256bit word.\n struct AddressData {\n // Realistically, 2**64-1 is more than enough.\n uint64 balance;\n // Keeps track of mint count with minimal overhead for tokenomics.\n uint64 numberMinted;\n // Keeps track of burn count with minimal overhead for tokenomics.\n uint64 numberBurned;\n // For miscellaneous variable(s) pertaining to the address\n // (e.g. number of whitelist mint slots used).\n // If there are multiple variables, please pack them into a uint64.\n uint64 aux;\n }\n\n // The tokenId of the next token to be minted.\n uint256 internal _currentIndex;\n\n // The number of tokens burned.\n uint256 internal _burnCounter;\n\n // Token name\n string private _name;\n\n // Token symbol\n string private _symbol;\n\n // Mapping from token ID to ownership details\n // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.\n mapping(uint256 => TokenOwnership) internal _ownerships;\n\n // Mapping owner address to address data\n mapping(address => AddressData) private _addressData;\n\n // Mapping from token ID to approved address\n mapping(uint256 => address) private _tokenApprovals;\n\n // Mapping from owner to operator approvals\n mapping(address => mapping(address => bool)) private _operatorApprovals;\n\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n _currentIndex = _startTokenId();\n }\n\n /**\n * To change the starting tokenId, please override this function.\n */\n function _startTokenId() internal view virtual returns (uint256) {\n return 0;\n }\n\n /**\n * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.\n */\n function totalSupply() public view returns (uint256) {\n // Counter underflow is impossible as _burnCounter cannot be incremented\n // more than _currentIndex - _startTokenId() times\n unchecked {\n return _currentIndex - _burnCounter - _startTokenId();\n }\n }\n\n /**\n * Returns the total amount of tokens minted in the contract.\n */\n function _totalMinted() internal view returns (uint256) {\n // Counter underflow is impossible as _currentIndex does not decrement,\n // and it is initialized to _startTokenId()\n unchecked {\n return _currentIndex - _startTokenId();\n }\n }\n\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {\n return\n interfaceId == type(IERC721).interfaceId ||\n interfaceId == type(IERC721Metadata).interfaceId ||\n super.supportsInterface(interfaceId);\n }\n\n /**\n * @dev See {IERC721-balanceOf}.\n */\n function balanceOf(address owner) public view override returns (uint256) {\n if (owner == address(0)) revert BalanceQueryForZeroAddress();\n return uint256(_addressData[owner].balance);\n }\n\n /**\n * Returns the number of tokens minted by `owner`.\n */\n function _numberMinted(address owner) internal view returns (uint256) {\n return uint256(_addressData[owner].numberMinted);\n }\n\n /**\n * Returns the number of tokens burned by or on behalf of `owner`.\n */\n function _numberBurned(address owner) internal view returns (uint256) {\n return uint256(_addressData[owner].numberBurned);\n }\n\n /**\n * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).\n */\n function _getAux(address owner) internal view returns (uint64) {\n return _addressData[owner].aux;\n }\n\n /**\n * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).\n * If there are multiple variables, please pack them into a uint64.\n */\n function _setAux(address owner, uint64 aux) internal {\n _addressData[owner].aux = aux;\n }\n\n /**\n * Gas spent here starts off proportional to the maximum mint batch size.\n * It gradually moves to O(1) as tokens get transferred around in the collection over time.\n */\n function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {\n uint256 curr = tokenId;\n\n unchecked {\n if (_startTokenId() <= curr && curr < _currentIndex) {\n TokenOwnership memory ownership = _ownerships[curr];\n if (!ownership.burned) {\n if (ownership.addr != address(0)) {\n return ownership;\n }\n // Invariant:\n // There will always be an ownership that has an address and is not burned\n // before an ownership that does not have an address and is not burned.\n // Hence, curr will not underflow.\n while (true) {\n curr--;\n ownership = _ownerships[curr];\n if (ownership.addr != address(0)) {\n return ownership;\n }\n }\n }\n }\n }\n revert OwnerQueryForNonexistentToken();\n }\n\n /**\n * @dev See {IERC721-ownerOf}.\n */\n function ownerOf(uint256 tokenId) public view override returns (address) {\n return _ownershipOf(tokenId).addr;\n }\n\n /**\n * @dev See {IERC721Metadata-name}.\n */\n function name() public view virtual override returns (string memory) {\n return _name;\n }\n\n /**\n * @dev See {IERC721Metadata-symbol}.\n */\n function symbol() public view virtual override returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev See {IERC721Metadata-tokenURI}.\n */\n function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {\n if (!_exists(tokenId)) revert URIQueryForNonexistentToken();\n\n string memory baseURI = _baseURI();\n return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';\n }\n\n /**\n * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each\n * token will be the concatenation of the `baseURI` and the `tokenId`. Empty\n * by default, can be overriden in child contracts.\n */\n function _baseURI() internal view virtual returns (string memory) {\n return '';\n }\n\n /**\n * @dev See {IERC721-approve}.\n */\n function approve(address to, uint256 tokenId) public override {\n address owner = ERC721A.ownerOf(tokenId);\n if (to == owner) revert ApprovalToCurrentOwner();\n\n if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {\n revert ApprovalCallerNotOwnerNorApproved();\n }\n\n _approve(to, tokenId, owner);\n }\n\n /**\n * @dev See {IERC721-getApproved}.\n */\n function getApproved(uint256 tokenId) public view override returns (address) {\n if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();\n\n return _tokenApprovals[tokenId];\n }\n\n /**\n * @dev See {IERC721-setApprovalForAll}.\n */\n function setApprovalForAll(address operator, bool approved) public virtual override {\n if (operator == _msgSender()) revert ApproveToCaller();\n\n _operatorApprovals[_msgSender()][operator] = approved;\n emit ApprovalForAll(_msgSender(), operator, approved);\n }\n\n /**\n * @dev See {IERC721-isApprovedForAll}.\n */\n function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {\n return _operatorApprovals[owner][operator];\n }\n\n /**\n * @dev See {IERC721-transferFrom}.\n */\n function transferFrom(\n address from,\n address to,\n uint256 tokenId\n ) public virtual override {\n _transfer(from, to, tokenId);\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId\n ) public virtual override {\n safeTransferFrom(from, to, tokenId, '');\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId,\n bytes memory _data\n ) public virtual override {\n _transfer(from, to, tokenId);\n if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {\n revert TransferToNonERC721ReceiverImplementer();\n }\n }\n\n /**\n * @dev Returns whether `tokenId` exists.\n *\n * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.\n *\n * Tokens start existing when they are minted (`_mint`),\n */\n function _exists(uint256 tokenId) internal view returns (bool) {\n return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;\n }\n\n function _safeMint(address to, uint256 quantity) internal {\n _safeMint(to, quantity, '');\n }\n\n /**\n * @dev Safely mints `quantity` tokens and transfers them to `to`.\n *\n * Requirements:\n *\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.\n * - `quantity` must be greater than 0.\n *\n * Emits a {Transfer} event.\n */\n function _safeMint(\n address to,\n uint256 quantity,\n bytes memory _data\n ) internal {\n _mint(to, quantity, _data, true);\n }\n\n /**\n * @dev Mints `quantity` tokens and transfers them to `to`.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - `quantity` must be greater than 0.\n *\n * Emits a {Transfer} event.\n */\n function _mint(\n address to,\n uint256 quantity,\n bytes memory _data,\n bool safe\n ) internal {\n uint256 startTokenId = _currentIndex;\n if (to == address(0)) revert MintToZeroAddress();\n if (quantity == 0) revert MintZeroQuantity();\n\n _beforeTokenTransfers(address(0), to, startTokenId, quantity);\n\n // Overflows are incredibly unrealistic.\n // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1\n // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1\n unchecked {\n _addressData[to].balance += uint64(quantity);\n _addressData[to].numberMinted += uint64(quantity);\n\n _ownerships[startTokenId].addr = to;\n _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);\n\n uint256 updatedIndex = startTokenId;\n uint256 end = updatedIndex + quantity;\n\n if (safe && to.isContract()) {\n do {\n emit Transfer(address(0), to, updatedIndex);\n if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {\n revert TransferToNonERC721ReceiverImplementer();\n }\n } while (updatedIndex != end);\n // Reentrancy protection\n if (_currentIndex != startTokenId) revert();\n } else {\n do {\n emit Transfer(address(0), to, updatedIndex++);\n } while (updatedIndex != end);\n }\n _currentIndex = updatedIndex;\n }\n _afterTokenTransfers(address(0), to, startTokenId, quantity);\n }\n\n /**\n * @dev Transfers `tokenId` from `from` to `to`.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - `tokenId` token must be owned by `from`.\n *\n * Emits a {Transfer} event.\n */\n function _transfer(\n address from,\n address to,\n uint256 tokenId\n ) private {\n TokenOwnership memory prevOwnership = _ownershipOf(tokenId);\n\n if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();\n\n bool isApprovedOrOwner = (_msgSender() == from ||\n isApprovedForAll(from, _msgSender()) ||\n getApproved(tokenId) == _msgSender());\n\n if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();\n if (to == address(0)) revert TransferToZeroAddress();\n\n _beforeTokenTransfers(from, to, tokenId, 1);\n\n // Clear approvals from the previous owner\n _approve(address(0), tokenId, from);\n\n // Underflow of the sender's balance is impossible because we check for\n // ownership above and the recipient's balance can't realistically overflow.\n // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.\n unchecked {\n _addressData[from].balance -= 1;\n _addressData[to].balance += 1;\n\n TokenOwnership storage currSlot = _ownerships[tokenId];\n currSlot.addr = to;\n currSlot.startTimestamp = uint64(block.timestamp);\n\n // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.\n // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.\n uint256 nextTokenId = tokenId + 1;\n TokenOwnership storage nextSlot = _ownerships[nextTokenId];\n if (nextSlot.addr == address(0)) {\n // This will suffice for checking _exists(nextTokenId),\n // as a burned slot cannot contain the zero address.\n if (nextTokenId != _currentIndex) {\n nextSlot.addr = from;\n nextSlot.startTimestamp = prevOwnership.startTimestamp;\n }\n }\n }\n\n emit Transfer(from, to, tokenId);\n _afterTokenTransfers(from, to, tokenId, 1);\n }\n\n /**\n * @dev This is equivalent to _burn(tokenId, false)\n */\n function _burn(uint256 tokenId) internal virtual {\n _burn(tokenId, false);\n }\n\n /**\n * @dev Destroys `tokenId`.\n * The approval is cleared when the token is burned.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n *\n * Emits a {Transfer} event.\n */\n function _burn(uint256 tokenId, bool approvalCheck) internal virtual {\n TokenOwnership memory prevOwnership = _ownershipOf(tokenId);\n\n address from = prevOwnership.addr;\n\n if (approvalCheck) {\n bool isApprovedOrOwner = (_msgSender() == from ||\n isApprovedForAll(from, _msgSender()) ||\n getApproved(tokenId) == _msgSender());\n\n if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();\n }\n\n _beforeTokenTransfers(from, address(0), tokenId, 1);\n\n // Clear approvals from the previous owner\n _approve(address(0), tokenId, from);\n\n // Underflow of the sender's balance is impossible because we check for\n // ownership above and the recipient's balance can't realistically overflow.\n // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.\n unchecked {\n AddressData storage addressData = _addressData[from];\n addressData.balance -= 1;\n addressData.numberBurned += 1;\n\n // Keep track of who burned the token, and the timestamp of burning.\n TokenOwnership storage currSlot = _ownerships[tokenId];\n currSlot.addr = from;\n currSlot.startTimestamp = uint64(block.timestamp);\n currSlot.burned = true;\n\n // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.\n // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.\n uint256 nextTokenId = tokenId + 1;\n TokenOwnership storage nextSlot = _ownerships[nextTokenId];\n if (nextSlot.addr == address(0)) {\n // This will suffice for checking _exists(nextTokenId),\n // as a burned slot cannot contain the zero address.\n if (nextTokenId != _currentIndex) {\n nextSlot.addr = from;\n nextSlot.startTimestamp = prevOwnership.startTimestamp;\n }\n }\n }\n\n emit Transfer(from, address(0), tokenId);\n _afterTokenTransfers(from, address(0), tokenId, 1);\n\n // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.\n unchecked {\n _burnCounter++;\n }\n }\n\n /**\n * @dev Approve `to` to operate on `tokenId`\n *\n * Emits a {Approval} event.\n */\n function _approve(\n address to,\n uint256 tokenId,\n address owner\n ) private {\n _tokenApprovals[tokenId] = to;\n emit Approval(owner, to, tokenId);\n }\n\n /**\n * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.\n *\n * @param from address representing the previous owner of the given token ID\n * @param to target address that will receive the tokens\n * @param tokenId uint256 ID of the token to be transferred\n * @param _data bytes optional data to send along with the call\n * @return bool whether the call correctly returned the expected magic value\n */\n function _checkContractOnERC721Received(\n address from,\n address to,\n uint256 tokenId,\n bytes memory _data\n ) private returns (bool) {\n try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {\n return retval == IERC721Receiver(to).onERC721Received.selector;\n } catch (bytes memory reason) {\n if (reason.length == 0) {\n revert TransferToNonERC721ReceiverImplementer();\n } else {\n assembly {\n revert(add(32, reason), mload(reason))\n }\n }\n }\n }\n\n /**\n * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.\n * And also called before burning one token.\n *\n * startTokenId - the first token id to be transferred\n * quantity - the amount to be transferred\n *\n * Calling conditions:\n *\n * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be\n * transferred to `to`.\n * - When `from` is zero, `tokenId` will be minted for `to`.\n * - When `to` is zero, `tokenId` will be burned by `from`.\n * - `from` and `to` are never both zero.\n */\n function _beforeTokenTransfers(\n address from,\n address to,\n uint256 startTokenId,\n uint256 quantity\n ) internal virtual {}\n\n /**\n * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes\n * minting.\n * And also called after one token has been burned.\n *\n * startTokenId - the first token id to be transferred\n * quantity - the amount to be transferred\n *\n * Calling conditions:\n *\n * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been\n * transferred to `to`.\n * - When `from` is zero, `tokenId` has been minted for `to`.\n * - When `to` is zero, `tokenId` has been burned by `from`.\n * - `from` and `to` are never both zero.\n */\n function _afterTokenTransfers(\n address from,\n address to,\n uint256 startTokenId,\n uint256 quantity\n ) internal virtual {}\n}\n"
},
"@openzeppelin/contracts/utils/Strings.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n bytes16 private constant _HEX_SYMBOLS = \"0123456789abcdef\";\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n */\n function toString(uint256 value) internal pure returns (string memory) {\n // Inspired by OraclizeAPI's implementation - MIT licence\n // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol\n\n if (value == 0) {\n return \"0\";\n }\n uint256 temp = value;\n uint256 digits;\n while (temp != 0) {\n digits++;\n temp /= 10;\n }\n bytes memory buffer = new bytes(digits);\n while (value != 0) {\n digits -= 1;\n buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));\n value /= 10;\n }\n return string(buffer);\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n */\n function toHexString(uint256 value) internal pure returns (string memory) {\n if (value == 0) {\n return \"0x00\";\n }\n uint256 temp = value;\n uint256 length = 0;\n while (temp != 0) {\n length++;\n temp >>= 8;\n }\n return toHexString(value, length);\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n */\n function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n bytes memory buffer = new bytes(2 * length + 2);\n buffer[0] = \"0\";\n buffer[1] = \"x\";\n for (uint256 i = 2 * length + 1; i > 1; --i) {\n buffer[i] = _HEX_SYMBOLS[value & 0xf];\n value >>= 4;\n }\n require(value == 0, \"Strings: hex length insufficient\");\n return string(buffer);\n }\n}\n"
},
"@openzeppelin/contracts/security/ReentrancyGuard.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Contract module that helps prevent reentrant calls to a function.\n *\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n * available, which can be applied to functions to make sure there are no nested\n * (reentrant) calls to them.\n *\n * Note that because there is a single `nonReentrant` guard, functions marked as\n * `nonReentrant` may not call one another. This can be worked around by making\n * those functions `private`, and then adding `external` `nonReentrant` entry\n * points to them.\n *\n * TIP: If you would like to learn more about reentrancy and alternative ways\n * to protect against it, check out our blog post\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\n */\nabstract contract ReentrancyGuard {\n // Booleans are more expensive than uint256 or any type that takes up a full\n // word because each write operation emits an extra SLOAD to first read the\n // slot's contents, replace the bits taken up by the boolean, and then write\n // back. This is the compiler's defense against contract upgrades and\n // pointer aliasing, and it cannot be disabled.\n\n // The values being non-zero value makes deployment a bit more expensive,\n // but in exchange the refund on every call to nonReentrant will be lower in\n // amount. Since refunds are capped to a percentage of the total\n // transaction's gas, it is best to keep them low in cases like this one, to\n // increase the likelihood of the full refund coming into effect.\n uint256 private constant _NOT_ENTERED = 1;\n uint256 private constant _ENTERED = 2;\n\n uint256 private _status;\n\n constructor() {\n _status = _NOT_ENTERED;\n }\n\n /**\n * @dev Prevents a contract from calling itself, directly or indirectly.\n * Calling a `nonReentrant` function from another `nonReentrant`\n * function is not supported. It is possible to prevent this from happening\n * by making the `nonReentrant` function external, and making it call a\n * `private` function that does the actual work.\n */\n modifier nonReentrant() {\n // On the first call to nonReentrant, _notEntered will be true\n require(_status != _ENTERED, \"ReentrancyGuard: reentrant call\");\n\n // Any calls to nonReentrant after this point will fail\n _status = _ENTERED;\n\n _;\n\n // By storing the original value once again, a refund is triggered (see\n // https://eips.ethereum.org/EIPS/eip-2200)\n _status = _NOT_ENTERED;\n }\n}\n"
},
"@openzeppelin/contracts/access/Ownable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (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 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 called by any account other than the owner.\n */\n modifier onlyOwner() {\n require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\n _;\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions anymore. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby removing any functionality that is only available to the owner.\n */\n function renounceOwnership() public virtual onlyOwner {\n _transferOwnership(address(0));\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual onlyOwner {\n require(newOwner != address(0), \"Ownable: new owner is the zero address\");\n _transferOwnership(newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual {\n address oldOwner = _owner;\n _owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\n }\n}\n"
},
"@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC165.sol\";\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\n * for the additional interface id that will be supported. For example:\n *\n * ```solidity\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n * }\n * ```\n *\n * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\n */\nabstract contract ERC165 is IERC165 {\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n return interfaceId == type(IERC165).interfaceId;\n }\n}\n"
},
"@openzeppelin/contracts/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n"
},
"@openzeppelin/contracts/utils/Address.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCall(target, data, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n require(isContract(target), \"Address: call to non-contract\");\n\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n require(isContract(target), \"Address: static call to non-contract\");\n\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(isContract(target), \"Address: delegate call to non-contract\");\n\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n }\n}\n"
},
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC721.sol\";\n\n/**\n * @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n * @dev See https://eips.ethereum.org/EIPS/eip-721\n */\ninterface IERC721Metadata is IERC721 {\n /**\n * @dev Returns the token collection name.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the token collection symbol.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.\n */\n function tokenURI(uint256 tokenId) external view returns (string memory);\n}\n"
},
"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @title ERC721 token receiver interface\n * @dev Interface for any contract that wants to support safeTransfers\n * from ERC721 asset contracts.\n */\ninterface IERC721Receiver {\n /**\n * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n * by `operator` from `from`, this function is called.\n *\n * It must return its Solidity selector to confirm the token transfer.\n * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\n *\n * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\n */\n function onERC721Received(\n address operator,\n address from,\n uint256 tokenId,\n bytes calldata data\n ) external returns (bytes4);\n}\n"
},
"@openzeppelin/contracts/token/ERC721/IERC721.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev Required interface of an ERC721 compliant contract.\n */\ninterface IERC721 is IERC165 {\n /**\n * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\n */\n event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\n */\n event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\n */\n event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\n\n /**\n * @dev Returns the number of tokens in ``owner``'s account.\n */\n function balanceOf(address owner) external view returns (uint256 balance);\n\n /**\n * @dev Returns the owner of the `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function ownerOf(uint256 tokenId) external view returns (address owner);\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n * are aware of the ERC721 protocol to prevent tokens from being forever locked.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId\n ) external;\n\n /**\n * @dev Transfers `tokenId` token from `from` to `to`.\n *\n * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(\n address from,\n address to,\n uint256 tokenId\n ) external;\n\n /**\n * @dev Gives permission to `to` to transfer `tokenId` token to another account.\n * The approval is cleared when the token is transferred.\n *\n * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n *\n * Requirements:\n *\n * - The caller must own the token or be an approved operator.\n * - `tokenId` must exist.\n *\n * Emits an {Approval} event.\n */\n function approve(address to, uint256 tokenId) external;\n\n /**\n * @dev Returns the account approved for `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function getApproved(uint256 tokenId) external view returns (address operator);\n\n /**\n * @dev Approve or remove `operator` as an operator for the caller.\n * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n *\n * Requirements:\n *\n * - The `operator` cannot be the caller.\n *\n * Emits an {ApprovalForAll} event.\n */\n function setApprovalForAll(address operator, bool _approved) external;\n\n /**\n * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n *\n * See {setApprovalForAll}\n */\n function isApprovedForAll(address owner, address operator) external view returns (bool);\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId,\n bytes calldata data\n ) external;\n}\n"
},
"@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165 {\n /**\n * @dev Returns true if this contract implements the interface defined by\n * `interfaceId`. See the corresponding\n * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n * to learn more about how these ids are created.\n *\n * This function call must use less than 30 000 gas.\n */\n function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": true,
"runs": 500
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"@openzeppelin/contracts/access/Ownable.sol": {
"Ownable": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.",
"kind": "dev",
"methods": {
"constructor": {
"details": "Initializes the contract setting the deployer as the initial owner."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.\",\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the contract setting the deployer as the initial owner.\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0x24e0364e503a9bbde94c715d26573a76f14cd2a202d45f96f52134ab806b67b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e12cbaa7378fd9b62280e4e1d164bedcb4399ce238f5f98fc0eefb7e50577981\",\"dweb:/ipfs/QmXRoFGUgfsaRkoPT5bxNMtSayKTQ8GZATLPXf69HcRA51\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 7,
"contract": "@openzeppelin/contracts/access/Ownable.sol:Ownable",
"label": "_owner",
"offset": 0,
"slot": "0",
"type": "t_address"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/security/ReentrancyGuard.sol": {
"ReentrancyGuard": {
"abi": [],
"devdoc": {
"details": "Contract module that helps prevent reentrant calls to a function. Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier available, which can be applied to functions to make sure there are no nested (reentrant) calls to them. Note that because there is a single `nonReentrant` guard, functions marked as `nonReentrant` may not call one another. This can be worked around by making those functions `private`, and then adding `external` `nonReentrant` entry points to them. TIP: If you would like to learn more about reentrancy and alternative ways to protect against it, check out our blog post https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].",
"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.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Contract module that helps prevent reentrant calls to a function. Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier available, which can be applied to functions to make sure there are no nested (reentrant) calls to them. Note that because there is a single `nonReentrant` guard, functions marked as `nonReentrant` may not call one another. This can be worked around by making those functions `private`, and then adding `external` `nonReentrant` entry points to them. TIP: If you would like to learn more about reentrancy and alternative ways to protect against it, check out our blog post https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":\"ReentrancyGuard\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"keccak256\":\"0x0e9621f60b2faabe65549f7ed0f24e8853a45c1b7990d47e8160e523683f3935\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://287a2f8d5814dd0f05f22b740f18ca8321acc21c9bd03a6cb2203ea626e2f3f2\",\"dweb:/ipfs/QmZRQv9iuwU817VuqkA2WweiaibKii69x9QxYBBEfbNEud\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 115,
"contract": "@openzeppelin/contracts/security/ReentrancyGuard.sol:ReentrancyGuard",
"label": "_status",
"offset": 0,
"slot": "0",
"type": "t_uint256"
}
],
"types": {
"t_uint256": {
"encoding": "inplace",
"label": "uint256",
"numberOfBytes": "32"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/token/ERC721/IERC721.sol": {
"IERC721": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "_approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Required interface of an ERC721 compliant contract.",
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when `owner` enables `approved` to manage the `tokenId` token."
},
"ApprovalForAll(address,address,bool)": {
"details": "Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `tokenId` token is transferred from `from` to `to`."
}
},
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event."
},
"balanceOf(address)": {
"details": "Returns the number of tokens in ``owner``'s account."
},
"getApproved(uint256)": {
"details": "Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist."
},
"isApprovedForAll(address,address)": {
"details": "Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}"
},
"ownerOf(uint256)": {
"details": "Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist."
},
"safeTransferFrom(address,address,uint256)": {
"details": "Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event."
},
"setApprovalForAll(address,bool)": {
"details": "Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the caller. Emits an {ApprovalForAll} event."
},
"supportsInterface(bytes4)": {
"details": "Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas."
},
"transferFrom(address,address,uint256)": {
"details": "Transfers `tokenId` token from `from` to `to`. WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"ownerOf(uint256)": "6352211e",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"_approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Required interface of an ERC721 compliant contract.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when `owner` enables `approved` to manage the `tokenId` token.\"},\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `tokenId` token is transferred from `from` to `to`.\"}},\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the caller. Emits an {ApprovalForAll} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":\"IERC721\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0x516a22876c1fab47f49b1bc22b4614491cd05338af8bd2e7b382da090a079990\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a439187f7126d31add4557f82d8aed6be0162007cd7182c48fd934dbab8f3849\",\"dweb:/ipfs/QmRPLguRFvrRJS7r6F1bcLvsx6q1VrgjEpZafyeL8D7xZh\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"IERC721Receiver": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "onERC721Received",
"outputs": [
{
"internalType": "bytes4",
"name": "",
"type": "bytes4"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Interface for any contract that wants to support safeTransfers from ERC721 asset contracts.",
"kind": "dev",
"methods": {
"onERC721Received(address,address,uint256,bytes)": {
"details": "Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`."
}
},
"title": "ERC721 token receiver interface",
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"onERC721Received(address,address,uint256,bytes)": "150b7a02"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for any contract that wants to support safeTransfers from ERC721 asset contracts.\",\"kind\":\"dev\",\"methods\":{\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\"}},\"title\":\"ERC721 token receiver interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":\"IERC721Receiver\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xd5fa74b4fb323776fa4a8158800fec9d5ac0fec0d6dd046dd93798632ada265f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://33017a30a99cc5411a9e376622c31fc4a55cfc6a335e2f57f00cbf24a817ff3f\",\"dweb:/ipfs/QmWNQtWTPhA7Lo8nbxbc8KFMvZwbFYB8fSeEQ3vuapSV4a\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"IERC721Metadata": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "_approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "See https://eips.ethereum.org/EIPS/eip-721",
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event."
},
"balanceOf(address)": {
"details": "Returns the number of tokens in ``owner``'s account."
},
"getApproved(uint256)": {
"details": "Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist."
},
"isApprovedForAll(address,address)": {
"details": "Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}"
},
"name()": {
"details": "Returns the token collection name."
},
"ownerOf(uint256)": {
"details": "Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist."
},
"safeTransferFrom(address,address,uint256)": {
"details": "Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event."
},
"setApprovalForAll(address,bool)": {
"details": "Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the caller. Emits an {ApprovalForAll} event."
},
"supportsInterface(bytes4)": {
"details": "Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas."
},
"symbol()": {
"details": "Returns the token collection symbol."
},
"tokenURI(uint256)": {
"details": "Returns the Uniform Resource Identifier (URI) for `tokenId` token."
},
"transferFrom(address,address,uint256)": {
"details": "Transfers `tokenId` token from `from` to `to`. WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event."
}
},
"title": "ERC-721 Non-Fungible Token Standard, optional metadata extension",
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"name()": "06fdde03",
"ownerOf(uint256)": "6352211e",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"symbol()": "95d89b41",
"tokenURI(uint256)": "c87b56dd",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"_approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"tokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"See https://eips.ethereum.org/EIPS/eip-721\",\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"name()\":{\"details\":\"Returns the token collection name.\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the caller. Emits an {ApprovalForAll} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"symbol()\":{\"details\":\"Returns the token collection symbol.\"},\"tokenURI(uint256)\":{\"details\":\"Returns the Uniform Resource Identifier (URI) for `tokenId` token.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"}},\"title\":\"ERC-721 Non-Fungible Token Standard, optional metadata extension\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":\"IERC721Metadata\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0x516a22876c1fab47f49b1bc22b4614491cd05338af8bd2e7b382da090a079990\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a439187f7126d31add4557f82d8aed6be0162007cd7182c48fd934dbab8f3849\",\"dweb:/ipfs/QmRPLguRFvrRJS7r6F1bcLvsx6q1VrgjEpZafyeL8D7xZh\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146\",\"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/utils/Address.sol": {
"Address": {
"abi": [],
"devdoc": {
"details": "Collection of functions related to the address type",
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"@openzeppelin/contracts/utils/Address.sol\":194:8255 library Address {... */\n dataSize(sub_0)\n dataOffset(sub_0)\n 0x0b\n dup3\n dup3\n dup3\n codecopy\n dup1\n mload\n 0x00\n byte\n 0x73\n eq\n tag_1\n jumpi\n mstore(0x00, 0x4e487b7100000000000000000000000000000000000000000000000000000000)\n mstore(0x04, 0x00)\n revert(0x00, 0x24)\ntag_1:\n mstore(0x00, address)\n 0x73\n dup2\n mstore8\n dup3\n dup2\n return\nstop\n\nsub_0: assembly {\n /* \"@openzeppelin/contracts/utils/Address.sol\":194:8255 library Address {... */\n eq(address, deployTimeAddress())\n mstore(0x40, 0x80)\n 0x00\n dup1\n revert\n\n auxdata: 0xa26469706673582212201e24e11923d484da47038440bceb62d5db08b1751b1b54b9d8368d96842a4ef464736f6c634300080d0033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212201e24e11923d484da47038440bceb62d5db08b1751b1b54b9d8368d96842a4ef464736f6c634300080d0033",
"opcodes": "PUSH1 0x56 PUSH1 0x50 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x43 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x1E 0x24 0xE1 NOT 0x23 0xD4 DUP5 0xDA SELFBALANCE SUB DUP5 BLOCKHASH 0xBC 0xEB PUSH3 0xD5DB08 0xB1 PUSH22 0x1B1B54B9D8368D96842A4EF464736F6C634300080D00 CALLER ",
"sourceMap": "194:8061:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212201e24e11923d484da47038440bceb62d5db08b1751b1b54b9d8368d96842a4ef464736f6c634300080d0033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x1E 0x24 0xE1 NOT 0x23 0xD4 DUP5 0xDA SELFBALANCE SUB DUP5 BLOCKHASH 0xBC 0xEB PUSH3 0xD5DB08 0xB1 PUSH22 0x1B1B54B9D8368D96842A4EF464736F6C634300080D00 CALLER ",
"sourceMap": "194:8061:5:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17200",
"executionCost": "97",
"totalCost": "17297"
},
"internal": {
"functionCall(address,bytes memory)": "infinite",
"functionCall(address,bytes memory,string memory)": "infinite",
"functionCallWithValue(address,bytes memory,uint256)": "infinite",
"functionCallWithValue(address,bytes memory,uint256,string memory)": "infinite",
"functionDelegateCall(address,bytes memory)": "infinite",
"functionDelegateCall(address,bytes memory,string memory)": "infinite",
"functionStaticCall(address,bytes memory)": "infinite",
"functionStaticCall(address,bytes memory,string memory)": "infinite",
"isContract(address)": "infinite",
"sendValue(address payable,uint256)": "infinite",
"verifyCallResult(bool,bytes memory,string memory)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 194,
"end": 8255,
"name": "PUSH #[$]",
"source": 5,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 194,
"end": 8255,
"name": "PUSH [$]",
"source": 5,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 194,
"end": 8255,
"name": "PUSH",
"source": 5,
"value": "B"
},
{
"begin": 194,
"end": 8255,
"name": "DUP3",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "DUP3",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "DUP3",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "CODECOPY",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "DUP1",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "MLOAD",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 194,
"end": 8255,
"name": "BYTE",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "PUSH",
"source": 5,
"value": "73"
},
{
"begin": 194,
"end": 8255,
"name": "EQ",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "PUSH [tag]",
"source": 5,
"value": "1"
},
{
"begin": 194,
"end": 8255,
"name": "JUMPI",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "PUSH",
"source": 5,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 194,
"end": 8255,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 194,
"end": 8255,
"name": "MSTORE",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 194,
"end": 8255,
"name": "PUSH",
"source": 5,
"value": "4"
},
{
"begin": 194,
"end": 8255,
"name": "MSTORE",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "PUSH",
"source": 5,
"value": "24"
},
{
"begin": 194,
"end": 8255,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 194,
"end": 8255,
"name": "REVERT",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "tag",
"source": 5,
"value": "1"
},
{
"begin": 194,
"end": 8255,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "ADDRESS",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 194,
"end": 8255,
"name": "MSTORE",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "PUSH",
"source": 5,
"value": "73"
},
{
"begin": 194,
"end": 8255,
"name": "DUP2",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "MSTORE8",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "DUP3",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "DUP2",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "RETURN",
"source": 5
}
],
".data": {
"0": {
".auxdata": "a26469706673582212201e24e11923d484da47038440bceb62d5db08b1751b1b54b9d8368d96842a4ef464736f6c634300080d0033",
".code": [
{
"begin": 194,
"end": 8255,
"name": "PUSHDEPLOYADDRESS",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "ADDRESS",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "EQ",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "PUSH",
"source": 5,
"value": "80"
},
{
"begin": 194,
"end": 8255,
"name": "PUSH",
"source": 5,
"value": "40"
},
{
"begin": 194,
"end": 8255,
"name": "MSTORE",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 194,
"end": 8255,
"name": "DUP1",
"source": 5
},
{
"begin": 194,
"end": 8255,
"name": "REVERT",
"source": 5
}
]
}
}
},
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Collection of functions related to the address type\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Address.sol\":\"Address\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x2ccf9d2313a313d41a791505f2b5abfdc62191b5d4334f7f7a82691c088a1c87\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b3a57d0854b2fdce6ebff933a48dca2445643d1eccfc27f00292e937f26c6a58\",\"dweb:/ipfs/QmW45rZooS9TqR4YXUbjRbtf2Bpb5ouSarBvfW1LdGprvV\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/utils/Context.sol": {
"Context": {
"abi": [],
"devdoc": {
"details": "Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.",
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"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\":{\"@openzeppelin/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/utils/Strings.sol": {
"Strings": {
"abi": [],
"devdoc": {
"details": "String operations.",
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"@openzeppelin/contracts/utils/Strings.sol\":146:2031 library Strings {... */\n dataSize(sub_0)\n dataOffset(sub_0)\n 0x0b\n dup3\n dup3\n dup3\n codecopy\n dup1\n mload\n 0x00\n byte\n 0x73\n eq\n tag_1\n jumpi\n mstore(0x00, 0x4e487b7100000000000000000000000000000000000000000000000000000000)\n mstore(0x04, 0x00)\n revert(0x00, 0x24)\ntag_1:\n mstore(0x00, address)\n 0x73\n dup2\n mstore8\n dup3\n dup2\n return\nstop\n\nsub_0: assembly {\n /* \"@openzeppelin/contracts/utils/Strings.sol\":146:2031 library Strings {... */\n eq(address, deployTimeAddress())\n mstore(0x40, 0x80)\n 0x00\n dup1\n revert\n\n auxdata: 0xa2646970667358221220ff3f46967c3073caf32f56f8ade32c659a6fb3efc57a43fa16bae5471858928c64736f6c634300080d0033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220ff3f46967c3073caf32f56f8ade32c659a6fb3efc57a43fa16bae5471858928c64736f6c634300080d0033",
"opcodes": "PUSH1 0x56 PUSH1 0x50 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x43 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SELFDESTRUCT EXTCODEHASH CHAINID SWAP7 PUSH29 0x3073CAF32F56F8ADE32C659A6FB3EFC57A43FA16BAE5471858928C6473 PUSH16 0x6C634300080D00330000000000000000 ",
"sourceMap": "146:1885:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220ff3f46967c3073caf32f56f8ade32c659a6fb3efc57a43fa16bae5471858928c64736f6c634300080d0033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SELFDESTRUCT EXTCODEHASH CHAINID SWAP7 PUSH29 0x3073CAF32F56F8ADE32C659A6FB3EFC57A43FA16BAE5471858928C6473 PUSH16 0x6C634300080D00330000000000000000 ",
"sourceMap": "146:1885:7:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17200",
"executionCost": "97",
"totalCost": "17297"
},
"internal": {
"toHexString(uint256)": "infinite",
"toHexString(uint256,uint256)": "infinite",
"toString(uint256)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 146,
"end": 2031,
"name": "PUSH #[$]",
"source": 7,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 146,
"end": 2031,
"name": "PUSH [$]",
"source": 7,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 146,
"end": 2031,
"name": "PUSH",
"source": 7,
"value": "B"
},
{
"begin": 146,
"end": 2031,
"name": "DUP3",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "DUP3",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "DUP3",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "CODECOPY",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "DUP1",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "MLOAD",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "PUSH",
"source": 7,
"value": "0"
},
{
"begin": 146,
"end": 2031,
"name": "BYTE",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "PUSH",
"source": 7,
"value": "73"
},
{
"begin": 146,
"end": 2031,
"name": "EQ",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "PUSH [tag]",
"source": 7,
"value": "1"
},
{
"begin": 146,
"end": 2031,
"name": "JUMPI",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "PUSH",
"source": 7,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 146,
"end": 2031,
"name": "PUSH",
"source": 7,
"value": "0"
},
{
"begin": 146,
"end": 2031,
"name": "MSTORE",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "PUSH",
"source": 7,
"value": "0"
},
{
"begin": 146,
"end": 2031,
"name": "PUSH",
"source": 7,
"value": "4"
},
{
"begin": 146,
"end": 2031,
"name": "MSTORE",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "PUSH",
"source": 7,
"value": "24"
},
{
"begin": 146,
"end": 2031,
"name": "PUSH",
"source": 7,
"value": "0"
},
{
"begin": 146,
"end": 2031,
"name": "REVERT",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "tag",
"source": 7,
"value": "1"
},
{
"begin": 146,
"end": 2031,
"name": "JUMPDEST",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "ADDRESS",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "PUSH",
"source": 7,
"value": "0"
},
{
"begin": 146,
"end": 2031,
"name": "MSTORE",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "PUSH",
"source": 7,
"value": "73"
},
{
"begin": 146,
"end": 2031,
"name": "DUP2",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "MSTORE8",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "DUP3",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "DUP2",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "RETURN",
"source": 7
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220ff3f46967c3073caf32f56f8ade32c659a6fb3efc57a43fa16bae5471858928c64736f6c634300080d0033",
".code": [
{
"begin": 146,
"end": 2031,
"name": "PUSHDEPLOYADDRESS",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "ADDRESS",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "EQ",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "PUSH",
"source": 7,
"value": "80"
},
{
"begin": 146,
"end": 2031,
"name": "PUSH",
"source": 7,
"value": "40"
},
{
"begin": 146,
"end": 2031,
"name": "MSTORE",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "PUSH",
"source": 7,
"value": "0"
},
{
"begin": 146,
"end": 2031,
"name": "DUP1",
"source": 7
},
{
"begin": 146,
"end": 2031,
"name": "REVERT",
"source": 7
}
]
}
}
},
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"String operations.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Strings.sol\":\"Strings\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x32c202bd28995dd20c4347b7c6467a6d3241c74c8ad3edcbb610cd9205916c45\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8179c356adb19e70d6b31a1eedc8c5c7f0c00e669e2540f4099e3844c6074d30\",\"dweb:/ipfs/QmWFbivarEobbqhS1go64ootVuHfVohBseerYy9FTEd1W2\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"ERC165": {
"abi": [
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of the {IERC165} interface. Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check for the additional interface id that will be supported. For example: ```solidity function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); } ``` Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.",
"kind": "dev",
"methods": {
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"supportsInterface(bytes4)": "01ffc9a7"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC165} interface. Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check for the additional interface id that will be supported. For example: ```solidity function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); } ``` Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":\"ERC165\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d\",\"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"IERC165": {
"abi": [
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "Interface of the ERC165 standard, as defined in the https://eips.ethereum.org/EIPS/eip-165[EIP]. Implementers can declare support of contract interfaces, which can then be queried by others ({ERC165Checker}). For an implementation, see {ERC165}.",
"kind": "dev",
"methods": {
"supportsInterface(bytes4)": {
"details": "Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"supportsInterface(bytes4)": "01ffc9a7"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC165 standard, as defined in the https://eips.ethereum.org/EIPS/eip-165[EIP]. Implementers can declare support of contract interfaces, which can then be queried by others ({ERC165Checker}). For an implementation, see {ERC165}.\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":\"IERC165\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"contracts/ERC721A.sol": {
"ERC721A": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "ApprovalCallerNotOwnerNorApproved",
"type": "error"
},
{
"inputs": [],
"name": "ApprovalQueryForNonexistentToken",
"type": "error"
},
{
"inputs": [],
"name": "ApprovalToCurrentOwner",
"type": "error"
},
{
"inputs": [],
"name": "ApproveToCaller",
"type": "error"
},
{
"inputs": [],
"name": "BalanceQueryForZeroAddress",
"type": "error"
},
{
"inputs": [],
"name": "OwnerQueryForNonexistentToken",
"type": "error"
},
{
"inputs": [],
"name": "TransferCallerNotOwnerNorApproved",
"type": "error"
},
{
"inputs": [],
"name": "TransferFromIncorrectOwner",
"type": "error"
},
{
"inputs": [],
"name": "TransferToNonERC721ReceiverImplementer",
"type": "error"
},
{
"inputs": [],
"name": "TransferToZeroAddress",
"type": "error"
},
{
"inputs": [],
"name": "URIQueryForNonexistentToken",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including the Metadata extension. Built to optimize for lower gas during batch mints. Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).",
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"getApproved(uint256)": {
"details": "See {IERC721-getApproved}."
},
"isApprovedForAll(address,address)": {
"details": "See {IERC721-isApprovedForAll}."
},
"name()": {
"details": "See {IERC721Metadata-name}."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"safeTransferFrom(address,address,uint256)": {
"details": "See {IERC721-safeTransferFrom}."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "See {IERC721-safeTransferFrom}."
},
"setApprovalForAll(address,bool)": {
"details": "See {IERC721-setApprovalForAll}."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
},
"symbol()": {
"details": "See {IERC721Metadata-symbol}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"totalSupply()": {
"details": "Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
}
},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/ERC721A.sol\":1464:21795 contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {... */\n mstore(0x40, 0x80)\n /* \"contracts/ERC721A.sol\":3357:3511 constructor(string memory name_, string memory symbol_) {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n mload(0x40)\n sub(codesize, bytecodeSize)\n dup1\n bytecodeSize\n dup4\n codecopy\n dup2\n dup2\n add\n 0x40\n mstore\n dup2\n add\n swap1\n tag_2\n swap2\n swap1\n tag_3\n jump\t// in\ntag_2:\n /* \"contracts/ERC721A.sol\":3431:3436 name_ */\n dup2\n /* \"contracts/ERC721A.sol\":3423:3428 _name */\n 0x02\n /* \"contracts/ERC721A.sol\":3423:3436 _name = name_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_6\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_6:\n pop\n /* \"contracts/ERC721A.sol\":3456:3463 symbol_ */\n dup1\n /* \"contracts/ERC721A.sol\":3446:3453 _symbol */\n 0x03\n /* \"contracts/ERC721A.sol\":3446:3463 _symbol = symbol_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_8\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_8:\n pop\n /* \"contracts/ERC721A.sol\":3489:3504 _startTokenId() */\n tag_9\n /* \"contracts/ERC721A.sol\":3489:3502 _startTokenId */\n shl(0x20, tag_10)\n /* \"contracts/ERC721A.sol\":3489:3504 _startTokenId() */\n 0x20\n shr\n jump\t// in\ntag_9:\n /* \"contracts/ERC721A.sol\":3473:3486 _currentIndex */\n 0x00\n /* \"contracts/ERC721A.sol\":3473:3504 _currentIndex = _startTokenId() */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/ERC721A.sol\":3357:3511 constructor(string memory name_, string memory symbol_) {... */\n pop\n pop\n /* \"contracts/ERC721A.sol\":1464:21795 contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {... */\n jump(tag_11)\n /* \"contracts/ERC721A.sol\":3603:3693 function _startTokenId() internal view virtual returns (uint256) {... */\ntag_10:\n /* \"contracts/ERC721A.sol\":3659:3666 uint256 */\n 0x00\n /* \"contracts/ERC721A.sol\":3603:3693 function _startTokenId() internal view virtual returns (uint256) {... */\n swap1\n jump\t// out\n /* \"contracts/ERC721A.sol\":1464:21795 contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {... */\ntag_7:\n dup3\n dup1\n sload\n tag_13\n swap1\n tag_14\n jump\t// in\ntag_13:\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_16\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_15)\ntag_16:\n dup3\n 0x1f\n lt\n tag_17\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_15)\ntag_17:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_15\n jumpi\n swap2\n dup3\n add\ntag_18:\n dup3\n dup2\n gt\n iszero\n tag_19\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_18)\ntag_19:\ntag_15:\n pop\n swap1\n pop\n tag_20\n swap2\n swap1\n tag_21\n jump\t// in\ntag_20:\n pop\n swap1\n jump\t// out\ntag_21:\ntag_22:\n dup1\n dup3\n gt\n iszero\n tag_23\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_22)\ntag_23:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:82 */\ntag_24:\n /* \"#utility.yul\":40:46 */\n 0x00\n /* \"#utility.yul\":73:75 */\n 0x40\n /* \"#utility.yul\":67:76 */\n mload\n /* \"#utility.yul\":57:76 */\n swap1\n pop\n /* \"#utility.yul\":7:82 */\n swap1\n jump\t// out\n /* \"#utility.yul\":88:205 */\ntag_25:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":211:328 */\ntag_26:\n /* \"#utility.yul\":320:321 */\n 0x00\n /* \"#utility.yul\":317:318 */\n dup1\n /* \"#utility.yul\":310:322 */\n revert\n /* \"#utility.yul\":334:451 */\ntag_27:\n /* \"#utility.yul\":443:444 */\n 0x00\n /* \"#utility.yul\":440:441 */\n dup1\n /* \"#utility.yul\":433:445 */\n revert\n /* \"#utility.yul\":457:574 */\ntag_28:\n /* \"#utility.yul\":566:567 */\n 0x00\n /* \"#utility.yul\":563:564 */\n dup1\n /* \"#utility.yul\":556:568 */\n revert\n /* \"#utility.yul\":580:682 */\ntag_29:\n /* \"#utility.yul\":621:627 */\n 0x00\n /* \"#utility.yul\":672:674 */\n 0x1f\n /* \"#utility.yul\":668:675 */\n not\n /* \"#utility.yul\":663:665 */\n 0x1f\n /* \"#utility.yul\":656:661 */\n dup4\n /* \"#utility.yul\":652:666 */\n add\n /* \"#utility.yul\":648:676 */\n and\n /* \"#utility.yul\":638:676 */\n swap1\n pop\n /* \"#utility.yul\":580:682 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":688:868 */\ntag_30:\n /* \"#utility.yul\":736:813 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":733:734 */\n 0x00\n /* \"#utility.yul\":726:814 */\n mstore\n /* \"#utility.yul\":833:837 */\n 0x41\n /* \"#utility.yul\":830:831 */\n 0x04\n /* \"#utility.yul\":823:838 */\n mstore\n /* \"#utility.yul\":857:861 */\n 0x24\n /* \"#utility.yul\":854:855 */\n 0x00\n /* \"#utility.yul\":847:862 */\n revert\n /* \"#utility.yul\":874:1155 */\ntag_31:\n /* \"#utility.yul\":957:984 */\n tag_47\n /* \"#utility.yul\":979:983 */\n dup3\n /* \"#utility.yul\":957:984 */\n tag_29\n jump\t// in\ntag_47:\n /* \"#utility.yul\":949:955 */\n dup2\n /* \"#utility.yul\":945:985 */\n add\n /* \"#utility.yul\":1087:1093 */\n dup2\n /* \"#utility.yul\":1075:1085 */\n dup2\n /* \"#utility.yul\":1072:1094 */\n lt\n /* \"#utility.yul\":1051:1069 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1039:1049 */\n dup3\n /* \"#utility.yul\":1036:1070 */\n gt\n /* \"#utility.yul\":1033:1095 */\n or\n /* \"#utility.yul\":1030:1118 */\n iszero\n tag_48\n jumpi\n /* \"#utility.yul\":1098:1116 */\n tag_49\n tag_30\n jump\t// in\ntag_49:\n /* \"#utility.yul\":1030:1118 */\ntag_48:\n /* \"#utility.yul\":1138:1148 */\n dup1\n /* \"#utility.yul\":1134:1136 */\n 0x40\n /* \"#utility.yul\":1127:1149 */\n mstore\n /* \"#utility.yul\":917:1155 */\n pop\n /* \"#utility.yul\":874:1155 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1161:1290 */\ntag_32:\n /* \"#utility.yul\":1195:1201 */\n 0x00\n /* \"#utility.yul\":1222:1242 */\n tag_51\n tag_24\n jump\t// in\ntag_51:\n /* \"#utility.yul\":1212:1242 */\n swap1\n pop\n /* \"#utility.yul\":1251:1284 */\n tag_52\n /* \"#utility.yul\":1279:1283 */\n dup3\n /* \"#utility.yul\":1271:1277 */\n dup3\n /* \"#utility.yul\":1251:1284 */\n tag_31\n jump\t// in\ntag_52:\n /* \"#utility.yul\":1161:1290 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1296:1604 */\ntag_33:\n /* \"#utility.yul\":1358:1362 */\n 0x00\n /* \"#utility.yul\":1448:1466 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1440:1446 */\n dup3\n /* \"#utility.yul\":1437:1467 */\n gt\n /* \"#utility.yul\":1434:1490 */\n iszero\n tag_54\n jumpi\n /* \"#utility.yul\":1470:1488 */\n tag_55\n tag_30\n jump\t// in\ntag_55:\n /* \"#utility.yul\":1434:1490 */\ntag_54:\n /* \"#utility.yul\":1508:1537 */\n tag_56\n /* \"#utility.yul\":1530:1536 */\n dup3\n /* \"#utility.yul\":1508:1537 */\n tag_29\n jump\t// in\ntag_56:\n /* \"#utility.yul\":1500:1537 */\n swap1\n pop\n /* \"#utility.yul\":1592:1596 */\n 0x20\n /* \"#utility.yul\":1586:1590 */\n dup2\n /* \"#utility.yul\":1582:1597 */\n add\n /* \"#utility.yul\":1574:1597 */\n swap1\n pop\n /* \"#utility.yul\":1296:1604 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1610:1917 */\ntag_34:\n /* \"#utility.yul\":1678:1679 */\n 0x00\n /* \"#utility.yul\":1688:1801 */\ntag_58:\n /* \"#utility.yul\":1702:1708 */\n dup4\n /* \"#utility.yul\":1699:1700 */\n dup2\n /* \"#utility.yul\":1696:1709 */\n lt\n /* \"#utility.yul\":1688:1801 */\n iszero\n tag_60\n jumpi\n /* \"#utility.yul\":1787:1788 */\n dup1\n /* \"#utility.yul\":1782:1785 */\n dup3\n /* \"#utility.yul\":1778:1789 */\n add\n /* \"#utility.yul\":1772:1790 */\n mload\n /* \"#utility.yul\":1768:1769 */\n dup2\n /* \"#utility.yul\":1763:1766 */\n dup5\n /* \"#utility.yul\":1759:1770 */\n add\n /* \"#utility.yul\":1752:1791 */\n mstore\n /* \"#utility.yul\":1724:1726 */\n 0x20\n /* \"#utility.yul\":1721:1722 */\n dup2\n /* \"#utility.yul\":1717:1727 */\n add\n /* \"#utility.yul\":1712:1727 */\n swap1\n pop\n /* \"#utility.yul\":1688:1801 */\n jump(tag_58)\ntag_60:\n /* \"#utility.yul\":1819:1825 */\n dup4\n /* \"#utility.yul\":1816:1817 */\n dup2\n /* \"#utility.yul\":1813:1826 */\n gt\n /* \"#utility.yul\":1810:1911 */\n iszero\n tag_61\n jumpi\n /* \"#utility.yul\":1899:1900 */\n 0x00\n /* \"#utility.yul\":1890:1896 */\n dup5\n /* \"#utility.yul\":1885:1888 */\n dup5\n /* \"#utility.yul\":1881:1897 */\n add\n /* \"#utility.yul\":1874:1901 */\n mstore\n /* \"#utility.yul\":1810:1911 */\ntag_61:\n /* \"#utility.yul\":1659:1917 */\n pop\n /* \"#utility.yul\":1610:1917 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1923:2344 */\ntag_35:\n /* \"#utility.yul\":2012:2017 */\n 0x00\n /* \"#utility.yul\":2037:2103 */\n tag_63\n /* \"#utility.yul\":2053:2102 */\n tag_64\n /* \"#utility.yul\":2095:2101 */\n dup5\n /* \"#utility.yul\":2053:2102 */\n tag_33\n jump\t// in\ntag_64:\n /* \"#utility.yul\":2037:2103 */\n tag_32\n jump\t// in\ntag_63:\n /* \"#utility.yul\":2028:2103 */\n swap1\n pop\n /* \"#utility.yul\":2126:2132 */\n dup3\n /* \"#utility.yul\":2119:2124 */\n dup2\n /* \"#utility.yul\":2112:2133 */\n mstore\n /* \"#utility.yul\":2164:2168 */\n 0x20\n /* \"#utility.yul\":2157:2162 */\n dup2\n /* \"#utility.yul\":2153:2169 */\n add\n /* \"#utility.yul\":2202:2205 */\n dup5\n /* \"#utility.yul\":2193:2199 */\n dup5\n /* \"#utility.yul\":2188:2191 */\n dup5\n /* \"#utility.yul\":2184:2200 */\n add\n /* \"#utility.yul\":2181:2206 */\n gt\n /* \"#utility.yul\":2178:2290 */\n iszero\n tag_65\n jumpi\n /* \"#utility.yul\":2209:2288 */\n tag_66\n tag_28\n jump\t// in\ntag_66:\n /* \"#utility.yul\":2178:2290 */\ntag_65:\n /* \"#utility.yul\":2299:2338 */\n tag_67\n /* \"#utility.yul\":2331:2337 */\n dup5\n /* \"#utility.yul\":2326:2329 */\n dup3\n /* \"#utility.yul\":2321:2324 */\n dup6\n /* \"#utility.yul\":2299:2338 */\n tag_34\n jump\t// in\ntag_67:\n /* \"#utility.yul\":2018:2344 */\n pop\n /* \"#utility.yul\":1923:2344 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2364:2719 */\ntag_36:\n /* \"#utility.yul\":2431:2436 */\n 0x00\n /* \"#utility.yul\":2480:2483 */\n dup3\n /* \"#utility.yul\":2473:2477 */\n 0x1f\n /* \"#utility.yul\":2465:2471 */\n dup4\n /* \"#utility.yul\":2461:2478 */\n add\n /* \"#utility.yul\":2457:2484 */\n slt\n /* \"#utility.yul\":2447:2569 */\n tag_69\n jumpi\n /* \"#utility.yul\":2488:2567 */\n tag_70\n tag_27\n jump\t// in\ntag_70:\n /* \"#utility.yul\":2447:2569 */\ntag_69:\n /* \"#utility.yul\":2598:2604 */\n dup2\n /* \"#utility.yul\":2592:2605 */\n mload\n /* \"#utility.yul\":2623:2713 */\n tag_71\n /* \"#utility.yul\":2709:2712 */\n dup5\n /* \"#utility.yul\":2701:2707 */\n dup3\n /* \"#utility.yul\":2694:2698 */\n 0x20\n /* \"#utility.yul\":2686:2692 */\n dup7\n /* \"#utility.yul\":2682:2699 */\n add\n /* \"#utility.yul\":2623:2713 */\n tag_35\n jump\t// in\ntag_71:\n /* \"#utility.yul\":2614:2713 */\n swap2\n pop\n /* \"#utility.yul\":2437:2719 */\n pop\n /* \"#utility.yul\":2364:2719 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2725:3578 */\ntag_3:\n /* \"#utility.yul\":2824:2830 */\n 0x00\n /* \"#utility.yul\":2832:2838 */\n dup1\n /* \"#utility.yul\":2881:2883 */\n 0x40\n /* \"#utility.yul\":2869:2878 */\n dup4\n /* \"#utility.yul\":2860:2867 */\n dup6\n /* \"#utility.yul\":2856:2879 */\n sub\n /* \"#utility.yul\":2852:2884 */\n slt\n /* \"#utility.yul\":2849:2968 */\n iszero\n tag_73\n jumpi\n /* \"#utility.yul\":2887:2966 */\n tag_74\n tag_25\n jump\t// in\ntag_74:\n /* \"#utility.yul\":2849:2968 */\ntag_73:\n /* \"#utility.yul\":3028:3029 */\n 0x00\n /* \"#utility.yul\":3017:3026 */\n dup4\n /* \"#utility.yul\":3013:3030 */\n add\n /* \"#utility.yul\":3007:3031 */\n mload\n /* \"#utility.yul\":3058:3076 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3050:3056 */\n dup2\n /* \"#utility.yul\":3047:3077 */\n gt\n /* \"#utility.yul\":3044:3161 */\n iszero\n tag_75\n jumpi\n /* \"#utility.yul\":3080:3159 */\n tag_76\n tag_26\n jump\t// in\ntag_76:\n /* \"#utility.yul\":3044:3161 */\ntag_75:\n /* \"#utility.yul\":3185:3259 */\n tag_77\n /* \"#utility.yul\":3251:3258 */\n dup6\n /* \"#utility.yul\":3242:3248 */\n dup3\n /* \"#utility.yul\":3231:3240 */\n dup7\n /* \"#utility.yul\":3227:3249 */\n add\n /* \"#utility.yul\":3185:3259 */\n tag_36\n jump\t// in\ntag_77:\n /* \"#utility.yul\":3175:3259 */\n swap3\n pop\n /* \"#utility.yul\":2978:3269 */\n pop\n /* \"#utility.yul\":3329:3331 */\n 0x20\n /* \"#utility.yul\":3318:3327 */\n dup4\n /* \"#utility.yul\":3314:3332 */\n add\n /* \"#utility.yul\":3308:3333 */\n mload\n /* \"#utility.yul\":3360:3378 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3352:3358 */\n dup2\n /* \"#utility.yul\":3349:3379 */\n gt\n /* \"#utility.yul\":3346:3463 */\n iszero\n tag_78\n jumpi\n /* \"#utility.yul\":3382:3461 */\n tag_79\n tag_26\n jump\t// in\ntag_79:\n /* \"#utility.yul\":3346:3463 */\ntag_78:\n /* \"#utility.yul\":3487:3561 */\n tag_80\n /* \"#utility.yul\":3553:3560 */\n dup6\n /* \"#utility.yul\":3544:3550 */\n dup3\n /* \"#utility.yul\":3533:3542 */\n dup7\n /* \"#utility.yul\":3529:3551 */\n add\n /* \"#utility.yul\":3487:3561 */\n tag_36\n jump\t// in\ntag_80:\n /* \"#utility.yul\":3477:3561 */\n swap2\n pop\n /* \"#utility.yul\":3279:3571 */\n pop\n /* \"#utility.yul\":2725:3578 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3584:3764 */\ntag_37:\n /* \"#utility.yul\":3632:3709 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3629:3630 */\n 0x00\n /* \"#utility.yul\":3622:3710 */\n mstore\n /* \"#utility.yul\":3729:3733 */\n 0x22\n /* \"#utility.yul\":3726:3727 */\n 0x04\n /* \"#utility.yul\":3719:3734 */\n mstore\n /* \"#utility.yul\":3753:3757 */\n 0x24\n /* \"#utility.yul\":3750:3751 */\n 0x00\n /* \"#utility.yul\":3743:3758 */\n revert\n /* \"#utility.yul\":3770:4090 */\ntag_14:\n /* \"#utility.yul\":3814:3820 */\n 0x00\n /* \"#utility.yul\":3851:3852 */\n 0x02\n /* \"#utility.yul\":3845:3849 */\n dup3\n /* \"#utility.yul\":3841:3853 */\n div\n /* \"#utility.yul\":3831:3853 */\n swap1\n pop\n /* \"#utility.yul\":3898:3899 */\n 0x01\n /* \"#utility.yul\":3892:3896 */\n dup3\n /* \"#utility.yul\":3888:3900 */\n and\n /* \"#utility.yul\":3919:3937 */\n dup1\n /* \"#utility.yul\":3909:3990 */\n tag_83\n jumpi\n /* \"#utility.yul\":3975:3979 */\n 0x7f\n /* \"#utility.yul\":3967:3973 */\n dup3\n /* \"#utility.yul\":3963:3980 */\n and\n /* \"#utility.yul\":3953:3980 */\n swap2\n pop\n /* \"#utility.yul\":3909:3990 */\ntag_83:\n /* \"#utility.yul\":4037:4039 */\n 0x20\n /* \"#utility.yul\":4029:4035 */\n dup3\n /* \"#utility.yul\":4026:4040 */\n lt\n /* \"#utility.yul\":4006:4024 */\n dup2\n /* \"#utility.yul\":4003:4041 */\n sub\n /* \"#utility.yul\":4000:4084 */\n tag_84\n jumpi\n /* \"#utility.yul\":4056:4074 */\n tag_85\n tag_37\n jump\t// in\ntag_85:\n /* \"#utility.yul\":4000:4084 */\ntag_84:\n /* \"#utility.yul\":3821:4090 */\n pop\n /* \"#utility.yul\":3770:4090 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"contracts/ERC721A.sol\":1464:21795 contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {... */\ntag_11:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/ERC721A.sol\":1464:21795 contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x6352211e\n gt\n tag_17\n jumpi\n dup1\n 0xa22cb465\n gt\n tag_18\n jumpi\n dup1\n 0xa22cb465\n eq\n tag_13\n jumpi\n dup1\n 0xb88d4fde\n eq\n tag_14\n jumpi\n dup1\n 0xc87b56dd\n eq\n tag_15\n jumpi\n dup1\n 0xe985e9c5\n eq\n tag_16\n jumpi\n jump(tag_2)\n tag_18:\n dup1\n 0x6352211e\n eq\n tag_10\n jumpi\n dup1\n 0x70a08231\n eq\n tag_11\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_12\n jumpi\n jump(tag_2)\n tag_17:\n dup1\n 0x095ea7b3\n gt\n tag_19\n jumpi\n dup1\n 0x095ea7b3\n eq\n tag_6\n jumpi\n dup1\n 0x18160ddd\n eq\n tag_7\n jumpi\n dup1\n 0x23b872dd\n eq\n tag_8\n jumpi\n dup1\n 0x42842e0e\n eq\n tag_9\n jumpi\n jump(tag_2)\n tag_19:\n dup1\n 0x01ffc9a7\n eq\n tag_3\n jumpi\n dup1\n 0x06fdde03\n eq\n tag_4\n jumpi\n dup1\n 0x081812fc\n eq\n tag_5\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/ERC721A.sol\":4551:4851 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n tag_3:\n tag_20\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_21\n swap2\n swap1\n tag_22\n jump\t// in\n tag_21:\n tag_23\n jump\t// in\n tag_20:\n mload(0x40)\n tag_24\n swap2\n swap1\n tag_25\n jump\t// in\n tag_24:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/ERC721A.sol\":7579:7677 function name() public view virtual override returns (string memory) {... */\n tag_4:\n tag_26\n tag_27\n jump\t// in\n tag_26:\n mload(0x40)\n tag_28\n swap2\n swap1\n tag_29\n jump\t// in\n tag_28:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/ERC721A.sol\":9035:9235 function getApproved(uint256 tokenId) public view override returns (address) {... */\n tag_5:\n tag_30\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_31\n swap2\n swap1\n tag_32\n jump\t// in\n tag_31:\n tag_33\n jump\t// in\n tag_30:\n mload(0x40)\n tag_34\n swap2\n swap1\n tag_35\n jump\t// in\n tag_34:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/ERC721A.sol\":8612:8974 function approve(address to, uint256 tokenId) public override {... */\n tag_6:\n tag_36\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_37\n swap2\n swap1\n tag_38\n jump\t// in\n tag_37:\n tag_39\n jump\t// in\n tag_36:\n stop\n /* \"contracts/ERC721A.sol\":3822:4119 function totalSupply() public view returns (uint256) {... */\n tag_7:\n tag_40\n tag_41\n jump\t// in\n tag_40:\n mload(0x40)\n tag_42\n swap2\n swap1\n tag_43\n jump\t// in\n tag_42:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/ERC721A.sol\":9874:10038 function transferFrom(... */\n tag_8:\n tag_44\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_45\n swap2\n swap1\n tag_46\n jump\t// in\n tag_45:\n tag_47\n jump\t// in\n tag_44:\n stop\n /* \"contracts/ERC721A.sol\":10104:10283 function safeTransferFrom(... */\n tag_9:\n tag_48\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_49\n swap2\n swap1\n tag_46\n jump\t// in\n tag_49:\n tag_50\n jump\t// in\n tag_48:\n stop\n /* \"contracts/ERC721A.sol\":7394:7517 function ownerOf(uint256 tokenId) public view override returns (address) {... */\n tag_10:\n tag_51\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_52\n swap2\n swap1\n tag_32\n jump\t// in\n tag_52:\n tag_53\n jump\t// in\n tag_51:\n mload(0x40)\n tag_54\n swap2\n swap1\n tag_35\n jump\t// in\n tag_54:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/ERC721A.sol\":4910:5113 function balanceOf(address owner) public view override returns (uint256) {... */\n tag_11:\n tag_55\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_56\n swap2\n swap1\n tag_57\n jump\t// in\n tag_56:\n tag_58\n jump\t// in\n tag_55:\n mload(0x40)\n tag_59\n swap2\n swap1\n tag_43\n jump\t// in\n tag_59:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/ERC721A.sol\":7741:7843 function symbol() public view virtual override returns (string memory) {... */\n tag_12:\n tag_60\n tag_61\n jump\t// in\n tag_60:\n mload(0x40)\n tag_62\n swap2\n swap1\n tag_29\n jump\t// in\n tag_62:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/ERC721A.sol\":9302:9584 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n tag_13:\n tag_63\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_64\n swap2\n swap1\n tag_65\n jump\t// in\n tag_64:\n tag_66\n jump\t// in\n tag_63:\n stop\n /* \"contracts/ERC721A.sol\":10349:10708 function safeTransferFrom(... */\n tag_14:\n tag_67\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_68\n swap2\n swap1\n tag_69\n jump\t// in\n tag_68:\n tag_70\n jump\t// in\n tag_67:\n stop\n /* \"contracts/ERC721A.sol\":7909:8222 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n tag_15:\n tag_71\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_72\n swap2\n swap1\n tag_32\n jump\t// in\n tag_72:\n tag_73\n jump\t// in\n tag_71:\n mload(0x40)\n tag_74\n swap2\n swap1\n tag_29\n jump\t// in\n tag_74:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/ERC721A.sol\":9650:9812 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n tag_16:\n tag_75\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_76\n swap2\n swap1\n tag_77\n jump\t// in\n tag_76:\n tag_78\n jump\t// in\n tag_75:\n mload(0x40)\n tag_79\n swap2\n swap1\n tag_25\n jump\t// in\n tag_79:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/ERC721A.sol\":4551:4851 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n tag_23:\n /* \"contracts/ERC721A.sol\":4653:4657 bool */\n 0x00\n /* \"contracts/ERC721A.sol\":4703:4728 type(IERC721).interfaceId */\n 0x80ac58cd00000000000000000000000000000000000000000000000000000000\n /* \"contracts/ERC721A.sol\":4688:4728 interfaceId == type(IERC721).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"contracts/ERC721A.sol\":4688:4699 interfaceId */\n dup3\n /* \"contracts/ERC721A.sol\":4688:4728 interfaceId == type(IERC721).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"contracts/ERC721A.sol\":4688:4792 interfaceId == type(IERC721).interfaceId ||... */\n dup1\n tag_81\n jumpi\n pop\n /* \"contracts/ERC721A.sol\":4759:4792 type(IERC721Metadata).interfaceId */\n 0x5b5e139f00000000000000000000000000000000000000000000000000000000\n /* \"contracts/ERC721A.sol\":4744:4792 interfaceId == type(IERC721Metadata).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"contracts/ERC721A.sol\":4744:4755 interfaceId */\n dup3\n /* \"contracts/ERC721A.sol\":4744:4792 interfaceId == type(IERC721Metadata).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"contracts/ERC721A.sol\":4688:4792 interfaceId == type(IERC721).interfaceId ||... */\n tag_81:\n /* \"contracts/ERC721A.sol\":4688:4844 interfaceId == type(IERC721).interfaceId ||... */\n dup1\n tag_82\n jumpi\n pop\n /* \"contracts/ERC721A.sol\":4808:4844 super.supportsInterface(interfaceId) */\n tag_83\n /* \"contracts/ERC721A.sol\":4832:4843 interfaceId */\n dup3\n /* \"contracts/ERC721A.sol\":4808:4831 super.supportsInterface */\n tag_84\n /* \"contracts/ERC721A.sol\":4808:4844 super.supportsInterface(interfaceId) */\n jump\t// in\n tag_83:\n /* \"contracts/ERC721A.sol\":4688:4844 interfaceId == type(IERC721).interfaceId ||... */\n tag_82:\n /* \"contracts/ERC721A.sol\":4669:4844 return... */\n swap1\n pop\n /* \"contracts/ERC721A.sol\":4551:4851 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"contracts/ERC721A.sol\":7579:7677 function name() public view virtual override returns (string memory) {... */\n tag_27:\n /* \"contracts/ERC721A.sol\":7633:7646 string memory */\n 0x60\n /* \"contracts/ERC721A.sol\":7665:7670 _name */\n 0x02\n /* \"contracts/ERC721A.sol\":7658:7670 return _name */\n dup1\n sload\n tag_86\n swap1\n tag_87\n jump\t// in\n tag_86:\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_88\n swap1\n tag_87\n jump\t// in\n tag_88:\n dup1\n iszero\n tag_89\n jumpi\n dup1\n 0x1f\n lt\n tag_90\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_89)\n tag_90:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_91:\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_91\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_89:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"contracts/ERC721A.sol\":7579:7677 function name() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"contracts/ERC721A.sol\":9035:9235 function getApproved(uint256 tokenId) public view override returns (address) {... */\n tag_33:\n /* \"contracts/ERC721A.sol\":9103:9110 address */\n 0x00\n /* \"contracts/ERC721A.sol\":9127:9143 _exists(tokenId) */\n tag_93\n /* \"contracts/ERC721A.sol\":9135:9142 tokenId */\n dup3\n /* \"contracts/ERC721A.sol\":9127:9134 _exists */\n tag_94\n /* \"contracts/ERC721A.sol\":9127:9143 _exists(tokenId) */\n jump\t// in\n tag_93:\n /* \"contracts/ERC721A.sol\":9122:9186 if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken() */\n tag_95\n jumpi\n /* \"contracts/ERC721A.sol\":9152:9186 ApprovalQueryForNonexistentToken() */\n mload(0x40)\n 0xcf4700e400000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"contracts/ERC721A.sol\":9122:9186 if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken() */\n tag_95:\n /* \"contracts/ERC721A.sol\":9204:9219 _tokenApprovals */\n 0x06\n /* \"contracts/ERC721A.sol\":9204:9228 _tokenApprovals[tokenId] */\n 0x00\n /* \"contracts/ERC721A.sol\":9220:9227 tokenId */\n dup4\n /* \"contracts/ERC721A.sol\":9204:9228 _tokenApprovals[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/ERC721A.sol\":9197:9228 return _tokenApprovals[tokenId] */\n swap1\n pop\n /* \"contracts/ERC721A.sol\":9035:9235 function getApproved(uint256 tokenId) public view override returns (address) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"contracts/ERC721A.sol\":8612:8974 function approve(address to, uint256 tokenId) public override {... */\n tag_39:\n /* \"contracts/ERC721A.sol\":8684:8697 address owner */\n 0x00\n /* \"contracts/ERC721A.sol\":8700:8724 ERC721A.ownerOf(tokenId) */\n tag_97\n /* \"contracts/ERC721A.sol\":8716:8723 tokenId */\n dup3\n /* \"contracts/ERC721A.sol\":8700:8715 ERC721A.ownerOf */\n tag_53\n /* \"contracts/ERC721A.sol\":8700:8724 ERC721A.ownerOf(tokenId) */\n jump\t// in\n tag_97:\n /* \"contracts/ERC721A.sol\":8684:8724 address owner = ERC721A.ownerOf(tokenId) */\n swap1\n pop\n /* \"contracts/ERC721A.sol\":8744:8749 owner */\n dup1\n /* \"contracts/ERC721A.sol\":8738:8749 to == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/ERC721A.sol\":8738:8740 to */\n dup4\n /* \"contracts/ERC721A.sol\":8738:8749 to == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"contracts/ERC721A.sol\":8734:8782 if (to == owner) revert ApprovalToCurrentOwner() */\n tag_98\n jumpi\n /* \"contracts/ERC721A.sol\":8758:8782 ApprovalToCurrentOwner() */\n mload(0x40)\n 0x943f7b8c00000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"contracts/ERC721A.sol\":8734:8782 if (to == owner) revert ApprovalToCurrentOwner() */\n tag_98:\n /* \"contracts/ERC721A.sol\":8813:8818 owner */\n dup1\n /* \"contracts/ERC721A.sol\":8797:8818 _msgSender() != owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/ERC721A.sol\":8797:8809 _msgSender() */\n tag_99\n /* \"contracts/ERC721A.sol\":8797:8807 _msgSender */\n tag_100\n /* \"contracts/ERC721A.sol\":8797:8809 _msgSender() */\n jump\t// in\n tag_99:\n /* \"contracts/ERC721A.sol\":8797:8818 _msgSender() != owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"contracts/ERC721A.sol\":8797:8860 _msgSender() != owner && !isApprovedForAll(owner, _msgSender()) */\n dup1\n iszero\n tag_101\n jumpi\n pop\n /* \"contracts/ERC721A.sol\":8823:8860 isApprovedForAll(owner, _msgSender()) */\n tag_102\n /* \"contracts/ERC721A.sol\":8840:8845 owner */\n dup2\n /* \"contracts/ERC721A.sol\":8847:8859 _msgSender() */\n tag_103\n /* \"contracts/ERC721A.sol\":8847:8857 _msgSender */\n tag_100\n /* \"contracts/ERC721A.sol\":8847:8859 _msgSender() */\n jump\t// in\n tag_103:\n /* \"contracts/ERC721A.sol\":8823:8839 isApprovedForAll */\n tag_78\n /* \"contracts/ERC721A.sol\":8823:8860 isApprovedForAll(owner, _msgSender()) */\n jump\t// in\n tag_102:\n /* \"contracts/ERC721A.sol\":8822:8860 !isApprovedForAll(owner, _msgSender()) */\n iszero\n /* \"contracts/ERC721A.sol\":8797:8860 _msgSender() != owner && !isApprovedForAll(owner, _msgSender()) */\n tag_101:\n /* \"contracts/ERC721A.sol\":8793:8929 if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {... */\n iszero\n tag_104\n jumpi\n /* \"contracts/ERC721A.sol\":8883:8918 ApprovalCallerNotOwnerNorApproved() */\n mload(0x40)\n 0xcfb3b94200000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"contracts/ERC721A.sol\":8793:8929 if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {... */\n tag_104:\n /* \"contracts/ERC721A.sol\":8939:8967 _approve(to, tokenId, owner) */\n tag_105\n /* \"contracts/ERC721A.sol\":8948:8950 to */\n dup4\n /* \"contracts/ERC721A.sol\":8952:8959 tokenId */\n dup4\n /* \"contracts/ERC721A.sol\":8961:8966 owner */\n dup4\n /* \"contracts/ERC721A.sol\":8939:8947 _approve */\n tag_106\n /* \"contracts/ERC721A.sol\":8939:8967 _approve(to, tokenId, owner) */\n jump\t// in\n tag_105:\n /* \"contracts/ERC721A.sol\":8674:8974 {... */\n pop\n /* \"contracts/ERC721A.sol\":8612:8974 function approve(address to, uint256 tokenId) public override {... */\n pop\n pop\n jump\t// out\n /* \"contracts/ERC721A.sol\":3822:4119 function totalSupply() public view returns (uint256) {... */\n tag_41:\n /* \"contracts/ERC721A.sol\":3866:3873 uint256 */\n 0x00\n /* \"contracts/ERC721A.sol\":4087:4102 _startTokenId() */\n tag_108\n /* \"contracts/ERC721A.sol\":4087:4100 _startTokenId */\n tag_109\n /* \"contracts/ERC721A.sol\":4087:4102 _startTokenId() */\n jump\t// in\n tag_108:\n /* \"contracts/ERC721A.sol\":4072:4084 _burnCounter */\n sload(0x01)\n /* \"contracts/ERC721A.sol\":4056:4069 _currentIndex */\n sload(0x00)\n /* \"contracts/ERC721A.sol\":4056:4084 _currentIndex - _burnCounter */\n sub\n /* \"contracts/ERC721A.sol\":4056:4102 _currentIndex - _burnCounter - _startTokenId() */\n sub\n /* \"contracts/ERC721A.sol\":4049:4102 return _currentIndex - _burnCounter - _startTokenId() */\n swap1\n pop\n /* \"contracts/ERC721A.sol\":3822:4119 function totalSupply() public view returns (uint256) {... */\n swap1\n jump\t// out\n /* \"contracts/ERC721A.sol\":9874:10038 function transferFrom(... */\n tag_47:\n /* \"contracts/ERC721A.sol\":10003:10031 _transfer(from, to, tokenId) */\n tag_111\n /* \"contracts/ERC721A.sol\":10013:10017 from */\n dup4\n /* \"contracts/ERC721A.sol\":10019:10021 to */\n dup4\n /* \"contracts/ERC721A.sol\":10023:10030 tokenId */\n dup4\n /* \"contracts/ERC721A.sol\":10003:10012 _transfer */\n tag_112\n /* \"contracts/ERC721A.sol\":10003:10031 _transfer(from, to, tokenId) */\n jump\t// in\n tag_111:\n /* \"contracts/ERC721A.sol\":9874:10038 function transferFrom(... */\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/ERC721A.sol\":10104:10283 function safeTransferFrom(... */\n tag_50:\n /* \"contracts/ERC721A.sol\":10237:10276 safeTransferFrom(from, to, tokenId, '') */\n tag_114\n /* \"contracts/ERC721A.sol\":10254:10258 from */\n dup4\n /* \"contracts/ERC721A.sol\":10260:10262 to */\n dup4\n /* \"contracts/ERC721A.sol\":10264:10271 tokenId */\n dup4\n /* \"contracts/ERC721A.sol\":10237:10276 safeTransferFrom(from, to, tokenId, '') */\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n /* \"contracts/ERC721A.sol\":10237:10253 safeTransferFrom */\n tag_70\n /* \"contracts/ERC721A.sol\":10237:10276 safeTransferFrom(from, to, tokenId, '') */\n jump\t// in\n tag_114:\n /* \"contracts/ERC721A.sol\":10104:10283 function safeTransferFrom(... */\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/ERC721A.sol\":7394:7517 function ownerOf(uint256 tokenId) public view override returns (address) {... */\n tag_53:\n /* \"contracts/ERC721A.sol\":7458:7465 address */\n 0x00\n /* \"contracts/ERC721A.sol\":7484:7505 _ownershipOf(tokenId) */\n tag_116\n /* \"contracts/ERC721A.sol\":7497:7504 tokenId */\n dup3\n /* \"contracts/ERC721A.sol\":7484:7496 _ownershipOf */\n tag_117\n /* \"contracts/ERC721A.sol\":7484:7505 _ownershipOf(tokenId) */\n jump\t// in\n tag_116:\n /* \"contracts/ERC721A.sol\":7484:7510 _ownershipOf(tokenId).addr */\n 0x00\n add\n mload\n /* \"contracts/ERC721A.sol\":7477:7510 return _ownershipOf(tokenId).addr */\n swap1\n pop\n /* \"contracts/ERC721A.sol\":7394:7517 function ownerOf(uint256 tokenId) public view override returns (address) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"contracts/ERC721A.sol\":4910:5113 function balanceOf(address owner) public view override returns (uint256) {... */\n tag_58:\n /* \"contracts/ERC721A.sol\":4974:4981 uint256 */\n 0x00\n /* \"contracts/ERC721A.sol\":5014:5015 0 */\n dup1\n /* \"contracts/ERC721A.sol\":4997:5016 owner == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/ERC721A.sol\":4997:5002 owner */\n dup3\n /* \"contracts/ERC721A.sol\":4997:5016 owner == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"contracts/ERC721A.sol\":4993:5053 if (owner == address(0)) revert BalanceQueryForZeroAddress() */\n tag_119\n jumpi\n /* \"contracts/ERC721A.sol\":5025:5053 BalanceQueryForZeroAddress() */\n mload(0x40)\n 0x8f4eb60400000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"contracts/ERC721A.sol\":4993:5053 if (owner == address(0)) revert BalanceQueryForZeroAddress() */\n tag_119:\n /* \"contracts/ERC721A.sol\":5078:5090 _addressData */\n 0x05\n /* \"contracts/ERC721A.sol\":5078:5097 _addressData[owner] */\n 0x00\n /* \"contracts/ERC721A.sol\":5091:5096 owner */\n dup4\n /* \"contracts/ERC721A.sol\":5078:5097 _addressData[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/ERC721A.sol\":5078:5105 _addressData[owner].balance */\n 0x00\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffff\n and\n /* \"contracts/ERC721A.sol\":5070:5106 uint256(_addressData[owner].balance) */\n 0xffffffffffffffff\n and\n /* \"contracts/ERC721A.sol\":5063:5106 return uint256(_addressData[owner].balance) */\n swap1\n pop\n /* \"contracts/ERC721A.sol\":4910:5113 function balanceOf(address owner) public view override returns (uint256) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"contracts/ERC721A.sol\":7741:7843 function symbol() public view virtual override returns (string memory) {... */\n tag_61:\n /* \"contracts/ERC721A.sol\":7797:7810 string memory */\n 0x60\n /* \"contracts/ERC721A.sol\":7829:7836 _symbol */\n 0x03\n /* \"contracts/ERC721A.sol\":7822:7836 return _symbol */\n dup1\n sload\n tag_121\n swap1\n tag_87\n jump\t// in\n tag_121:\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_122\n swap1\n tag_87\n jump\t// in\n tag_122:\n dup1\n iszero\n tag_123\n jumpi\n dup1\n 0x1f\n lt\n tag_124\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_123)\n tag_124:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_125:\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_125\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_123:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"contracts/ERC721A.sol\":7741:7843 function symbol() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"contracts/ERC721A.sol\":9302:9584 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n tag_66:\n /* \"contracts/ERC721A.sol\":9412:9424 _msgSender() */\n tag_127\n /* \"contracts/ERC721A.sol\":9412:9422 _msgSender */\n tag_100\n /* \"contracts/ERC721A.sol\":9412:9424 _msgSender() */\n jump\t// in\n tag_127:\n /* \"contracts/ERC721A.sol\":9400:9424 operator == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/ERC721A.sol\":9400:9408 operator */\n dup3\n /* \"contracts/ERC721A.sol\":9400:9424 operator == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"contracts/ERC721A.sol\":9396:9450 if (operator == _msgSender()) revert ApproveToCaller() */\n tag_128\n jumpi\n /* \"contracts/ERC721A.sol\":9433:9450 ApproveToCaller() */\n mload(0x40)\n 0xb06307db00000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"contracts/ERC721A.sol\":9396:9450 if (operator == _msgSender()) revert ApproveToCaller() */\n tag_128:\n /* \"contracts/ERC721A.sol\":9506:9514 approved */\n dup1\n /* \"contracts/ERC721A.sol\":9461:9479 _operatorApprovals */\n 0x07\n /* \"contracts/ERC721A.sol\":9461:9493 _operatorApprovals[_msgSender()] */\n 0x00\n /* \"contracts/ERC721A.sol\":9480:9492 _msgSender() */\n tag_129\n /* \"contracts/ERC721A.sol\":9480:9490 _msgSender */\n tag_100\n /* \"contracts/ERC721A.sol\":9480:9492 _msgSender() */\n jump\t// in\n tag_129:\n /* \"contracts/ERC721A.sol\":9461:9493 _operatorApprovals[_msgSender()] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/ERC721A.sol\":9461:9503 _operatorApprovals[_msgSender()][operator] */\n 0x00\n /* \"contracts/ERC721A.sol\":9494:9502 operator */\n dup5\n /* \"contracts/ERC721A.sol\":9461:9503 _operatorApprovals[_msgSender()][operator] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"contracts/ERC721A.sol\":9461:9514 _operatorApprovals[_msgSender()][operator] = approved */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n iszero\n iszero\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/ERC721A.sol\":9558:9566 operator */\n dup2\n /* \"contracts/ERC721A.sol\":9529:9577 ApprovalForAll(_msgSender(), operator, approved) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/ERC721A.sol\":9544:9556 _msgSender() */\n tag_130\n /* \"contracts/ERC721A.sol\":9544:9554 _msgSender */\n tag_100\n /* \"contracts/ERC721A.sol\":9544:9556 _msgSender() */\n jump\t// in\n tag_130:\n /* \"contracts/ERC721A.sol\":9529:9577 ApprovalForAll(_msgSender(), operator, approved) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31\n /* \"contracts/ERC721A.sol\":9568:9576 approved */\n dup4\n /* \"contracts/ERC721A.sol\":9529:9577 ApprovalForAll(_msgSender(), operator, approved) */\n mload(0x40)\n tag_131\n swap2\n swap1\n tag_25\n jump\t// in\n tag_131:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"contracts/ERC721A.sol\":9302:9584 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n pop\n pop\n jump\t// out\n /* \"contracts/ERC721A.sol\":10349:10708 function safeTransferFrom(... */\n tag_70:\n /* \"contracts/ERC721A.sol\":10510:10538 _transfer(from, to, tokenId) */\n tag_133\n /* \"contracts/ERC721A.sol\":10520:10524 from */\n dup5\n /* \"contracts/ERC721A.sol\":10526:10528 to */\n dup5\n /* \"contracts/ERC721A.sol\":10530:10537 tokenId */\n dup5\n /* \"contracts/ERC721A.sol\":10510:10519 _transfer */\n tag_112\n /* \"contracts/ERC721A.sol\":10510:10538 _transfer(from, to, tokenId) */\n jump\t// in\n tag_133:\n /* \"contracts/ERC721A.sol\":10552:10567 to.isContract() */\n tag_134\n /* \"contracts/ERC721A.sol\":10552:10554 to */\n dup4\n /* \"contracts/ERC721A.sol\":10552:10565 to.isContract */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n tag_135\n /* \"contracts/ERC721A.sol\":10552:10567 to.isContract() */\n jump\t// in\n tag_134:\n /* \"contracts/ERC721A.sol\":10552:10628 to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data) */\n dup1\n iszero\n tag_136\n jumpi\n pop\n /* \"contracts/ERC721A.sol\":10572:10628 _checkContractOnERC721Received(from, to, tokenId, _data) */\n tag_137\n /* \"contracts/ERC721A.sol\":10603:10607 from */\n dup5\n /* \"contracts/ERC721A.sol\":10609:10611 to */\n dup5\n /* \"contracts/ERC721A.sol\":10613:10620 tokenId */\n dup5\n /* \"contracts/ERC721A.sol\":10622:10627 _data */\n dup5\n /* \"contracts/ERC721A.sol\":10572:10602 _checkContractOnERC721Received */\n tag_138\n /* \"contracts/ERC721A.sol\":10572:10628 _checkContractOnERC721Received(from, to, tokenId, _data) */\n jump\t// in\n tag_137:\n /* \"contracts/ERC721A.sol\":10571:10628 !_checkContractOnERC721Received(from, to, tokenId, _data) */\n iszero\n /* \"contracts/ERC721A.sol\":10552:10628 to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data) */\n tag_136:\n /* \"contracts/ERC721A.sol\":10548:10702 if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {... */\n iszero\n tag_139\n jumpi\n /* \"contracts/ERC721A.sol\":10651:10691 TransferToNonERC721ReceiverImplementer() */\n mload(0x40)\n 0xd1a57ed600000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"contracts/ERC721A.sol\":10548:10702 if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {... */\n tag_139:\n /* \"contracts/ERC721A.sol\":10349:10708 function safeTransferFrom(... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/ERC721A.sol\":7909:8222 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n tag_73:\n /* \"contracts/ERC721A.sol\":7982:7995 string memory */\n 0x60\n /* \"contracts/ERC721A.sol\":8012:8028 _exists(tokenId) */\n tag_141\n /* \"contracts/ERC721A.sol\":8020:8027 tokenId */\n dup3\n /* \"contracts/ERC721A.sol\":8012:8019 _exists */\n tag_94\n /* \"contracts/ERC721A.sol\":8012:8028 _exists(tokenId) */\n jump\t// in\n tag_141:\n /* \"contracts/ERC721A.sol\":8007:8066 if (!_exists(tokenId)) revert URIQueryForNonexistentToken() */\n tag_142\n jumpi\n /* \"contracts/ERC721A.sol\":8037:8066 URIQueryForNonexistentToken() */\n mload(0x40)\n 0xa14c4b5000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"contracts/ERC721A.sol\":8007:8066 if (!_exists(tokenId)) revert URIQueryForNonexistentToken() */\n tag_142:\n /* \"contracts/ERC721A.sol\":8077:8098 string memory baseURI */\n 0x00\n /* \"contracts/ERC721A.sol\":8101:8111 _baseURI() */\n tag_143\n /* \"contracts/ERC721A.sol\":8101:8109 _baseURI */\n tag_144\n /* \"contracts/ERC721A.sol\":8101:8111 _baseURI() */\n jump\t// in\n tag_143:\n /* \"contracts/ERC721A.sol\":8077:8111 string memory baseURI = _baseURI() */\n swap1\n pop\n /* \"contracts/ERC721A.sol\":8153:8154 0 */\n 0x00\n /* \"contracts/ERC721A.sol\":8134:8141 baseURI */\n dup2\n /* \"contracts/ERC721A.sol\":8128:8149 bytes(baseURI).length */\n mload\n /* \"contracts/ERC721A.sol\":8128:8154 bytes(baseURI).length != 0 */\n sub\n /* \"contracts/ERC721A.sol\":8128:8215 bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '' */\n tag_145\n jumpi\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n jump(tag_146)\n tag_145:\n /* \"contracts/ERC721A.sol\":8181:8188 baseURI */\n dup1\n /* \"contracts/ERC721A.sol\":8190:8208 tokenId.toString() */\n tag_147\n /* \"contracts/ERC721A.sol\":8190:8197 tokenId */\n dup5\n /* \"contracts/ERC721A.sol\":8190:8206 tokenId.toString */\n tag_148\n /* \"contracts/ERC721A.sol\":8190:8208 tokenId.toString() */\n jump\t// in\n tag_147:\n /* \"contracts/ERC721A.sol\":8164:8209 abi.encodePacked(baseURI, tokenId.toString()) */\n add(0x20, mload(0x40))\n tag_149\n swap3\n swap2\n swap1\n tag_150\n jump\t// in\n tag_149:\n mload(0x40)\n 0x20\n dup2\n dup4\n sub\n sub\n dup2\n mstore\n swap1\n 0x40\n mstore\n /* \"contracts/ERC721A.sol\":8128:8215 bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '' */\n tag_146:\n /* \"contracts/ERC721A.sol\":8121:8215 return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '' */\n swap2\n pop\n pop\n /* \"contracts/ERC721A.sol\":7909:8222 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"contracts/ERC721A.sol\":9650:9812 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n tag_78:\n /* \"contracts/ERC721A.sol\":9747:9751 bool */\n 0x00\n /* \"contracts/ERC721A.sol\":9770:9788 _operatorApprovals */\n 0x07\n /* \"contracts/ERC721A.sol\":9770:9795 _operatorApprovals[owner] */\n 0x00\n /* \"contracts/ERC721A.sol\":9789:9794 owner */\n dup5\n /* \"contracts/ERC721A.sol\":9770:9795 _operatorApprovals[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/ERC721A.sol\":9770:9805 _operatorApprovals[owner][operator] */\n 0x00\n /* \"contracts/ERC721A.sol\":9796:9804 operator */\n dup4\n /* \"contracts/ERC721A.sol\":9770:9805 _operatorApprovals[owner][operator] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"contracts/ERC721A.sol\":9763:9805 return _operatorApprovals[owner][operator] */\n swap1\n pop\n /* \"contracts/ERC721A.sol\":9650:9812 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":829:984 function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {... */\n tag_84:\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":914:918 bool */\n 0x00\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":952:977 type(IERC165).interfaceId */\n 0x01ffc9a700000000000000000000000000000000000000000000000000000000\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":937:977 interfaceId == type(IERC165).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":937:948 interfaceId */\n dup3\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":937:977 interfaceId == type(IERC165).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":930:977 return interfaceId == type(IERC165).interfaceId */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":829:984 function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"contracts/ERC721A.sol\":10954:11126 function _exists(uint256 tokenId) internal view returns (bool) {... */\n tag_94:\n /* \"contracts/ERC721A.sol\":11011:11015 bool */\n 0x00\n /* \"contracts/ERC721A.sol\":11053:11060 tokenId */\n dup2\n /* \"contracts/ERC721A.sol\":11034:11049 _startTokenId() */\n tag_154\n /* \"contracts/ERC721A.sol\":11034:11047 _startTokenId */\n tag_109\n /* \"contracts/ERC721A.sol\":11034:11049 _startTokenId() */\n jump\t// in\n tag_154:\n /* \"contracts/ERC721A.sol\":11034:11060 _startTokenId() <= tokenId */\n gt\n iszero\n /* \"contracts/ERC721A.sol\":11034:11087 _startTokenId() <= tokenId && tokenId < _currentIndex */\n dup1\n iszero\n tag_155\n jumpi\n pop\n /* \"contracts/ERC721A.sol\":11074:11087 _currentIndex */\n sload(0x00)\n /* \"contracts/ERC721A.sol\":11064:11071 tokenId */\n dup3\n /* \"contracts/ERC721A.sol\":11064:11087 tokenId < _currentIndex */\n lt\n /* \"contracts/ERC721A.sol\":11034:11087 _startTokenId() <= tokenId && tokenId < _currentIndex */\n tag_155:\n /* \"contracts/ERC721A.sol\":11034:11119 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned */\n dup1\n iszero\n tag_156\n jumpi\n pop\n /* \"contracts/ERC721A.sol\":11092:11103 _ownerships */\n 0x04\n /* \"contracts/ERC721A.sol\":11092:11112 _ownerships[tokenId] */\n 0x00\n /* \"contracts/ERC721A.sol\":11104:11111 tokenId */\n dup4\n /* \"contracts/ERC721A.sol\":11092:11112 _ownerships[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/ERC721A.sol\":11092:11119 _ownerships[tokenId].burned */\n 0x00\n add\n 0x1c\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"contracts/ERC721A.sol\":11091:11119 !_ownerships[tokenId].burned */\n iszero\n /* \"contracts/ERC721A.sol\":11034:11119 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned */\n tag_156:\n /* \"contracts/ERC721A.sol\":11027:11119 return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned */\n swap1\n pop\n /* \"contracts/ERC721A.sol\":10954:11126 function _exists(uint256 tokenId) internal view returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n tag_100:\n /* \"@openzeppelin/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"@openzeppelin/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"contracts/ERC721A.sol\":18894:19083 function _approve(... */\n tag_106:\n /* \"contracts/ERC721A.sol\":19031:19033 to */\n dup3\n /* \"contracts/ERC721A.sol\":19004:19019 _tokenApprovals */\n 0x06\n /* \"contracts/ERC721A.sol\":19004:19028 _tokenApprovals[tokenId] */\n 0x00\n /* \"contracts/ERC721A.sol\":19020:19027 tokenId */\n dup5\n /* \"contracts/ERC721A.sol\":19004:19028 _tokenApprovals[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"contracts/ERC721A.sol\":19004:19033 _tokenApprovals[tokenId] = to */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/ERC721A.sol\":19068:19075 tokenId */\n dup2\n /* \"contracts/ERC721A.sol\":19064:19066 to */\n dup4\n /* \"contracts/ERC721A.sol\":19048:19076 Approval(owner, to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/ERC721A.sol\":19057:19062 owner */\n dup3\n /* \"contracts/ERC721A.sol\":19048:19076 Approval(owner, to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log4\n /* \"contracts/ERC721A.sol\":18894:19083 function _approve(... */\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/ERC721A.sol\":3603:3693 function _startTokenId() internal view virtual returns (uint256) {... */\n tag_109:\n /* \"contracts/ERC721A.sol\":3659:3666 uint256 */\n 0x00\n /* \"contracts/ERC721A.sol\":3603:3693 function _startTokenId() internal view virtual returns (uint256) {... */\n swap1\n jump\t// out\n /* \"contracts/ERC721A.sol\":13964:16046 function _transfer(... */\n tag_112:\n /* \"contracts/ERC721A.sol\":14074:14109 TokenOwnership memory prevOwnership */\n 0x00\n /* \"contracts/ERC721A.sol\":14112:14133 _ownershipOf(tokenId) */\n tag_161\n /* \"contracts/ERC721A.sol\":14125:14132 tokenId */\n dup3\n /* \"contracts/ERC721A.sol\":14112:14124 _ownershipOf */\n tag_117\n /* \"contracts/ERC721A.sol\":14112:14133 _ownershipOf(tokenId) */\n jump\t// in\n tag_161:\n /* \"contracts/ERC721A.sol\":14074:14133 TokenOwnership memory prevOwnership = _ownershipOf(tokenId) */\n swap1\n pop\n /* \"contracts/ERC721A.sol\":14170:14174 from */\n dup4\n /* \"contracts/ERC721A.sol\":14148:14174 prevOwnership.addr != from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/ERC721A.sol\":14148:14161 prevOwnership */\n dup2\n /* \"contracts/ERC721A.sol\":14148:14166 prevOwnership.addr */\n 0x00\n add\n mload\n /* \"contracts/ERC721A.sol\":14148:14174 prevOwnership.addr != from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"contracts/ERC721A.sol\":14144:14211 if (prevOwnership.addr != from) revert TransferFromIncorrectOwner() */\n tag_162\n jumpi\n /* \"contracts/ERC721A.sol\":14183:14211 TransferFromIncorrectOwner() */\n mload(0x40)\n 0xa114810000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"contracts/ERC721A.sol\":14144:14211 if (prevOwnership.addr != from) revert TransferFromIncorrectOwner() */\n tag_162:\n /* \"contracts/ERC721A.sol\":14222:14244 bool isApprovedOrOwner */\n 0x00\n /* \"contracts/ERC721A.sol\":14264:14268 from */\n dup5\n /* \"contracts/ERC721A.sol\":14248:14268 _msgSender() == from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/ERC721A.sol\":14248:14260 _msgSender() */\n tag_163\n /* \"contracts/ERC721A.sol\":14248:14258 _msgSender */\n tag_100\n /* \"contracts/ERC721A.sol\":14248:14260 _msgSender() */\n jump\t// in\n tag_163:\n /* \"contracts/ERC721A.sol\":14248:14268 _msgSender() == from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"contracts/ERC721A.sol\":14248:14320 _msgSender() == from ||... */\n dup1\n tag_164\n jumpi\n pop\n /* \"contracts/ERC721A.sol\":14284:14320 isApprovedForAll(from, _msgSender()) */\n tag_165\n /* \"contracts/ERC721A.sol\":14301:14305 from */\n dup6\n /* \"contracts/ERC721A.sol\":14307:14319 _msgSender() */\n tag_166\n /* \"contracts/ERC721A.sol\":14307:14317 _msgSender */\n tag_100\n /* \"contracts/ERC721A.sol\":14307:14319 _msgSender() */\n jump\t// in\n tag_166:\n /* \"contracts/ERC721A.sol\":14284:14300 isApprovedForAll */\n tag_78\n /* \"contracts/ERC721A.sol\":14284:14320 isApprovedForAll(from, _msgSender()) */\n jump\t// in\n tag_165:\n /* \"contracts/ERC721A.sol\":14248:14320 _msgSender() == from ||... */\n tag_164:\n /* \"contracts/ERC721A.sol\":14248:14372 _msgSender() == from ||... */\n dup1\n tag_167\n jumpi\n pop\n /* \"contracts/ERC721A.sol\":14360:14372 _msgSender() */\n tag_168\n /* \"contracts/ERC721A.sol\":14360:14370 _msgSender */\n tag_100\n /* \"contracts/ERC721A.sol\":14360:14372 _msgSender() */\n jump\t// in\n tag_168:\n /* \"contracts/ERC721A.sol\":14336:14372 getApproved(tokenId) == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/ERC721A.sol\":14336:14356 getApproved(tokenId) */\n tag_169\n /* \"contracts/ERC721A.sol\":14348:14355 tokenId */\n dup5\n /* \"contracts/ERC721A.sol\":14336:14347 getApproved */\n tag_33\n /* \"contracts/ERC721A.sol\":14336:14356 getApproved(tokenId) */\n jump\t// in\n tag_169:\n /* \"contracts/ERC721A.sol\":14336:14372 getApproved(tokenId) == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"contracts/ERC721A.sol\":14248:14372 _msgSender() == from ||... */\n tag_167:\n /* \"contracts/ERC721A.sol\":14222:14373 bool isApprovedOrOwner = (_msgSender() == from ||... */\n swap1\n pop\n /* \"contracts/ERC721A.sol\":14389:14406 isApprovedOrOwner */\n dup1\n /* \"contracts/ERC721A.sol\":14384:14450 if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved() */\n tag_170\n jumpi\n /* \"contracts/ERC721A.sol\":14415:14450 TransferCallerNotOwnerNorApproved() */\n mload(0x40)\n 0x59c896be00000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"contracts/ERC721A.sol\":14384:14450 if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved() */\n tag_170:\n /* \"contracts/ERC721A.sol\":14478:14479 0 */\n 0x00\n /* \"contracts/ERC721A.sol\":14464:14480 to == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/ERC721A.sol\":14464:14466 to */\n dup5\n /* \"contracts/ERC721A.sol\":14464:14480 to == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"contracts/ERC721A.sol\":14460:14512 if (to == address(0)) revert TransferToZeroAddress() */\n tag_171\n jumpi\n /* \"contracts/ERC721A.sol\":14489:14512 TransferToZeroAddress() */\n mload(0x40)\n 0xea553b3400000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"contracts/ERC721A.sol\":14460:14512 if (to == address(0)) revert TransferToZeroAddress() */\n tag_171:\n /* \"contracts/ERC721A.sol\":14523:14566 _beforeTokenTransfers(from, to, tokenId, 1) */\n tag_172\n /* \"contracts/ERC721A.sol\":14545:14549 from */\n dup6\n /* \"contracts/ERC721A.sol\":14551:14553 to */\n dup6\n /* \"contracts/ERC721A.sol\":14555:14562 tokenId */\n dup6\n /* \"contracts/ERC721A.sol\":14564:14565 1 */\n 0x01\n /* \"contracts/ERC721A.sol\":14523:14544 _beforeTokenTransfers */\n tag_173\n /* \"contracts/ERC721A.sol\":14523:14566 _beforeTokenTransfers(from, to, tokenId, 1) */\n jump\t// in\n tag_172:\n /* \"contracts/ERC721A.sol\":14628:14663 _approve(address(0), tokenId, from) */\n tag_174\n /* \"contracts/ERC721A.sol\":14645:14646 0 */\n 0x00\n /* \"contracts/ERC721A.sol\":14649:14656 tokenId */\n dup5\n /* \"contracts/ERC721A.sol\":14658:14662 from */\n dup8\n /* \"contracts/ERC721A.sol\":14628:14636 _approve */\n tag_106\n /* \"contracts/ERC721A.sol\":14628:14663 _approve(address(0), tokenId, from) */\n jump\t// in\n tag_174:\n /* \"contracts/ERC721A.sol\":14983:14984 1 */\n 0x01\n /* \"contracts/ERC721A.sol\":14953:14965 _addressData */\n 0x05\n /* \"contracts/ERC721A.sol\":14953:14971 _addressData[from] */\n 0x00\n /* \"contracts/ERC721A.sol\":14966:14970 from */\n dup8\n /* \"contracts/ERC721A.sol\":14953:14971 _addressData[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/ERC721A.sol\":14953:14979 _addressData[from].balance */\n 0x00\n add\n 0x00\n /* \"contracts/ERC721A.sol\":14953:14984 _addressData[from].balance -= 1 */\n dup3\n dup3\n dup3\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffff\n and\n sub\n swap3\n pop\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/ERC721A.sol\":15026:15027 1 */\n 0x01\n /* \"contracts/ERC721A.sol\":14998:15010 _addressData */\n 0x05\n /* \"contracts/ERC721A.sol\":14998:15014 _addressData[to] */\n 0x00\n /* \"contracts/ERC721A.sol\":15011:15013 to */\n dup7\n /* \"contracts/ERC721A.sol\":14998:15014 _addressData[to] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/ERC721A.sol\":14998:15022 _addressData[to].balance */\n 0x00\n add\n 0x00\n /* \"contracts/ERC721A.sol\":14998:15027 _addressData[to].balance += 1 */\n dup3\n dup3\n dup3\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffff\n and\n add\n swap3\n pop\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/ERC721A.sol\":15042:15073 TokenOwnership storage currSlot */\n 0x00\n /* \"contracts/ERC721A.sol\":15076:15087 _ownerships */\n 0x04\n /* \"contracts/ERC721A.sol\":15076:15096 _ownerships[tokenId] */\n 0x00\n /* \"contracts/ERC721A.sol\":15088:15095 tokenId */\n dup6\n /* \"contracts/ERC721A.sol\":15076:15096 _ownerships[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/ERC721A.sol\":15042:15096 TokenOwnership storage currSlot = _ownerships[tokenId] */\n swap1\n pop\n /* \"contracts/ERC721A.sol\":15126:15128 to */\n dup5\n /* \"contracts/ERC721A.sol\":15110:15118 currSlot */\n dup2\n /* \"contracts/ERC721A.sol\":15110:15123 currSlot.addr */\n 0x00\n add\n 0x00\n /* \"contracts/ERC721A.sol\":15110:15128 currSlot.addr = to */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/ERC721A.sol\":15175:15190 block.timestamp */\n timestamp\n /* \"contracts/ERC721A.sol\":15142:15150 currSlot */\n dup2\n /* \"contracts/ERC721A.sol\":15142:15165 currSlot.startTimestamp */\n 0x00\n add\n 0x14\n /* \"contracts/ERC721A.sol\":15142:15191 currSlot.startTimestamp = uint64(block.timestamp) */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/ERC721A.sol\":15439:15458 uint256 nextTokenId */\n 0x00\n /* \"contracts/ERC721A.sol\":15471:15472 1 */\n 0x01\n /* \"contracts/ERC721A.sol\":15461:15468 tokenId */\n dup6\n /* \"contracts/ERC721A.sol\":15461:15472 tokenId + 1 */\n add\n /* \"contracts/ERC721A.sol\":15439:15472 uint256 nextTokenId = tokenId + 1 */\n swap1\n pop\n /* \"contracts/ERC721A.sol\":15486:15517 TokenOwnership storage nextSlot */\n 0x00\n /* \"contracts/ERC721A.sol\":15520:15531 _ownerships */\n 0x04\n /* \"contracts/ERC721A.sol\":15520:15544 _ownerships[nextTokenId] */\n 0x00\n /* \"contracts/ERC721A.sol\":15532:15543 nextTokenId */\n dup4\n /* \"contracts/ERC721A.sol\":15520:15544 _ownerships[nextTokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/ERC721A.sol\":15486:15544 TokenOwnership storage nextSlot = _ownerships[nextTokenId] */\n swap1\n pop\n /* \"contracts/ERC721A.sol\":15587:15588 0 */\n 0x00\n /* \"contracts/ERC721A.sol\":15562:15589 nextSlot.addr == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/ERC721A.sol\":15562:15570 nextSlot */\n dup2\n /* \"contracts/ERC721A.sol\":15562:15575 nextSlot.addr */\n 0x00\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/ERC721A.sol\":15562:15589 nextSlot.addr == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"contracts/ERC721A.sol\":15558:15935 if (nextSlot.addr == address(0)) {... */\n tag_175\n jumpi\n /* \"contracts/ERC721A.sol\":15769:15782 _currentIndex */\n sload(0x00)\n /* \"contracts/ERC721A.sol\":15754:15765 nextTokenId */\n dup3\n /* \"contracts/ERC721A.sol\":15754:15782 nextTokenId != _currentIndex */\n eq\n /* \"contracts/ERC721A.sol\":15750:15921 if (nextTokenId != _currentIndex) {... */\n tag_176\n jumpi\n /* \"contracts/ERC721A.sol\":15822:15826 from */\n dup8\n /* \"contracts/ERC721A.sol\":15806:15814 nextSlot */\n dup2\n /* \"contracts/ERC721A.sol\":15806:15819 nextSlot.addr */\n 0x00\n add\n 0x00\n /* \"contracts/ERC721A.sol\":15806:15826 nextSlot.addr = from */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/ERC721A.sol\":15874:15887 prevOwnership */\n dup5\n /* \"contracts/ERC721A.sol\":15874:15902 prevOwnership.startTimestamp */\n 0x20\n add\n mload\n /* \"contracts/ERC721A.sol\":15848:15856 nextSlot */\n dup2\n /* \"contracts/ERC721A.sol\":15848:15871 nextSlot.startTimestamp */\n 0x00\n add\n 0x14\n /* \"contracts/ERC721A.sol\":15848:15902 nextSlot.startTimestamp = prevOwnership.startTimestamp */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/ERC721A.sol\":15750:15921 if (nextTokenId != _currentIndex) {... */\n tag_176:\n /* \"contracts/ERC721A.sol\":15558:15935 if (nextSlot.addr == address(0)) {... */\n tag_175:\n /* \"contracts/ERC721A.sol\":14929:15945 unchecked {... */\n pop\n pop\n pop\n /* \"contracts/ERC721A.sol\":15979:15986 tokenId */\n dup3\n /* \"contracts/ERC721A.sol\":15975:15977 to */\n dup5\n /* \"contracts/ERC721A.sol\":15960:15987 Transfer(from, to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/ERC721A.sol\":15969:15973 from */\n dup7\n /* \"contracts/ERC721A.sol\":15960:15987 Transfer(from, to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log4\n /* \"contracts/ERC721A.sol\":15997:16039 _afterTokenTransfers(from, to, tokenId, 1) */\n tag_177\n /* \"contracts/ERC721A.sol\":16018:16022 from */\n dup6\n /* \"contracts/ERC721A.sol\":16024:16026 to */\n dup6\n /* \"contracts/ERC721A.sol\":16028:16035 tokenId */\n dup6\n /* \"contracts/ERC721A.sol\":16037:16038 1 */\n 0x01\n /* \"contracts/ERC721A.sol\":15997:16017 _afterTokenTransfers */\n tag_178\n /* \"contracts/ERC721A.sol\":15997:16039 _afterTokenTransfers(from, to, tokenId, 1) */\n jump\t// in\n tag_177:\n /* \"contracts/ERC721A.sol\":14064:16046 {... */\n pop\n pop\n /* \"contracts/ERC721A.sol\":13964:16046 function _transfer(... */\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/ERC721A.sol\":6253:7337 function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {... */\n tag_117:\n /* \"contracts/ERC721A.sol\":6315:6336 TokenOwnership memory */\n tag_179\n tag_180\n jump\t// in\n tag_179:\n /* \"contracts/ERC721A.sol\":6348:6360 uint256 curr */\n 0x00\n /* \"contracts/ERC721A.sol\":6363:6370 tokenId */\n dup3\n /* \"contracts/ERC721A.sol\":6348:6370 uint256 curr = tokenId */\n swap1\n pop\n /* \"contracts/ERC721A.sol\":6428:6432 curr */\n dup1\n /* \"contracts/ERC721A.sol\":6409:6424 _startTokenId() */\n tag_182\n /* \"contracts/ERC721A.sol\":6409:6422 _startTokenId */\n tag_109\n /* \"contracts/ERC721A.sol\":6409:6424 _startTokenId() */\n jump\t// in\n tag_182:\n /* \"contracts/ERC721A.sol\":6409:6432 _startTokenId() <= curr */\n gt\n iszero\n /* \"contracts/ERC721A.sol\":6409:6456 _startTokenId() <= curr && curr < _currentIndex */\n dup1\n iszero\n tag_183\n jumpi\n pop\n /* \"contracts/ERC721A.sol\":6443:6456 _currentIndex */\n sload(0x00)\n /* \"contracts/ERC721A.sol\":6436:6440 curr */\n dup2\n /* \"contracts/ERC721A.sol\":6436:6456 curr < _currentIndex */\n lt\n /* \"contracts/ERC721A.sol\":6409:6456 _startTokenId() <= curr && curr < _currentIndex */\n tag_183:\n /* \"contracts/ERC721A.sol\":6405:7273 if (_startTokenId() <= curr && curr < _currentIndex) {... */\n iszero\n tag_184\n jumpi\n /* \"contracts/ERC721A.sol\":6476:6507 TokenOwnership memory ownership */\n 0x00\n /* \"contracts/ERC721A.sol\":6510:6521 _ownerships */\n 0x04\n /* \"contracts/ERC721A.sol\":6510:6527 _ownerships[curr] */\n 0x00\n /* \"contracts/ERC721A.sol\":6522:6526 curr */\n dup4\n /* \"contracts/ERC721A.sol\":6510:6527 _ownerships[curr] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/ERC721A.sol\":6476:6527 TokenOwnership memory ownership = _ownerships[curr] */\n mload(0x40)\n dup1\n 0x60\n add\n 0x40\n mstore\n swap1\n dup2\n 0x00\n dup3\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n 0x00\n dup3\n add\n 0x14\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffff\n and\n 0xffffffffffffffff\n and\n 0xffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n 0x00\n dup3\n add\n 0x1c\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n iszero\n iszero\n iszero\n iszero\n dup2\n mstore\n pop\n pop\n swap1\n pop\n /* \"contracts/ERC721A.sol\":6550:6559 ownership */\n dup1\n /* \"contracts/ERC721A.sol\":6550:6566 ownership.burned */\n 0x40\n add\n mload\n /* \"contracts/ERC721A.sol\":6545:7259 if (!ownership.burned) {... */\n tag_185\n jumpi\n /* \"contracts/ERC721A.sol\":6620:6621 0 */\n 0x00\n /* \"contracts/ERC721A.sol\":6594:6622 ownership.addr != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/ERC721A.sol\":6594:6603 ownership */\n dup2\n /* \"contracts/ERC721A.sol\":6594:6608 ownership.addr */\n 0x00\n add\n mload\n /* \"contracts/ERC721A.sol\":6594:6622 ownership.addr != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"contracts/ERC721A.sol\":6590:6689 if (ownership.addr != address(0)) {... */\n tag_186\n jumpi\n /* \"contracts/ERC721A.sol\":6657:6666 ownership */\n dup1\n /* \"contracts/ERC721A.sol\":6650:6666 return ownership */\n swap3\n pop\n pop\n pop\n jump(tag_181)\n /* \"contracts/ERC721A.sol\":6590:6689 if (ownership.addr != address(0)) {... */\n tag_186:\n /* \"contracts/ERC721A.sol\":6986:7241 while (true) {... */\n tag_187:\n /* \"contracts/ERC721A.sol\":6993:6997 true */\n 0x01\n /* \"contracts/ERC721A.sol\":6986:7241 while (true) {... */\n iszero\n tag_188\n jumpi\n /* \"contracts/ERC721A.sol\":7025:7031 curr-- */\n dup2\n dup1\n 0x01\n swap1\n sub\n swap3\n pop\n pop\n /* \"contracts/ERC721A.sol\":7069:7080 _ownerships */\n 0x04\n /* \"contracts/ERC721A.sol\":7069:7086 _ownerships[curr] */\n 0x00\n /* \"contracts/ERC721A.sol\":7081:7085 curr */\n dup4\n /* \"contracts/ERC721A.sol\":7069:7086 _ownerships[curr] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/ERC721A.sol\":7057:7086 ownership = _ownerships[curr] */\n mload(0x40)\n dup1\n 0x60\n add\n 0x40\n mstore\n swap1\n dup2\n 0x00\n dup3\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n 0x00\n dup3\n add\n 0x14\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffff\n and\n 0xffffffffffffffff\n and\n 0xffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n 0x00\n dup3\n add\n 0x1c\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n iszero\n iszero\n iszero\n iszero\n dup2\n mstore\n pop\n pop\n swap1\n pop\n /* \"contracts/ERC721A.sol\":7142:7143 0 */\n 0x00\n /* \"contracts/ERC721A.sol\":7116:7144 ownership.addr != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/ERC721A.sol\":7116:7125 ownership */\n dup2\n /* \"contracts/ERC721A.sol\":7116:7130 ownership.addr */\n 0x00\n add\n mload\n /* \"contracts/ERC721A.sol\":7116:7144 ownership.addr != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"contracts/ERC721A.sol\":7112:7219 if (ownership.addr != address(0)) {... */\n tag_189\n jumpi\n /* \"contracts/ERC721A.sol\":7183:7192 ownership */\n dup1\n /* \"contracts/ERC721A.sol\":7176:7192 return ownership */\n swap3\n pop\n pop\n pop\n jump(tag_181)\n /* \"contracts/ERC721A.sol\":7112:7219 if (ownership.addr != address(0)) {... */\n tag_189:\n /* \"contracts/ERC721A.sol\":6986:7241 while (true) {... */\n jump(tag_187)\n tag_188:\n /* \"contracts/ERC721A.sol\":6545:7259 if (!ownership.burned) {... */\n tag_185:\n /* \"contracts/ERC721A.sol\":6458:7273 {... */\n pop\n /* \"contracts/ERC721A.sol\":6405:7273 if (_startTokenId() <= curr && curr < _currentIndex) {... */\n tag_184:\n /* \"contracts/ERC721A.sol\":7299:7330 OwnerQueryForNonexistentToken() */\n mload(0x40)\n 0xdf2d9b4200000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"contracts/ERC721A.sol\":6253:7337 function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {... */\n tag_181:\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Address.sol\":1175:1495 function isContract(address account) internal view returns (bool) {... */\n tag_135:\n /* \"@openzeppelin/contracts/utils/Address.sol\":1235:1239 bool */\n 0x00\n /* \"@openzeppelin/contracts/utils/Address.sol\":1487:1488 0 */\n dup1\n /* \"@openzeppelin/contracts/utils/Address.sol\":1465:1472 account */\n dup3\n /* \"@openzeppelin/contracts/utils/Address.sol\":1465:1484 account.code.length */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n extcodesize\n /* \"@openzeppelin/contracts/utils/Address.sol\":1465:1488 account.code.length > 0 */\n gt\n /* \"@openzeppelin/contracts/utils/Address.sol\":1458:1488 return account.code.length > 0 */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Address.sol\":1175:1495 function isContract(address account) internal view returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"contracts/ERC721A.sol\":19564:20214 function _checkContractOnERC721Received(... */\n tag_138:\n /* \"contracts/ERC721A.sol\":19722:19726 bool */\n 0x00\n /* \"contracts/ERC721A.sol\":19758:19760 to */\n dup4\n /* \"contracts/ERC721A.sol\":19742:19778 IERC721Receiver(to).onERC721Received */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x150b7a02\n /* \"contracts/ERC721A.sol\":19779:19791 _msgSender() */\n tag_192\n /* \"contracts/ERC721A.sol\":19779:19789 _msgSender */\n tag_100\n /* \"contracts/ERC721A.sol\":19779:19791 _msgSender() */\n jump\t// in\n tag_192:\n /* \"contracts/ERC721A.sol\":19793:19797 from */\n dup8\n /* \"contracts/ERC721A.sol\":19799:19806 tokenId */\n dup7\n /* \"contracts/ERC721A.sol\":19808:19813 _data */\n dup7\n /* \"contracts/ERC721A.sol\":19742:19814 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) */\n mload(0x40)\n dup6\n 0xffffffff\n and\n 0xe0\n shl\n dup2\n mstore\n 0x04\n add\n tag_193\n swap5\n swap4\n swap3\n swap2\n swap1\n tag_194\n jump\t// in\n tag_193:\n 0x20\n mload(0x40)\n dup1\n dup4\n sub\n dup2\n 0x00\n dup8\n gas\n call\n swap3\n pop\n pop\n pop\n dup1\n iszero\n tag_195\n jumpi\n pop\n mload(0x40)\n returndatasize\n not(0x1f)\n 0x1f\n dup3\n add\n and\n dup3\n add\n dup1\n 0x40\n mstore\n pop\n dup2\n add\n swap1\n tag_196\n swap2\n swap1\n tag_197\n jump\t// in\n tag_196:\n 0x01\n tag_195:\n /* \"contracts/ERC721A.sol\":19738:20208 try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {... */\n tag_198\n jumpi\n returndatasize\n dup1\n 0x00\n dup2\n eq\n tag_203\n jumpi\n mload(0x40)\n swap2\n pop\n and(add(returndatasize, 0x3f), not(0x1f))\n dup3\n add\n 0x40\n mstore\n returndatasize\n dup3\n mstore\n returndatasize\n 0x00\n 0x20\n dup5\n add\n returndatacopy\n jump(tag_202)\n tag_203:\n 0x60\n swap2\n pop\n tag_202:\n pop\n /* \"contracts/ERC721A.sol\":19990:19991 0 */\n 0x00\n /* \"contracts/ERC721A.sol\":19973:19979 reason */\n dup2\n /* \"contracts/ERC721A.sol\":19973:19986 reason.length */\n mload\n /* \"contracts/ERC721A.sol\":19973:19991 reason.length == 0 */\n sub\n /* \"contracts/ERC721A.sol\":19969:20198 if (reason.length == 0) {... */\n tag_204\n jumpi\n /* \"contracts/ERC721A.sol\":20018:20058 TransferToNonERC721ReceiverImplementer() */\n mload(0x40)\n 0xd1a57ed600000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"contracts/ERC721A.sol\":19969:20198 if (reason.length == 0) {... */\n tag_204:\n /* \"contracts/ERC721A.sol\":20158:20164 reason */\n dup1\n /* \"contracts/ERC721A.sol\":20152:20165 mload(reason) */\n mload\n /* \"contracts/ERC721A.sol\":20143:20149 reason */\n dup2\n /* \"contracts/ERC721A.sol\":20139:20141 32 */\n 0x20\n /* \"contracts/ERC721A.sol\":20135:20150 add(32, reason) */\n add\n /* \"contracts/ERC721A.sol\":20128:20166 revert(add(32, reason), mload(reason)) */\n revert\n /* \"contracts/ERC721A.sol\":19738:20208 try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {... */\n tag_198:\n /* \"contracts/ERC721A.sol\":19870:19915 IERC721Receiver(to).onERC721Received.selector */\n shl(0xe0, 0x150b7a02)\n /* \"contracts/ERC721A.sol\":19860:19915 retval == IERC721Receiver(to).onERC721Received.selector */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"contracts/ERC721A.sol\":19860:19866 retval */\n dup2\n /* \"contracts/ERC721A.sol\":19860:19915 retval == IERC721Receiver(to).onERC721Received.selector */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"contracts/ERC721A.sol\":19853:19915 return retval == IERC721Receiver(to).onERC721Received.selector */\n swap2\n pop\n pop\n /* \"contracts/ERC721A.sol\":19564:20214 function _checkContractOnERC721Received(... */\n swap5\n swap4\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/ERC721A.sol\":8463:8555 function _baseURI() internal view virtual returns (string memory) {... */\n tag_144:\n /* \"contracts/ERC721A.sol\":8514:8527 string memory */\n 0x60\n /* \"contracts/ERC721A.sol\":8539:8548 return '' */\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n swap1\n pop\n /* \"contracts/ERC721A.sol\":8463:8555 function _baseURI() internal view virtual returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Strings.sol\":328:1031 function toString(uint256 value) internal pure returns (string memory) {... */\n tag_148:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":384:397 string memory */\n 0x60\n /* \"@openzeppelin/contracts/utils/Strings.sol\":610:611 0 */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":601:606 value */\n dup3\n /* \"@openzeppelin/contracts/utils/Strings.sol\":601:611 value == 0 */\n sub\n /* \"@openzeppelin/contracts/utils/Strings.sol\":597:648 if (value == 0) {... */\n tag_209\n jumpi\n /* \"@openzeppelin/contracts/utils/Strings.sol\":627:637 return \"0\" */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x01\n dup2\n mstore\n 0x20\n add\n 0x3000000000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n swap1\n pop\n jump(tag_208)\n /* \"@openzeppelin/contracts/utils/Strings.sol\":597:648 if (value == 0) {... */\n tag_209:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":657:669 uint256 temp */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":672:677 value */\n dup3\n /* \"@openzeppelin/contracts/utils/Strings.sol\":657:677 uint256 temp = value */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":687:701 uint256 digits */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":711:786 while (temp != 0) {... */\n tag_210:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":726:727 0 */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":718:722 temp */\n dup3\n /* \"@openzeppelin/contracts/utils/Strings.sol\":718:727 temp != 0 */\n eq\n /* \"@openzeppelin/contracts/utils/Strings.sol\":711:786 while (temp != 0) {... */\n tag_211\n jumpi\n /* \"@openzeppelin/contracts/utils/Strings.sol\":743:751 digits++ */\n dup1\n dup1\n tag_212\n swap1\n tag_213\n jump\t// in\n tag_212:\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":773:775 10 */\n 0x0a\n /* \"@openzeppelin/contracts/utils/Strings.sol\":765:775 temp /= 10 */\n dup3\n tag_214\n swap2\n swap1\n tag_215\n jump\t// in\n tag_214:\n swap2\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":711:786 while (temp != 0) {... */\n jump(tag_210)\n tag_211:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":795:814 bytes memory buffer */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":827:833 digits */\n dup2\n /* \"@openzeppelin/contracts/utils/Strings.sol\":817:834 new bytes(digits) */\n 0xffffffffffffffff\n dup2\n gt\n iszero\n tag_216\n jumpi\n tag_217\n tag_218\n jump\t// in\n tag_217:\n tag_216:\n mload(0x40)\n swap1\n dup1\n dup3\n mstore\n dup1\n 0x1f\n add\n not(0x1f)\n and\n 0x20\n add\n dup3\n add\n 0x40\n mstore\n dup1\n iszero\n tag_219\n jumpi\n dup2\n 0x20\n add\n 0x01\n dup3\n mul\n dup1\n calldatasize\n dup4\n calldatacopy\n dup1\n dup3\n add\n swap2\n pop\n pop\n swap1\n pop\n tag_219:\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":795:834 bytes memory buffer = new bytes(digits) */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":844:994 while (value != 0) {... */\n tag_220:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":860:861 0 */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":851:856 value */\n dup6\n /* \"@openzeppelin/contracts/utils/Strings.sol\":851:861 value != 0 */\n eq\n /* \"@openzeppelin/contracts/utils/Strings.sol\":844:994 while (value != 0) {... */\n tag_221\n jumpi\n /* \"@openzeppelin/contracts/utils/Strings.sol\":887:888 1 */\n 0x01\n /* \"@openzeppelin/contracts/utils/Strings.sol\":877:888 digits -= 1 */\n dup3\n tag_222\n swap2\n swap1\n tag_223\n jump\t// in\n tag_222:\n swap2\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":953:955 10 */\n 0x0a\n /* \"@openzeppelin/contracts/utils/Strings.sol\":945:950 value */\n dup6\n /* \"@openzeppelin/contracts/utils/Strings.sol\":945:955 value % 10 */\n tag_224\n swap2\n swap1\n tag_225\n jump\t// in\n tag_224:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":932:934 48 */\n 0x30\n /* \"@openzeppelin/contracts/utils/Strings.sol\":932:956 48 + uint256(value % 10) */\n tag_226\n swap2\n swap1\n tag_227\n jump\t// in\n tag_226:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":919:958 bytes1(uint8(48 + uint256(value % 10))) */\n 0xf8\n shl\n /* \"@openzeppelin/contracts/utils/Strings.sol\":902:908 buffer */\n dup2\n /* \"@openzeppelin/contracts/utils/Strings.sol\":909:915 digits */\n dup4\n /* \"@openzeppelin/contracts/utils/Strings.sol\":902:916 buffer[digits] */\n dup2\n mload\n dup2\n lt\n tag_228\n jumpi\n tag_229\n tag_230\n jump\t// in\n tag_229:\n tag_228:\n 0x20\n add\n add\n /* \"@openzeppelin/contracts/utils/Strings.sol\":902:958 buffer[digits] = bytes1(uint8(48 + uint256(value % 10))) */\n swap1\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n swap1\n dup2\n 0x00\n byte\n swap1\n mstore8\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":981:983 10 */\n 0x0a\n /* \"@openzeppelin/contracts/utils/Strings.sol\":972:983 value /= 10 */\n dup6\n tag_231\n swap2\n swap1\n tag_215\n jump\t// in\n tag_231:\n swap5\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":844:994 while (value != 0) {... */\n jump(tag_220)\n tag_221:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1017:1023 buffer */\n dup1\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1003:1024 return string(buffer) */\n swap4\n pop\n pop\n pop\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":328:1031 function toString(uint256 value) internal pure returns (string memory) {... */\n tag_208:\n swap2\n swap1\n pop\n jump\t// out\n /* \"contracts/ERC721A.sol\":20845:20999 function _beforeTokenTransfers(... */\n tag_173:\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/ERC721A.sol\":21640:21793 function _afterTokenTransfers(... */\n tag_178:\n pop\n pop\n pop\n pop\n jump\t// out\n tag_180:\n mload(0x40)\n dup1\n 0x60\n add\n 0x40\n mstore\n dup1\n and(0xffffffffffffffffffffffffffffffffffffffff, 0x00)\n dup2\n mstore\n 0x20\n add\n and(0xffffffffffffffff, 0x00)\n dup2\n mstore\n 0x20\n add\n iszero(iszero(0x00))\n dup2\n mstore\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:82 */\n tag_234:\n /* \"#utility.yul\":40:46 */\n 0x00\n /* \"#utility.yul\":73:75 */\n 0x40\n /* \"#utility.yul\":67:76 */\n mload\n /* \"#utility.yul\":57:76 */\n swap1\n pop\n /* \"#utility.yul\":7:82 */\n swap1\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_235:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":211:328 */\n tag_236:\n /* \"#utility.yul\":320:321 */\n 0x00\n /* \"#utility.yul\":317:318 */\n dup1\n /* \"#utility.yul\":310:322 */\n revert\n /* \"#utility.yul\":334:483 */\n tag_237:\n /* \"#utility.yul\":370:377 */\n 0x00\n /* \"#utility.yul\":410:476 */\n 0xffffffff00000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":403:408 */\n dup3\n /* \"#utility.yul\":399:477 */\n and\n /* \"#utility.yul\":388:477 */\n swap1\n pop\n /* \"#utility.yul\":334:483 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":489:609 */\n tag_238:\n /* \"#utility.yul\":561:584 */\n tag_281\n /* \"#utility.yul\":578:583 */\n dup2\n /* \"#utility.yul\":561:584 */\n tag_237\n jump\t// in\n tag_281:\n /* \"#utility.yul\":554:559 */\n dup2\n /* \"#utility.yul\":551:585 */\n eq\n /* \"#utility.yul\":541:603 */\n tag_282\n jumpi\n /* \"#utility.yul\":599:600 */\n 0x00\n /* \"#utility.yul\":596:597 */\n dup1\n /* \"#utility.yul\":589:601 */\n revert\n /* \"#utility.yul\":541:603 */\n tag_282:\n /* \"#utility.yul\":489:609 */\n pop\n jump\t// out\n /* \"#utility.yul\":615:752 */\n tag_239:\n /* \"#utility.yul\":660:665 */\n 0x00\n /* \"#utility.yul\":698:704 */\n dup2\n /* \"#utility.yul\":685:705 */\n calldataload\n /* \"#utility.yul\":676:705 */\n swap1\n pop\n /* \"#utility.yul\":714:746 */\n tag_284\n /* \"#utility.yul\":740:745 */\n dup2\n /* \"#utility.yul\":714:746 */\n tag_238\n jump\t// in\n tag_284:\n /* \"#utility.yul\":615:752 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":758:1085 */\n tag_22:\n /* \"#utility.yul\":816:822 */\n 0x00\n /* \"#utility.yul\":865:867 */\n 0x20\n /* \"#utility.yul\":853:862 */\n dup3\n /* \"#utility.yul\":844:851 */\n dup5\n /* \"#utility.yul\":840:863 */\n sub\n /* \"#utility.yul\":836:868 */\n slt\n /* \"#utility.yul\":833:952 */\n iszero\n tag_286\n jumpi\n /* \"#utility.yul\":871:950 */\n tag_287\n tag_235\n jump\t// in\n tag_287:\n /* \"#utility.yul\":833:952 */\n tag_286:\n /* \"#utility.yul\":991:992 */\n 0x00\n /* \"#utility.yul\":1016:1068 */\n tag_288\n /* \"#utility.yul\":1060:1067 */\n dup5\n /* \"#utility.yul\":1051:1057 */\n dup3\n /* \"#utility.yul\":1040:1049 */\n dup6\n /* \"#utility.yul\":1036:1058 */\n add\n /* \"#utility.yul\":1016:1068 */\n tag_239\n jump\t// in\n tag_288:\n /* \"#utility.yul\":1006:1068 */\n swap2\n pop\n /* \"#utility.yul\":962:1078 */\n pop\n /* \"#utility.yul\":758:1085 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1091:1181 */\n tag_240:\n /* \"#utility.yul\":1125:1132 */\n 0x00\n /* \"#utility.yul\":1168:1173 */\n dup2\n /* \"#utility.yul\":1161:1174 */\n iszero\n /* \"#utility.yul\":1154:1175 */\n iszero\n /* \"#utility.yul\":1143:1175 */\n swap1\n pop\n /* \"#utility.yul\":1091:1181 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1187:1296 */\n tag_241:\n /* \"#utility.yul\":1268:1289 */\n tag_291\n /* \"#utility.yul\":1283:1288 */\n dup2\n /* \"#utility.yul\":1268:1289 */\n tag_240\n jump\t// in\n tag_291:\n /* \"#utility.yul\":1263:1266 */\n dup3\n /* \"#utility.yul\":1256:1290 */\n mstore\n /* \"#utility.yul\":1187:1296 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1302:1512 */\n tag_25:\n /* \"#utility.yul\":1389:1393 */\n 0x00\n /* \"#utility.yul\":1427:1429 */\n 0x20\n /* \"#utility.yul\":1416:1425 */\n dup3\n /* \"#utility.yul\":1412:1430 */\n add\n /* \"#utility.yul\":1404:1430 */\n swap1\n pop\n /* \"#utility.yul\":1440:1505 */\n tag_293\n /* \"#utility.yul\":1502:1503 */\n 0x00\n /* \"#utility.yul\":1491:1500 */\n dup4\n /* \"#utility.yul\":1487:1504 */\n add\n /* \"#utility.yul\":1478:1484 */\n dup5\n /* \"#utility.yul\":1440:1505 */\n tag_241\n jump\t// in\n tag_293:\n /* \"#utility.yul\":1302:1512 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1518:1617 */\n tag_242:\n /* \"#utility.yul\":1570:1576 */\n 0x00\n /* \"#utility.yul\":1604:1609 */\n dup2\n /* \"#utility.yul\":1598:1610 */\n mload\n /* \"#utility.yul\":1588:1610 */\n swap1\n pop\n /* \"#utility.yul\":1518:1617 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1623:1792 */\n tag_243:\n /* \"#utility.yul\":1707:1718 */\n 0x00\n /* \"#utility.yul\":1741:1747 */\n dup3\n /* \"#utility.yul\":1736:1739 */\n dup3\n /* \"#utility.yul\":1729:1748 */\n mstore\n /* \"#utility.yul\":1781:1785 */\n 0x20\n /* \"#utility.yul\":1776:1779 */\n dup3\n /* \"#utility.yul\":1772:1786 */\n add\n /* \"#utility.yul\":1757:1786 */\n swap1\n pop\n /* \"#utility.yul\":1623:1792 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1798:2105 */\n tag_244:\n /* \"#utility.yul\":1866:1867 */\n 0x00\n /* \"#utility.yul\":1876:1989 */\n tag_297:\n /* \"#utility.yul\":1890:1896 */\n dup4\n /* \"#utility.yul\":1887:1888 */\n dup2\n /* \"#utility.yul\":1884:1897 */\n lt\n /* \"#utility.yul\":1876:1989 */\n iszero\n tag_299\n jumpi\n /* \"#utility.yul\":1975:1976 */\n dup1\n /* \"#utility.yul\":1970:1973 */\n dup3\n /* \"#utility.yul\":1966:1977 */\n add\n /* \"#utility.yul\":1960:1978 */\n mload\n /* \"#utility.yul\":1956:1957 */\n dup2\n /* \"#utility.yul\":1951:1954 */\n dup5\n /* \"#utility.yul\":1947:1958 */\n add\n /* \"#utility.yul\":1940:1979 */\n mstore\n /* \"#utility.yul\":1912:1914 */\n 0x20\n /* \"#utility.yul\":1909:1910 */\n dup2\n /* \"#utility.yul\":1905:1915 */\n add\n /* \"#utility.yul\":1900:1915 */\n swap1\n pop\n /* \"#utility.yul\":1876:1989 */\n jump(tag_297)\n tag_299:\n /* \"#utility.yul\":2007:2013 */\n dup4\n /* \"#utility.yul\":2004:2005 */\n dup2\n /* \"#utility.yul\":2001:2014 */\n gt\n /* \"#utility.yul\":1998:2099 */\n iszero\n tag_300\n jumpi\n /* \"#utility.yul\":2087:2088 */\n 0x00\n /* \"#utility.yul\":2078:2084 */\n dup5\n /* \"#utility.yul\":2073:2076 */\n dup5\n /* \"#utility.yul\":2069:2085 */\n add\n /* \"#utility.yul\":2062:2089 */\n mstore\n /* \"#utility.yul\":1998:2099 */\n tag_300:\n /* \"#utility.yul\":1847:2105 */\n pop\n /* \"#utility.yul\":1798:2105 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2111:2213 */\n tag_245:\n /* \"#utility.yul\":2152:2158 */\n 0x00\n /* \"#utility.yul\":2203:2205 */\n 0x1f\n /* \"#utility.yul\":2199:2206 */\n not\n /* \"#utility.yul\":2194:2196 */\n 0x1f\n /* \"#utility.yul\":2187:2192 */\n dup4\n /* \"#utility.yul\":2183:2197 */\n add\n /* \"#utility.yul\":2179:2207 */\n and\n /* \"#utility.yul\":2169:2207 */\n swap1\n pop\n /* \"#utility.yul\":2111:2213 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2219:2583 */\n tag_246:\n /* \"#utility.yul\":2307:2310 */\n 0x00\n /* \"#utility.yul\":2335:2374 */\n tag_303\n /* \"#utility.yul\":2368:2373 */\n dup3\n /* \"#utility.yul\":2335:2374 */\n tag_242\n jump\t// in\n tag_303:\n /* \"#utility.yul\":2390:2461 */\n tag_304\n /* \"#utility.yul\":2454:2460 */\n dup2\n /* \"#utility.yul\":2449:2452 */\n dup6\n /* \"#utility.yul\":2390:2461 */\n tag_243\n jump\t// in\n tag_304:\n /* \"#utility.yul\":2383:2461 */\n swap4\n pop\n /* \"#utility.yul\":2470:2522 */\n tag_305\n /* \"#utility.yul\":2515:2521 */\n dup2\n /* \"#utility.yul\":2510:2513 */\n dup6\n /* \"#utility.yul\":2503:2507 */\n 0x20\n /* \"#utility.yul\":2496:2501 */\n dup7\n /* \"#utility.yul\":2492:2508 */\n add\n /* \"#utility.yul\":2470:2522 */\n tag_244\n jump\t// in\n tag_305:\n /* \"#utility.yul\":2547:2576 */\n tag_306\n /* \"#utility.yul\":2569:2575 */\n dup2\n /* \"#utility.yul\":2547:2576 */\n tag_245\n jump\t// in\n tag_306:\n /* \"#utility.yul\":2542:2545 */\n dup5\n /* \"#utility.yul\":2538:2577 */\n add\n /* \"#utility.yul\":2531:2577 */\n swap2\n pop\n /* \"#utility.yul\":2311:2583 */\n pop\n /* \"#utility.yul\":2219:2583 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2589:2902 */\n tag_29:\n /* \"#utility.yul\":2702:2706 */\n 0x00\n /* \"#utility.yul\":2740:2742 */\n 0x20\n /* \"#utility.yul\":2729:2738 */\n dup3\n /* \"#utility.yul\":2725:2743 */\n add\n /* \"#utility.yul\":2717:2743 */\n swap1\n pop\n /* \"#utility.yul\":2789:2798 */\n dup2\n /* \"#utility.yul\":2783:2787 */\n dup2\n /* \"#utility.yul\":2779:2799 */\n sub\n /* \"#utility.yul\":2775:2776 */\n 0x00\n /* \"#utility.yul\":2764:2773 */\n dup4\n /* \"#utility.yul\":2760:2777 */\n add\n /* \"#utility.yul\":2753:2800 */\n mstore\n /* \"#utility.yul\":2817:2895 */\n tag_308\n /* \"#utility.yul\":2890:2894 */\n dup2\n /* \"#utility.yul\":2881:2887 */\n dup5\n /* \"#utility.yul\":2817:2895 */\n tag_246\n jump\t// in\n tag_308:\n /* \"#utility.yul\":2809:2895 */\n swap1\n pop\n /* \"#utility.yul\":2589:2902 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2908:2985 */\n tag_247:\n /* \"#utility.yul\":2945:2952 */\n 0x00\n /* \"#utility.yul\":2974:2979 */\n dup2\n /* \"#utility.yul\":2963:2979 */\n swap1\n pop\n /* \"#utility.yul\":2908:2985 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2991:3113 */\n tag_248:\n /* \"#utility.yul\":3064:3088 */\n tag_311\n /* \"#utility.yul\":3082:3087 */\n dup2\n /* \"#utility.yul\":3064:3088 */\n tag_247\n jump\t// in\n tag_311:\n /* \"#utility.yul\":3057:3062 */\n dup2\n /* \"#utility.yul\":3054:3089 */\n eq\n /* \"#utility.yul\":3044:3107 */\n tag_312\n jumpi\n /* \"#utility.yul\":3103:3104 */\n 0x00\n /* \"#utility.yul\":3100:3101 */\n dup1\n /* \"#utility.yul\":3093:3105 */\n revert\n /* \"#utility.yul\":3044:3107 */\n tag_312:\n /* \"#utility.yul\":2991:3113 */\n pop\n jump\t// out\n /* \"#utility.yul\":3119:3258 */\n tag_249:\n /* \"#utility.yul\":3165:3170 */\n 0x00\n /* \"#utility.yul\":3203:3209 */\n dup2\n /* \"#utility.yul\":3190:3210 */\n calldataload\n /* \"#utility.yul\":3181:3210 */\n swap1\n pop\n /* \"#utility.yul\":3219:3252 */\n tag_314\n /* \"#utility.yul\":3246:3251 */\n dup2\n /* \"#utility.yul\":3219:3252 */\n tag_248\n jump\t// in\n tag_314:\n /* \"#utility.yul\":3119:3258 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3264:3593 */\n tag_32:\n /* \"#utility.yul\":3323:3329 */\n 0x00\n /* \"#utility.yul\":3372:3374 */\n 0x20\n /* \"#utility.yul\":3360:3369 */\n dup3\n /* \"#utility.yul\":3351:3358 */\n dup5\n /* \"#utility.yul\":3347:3370 */\n sub\n /* \"#utility.yul\":3343:3375 */\n slt\n /* \"#utility.yul\":3340:3459 */\n iszero\n tag_316\n jumpi\n /* \"#utility.yul\":3378:3457 */\n tag_317\n tag_235\n jump\t// in\n tag_317:\n /* \"#utility.yul\":3340:3459 */\n tag_316:\n /* \"#utility.yul\":3498:3499 */\n 0x00\n /* \"#utility.yul\":3523:3576 */\n tag_318\n /* \"#utility.yul\":3568:3575 */\n dup5\n /* \"#utility.yul\":3559:3565 */\n dup3\n /* \"#utility.yul\":3548:3557 */\n dup6\n /* \"#utility.yul\":3544:3566 */\n add\n /* \"#utility.yul\":3523:3576 */\n tag_249\n jump\t// in\n tag_318:\n /* \"#utility.yul\":3513:3576 */\n swap2\n pop\n /* \"#utility.yul\":3469:3586 */\n pop\n /* \"#utility.yul\":3264:3593 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3599:3725 */\n tag_250:\n /* \"#utility.yul\":3636:3643 */\n 0x00\n /* \"#utility.yul\":3676:3718 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":3669:3674 */\n dup3\n /* \"#utility.yul\":3665:3719 */\n and\n /* \"#utility.yul\":3654:3719 */\n swap1\n pop\n /* \"#utility.yul\":3599:3725 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3731:3827 */\n tag_251:\n /* \"#utility.yul\":3768:3775 */\n 0x00\n /* \"#utility.yul\":3797:3821 */\n tag_321\n /* \"#utility.yul\":3815:3820 */\n dup3\n /* \"#utility.yul\":3797:3821 */\n tag_250\n jump\t// in\n tag_321:\n /* \"#utility.yul\":3786:3821 */\n swap1\n pop\n /* \"#utility.yul\":3731:3827 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3833:3951 */\n tag_252:\n /* \"#utility.yul\":3920:3944 */\n tag_323\n /* \"#utility.yul\":3938:3943 */\n dup2\n /* \"#utility.yul\":3920:3944 */\n tag_251\n jump\t// in\n tag_323:\n /* \"#utility.yul\":3915:3918 */\n dup3\n /* \"#utility.yul\":3908:3945 */\n mstore\n /* \"#utility.yul\":3833:3951 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3957:4179 */\n tag_35:\n /* \"#utility.yul\":4050:4054 */\n 0x00\n /* \"#utility.yul\":4088:4090 */\n 0x20\n /* \"#utility.yul\":4077:4086 */\n dup3\n /* \"#utility.yul\":4073:4091 */\n add\n /* \"#utility.yul\":4065:4091 */\n swap1\n pop\n /* \"#utility.yul\":4101:4172 */\n tag_325\n /* \"#utility.yul\":4169:4170 */\n 0x00\n /* \"#utility.yul\":4158:4167 */\n dup4\n /* \"#utility.yul\":4154:4171 */\n add\n /* \"#utility.yul\":4145:4151 */\n dup5\n /* \"#utility.yul\":4101:4172 */\n tag_252\n jump\t// in\n tag_325:\n /* \"#utility.yul\":3957:4179 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4185:4307 */\n tag_253:\n /* \"#utility.yul\":4258:4282 */\n tag_327\n /* \"#utility.yul\":4276:4281 */\n dup2\n /* \"#utility.yul\":4258:4282 */\n tag_251\n jump\t// in\n tag_327:\n /* \"#utility.yul\":4251:4256 */\n dup2\n /* \"#utility.yul\":4248:4283 */\n eq\n /* \"#utility.yul\":4238:4301 */\n tag_328\n jumpi\n /* \"#utility.yul\":4297:4298 */\n 0x00\n /* \"#utility.yul\":4294:4295 */\n dup1\n /* \"#utility.yul\":4287:4299 */\n revert\n /* \"#utility.yul\":4238:4301 */\n tag_328:\n /* \"#utility.yul\":4185:4307 */\n pop\n jump\t// out\n /* \"#utility.yul\":4313:4452 */\n tag_254:\n /* \"#utility.yul\":4359:4364 */\n 0x00\n /* \"#utility.yul\":4397:4403 */\n dup2\n /* \"#utility.yul\":4384:4404 */\n calldataload\n /* \"#utility.yul\":4375:4404 */\n swap1\n pop\n /* \"#utility.yul\":4413:4446 */\n tag_330\n /* \"#utility.yul\":4440:4445 */\n dup2\n /* \"#utility.yul\":4413:4446 */\n tag_253\n jump\t// in\n tag_330:\n /* \"#utility.yul\":4313:4452 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4458:4932 */\n tag_38:\n /* \"#utility.yul\":4526:4532 */\n 0x00\n /* \"#utility.yul\":4534:4540 */\n dup1\n /* \"#utility.yul\":4583:4585 */\n 0x40\n /* \"#utility.yul\":4571:4580 */\n dup4\n /* \"#utility.yul\":4562:4569 */\n dup6\n /* \"#utility.yul\":4558:4581 */\n sub\n /* \"#utility.yul\":4554:4586 */\n slt\n /* \"#utility.yul\":4551:4670 */\n iszero\n tag_332\n jumpi\n /* \"#utility.yul\":4589:4668 */\n tag_333\n tag_235\n jump\t// in\n tag_333:\n /* \"#utility.yul\":4551:4670 */\n tag_332:\n /* \"#utility.yul\":4709:4710 */\n 0x00\n /* \"#utility.yul\":4734:4787 */\n tag_334\n /* \"#utility.yul\":4779:4786 */\n dup6\n /* \"#utility.yul\":4770:4776 */\n dup3\n /* \"#utility.yul\":4759:4768 */\n dup7\n /* \"#utility.yul\":4755:4777 */\n add\n /* \"#utility.yul\":4734:4787 */\n tag_254\n jump\t// in\n tag_334:\n /* \"#utility.yul\":4724:4787 */\n swap3\n pop\n /* \"#utility.yul\":4680:4797 */\n pop\n /* \"#utility.yul\":4836:4838 */\n 0x20\n /* \"#utility.yul\":4862:4915 */\n tag_335\n /* \"#utility.yul\":4907:4914 */\n dup6\n /* \"#utility.yul\":4898:4904 */\n dup3\n /* \"#utility.yul\":4887:4896 */\n dup7\n /* \"#utility.yul\":4883:4905 */\n add\n /* \"#utility.yul\":4862:4915 */\n tag_249\n jump\t// in\n tag_335:\n /* \"#utility.yul\":4852:4915 */\n swap2\n pop\n /* \"#utility.yul\":4807:4925 */\n pop\n /* \"#utility.yul\":4458:4932 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4938:5056 */\n tag_255:\n /* \"#utility.yul\":5025:5049 */\n tag_337\n /* \"#utility.yul\":5043:5048 */\n dup2\n /* \"#utility.yul\":5025:5049 */\n tag_247\n jump\t// in\n tag_337:\n /* \"#utility.yul\":5020:5023 */\n dup3\n /* \"#utility.yul\":5013:5050 */\n mstore\n /* \"#utility.yul\":4938:5056 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5062:5284 */\n tag_43:\n /* \"#utility.yul\":5155:5159 */\n 0x00\n /* \"#utility.yul\":5193:5195 */\n 0x20\n /* \"#utility.yul\":5182:5191 */\n dup3\n /* \"#utility.yul\":5178:5196 */\n add\n /* \"#utility.yul\":5170:5196 */\n swap1\n pop\n /* \"#utility.yul\":5206:5277 */\n tag_339\n /* \"#utility.yul\":5274:5275 */\n 0x00\n /* \"#utility.yul\":5263:5272 */\n dup4\n /* \"#utility.yul\":5259:5276 */\n add\n /* \"#utility.yul\":5250:5256 */\n dup5\n /* \"#utility.yul\":5206:5277 */\n tag_255\n jump\t// in\n tag_339:\n /* \"#utility.yul\":5062:5284 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5290:5909 */\n tag_46:\n /* \"#utility.yul\":5367:5373 */\n 0x00\n /* \"#utility.yul\":5375:5381 */\n dup1\n /* \"#utility.yul\":5383:5389 */\n 0x00\n /* \"#utility.yul\":5432:5434 */\n 0x60\n /* \"#utility.yul\":5420:5429 */\n dup5\n /* \"#utility.yul\":5411:5418 */\n dup7\n /* \"#utility.yul\":5407:5430 */\n sub\n /* \"#utility.yul\":5403:5435 */\n slt\n /* \"#utility.yul\":5400:5519 */\n iszero\n tag_341\n jumpi\n /* \"#utility.yul\":5438:5517 */\n tag_342\n tag_235\n jump\t// in\n tag_342:\n /* \"#utility.yul\":5400:5519 */\n tag_341:\n /* \"#utility.yul\":5558:5559 */\n 0x00\n /* \"#utility.yul\":5583:5636 */\n tag_343\n /* \"#utility.yul\":5628:5635 */\n dup7\n /* \"#utility.yul\":5619:5625 */\n dup3\n /* \"#utility.yul\":5608:5617 */\n dup8\n /* \"#utility.yul\":5604:5626 */\n add\n /* \"#utility.yul\":5583:5636 */\n tag_254\n jump\t// in\n tag_343:\n /* \"#utility.yul\":5573:5636 */\n swap4\n pop\n /* \"#utility.yul\":5529:5646 */\n pop\n /* \"#utility.yul\":5685:5687 */\n 0x20\n /* \"#utility.yul\":5711:5764 */\n tag_344\n /* \"#utility.yul\":5756:5763 */\n dup7\n /* \"#utility.yul\":5747:5753 */\n dup3\n /* \"#utility.yul\":5736:5745 */\n dup8\n /* \"#utility.yul\":5732:5754 */\n add\n /* \"#utility.yul\":5711:5764 */\n tag_254\n jump\t// in\n tag_344:\n /* \"#utility.yul\":5701:5764 */\n swap3\n pop\n /* \"#utility.yul\":5656:5774 */\n pop\n /* \"#utility.yul\":5813:5815 */\n 0x40\n /* \"#utility.yul\":5839:5892 */\n tag_345\n /* \"#utility.yul\":5884:5891 */\n dup7\n /* \"#utility.yul\":5875:5881 */\n dup3\n /* \"#utility.yul\":5864:5873 */\n dup8\n /* \"#utility.yul\":5860:5882 */\n add\n /* \"#utility.yul\":5839:5892 */\n tag_249\n jump\t// in\n tag_345:\n /* \"#utility.yul\":5829:5892 */\n swap2\n pop\n /* \"#utility.yul\":5784:5902 */\n pop\n /* \"#utility.yul\":5290:5909 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":5915:6244 */\n tag_57:\n /* \"#utility.yul\":5974:5980 */\n 0x00\n /* \"#utility.yul\":6023:6025 */\n 0x20\n /* \"#utility.yul\":6011:6020 */\n dup3\n /* \"#utility.yul\":6002:6009 */\n dup5\n /* \"#utility.yul\":5998:6021 */\n sub\n /* \"#utility.yul\":5994:6026 */\n slt\n /* \"#utility.yul\":5991:6110 */\n iszero\n tag_347\n jumpi\n /* \"#utility.yul\":6029:6108 */\n tag_348\n tag_235\n jump\t// in\n tag_348:\n /* \"#utility.yul\":5991:6110 */\n tag_347:\n /* \"#utility.yul\":6149:6150 */\n 0x00\n /* \"#utility.yul\":6174:6227 */\n tag_349\n /* \"#utility.yul\":6219:6226 */\n dup5\n /* \"#utility.yul\":6210:6216 */\n dup3\n /* \"#utility.yul\":6199:6208 */\n dup6\n /* \"#utility.yul\":6195:6217 */\n add\n /* \"#utility.yul\":6174:6227 */\n tag_254\n jump\t// in\n tag_349:\n /* \"#utility.yul\":6164:6227 */\n swap2\n pop\n /* \"#utility.yul\":6120:6237 */\n pop\n /* \"#utility.yul\":5915:6244 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6250:6366 */\n tag_256:\n /* \"#utility.yul\":6320:6341 */\n tag_351\n /* \"#utility.yul\":6335:6340 */\n dup2\n /* \"#utility.yul\":6320:6341 */\n tag_240\n jump\t// in\n tag_351:\n /* \"#utility.yul\":6313:6318 */\n dup2\n /* \"#utility.yul\":6310:6342 */\n eq\n /* \"#utility.yul\":6300:6360 */\n tag_352\n jumpi\n /* \"#utility.yul\":6356:6357 */\n 0x00\n /* \"#utility.yul\":6353:6354 */\n dup1\n /* \"#utility.yul\":6346:6358 */\n revert\n /* \"#utility.yul\":6300:6360 */\n tag_352:\n /* \"#utility.yul\":6250:6366 */\n pop\n jump\t// out\n /* \"#utility.yul\":6372:6505 */\n tag_257:\n /* \"#utility.yul\":6415:6420 */\n 0x00\n /* \"#utility.yul\":6453:6459 */\n dup2\n /* \"#utility.yul\":6440:6460 */\n calldataload\n /* \"#utility.yul\":6431:6460 */\n swap1\n pop\n /* \"#utility.yul\":6469:6499 */\n tag_354\n /* \"#utility.yul\":6493:6498 */\n dup2\n /* \"#utility.yul\":6469:6499 */\n tag_256\n jump\t// in\n tag_354:\n /* \"#utility.yul\":6372:6505 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6511:6979 */\n tag_65:\n /* \"#utility.yul\":6576:6582 */\n 0x00\n /* \"#utility.yul\":6584:6590 */\n dup1\n /* \"#utility.yul\":6633:6635 */\n 0x40\n /* \"#utility.yul\":6621:6630 */\n dup4\n /* \"#utility.yul\":6612:6619 */\n dup6\n /* \"#utility.yul\":6608:6631 */\n sub\n /* \"#utility.yul\":6604:6636 */\n slt\n /* \"#utility.yul\":6601:6720 */\n iszero\n tag_356\n jumpi\n /* \"#utility.yul\":6639:6718 */\n tag_357\n tag_235\n jump\t// in\n tag_357:\n /* \"#utility.yul\":6601:6720 */\n tag_356:\n /* \"#utility.yul\":6759:6760 */\n 0x00\n /* \"#utility.yul\":6784:6837 */\n tag_358\n /* \"#utility.yul\":6829:6836 */\n dup6\n /* \"#utility.yul\":6820:6826 */\n dup3\n /* \"#utility.yul\":6809:6818 */\n dup7\n /* \"#utility.yul\":6805:6827 */\n add\n /* \"#utility.yul\":6784:6837 */\n tag_254\n jump\t// in\n tag_358:\n /* \"#utility.yul\":6774:6837 */\n swap3\n pop\n /* \"#utility.yul\":6730:6847 */\n pop\n /* \"#utility.yul\":6886:6888 */\n 0x20\n /* \"#utility.yul\":6912:6962 */\n tag_359\n /* \"#utility.yul\":6954:6961 */\n dup6\n /* \"#utility.yul\":6945:6951 */\n dup3\n /* \"#utility.yul\":6934:6943 */\n dup7\n /* \"#utility.yul\":6930:6952 */\n add\n /* \"#utility.yul\":6912:6962 */\n tag_257\n jump\t// in\n tag_359:\n /* \"#utility.yul\":6902:6962 */\n swap2\n pop\n /* \"#utility.yul\":6857:6972 */\n pop\n /* \"#utility.yul\":6511:6979 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6985:7102 */\n tag_258:\n /* \"#utility.yul\":7094:7095 */\n 0x00\n /* \"#utility.yul\":7091:7092 */\n dup1\n /* \"#utility.yul\":7084:7096 */\n revert\n /* \"#utility.yul\":7108:7225 */\n tag_259:\n /* \"#utility.yul\":7217:7218 */\n 0x00\n /* \"#utility.yul\":7214:7215 */\n dup1\n /* \"#utility.yul\":7207:7219 */\n revert\n /* \"#utility.yul\":7231:7411 */\n tag_218:\n /* \"#utility.yul\":7279:7356 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":7276:7277 */\n 0x00\n /* \"#utility.yul\":7269:7357 */\n mstore\n /* \"#utility.yul\":7376:7380 */\n 0x41\n /* \"#utility.yul\":7373:7374 */\n 0x04\n /* \"#utility.yul\":7366:7381 */\n mstore\n /* \"#utility.yul\":7400:7404 */\n 0x24\n /* \"#utility.yul\":7397:7398 */\n 0x00\n /* \"#utility.yul\":7390:7405 */\n revert\n /* \"#utility.yul\":7417:7698 */\n tag_260:\n /* \"#utility.yul\":7500:7527 */\n tag_364\n /* \"#utility.yul\":7522:7526 */\n dup3\n /* \"#utility.yul\":7500:7527 */\n tag_245\n jump\t// in\n tag_364:\n /* \"#utility.yul\":7492:7498 */\n dup2\n /* \"#utility.yul\":7488:7528 */\n add\n /* \"#utility.yul\":7630:7636 */\n dup2\n /* \"#utility.yul\":7618:7628 */\n dup2\n /* \"#utility.yul\":7615:7637 */\n lt\n /* \"#utility.yul\":7594:7612 */\n 0xffffffffffffffff\n /* \"#utility.yul\":7582:7592 */\n dup3\n /* \"#utility.yul\":7579:7613 */\n gt\n /* \"#utility.yul\":7576:7638 */\n or\n /* \"#utility.yul\":7573:7661 */\n iszero\n tag_365\n jumpi\n /* \"#utility.yul\":7641:7659 */\n tag_366\n tag_218\n jump\t// in\n tag_366:\n /* \"#utility.yul\":7573:7661 */\n tag_365:\n /* \"#utility.yul\":7681:7691 */\n dup1\n /* \"#utility.yul\":7677:7679 */\n 0x40\n /* \"#utility.yul\":7670:7692 */\n mstore\n /* \"#utility.yul\":7460:7698 */\n pop\n /* \"#utility.yul\":7417:7698 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7704:7833 */\n tag_261:\n /* \"#utility.yul\":7738:7744 */\n 0x00\n /* \"#utility.yul\":7765:7785 */\n tag_368\n tag_234\n jump\t// in\n tag_368:\n /* \"#utility.yul\":7755:7785 */\n swap1\n pop\n /* \"#utility.yul\":7794:7827 */\n tag_369\n /* \"#utility.yul\":7822:7826 */\n dup3\n /* \"#utility.yul\":7814:7820 */\n dup3\n /* \"#utility.yul\":7794:7827 */\n tag_260\n jump\t// in\n tag_369:\n /* \"#utility.yul\":7704:7833 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7839:8146 */\n tag_262:\n /* \"#utility.yul\":7900:7904 */\n 0x00\n /* \"#utility.yul\":7990:8008 */\n 0xffffffffffffffff\n /* \"#utility.yul\":7982:7988 */\n dup3\n /* \"#utility.yul\":7979:8009 */\n gt\n /* \"#utility.yul\":7976:8032 */\n iszero\n tag_371\n jumpi\n /* \"#utility.yul\":8012:8030 */\n tag_372\n tag_218\n jump\t// in\n tag_372:\n /* \"#utility.yul\":7976:8032 */\n tag_371:\n /* \"#utility.yul\":8050:8079 */\n tag_373\n /* \"#utility.yul\":8072:8078 */\n dup3\n /* \"#utility.yul\":8050:8079 */\n tag_245\n jump\t// in\n tag_373:\n /* \"#utility.yul\":8042:8079 */\n swap1\n pop\n /* \"#utility.yul\":8134:8138 */\n 0x20\n /* \"#utility.yul\":8128:8132 */\n dup2\n /* \"#utility.yul\":8124:8139 */\n add\n /* \"#utility.yul\":8116:8139 */\n swap1\n pop\n /* \"#utility.yul\":7839:8146 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8152:8306 */\n tag_263:\n /* \"#utility.yul\":8236:8242 */\n dup3\n /* \"#utility.yul\":8231:8234 */\n dup2\n /* \"#utility.yul\":8226:8229 */\n dup4\n /* \"#utility.yul\":8213:8243 */\n calldatacopy\n /* \"#utility.yul\":8298:8299 */\n 0x00\n /* \"#utility.yul\":8289:8295 */\n dup4\n /* \"#utility.yul\":8284:8287 */\n dup4\n /* \"#utility.yul\":8280:8296 */\n add\n /* \"#utility.yul\":8273:8300 */\n mstore\n /* \"#utility.yul\":8152:8306 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8312:8722 */\n tag_264:\n /* \"#utility.yul\":8389:8394 */\n 0x00\n /* \"#utility.yul\":8414:8479 */\n tag_376\n /* \"#utility.yul\":8430:8478 */\n tag_377\n /* \"#utility.yul\":8471:8477 */\n dup5\n /* \"#utility.yul\":8430:8478 */\n tag_262\n jump\t// in\n tag_377:\n /* \"#utility.yul\":8414:8479 */\n tag_261\n jump\t// in\n tag_376:\n /* \"#utility.yul\":8405:8479 */\n swap1\n pop\n /* \"#utility.yul\":8502:8508 */\n dup3\n /* \"#utility.yul\":8495:8500 */\n dup2\n /* \"#utility.yul\":8488:8509 */\n mstore\n /* \"#utility.yul\":8540:8544 */\n 0x20\n /* \"#utility.yul\":8533:8538 */\n dup2\n /* \"#utility.yul\":8529:8545 */\n add\n /* \"#utility.yul\":8578:8581 */\n dup5\n /* \"#utility.yul\":8569:8575 */\n dup5\n /* \"#utility.yul\":8564:8567 */\n dup5\n /* \"#utility.yul\":8560:8576 */\n add\n /* \"#utility.yul\":8557:8582 */\n gt\n /* \"#utility.yul\":8554:8666 */\n iszero\n tag_378\n jumpi\n /* \"#utility.yul\":8585:8664 */\n tag_379\n tag_259\n jump\t// in\n tag_379:\n /* \"#utility.yul\":8554:8666 */\n tag_378:\n /* \"#utility.yul\":8675:8716 */\n tag_380\n /* \"#utility.yul\":8709:8715 */\n dup5\n /* \"#utility.yul\":8704:8707 */\n dup3\n /* \"#utility.yul\":8699:8702 */\n dup6\n /* \"#utility.yul\":8675:8716 */\n tag_263\n jump\t// in\n tag_380:\n /* \"#utility.yul\":8395:8722 */\n pop\n /* \"#utility.yul\":8312:8722 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8741:9079 */\n tag_265:\n /* \"#utility.yul\":8796:8801 */\n 0x00\n /* \"#utility.yul\":8845:8848 */\n dup3\n /* \"#utility.yul\":8838:8842 */\n 0x1f\n /* \"#utility.yul\":8830:8836 */\n dup4\n /* \"#utility.yul\":8826:8843 */\n add\n /* \"#utility.yul\":8822:8849 */\n slt\n /* \"#utility.yul\":8812:8934 */\n tag_382\n jumpi\n /* \"#utility.yul\":8853:8932 */\n tag_383\n tag_258\n jump\t// in\n tag_383:\n /* \"#utility.yul\":8812:8934 */\n tag_382:\n /* \"#utility.yul\":8970:8976 */\n dup2\n /* \"#utility.yul\":8957:8977 */\n calldataload\n /* \"#utility.yul\":8995:9073 */\n tag_384\n /* \"#utility.yul\":9069:9072 */\n dup5\n /* \"#utility.yul\":9061:9067 */\n dup3\n /* \"#utility.yul\":9054:9058 */\n 0x20\n /* \"#utility.yul\":9046:9052 */\n dup7\n /* \"#utility.yul\":9042:9059 */\n add\n /* \"#utility.yul\":8995:9073 */\n tag_264\n jump\t// in\n tag_384:\n /* \"#utility.yul\":8986:9073 */\n swap2\n pop\n /* \"#utility.yul\":8802:9079 */\n pop\n /* \"#utility.yul\":8741:9079 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9085:10028 */\n tag_69:\n /* \"#utility.yul\":9180:9186 */\n 0x00\n /* \"#utility.yul\":9188:9194 */\n dup1\n /* \"#utility.yul\":9196:9202 */\n 0x00\n /* \"#utility.yul\":9204:9210 */\n dup1\n /* \"#utility.yul\":9253:9256 */\n 0x80\n /* \"#utility.yul\":9241:9250 */\n dup6\n /* \"#utility.yul\":9232:9239 */\n dup8\n /* \"#utility.yul\":9228:9251 */\n sub\n /* \"#utility.yul\":9224:9257 */\n slt\n /* \"#utility.yul\":9221:9341 */\n iszero\n tag_386\n jumpi\n /* \"#utility.yul\":9260:9339 */\n tag_387\n tag_235\n jump\t// in\n tag_387:\n /* \"#utility.yul\":9221:9341 */\n tag_386:\n /* \"#utility.yul\":9380:9381 */\n 0x00\n /* \"#utility.yul\":9405:9458 */\n tag_388\n /* \"#utility.yul\":9450:9457 */\n dup8\n /* \"#utility.yul\":9441:9447 */\n dup3\n /* \"#utility.yul\":9430:9439 */\n dup9\n /* \"#utility.yul\":9426:9448 */\n add\n /* \"#utility.yul\":9405:9458 */\n tag_254\n jump\t// in\n tag_388:\n /* \"#utility.yul\":9395:9458 */\n swap5\n pop\n /* \"#utility.yul\":9351:9468 */\n pop\n /* \"#utility.yul\":9507:9509 */\n 0x20\n /* \"#utility.yul\":9533:9586 */\n tag_389\n /* \"#utility.yul\":9578:9585 */\n dup8\n /* \"#utility.yul\":9569:9575 */\n dup3\n /* \"#utility.yul\":9558:9567 */\n dup9\n /* \"#utility.yul\":9554:9576 */\n add\n /* \"#utility.yul\":9533:9586 */\n tag_254\n jump\t// in\n tag_389:\n /* \"#utility.yul\":9523:9586 */\n swap4\n pop\n /* \"#utility.yul\":9478:9596 */\n pop\n /* \"#utility.yul\":9635:9637 */\n 0x40\n /* \"#utility.yul\":9661:9714 */\n tag_390\n /* \"#utility.yul\":9706:9713 */\n dup8\n /* \"#utility.yul\":9697:9703 */\n dup3\n /* \"#utility.yul\":9686:9695 */\n dup9\n /* \"#utility.yul\":9682:9704 */\n add\n /* \"#utility.yul\":9661:9714 */\n tag_249\n jump\t// in\n tag_390:\n /* \"#utility.yul\":9651:9714 */\n swap3\n pop\n /* \"#utility.yul\":9606:9724 */\n pop\n /* \"#utility.yul\":9791:9793 */\n 0x60\n /* \"#utility.yul\":9780:9789 */\n dup6\n /* \"#utility.yul\":9776:9794 */\n add\n /* \"#utility.yul\":9763:9795 */\n calldataload\n /* \"#utility.yul\":9822:9840 */\n 0xffffffffffffffff\n /* \"#utility.yul\":9814:9820 */\n dup2\n /* \"#utility.yul\":9811:9841 */\n gt\n /* \"#utility.yul\":9808:9925 */\n iszero\n tag_391\n jumpi\n /* \"#utility.yul\":9844:9923 */\n tag_392\n tag_236\n jump\t// in\n tag_392:\n /* \"#utility.yul\":9808:9925 */\n tag_391:\n /* \"#utility.yul\":9949:10011 */\n tag_393\n /* \"#utility.yul\":10003:10010 */\n dup8\n /* \"#utility.yul\":9994:10000 */\n dup3\n /* \"#utility.yul\":9983:9992 */\n dup9\n /* \"#utility.yul\":9979:10001 */\n add\n /* \"#utility.yul\":9949:10011 */\n tag_265\n jump\t// in\n tag_393:\n /* \"#utility.yul\":9939:10011 */\n swap2\n pop\n /* \"#utility.yul\":9734:10021 */\n pop\n /* \"#utility.yul\":9085:10028 */\n swap3\n swap6\n swap2\n swap5\n pop\n swap3\n pop\n jump\t// out\n /* \"#utility.yul\":10034:10508 */\n tag_77:\n /* \"#utility.yul\":10102:10108 */\n 0x00\n /* \"#utility.yul\":10110:10116 */\n dup1\n /* \"#utility.yul\":10159:10161 */\n 0x40\n /* \"#utility.yul\":10147:10156 */\n dup4\n /* \"#utility.yul\":10138:10145 */\n dup6\n /* \"#utility.yul\":10134:10157 */\n sub\n /* \"#utility.yul\":10130:10162 */\n slt\n /* \"#utility.yul\":10127:10246 */\n iszero\n tag_395\n jumpi\n /* \"#utility.yul\":10165:10244 */\n tag_396\n tag_235\n jump\t// in\n tag_396:\n /* \"#utility.yul\":10127:10246 */\n tag_395:\n /* \"#utility.yul\":10285:10286 */\n 0x00\n /* \"#utility.yul\":10310:10363 */\n tag_397\n /* \"#utility.yul\":10355:10362 */\n dup6\n /* \"#utility.yul\":10346:10352 */\n dup3\n /* \"#utility.yul\":10335:10344 */\n dup7\n /* \"#utility.yul\":10331:10353 */\n add\n /* \"#utility.yul\":10310:10363 */\n tag_254\n jump\t// in\n tag_397:\n /* \"#utility.yul\":10300:10363 */\n swap3\n pop\n /* \"#utility.yul\":10256:10373 */\n pop\n /* \"#utility.yul\":10412:10414 */\n 0x20\n /* \"#utility.yul\":10438:10491 */\n tag_398\n /* \"#utility.yul\":10483:10490 */\n dup6\n /* \"#utility.yul\":10474:10480 */\n dup3\n /* \"#utility.yul\":10463:10472 */\n dup7\n /* \"#utility.yul\":10459:10481 */\n add\n /* \"#utility.yul\":10438:10491 */\n tag_254\n jump\t// in\n tag_398:\n /* \"#utility.yul\":10428:10491 */\n swap2\n pop\n /* \"#utility.yul\":10383:10501 */\n pop\n /* \"#utility.yul\":10034:10508 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10514:10694 */\n tag_266:\n /* \"#utility.yul\":10562:10639 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":10559:10560 */\n 0x00\n /* \"#utility.yul\":10552:10640 */\n mstore\n /* \"#utility.yul\":10659:10663 */\n 0x22\n /* \"#utility.yul\":10656:10657 */\n 0x04\n /* \"#utility.yul\":10649:10664 */\n mstore\n /* \"#utility.yul\":10683:10687 */\n 0x24\n /* \"#utility.yul\":10680:10681 */\n 0x00\n /* \"#utility.yul\":10673:10688 */\n revert\n /* \"#utility.yul\":10700:11020 */\n tag_87:\n /* \"#utility.yul\":10744:10750 */\n 0x00\n /* \"#utility.yul\":10781:10782 */\n 0x02\n /* \"#utility.yul\":10775:10779 */\n dup3\n /* \"#utility.yul\":10771:10783 */\n div\n /* \"#utility.yul\":10761:10783 */\n swap1\n pop\n /* \"#utility.yul\":10828:10829 */\n 0x01\n /* \"#utility.yul\":10822:10826 */\n dup3\n /* \"#utility.yul\":10818:10830 */\n and\n /* \"#utility.yul\":10849:10867 */\n dup1\n /* \"#utility.yul\":10839:10920 */\n tag_401\n jumpi\n /* \"#utility.yul\":10905:10909 */\n 0x7f\n /* \"#utility.yul\":10897:10903 */\n dup3\n /* \"#utility.yul\":10893:10910 */\n and\n /* \"#utility.yul\":10883:10910 */\n swap2\n pop\n /* \"#utility.yul\":10839:10920 */\n tag_401:\n /* \"#utility.yul\":10967:10969 */\n 0x20\n /* \"#utility.yul\":10959:10965 */\n dup3\n /* \"#utility.yul\":10956:10970 */\n lt\n /* \"#utility.yul\":10936:10954 */\n dup2\n /* \"#utility.yul\":10933:10971 */\n sub\n /* \"#utility.yul\":10930:11014 */\n tag_402\n jumpi\n /* \"#utility.yul\":10986:11004 */\n tag_403\n tag_266\n jump\t// in\n tag_403:\n /* \"#utility.yul\":10930:11014 */\n tag_402:\n /* \"#utility.yul\":10751:11020 */\n pop\n /* \"#utility.yul\":10700:11020 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11026:11174 */\n tag_267:\n /* \"#utility.yul\":11128:11139 */\n 0x00\n /* \"#utility.yul\":11165:11168 */\n dup2\n /* \"#utility.yul\":11150:11168 */\n swap1\n pop\n /* \"#utility.yul\":11026:11174 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":11180:11557 */\n tag_268:\n /* \"#utility.yul\":11286:11289 */\n 0x00\n /* \"#utility.yul\":11314:11353 */\n tag_406\n /* \"#utility.yul\":11347:11352 */\n dup3\n /* \"#utility.yul\":11314:11353 */\n tag_242\n jump\t// in\n tag_406:\n /* \"#utility.yul\":11369:11458 */\n tag_407\n /* \"#utility.yul\":11451:11457 */\n dup2\n /* \"#utility.yul\":11446:11449 */\n dup6\n /* \"#utility.yul\":11369:11458 */\n tag_267\n jump\t// in\n tag_407:\n /* \"#utility.yul\":11362:11458 */\n swap4\n pop\n /* \"#utility.yul\":11467:11519 */\n tag_408\n /* \"#utility.yul\":11512:11518 */\n dup2\n /* \"#utility.yul\":11507:11510 */\n dup6\n /* \"#utility.yul\":11500:11504 */\n 0x20\n /* \"#utility.yul\":11493:11498 */\n dup7\n /* \"#utility.yul\":11489:11505 */\n add\n /* \"#utility.yul\":11467:11519 */\n tag_244\n jump\t// in\n tag_408:\n /* \"#utility.yul\":11544:11550 */\n dup1\n /* \"#utility.yul\":11539:11542 */\n dup5\n /* \"#utility.yul\":11535:11551 */\n add\n /* \"#utility.yul\":11528:11551 */\n swap2\n pop\n /* \"#utility.yul\":11290:11557 */\n pop\n /* \"#utility.yul\":11180:11557 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":11563:11998 */\n tag_150:\n /* \"#utility.yul\":11743:11746 */\n 0x00\n /* \"#utility.yul\":11765:11860 */\n tag_410\n /* \"#utility.yul\":11856:11859 */\n dup3\n /* \"#utility.yul\":11847:11853 */\n dup6\n /* \"#utility.yul\":11765:11860 */\n tag_268\n jump\t// in\n tag_410:\n /* \"#utility.yul\":11758:11860 */\n swap2\n pop\n /* \"#utility.yul\":11877:11972 */\n tag_411\n /* \"#utility.yul\":11968:11971 */\n dup3\n /* \"#utility.yul\":11959:11965 */\n dup5\n /* \"#utility.yul\":11877:11972 */\n tag_268\n jump\t// in\n tag_411:\n /* \"#utility.yul\":11870:11972 */\n swap2\n pop\n /* \"#utility.yul\":11989:11992 */\n dup2\n /* \"#utility.yul\":11982:11992 */\n swap1\n pop\n /* \"#utility.yul\":11563:11998 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":12004:12102 */\n tag_269:\n /* \"#utility.yul\":12055:12061 */\n 0x00\n /* \"#utility.yul\":12089:12094 */\n dup2\n /* \"#utility.yul\":12083:12095 */\n mload\n /* \"#utility.yul\":12073:12095 */\n swap1\n pop\n /* \"#utility.yul\":12004:12102 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":12108:12276 */\n tag_270:\n /* \"#utility.yul\":12191:12202 */\n 0x00\n /* \"#utility.yul\":12225:12231 */\n dup3\n /* \"#utility.yul\":12220:12223 */\n dup3\n /* \"#utility.yul\":12213:12232 */\n mstore\n /* \"#utility.yul\":12265:12269 */\n 0x20\n /* \"#utility.yul\":12260:12263 */\n dup3\n /* \"#utility.yul\":12256:12270 */\n add\n /* \"#utility.yul\":12241:12270 */\n swap1\n pop\n /* \"#utility.yul\":12108:12276 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":12282:12642 */\n tag_271:\n /* \"#utility.yul\":12368:12371 */\n 0x00\n /* \"#utility.yul\":12396:12434 */\n tag_415\n /* \"#utility.yul\":12428:12433 */\n dup3\n /* \"#utility.yul\":12396:12434 */\n tag_269\n jump\t// in\n tag_415:\n /* \"#utility.yul\":12450:12520 */\n tag_416\n /* \"#utility.yul\":12513:12519 */\n dup2\n /* \"#utility.yul\":12508:12511 */\n dup6\n /* \"#utility.yul\":12450:12520 */\n tag_270\n jump\t// in\n tag_416:\n /* \"#utility.yul\":12443:12520 */\n swap4\n pop\n /* \"#utility.yul\":12529:12581 */\n tag_417\n /* \"#utility.yul\":12574:12580 */\n dup2\n /* \"#utility.yul\":12569:12572 */\n dup6\n /* \"#utility.yul\":12562:12566 */\n 0x20\n /* \"#utility.yul\":12555:12560 */\n dup7\n /* \"#utility.yul\":12551:12567 */\n add\n /* \"#utility.yul\":12529:12581 */\n tag_244\n jump\t// in\n tag_417:\n /* \"#utility.yul\":12606:12635 */\n tag_418\n /* \"#utility.yul\":12628:12634 */\n dup2\n /* \"#utility.yul\":12606:12635 */\n tag_245\n jump\t// in\n tag_418:\n /* \"#utility.yul\":12601:12604 */\n dup5\n /* \"#utility.yul\":12597:12636 */\n add\n /* \"#utility.yul\":12590:12636 */\n swap2\n pop\n /* \"#utility.yul\":12372:12642 */\n pop\n /* \"#utility.yul\":12282:12642 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":12648:13288 */\n tag_194:\n /* \"#utility.yul\":12843:12847 */\n 0x00\n /* \"#utility.yul\":12881:12884 */\n 0x80\n /* \"#utility.yul\":12870:12879 */\n dup3\n /* \"#utility.yul\":12866:12885 */\n add\n /* \"#utility.yul\":12858:12885 */\n swap1\n pop\n /* \"#utility.yul\":12895:12966 */\n tag_420\n /* \"#utility.yul\":12963:12964 */\n 0x00\n /* \"#utility.yul\":12952:12961 */\n dup4\n /* \"#utility.yul\":12948:12965 */\n add\n /* \"#utility.yul\":12939:12945 */\n dup8\n /* \"#utility.yul\":12895:12966 */\n tag_252\n jump\t// in\n tag_420:\n /* \"#utility.yul\":12976:13048 */\n tag_421\n /* \"#utility.yul\":13044:13046 */\n 0x20\n /* \"#utility.yul\":13033:13042 */\n dup4\n /* \"#utility.yul\":13029:13047 */\n add\n /* \"#utility.yul\":13020:13026 */\n dup7\n /* \"#utility.yul\":12976:13048 */\n tag_252\n jump\t// in\n tag_421:\n /* \"#utility.yul\":13058:13130 */\n tag_422\n /* \"#utility.yul\":13126:13128 */\n 0x40\n /* \"#utility.yul\":13115:13124 */\n dup4\n /* \"#utility.yul\":13111:13129 */\n add\n /* \"#utility.yul\":13102:13108 */\n dup6\n /* \"#utility.yul\":13058:13130 */\n tag_255\n jump\t// in\n tag_422:\n /* \"#utility.yul\":13177:13186 */\n dup2\n /* \"#utility.yul\":13171:13175 */\n dup2\n /* \"#utility.yul\":13167:13187 */\n sub\n /* \"#utility.yul\":13162:13164 */\n 0x60\n /* \"#utility.yul\":13151:13160 */\n dup4\n /* \"#utility.yul\":13147:13165 */\n add\n /* \"#utility.yul\":13140:13188 */\n mstore\n /* \"#utility.yul\":13205:13281 */\n tag_423\n /* \"#utility.yul\":13276:13280 */\n dup2\n /* \"#utility.yul\":13267:13273 */\n dup5\n /* \"#utility.yul\":13205:13281 */\n tag_271\n jump\t// in\n tag_423:\n /* \"#utility.yul\":13197:13281 */\n swap1\n pop\n /* \"#utility.yul\":12648:13288 */\n swap6\n swap5\n pop\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":13294:13435 */\n tag_272:\n /* \"#utility.yul\":13350:13355 */\n 0x00\n /* \"#utility.yul\":13381:13387 */\n dup2\n /* \"#utility.yul\":13375:13388 */\n mload\n /* \"#utility.yul\":13366:13388 */\n swap1\n pop\n /* \"#utility.yul\":13397:13429 */\n tag_425\n /* \"#utility.yul\":13423:13428 */\n dup2\n /* \"#utility.yul\":13397:13429 */\n tag_238\n jump\t// in\n tag_425:\n /* \"#utility.yul\":13294:13435 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":13441:13790 */\n tag_197:\n /* \"#utility.yul\":13510:13516 */\n 0x00\n /* \"#utility.yul\":13559:13561 */\n 0x20\n /* \"#utility.yul\":13547:13556 */\n dup3\n /* \"#utility.yul\":13538:13545 */\n dup5\n /* \"#utility.yul\":13534:13557 */\n sub\n /* \"#utility.yul\":13530:13562 */\n slt\n /* \"#utility.yul\":13527:13646 */\n iszero\n tag_427\n jumpi\n /* \"#utility.yul\":13565:13644 */\n tag_428\n tag_235\n jump\t// in\n tag_428:\n /* \"#utility.yul\":13527:13646 */\n tag_427:\n /* \"#utility.yul\":13685:13686 */\n 0x00\n /* \"#utility.yul\":13710:13773 */\n tag_429\n /* \"#utility.yul\":13765:13772 */\n dup5\n /* \"#utility.yul\":13756:13762 */\n dup3\n /* \"#utility.yul\":13745:13754 */\n dup6\n /* \"#utility.yul\":13741:13763 */\n add\n /* \"#utility.yul\":13710:13773 */\n tag_272\n jump\t// in\n tag_429:\n /* \"#utility.yul\":13700:13773 */\n swap2\n pop\n /* \"#utility.yul\":13656:13783 */\n pop\n /* \"#utility.yul\":13441:13790 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":13796:13976 */\n tag_273:\n /* \"#utility.yul\":13844:13921 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":13841:13842 */\n 0x00\n /* \"#utility.yul\":13834:13922 */\n mstore\n /* \"#utility.yul\":13941:13945 */\n 0x11\n /* \"#utility.yul\":13938:13939 */\n 0x04\n /* \"#utility.yul\":13931:13946 */\n mstore\n /* \"#utility.yul\":13965:13969 */\n 0x24\n /* \"#utility.yul\":13962:13963 */\n 0x00\n /* \"#utility.yul\":13955:13970 */\n revert\n /* \"#utility.yul\":13982:14215 */\n tag_213:\n /* \"#utility.yul\":14021:14024 */\n 0x00\n /* \"#utility.yul\":14044:14068 */\n tag_432\n /* \"#utility.yul\":14062:14067 */\n dup3\n /* \"#utility.yul\":14044:14068 */\n tag_247\n jump\t// in\n tag_432:\n /* \"#utility.yul\":14035:14068 */\n swap2\n pop\n /* \"#utility.yul\":14090:14156 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":14083:14088 */\n dup3\n /* \"#utility.yul\":14080:14157 */\n sub\n /* \"#utility.yul\":14077:14180 */\n tag_433\n jumpi\n /* \"#utility.yul\":14160:14178 */\n tag_434\n tag_273\n jump\t// in\n tag_434:\n /* \"#utility.yul\":14077:14180 */\n tag_433:\n /* \"#utility.yul\":14207:14208 */\n 0x01\n /* \"#utility.yul\":14200:14205 */\n dup3\n /* \"#utility.yul\":14196:14209 */\n add\n /* \"#utility.yul\":14189:14209 */\n swap1\n pop\n /* \"#utility.yul\":13982:14215 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":14221:14401 */\n tag_274:\n /* \"#utility.yul\":14269:14346 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":14266:14267 */\n 0x00\n /* \"#utility.yul\":14259:14347 */\n mstore\n /* \"#utility.yul\":14366:14370 */\n 0x12\n /* \"#utility.yul\":14363:14364 */\n 0x04\n /* \"#utility.yul\":14356:14371 */\n mstore\n /* \"#utility.yul\":14390:14394 */\n 0x24\n /* \"#utility.yul\":14387:14388 */\n 0x00\n /* \"#utility.yul\":14380:14395 */\n revert\n /* \"#utility.yul\":14407:14592 */\n tag_215:\n /* \"#utility.yul\":14447:14448 */\n 0x00\n /* \"#utility.yul\":14464:14484 */\n tag_437\n /* \"#utility.yul\":14482:14483 */\n dup3\n /* \"#utility.yul\":14464:14484 */\n tag_247\n jump\t// in\n tag_437:\n /* \"#utility.yul\":14459:14484 */\n swap2\n pop\n /* \"#utility.yul\":14498:14518 */\n tag_438\n /* \"#utility.yul\":14516:14517 */\n dup4\n /* \"#utility.yul\":14498:14518 */\n tag_247\n jump\t// in\n tag_438:\n /* \"#utility.yul\":14493:14518 */\n swap3\n pop\n /* \"#utility.yul\":14537:14538 */\n dup3\n /* \"#utility.yul\":14527:14562 */\n tag_439\n jumpi\n /* \"#utility.yul\":14542:14560 */\n tag_440\n tag_274\n jump\t// in\n tag_440:\n /* \"#utility.yul\":14527:14562 */\n tag_439:\n /* \"#utility.yul\":14584:14585 */\n dup3\n /* \"#utility.yul\":14581:14582 */\n dup3\n /* \"#utility.yul\":14577:14586 */\n div\n /* \"#utility.yul\":14572:14586 */\n swap1\n pop\n /* \"#utility.yul\":14407:14592 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":14598:14789 */\n tag_223:\n /* \"#utility.yul\":14638:14642 */\n 0x00\n /* \"#utility.yul\":14658:14678 */\n tag_442\n /* \"#utility.yul\":14676:14677 */\n dup3\n /* \"#utility.yul\":14658:14678 */\n tag_247\n jump\t// in\n tag_442:\n /* \"#utility.yul\":14653:14678 */\n swap2\n pop\n /* \"#utility.yul\":14692:14712 */\n tag_443\n /* \"#utility.yul\":14710:14711 */\n dup4\n /* \"#utility.yul\":14692:14712 */\n tag_247\n jump\t// in\n tag_443:\n /* \"#utility.yul\":14687:14712 */\n swap3\n pop\n /* \"#utility.yul\":14731:14732 */\n dup3\n /* \"#utility.yul\":14728:14729 */\n dup3\n /* \"#utility.yul\":14725:14733 */\n lt\n /* \"#utility.yul\":14722:14756 */\n iszero\n tag_444\n jumpi\n /* \"#utility.yul\":14736:14754 */\n tag_445\n tag_273\n jump\t// in\n tag_445:\n /* \"#utility.yul\":14722:14756 */\n tag_444:\n /* \"#utility.yul\":14781:14782 */\n dup3\n /* \"#utility.yul\":14778:14779 */\n dup3\n /* \"#utility.yul\":14774:14783 */\n sub\n /* \"#utility.yul\":14766:14783 */\n swap1\n pop\n /* \"#utility.yul\":14598:14789 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":14795:14971 */\n tag_225:\n /* \"#utility.yul\":14827:14828 */\n 0x00\n /* \"#utility.yul\":14844:14864 */\n tag_447\n /* \"#utility.yul\":14862:14863 */\n dup3\n /* \"#utility.yul\":14844:14864 */\n tag_247\n jump\t// in\n tag_447:\n /* \"#utility.yul\":14839:14864 */\n swap2\n pop\n /* \"#utility.yul\":14878:14898 */\n tag_448\n /* \"#utility.yul\":14896:14897 */\n dup4\n /* \"#utility.yul\":14878:14898 */\n tag_247\n jump\t// in\n tag_448:\n /* \"#utility.yul\":14873:14898 */\n swap3\n pop\n /* \"#utility.yul\":14917:14918 */\n dup3\n /* \"#utility.yul\":14907:14942 */\n tag_449\n jumpi\n /* \"#utility.yul\":14922:14940 */\n tag_450\n tag_274\n jump\t// in\n tag_450:\n /* \"#utility.yul\":14907:14942 */\n tag_449:\n /* \"#utility.yul\":14963:14964 */\n dup3\n /* \"#utility.yul\":14960:14961 */\n dup3\n /* \"#utility.yul\":14956:14965 */\n mod\n /* \"#utility.yul\":14951:14965 */\n swap1\n pop\n /* \"#utility.yul\":14795:14971 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":14977:15282 */\n tag_227:\n /* \"#utility.yul\":15017:15020 */\n 0x00\n /* \"#utility.yul\":15036:15056 */\n tag_452\n /* \"#utility.yul\":15054:15055 */\n dup3\n /* \"#utility.yul\":15036:15056 */\n tag_247\n jump\t// in\n tag_452:\n /* \"#utility.yul\":15031:15056 */\n swap2\n pop\n /* \"#utility.yul\":15070:15090 */\n tag_453\n /* \"#utility.yul\":15088:15089 */\n dup4\n /* \"#utility.yul\":15070:15090 */\n tag_247\n jump\t// in\n tag_453:\n /* \"#utility.yul\":15065:15090 */\n swap3\n pop\n /* \"#utility.yul\":15224:15225 */\n dup3\n /* \"#utility.yul\":15156:15222 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":15152:15226 */\n sub\n /* \"#utility.yul\":15149:15150 */\n dup3\n /* \"#utility.yul\":15146:15227 */\n gt\n /* \"#utility.yul\":15143:15250 */\n iszero\n tag_454\n jumpi\n /* \"#utility.yul\":15230:15248 */\n tag_455\n tag_273\n jump\t// in\n tag_455:\n /* \"#utility.yul\":15143:15250 */\n tag_454:\n /* \"#utility.yul\":15274:15275 */\n dup3\n /* \"#utility.yul\":15271:15272 */\n dup3\n /* \"#utility.yul\":15267:15276 */\n add\n /* \"#utility.yul\":15260:15276 */\n swap1\n pop\n /* \"#utility.yul\":14977:15282 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":15288:15468 */\n tag_230:\n /* \"#utility.yul\":15336:15413 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":15333:15334 */\n 0x00\n /* \"#utility.yul\":15326:15414 */\n mstore\n /* \"#utility.yul\":15433:15437 */\n 0x32\n /* \"#utility.yul\":15430:15431 */\n 0x04\n /* \"#utility.yul\":15423:15438 */\n mstore\n /* \"#utility.yul\":15457:15461 */\n 0x24\n /* \"#utility.yul\":15454:15455 */\n 0x00\n /* \"#utility.yul\":15447:15462 */\n revert\n\n auxdata: 0xa264697066735822122012f584f42101e802ebcd07623f2bda38a555440840115573dd81e236db49e5ee64736f6c634300080d0033\n}\n",
"bytecode": {
"functionDebugData": {
"@_976": {
"entryPoint": null,
"id": 976,
"parameterSlots": 2,
"returnSlots": 0
},
"@_startTokenId_985": {
"entryPoint": 135,
"id": 985,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_decode_available_length_t_string_memory_ptr_fromMemory": {
"entryPoint": 603,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr_fromMemory": {
"entryPoint": 678,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 729,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"allocate_memory": {
"entryPoint": 464,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 316,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 495,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 549,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 909,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 410,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 862,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 363,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 336,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 341,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 331,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 326,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 346,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4093:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:12",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:12"
},
"nodeType": "YulFunctionCall",
"src": "67:9:12"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:12"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:12",
"type": ""
}
],
"src": "7:75:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:12"
},
"nodeType": "YulFunctionCall",
"src": "187:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:12"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:12"
},
"nodeType": "YulFunctionCall",
"src": "310:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:12"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "423:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "433:6:12"
},
"nodeType": "YulFunctionCall",
"src": "433:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "433:12:12"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "334:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "546:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "563:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "566:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "556:6:12"
},
"nodeType": "YulFunctionCall",
"src": "556:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "556:12:12"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "457:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "628:54:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "638:38:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "656:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "663:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "652:3:12"
},
"nodeType": "YulFunctionCall",
"src": "652:14:12"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "672:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "668:3:12"
},
"nodeType": "YulFunctionCall",
"src": "668:7:12"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "648:3:12"
},
"nodeType": "YulFunctionCall",
"src": "648:28:12"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "638:6:12"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "621:6:12",
"type": ""
}
],
"src": "580:102:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "716:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "733:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "726:6:12"
},
"nodeType": "YulFunctionCall",
"src": "726:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "726:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "830:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "833:4:12",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "823:6:12"
},
"nodeType": "YulFunctionCall",
"src": "823:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "823:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "854:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "847:6:12"
},
"nodeType": "YulFunctionCall",
"src": "847:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "847:15:12"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "688:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "917:238:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "927:58:12",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "949:6:12"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "979:4:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "957:21:12"
},
"nodeType": "YulFunctionCall",
"src": "957:27:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "945:3:12"
},
"nodeType": "YulFunctionCall",
"src": "945:40:12"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "931:10:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1096:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1098:16:12"
},
"nodeType": "YulFunctionCall",
"src": "1098:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "1098:18:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1039:10:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1051:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1036:2:12"
},
"nodeType": "YulFunctionCall",
"src": "1036:34:12"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1075:10:12"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1087:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1072:2:12"
},
"nodeType": "YulFunctionCall",
"src": "1072:22:12"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1033:2:12"
},
"nodeType": "YulFunctionCall",
"src": "1033:62:12"
},
"nodeType": "YulIf",
"src": "1030:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1134:2:12",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1138:10:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1127:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1127:22:12"
},
"nodeType": "YulExpressionStatement",
"src": "1127:22:12"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "903:6:12",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "911:4:12",
"type": ""
}
],
"src": "874:281:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1202:88:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1212:30:12",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1222:18:12"
},
"nodeType": "YulFunctionCall",
"src": "1222:20:12"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1212:6:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1271:6:12"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1279:4:12"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1251:19:12"
},
"nodeType": "YulFunctionCall",
"src": "1251:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "1251:33:12"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1186:4:12",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1195:6:12",
"type": ""
}
],
"src": "1161:129:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1363:241:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1468:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1470:16:12"
},
"nodeType": "YulFunctionCall",
"src": "1470:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "1470:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1440:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1448:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1437:2:12"
},
"nodeType": "YulFunctionCall",
"src": "1437:30:12"
},
"nodeType": "YulIf",
"src": "1434:56:12"
},
{
"nodeType": "YulAssignment",
"src": "1500:37:12",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1530:6:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1508:21:12"
},
"nodeType": "YulFunctionCall",
"src": "1508:29:12"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1500:4:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1574:23:12",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1586:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1592:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1582:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1582:15:12"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1574:4:12"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1347:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1358:4:12",
"type": ""
}
],
"src": "1296:308:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1659:258:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1669:10:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1678:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1673:1:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1738:63:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1763:3:12"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1768:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1759:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1759:11:12"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1782:3:12"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1787:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1778:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1778:11:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1772:5:12"
},
"nodeType": "YulFunctionCall",
"src": "1772:18:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1752:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1752:39:12"
},
"nodeType": "YulExpressionStatement",
"src": "1752:39:12"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1699:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1702:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1696:2:12"
},
"nodeType": "YulFunctionCall",
"src": "1696:13:12"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1710:19:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1712:15:12",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1721:1:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1724:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1717:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1717:10:12"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1712:1:12"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1692:3:12",
"statements": []
},
"src": "1688:113:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1835:76:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1885:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1890:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1881:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1881:16:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1899:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1874:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1874:27:12"
},
"nodeType": "YulExpressionStatement",
"src": "1874:27:12"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1816:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1819:6:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1813:2:12"
},
"nodeType": "YulFunctionCall",
"src": "1813:13:12"
},
"nodeType": "YulIf",
"src": "1810:101:12"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1641:3:12",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1646:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1651:6:12",
"type": ""
}
],
"src": "1610:307:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2018:326:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2028:75:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2095:6:12"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2053:41:12"
},
"nodeType": "YulFunctionCall",
"src": "2053:49:12"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "2037:15:12"
},
"nodeType": "YulFunctionCall",
"src": "2037:66:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2028:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2119:5:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2126:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2112:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2112:21:12"
},
"nodeType": "YulExpressionStatement",
"src": "2112:21:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2142:27:12",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2157:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2164:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2153:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2153:16:12"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2146:3:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2207:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "2209:77:12"
},
"nodeType": "YulFunctionCall",
"src": "2209:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "2209:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2188:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2193:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2184:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2184:16:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2202:3:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2181:2:12"
},
"nodeType": "YulFunctionCall",
"src": "2181:25:12"
},
"nodeType": "YulIf",
"src": "2178:112:12"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2321:3:12"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2326:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2331:6:12"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2299:21:12"
},
"nodeType": "YulFunctionCall",
"src": "2299:39:12"
},
"nodeType": "YulExpressionStatement",
"src": "2299:39:12"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1991:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1996:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2004:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2012:5:12",
"type": ""
}
],
"src": "1923:421:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2437:282:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2486:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2488:77:12"
},
"nodeType": "YulFunctionCall",
"src": "2488:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "2488:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2465:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2473:4:12",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2461:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2461:17:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2480:3:12"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2457:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2457:27:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2450:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2450:35:12"
},
"nodeType": "YulIf",
"src": "2447:122:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2578:27:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2598:6:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2592:5:12"
},
"nodeType": "YulFunctionCall",
"src": "2592:13:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2582:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2614:99:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2686:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2694:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2682:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2682:17:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2701:6:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2709:3:12"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "2623:58:12"
},
"nodeType": "YulFunctionCall",
"src": "2623:90:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2614:5:12"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2415:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2423:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2431:5:12",
"type": ""
}
],
"src": "2364:355:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2839:739:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2885:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2887:77:12"
},
"nodeType": "YulFunctionCall",
"src": "2887:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "2887:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2860:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2869:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2856:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2856:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2881:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2852:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2852:32:12"
},
"nodeType": "YulIf",
"src": "2849:119:12"
},
{
"nodeType": "YulBlock",
"src": "2978:291:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2993:38:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3017:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3028:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3013:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3013:17:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3007:5:12"
},
"nodeType": "YulFunctionCall",
"src": "3007:24:12"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2997:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3078:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3080:77:12"
},
"nodeType": "YulFunctionCall",
"src": "3080:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "3080:79:12"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3050:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3058:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3047:2:12"
},
"nodeType": "YulFunctionCall",
"src": "3047:30:12"
},
"nodeType": "YulIf",
"src": "3044:117:12"
},
{
"nodeType": "YulAssignment",
"src": "3175:84:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3231:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3242:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3227:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3227:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3251:7:12"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3185:41:12"
},
"nodeType": "YulFunctionCall",
"src": "3185:74:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3175:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3279:292:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3294:39:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3318:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3329:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3314:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3314:18:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3308:5:12"
},
"nodeType": "YulFunctionCall",
"src": "3308:25:12"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3298:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3380:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3382:77:12"
},
"nodeType": "YulFunctionCall",
"src": "3382:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "3382:79:12"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3352:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3360:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3349:2:12"
},
"nodeType": "YulFunctionCall",
"src": "3349:30:12"
},
"nodeType": "YulIf",
"src": "3346:117:12"
},
{
"nodeType": "YulAssignment",
"src": "3477:84:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3533:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3544:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3529:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3529:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3553:7:12"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3487:41:12"
},
"nodeType": "YulFunctionCall",
"src": "3487:74:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3477:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2801:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2812:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2824:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2832:6:12",
"type": ""
}
],
"src": "2725:853:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3612:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3629:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3632:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3622:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3622:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "3622:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3726:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3729:4:12",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3719:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3719:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "3719:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3750:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3753:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3743:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3743:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "3743:15:12"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "3584:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3821:269:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3831:22:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3845:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3851:1:12",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "3841:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3841:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3831:6:12"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3862:38:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3892:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3898:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3888:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3888:12:12"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "3866:18:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3939:51:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3953:27:12",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3967:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3975:4:12",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3963:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3963:17:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3953:6:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "3919:18:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3912:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3912:26:12"
},
"nodeType": "YulIf",
"src": "3909:81:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4042:42:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "4056:16:12"
},
"nodeType": "YulFunctionCall",
"src": "4056:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "4056:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4006:18:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4029:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4037:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4026:2:12"
},
"nodeType": "YulFunctionCall",
"src": "4026:14:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4003:2:12"
},
"nodeType": "YulFunctionCall",
"src": "4003:38:12"
},
"nodeType": "YulIf",
"src": "4000:84:12"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3805:4:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3814:6:12",
"type": ""
}
],
"src": "3770:320:12"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function abi_decode_available_length_t_string_memory_ptr_fromMemory(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_memory_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := mload(offset)\n array := abi_decode_available_length_t_string_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n}\n",
"id": 12,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b50604051620023f4380380620023f48339818101604052810190620000379190620002d9565b81600290805190602001906200004f9291906200008c565b508060039080519060200190620000689291906200008c565b50620000796200008760201b60201c565b6000819055505050620003c2565b600090565b8280546200009a906200038d565b90600052602060002090601f016020900481019282620000be57600085556200010a565b82601f10620000d957805160ff19168380011785556200010a565b828001600101855582156200010a579182015b8281111562000109578251825591602001919060010190620000ec565b5b5090506200011991906200011d565b5090565b5b80821115620001385760008160009055506001016200011e565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620001a5826200015a565b810181811067ffffffffffffffff82111715620001c757620001c66200016b565b5b80604052505050565b6000620001dc6200013c565b9050620001ea82826200019a565b919050565b600067ffffffffffffffff8211156200020d576200020c6200016b565b5b62000218826200015a565b9050602081019050919050565b60005b838110156200024557808201518184015260208101905062000228565b8381111562000255576000848401525b50505050565b6000620002726200026c84620001ef565b620001d0565b90508281526020810184848401111562000291576200029062000155565b5b6200029e84828562000225565b509392505050565b600082601f830112620002be57620002bd62000150565b5b8151620002d08482602086016200025b565b91505092915050565b60008060408385031215620002f357620002f262000146565b5b600083015167ffffffffffffffff8111156200031457620003136200014b565b5b6200032285828601620002a6565b925050602083015167ffffffffffffffff8111156200034657620003456200014b565b5b6200035485828601620002a6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003a657607f821691505b602082108103620003bc57620003bb6200035e565b5b50919050565b61202280620003d26000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb4651461025d578063b88d4fde14610279578063c87b56dd14610295578063e985e9c5146102c5576100ea565b80636352211e146101df57806370a082311461020f57806395d89b411461023f576100ea565b8063095ea7b3116100c8578063095ea7b31461016d57806318160ddd1461018957806323b872dd146101a757806342842e0e146101c3576100ea565b806301ffc9a7146100ef57806306fdde031461011f578063081812fc1461013d575b600080fd5b61010960048036038101906101049190611731565b6102f5565b6040516101169190611779565b60405180910390f35b6101276103d7565b604051610134919061182d565b60405180910390f35b61015760048036038101906101529190611885565b610469565b60405161016491906118f3565b60405180910390f35b6101876004803603810190610182919061193a565b6104e5565b005b6101916105ef565b60405161019e9190611989565b60405180910390f35b6101c160048036038101906101bc91906119a4565b610606565b005b6101dd60048036038101906101d891906119a4565b610616565b005b6101f960048036038101906101f49190611885565b610636565b60405161020691906118f3565b60405180910390f35b610229600480360381019061022491906119f7565b61064c565b6040516102369190611989565b60405180910390f35b61024761071b565b604051610254919061182d565b60405180910390f35b61027760048036038101906102729190611a50565b6107ad565b005b610293600480360381019061028e9190611bc5565b610924565b005b6102af60048036038101906102aa9190611885565b6109a0565b6040516102bc919061182d565b60405180910390f35b6102df60048036038101906102da9190611c48565b610a3e565b6040516102ec9190611779565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806103c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103d057506103cf82610ad2565b5b9050919050565b6060600280546103e690611cb7565b80601f016020809104026020016040519081016040528092919081815260200182805461041290611cb7565b801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b600061047482610b3c565b6104aa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104f082610636565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610557576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610576610b8a565b73ffffffffffffffffffffffffffffffffffffffff16141580156105a857506105a6816105a1610b8a565b610a3e565b155b156105df576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6105ea838383610b92565b505050565b60006105f9610c44565b6001546000540303905090565b610611838383610c49565b505050565b61063183838360405180602001604052806000815250610924565b505050565b6000610641826110fd565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106b3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60606003805461072a90611cb7565b80601f016020809104026020016040519081016040528092919081815260200182805461075690611cb7565b80156107a35780601f10610778576101008083540402835291602001916107a3565b820191906000526020600020905b81548152906001019060200180831161078657829003601f168201915b5050505050905090565b6107b5610b8a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610819576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610826610b8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166108d3610b8a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516109189190611779565b60405180910390a35050565b61092f848484610c49565b61094e8373ffffffffffffffffffffffffffffffffffffffff1661138c565b80156109635750610961848484846113af565b155b1561099a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606109ab82610b3c565b6109e1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006109eb6114ff565b90506000815103610a0b5760405180602001604052806000815250610a36565b80610a1584611516565b604051602001610a26929190611d24565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081610b47610c44565b11158015610b56575060005482105b8015610b83575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000610c54826110fd565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cbf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16610ce0610b8a565b73ffffffffffffffffffffffffffffffffffffffff161480610d0f5750610d0e85610d09610b8a565b610a3e565b5b80610d545750610d1d610b8a565b73ffffffffffffffffffffffffffffffffffffffff16610d3c84610469565b73ffffffffffffffffffffffffffffffffffffffff16145b905080610d8d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610df3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e008585856001611676565b610e0c60008487610b92565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361108b57600054821461108a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110f6858585600161167c565b5050505050565b611105611682565b600082905080611113610c44565b11158015611122575060005481105b15611355576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161135357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611237578092505050611387565b5b60011561135257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461134d578092505050611387565b611238565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026113d5610b8a565b8786866040518563ffffffff1660e01b81526004016113f79493929190611d9d565b6020604051808303816000875af192505050801561143357506040513d601f19601f820116820180604052508101906114309190611dfe565b60015b6114ac573d8060008114611463576040519150601f19603f3d011682016040523d82523d6000602084013e611468565b606091505b5060008151036114a4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060405180602001604052806000815250905090565b60606000820361155d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611671565b600082905060005b6000821461158f57808061157890611e5a565b915050600a826115889190611ed1565b9150611565565b60008167ffffffffffffffff8111156115ab576115aa611a9a565b5b6040519080825280601f01601f1916602001820160405280156115dd5781602001600182028036833780820191505090505b5090505b6000851461166a576001826115f69190611f02565b9150600a856116059190611f36565b60306116119190611f67565b60f81b81838151811061162757611626611fbd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856116639190611ed1565b94506115e1565b8093505050505b919050565b50505050565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61170e816116d9565b811461171957600080fd5b50565b60008135905061172b81611705565b92915050565b600060208284031215611747576117466116cf565b5b60006117558482850161171c565b91505092915050565b60008115159050919050565b6117738161175e565b82525050565b600060208201905061178e600083018461176a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117ce5780820151818401526020810190506117b3565b838111156117dd576000848401525b50505050565b6000601f19601f8301169050919050565b60006117ff82611794565b611809818561179f565b93506118198185602086016117b0565b611822816117e3565b840191505092915050565b6000602082019050818103600083015261184781846117f4565b905092915050565b6000819050919050565b6118628161184f565b811461186d57600080fd5b50565b60008135905061187f81611859565b92915050565b60006020828403121561189b5761189a6116cf565b5b60006118a984828501611870565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118dd826118b2565b9050919050565b6118ed816118d2565b82525050565b600060208201905061190860008301846118e4565b92915050565b611917816118d2565b811461192257600080fd5b50565b6000813590506119348161190e565b92915050565b60008060408385031215611951576119506116cf565b5b600061195f85828601611925565b925050602061197085828601611870565b9150509250929050565b6119838161184f565b82525050565b600060208201905061199e600083018461197a565b92915050565b6000806000606084860312156119bd576119bc6116cf565b5b60006119cb86828701611925565b93505060206119dc86828701611925565b92505060406119ed86828701611870565b9150509250925092565b600060208284031215611a0d57611a0c6116cf565b5b6000611a1b84828501611925565b91505092915050565b611a2d8161175e565b8114611a3857600080fd5b50565b600081359050611a4a81611a24565b92915050565b60008060408385031215611a6757611a666116cf565b5b6000611a7585828601611925565b9250506020611a8685828601611a3b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611ad2826117e3565b810181811067ffffffffffffffff82111715611af157611af0611a9a565b5b80604052505050565b6000611b046116c5565b9050611b108282611ac9565b919050565b600067ffffffffffffffff821115611b3057611b2f611a9a565b5b611b39826117e3565b9050602081019050919050565b82818337600083830152505050565b6000611b68611b6384611b15565b611afa565b905082815260208101848484011115611b8457611b83611a95565b5b611b8f848285611b46565b509392505050565b600082601f830112611bac57611bab611a90565b5b8135611bbc848260208601611b55565b91505092915050565b60008060008060808587031215611bdf57611bde6116cf565b5b6000611bed87828801611925565b9450506020611bfe87828801611925565b9350506040611c0f87828801611870565b925050606085013567ffffffffffffffff811115611c3057611c2f6116d4565b5b611c3c87828801611b97565b91505092959194509250565b60008060408385031215611c5f57611c5e6116cf565b5b6000611c6d85828601611925565b9250506020611c7e85828601611925565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ccf57607f821691505b602082108103611ce257611ce1611c88565b5b50919050565b600081905092915050565b6000611cfe82611794565b611d088185611ce8565b9350611d188185602086016117b0565b80840191505092915050565b6000611d308285611cf3565b9150611d3c8284611cf3565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000611d6f82611d48565b611d798185611d53565b9350611d898185602086016117b0565b611d92816117e3565b840191505092915050565b6000608082019050611db260008301876118e4565b611dbf60208301866118e4565b611dcc604083018561197a565b8181036060830152611dde8184611d64565b905095945050505050565b600081519050611df881611705565b92915050565b600060208284031215611e1457611e136116cf565b5b6000611e2284828501611de9565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e658261184f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611e9757611e96611e2b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611edc8261184f565b9150611ee78361184f565b925082611ef757611ef6611ea2565b5b828204905092915050565b6000611f0d8261184f565b9150611f188361184f565b925082821015611f2b57611f2a611e2b565b5b828203905092915050565b6000611f418261184f565b9150611f4c8361184f565b925082611f5c57611f5b611ea2565b5b828206905092915050565b6000611f728261184f565b9150611f7d8361184f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611fb257611fb1611e2b565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122012f584f42101e802ebcd07623f2bda38a555440840115573dd81e236db49e5ee64736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x23F4 CODESIZE SUB DUP1 PUSH3 0x23F4 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x2D9 JUMP JUMPDEST DUP2 PUSH1 0x2 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x4F SWAP3 SWAP2 SWAP1 PUSH3 0x8C JUMP JUMPDEST POP DUP1 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x68 SWAP3 SWAP2 SWAP1 PUSH3 0x8C JUMP JUMPDEST POP PUSH3 0x79 PUSH3 0x87 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP POP PUSH3 0x3C2 JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x9A SWAP1 PUSH3 0x38D JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xBE JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x10A JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xD9 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x10A JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x10A JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x109 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xEC JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x119 SWAP2 SWAP1 PUSH3 0x11D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x138 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x11E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH3 0x1A5 DUP3 PUSH3 0x15A JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x1C7 JUMPI PUSH3 0x1C6 PUSH3 0x16B JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1DC PUSH3 0x13C JUMP JUMPDEST SWAP1 POP PUSH3 0x1EA DUP3 DUP3 PUSH3 0x19A JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x20D JUMPI PUSH3 0x20C PUSH3 0x16B JUMP JUMPDEST JUMPDEST PUSH3 0x218 DUP3 PUSH3 0x15A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x245 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x228 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x255 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x272 PUSH3 0x26C DUP5 PUSH3 0x1EF JUMP JUMPDEST PUSH3 0x1D0 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x291 JUMPI PUSH3 0x290 PUSH3 0x155 JUMP JUMPDEST JUMPDEST PUSH3 0x29E DUP5 DUP3 DUP6 PUSH3 0x225 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x2BE JUMPI PUSH3 0x2BD PUSH3 0x150 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x2D0 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x25B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x2F3 JUMPI PUSH3 0x2F2 PUSH3 0x146 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x314 JUMPI PUSH3 0x313 PUSH3 0x14B JUMP JUMPDEST JUMPDEST PUSH3 0x322 DUP6 DUP3 DUP7 ADD PUSH3 0x2A6 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x346 JUMPI PUSH3 0x345 PUSH3 0x14B JUMP JUMPDEST JUMPDEST PUSH3 0x354 DUP6 DUP3 DUP7 ADD PUSH3 0x2A6 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x3A6 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x3BC JUMPI PUSH3 0x3BB PUSH3 0x35E JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2022 DUP1 PUSH3 0x3D2 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 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x25D JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x279 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x295 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x2C5 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x20F JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x23F JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x189 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1A7 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x1C3 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x11F JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x13D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x109 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x104 SWAP2 SWAP1 PUSH2 0x1731 JUMP JUMPDEST PUSH2 0x2F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x116 SWAP2 SWAP1 PUSH2 0x1779 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x127 PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x182D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x157 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x1885 JUMP JUMPDEST PUSH2 0x469 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x164 SWAP2 SWAP1 PUSH2 0x18F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x187 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x182 SWAP2 SWAP1 PUSH2 0x193A JUMP JUMPDEST PUSH2 0x4E5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x191 PUSH2 0x5EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x19E SWAP2 SWAP1 PUSH2 0x1989 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1C1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BC SWAP2 SWAP1 PUSH2 0x19A4 JUMP JUMPDEST PUSH2 0x606 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1DD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1D8 SWAP2 SWAP1 PUSH2 0x19A4 JUMP JUMPDEST PUSH2 0x616 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1F9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F4 SWAP2 SWAP1 PUSH2 0x1885 JUMP JUMPDEST PUSH2 0x636 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x206 SWAP2 SWAP1 PUSH2 0x18F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x229 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x224 SWAP2 SWAP1 PUSH2 0x19F7 JUMP JUMPDEST PUSH2 0x64C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x236 SWAP2 SWAP1 PUSH2 0x1989 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x247 PUSH2 0x71B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x254 SWAP2 SWAP1 PUSH2 0x182D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x277 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x272 SWAP2 SWAP1 PUSH2 0x1A50 JUMP JUMPDEST PUSH2 0x7AD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x293 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28E SWAP2 SWAP1 PUSH2 0x1BC5 JUMP JUMPDEST PUSH2 0x924 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2AF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2AA SWAP2 SWAP1 PUSH2 0x1885 JUMP JUMPDEST PUSH2 0x9A0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2BC SWAP2 SWAP1 PUSH2 0x182D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2DF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DA SWAP2 SWAP1 PUSH2 0x1C48 JUMP JUMPDEST PUSH2 0xA3E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2EC SWAP2 SWAP1 PUSH2 0x1779 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x3C0 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x3D0 JUMPI POP PUSH2 0x3CF DUP3 PUSH2 0xAD2 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD PUSH2 0x3E6 SWAP1 PUSH2 0x1CB7 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 0x412 SWAP1 PUSH2 0x1CB7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x45F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x434 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x45F 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 0x442 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x474 DUP3 PUSH2 0xB3C JUMP JUMPDEST PUSH2 0x4AA JUMPI PUSH1 0x40 MLOAD PUSH32 0xCF4700E400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x6 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4F0 DUP3 PUSH2 0x636 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x557 JUMPI PUSH1 0x40 MLOAD PUSH32 0x943F7B8C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x576 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO DUP1 ISZERO PUSH2 0x5A8 JUMPI POP PUSH2 0x5A6 DUP2 PUSH2 0x5A1 PUSH2 0xB8A JUMP JUMPDEST PUSH2 0xA3E JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x5DF JUMPI PUSH1 0x40 MLOAD PUSH32 0xCFB3B94200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5EA DUP4 DUP4 DUP4 PUSH2 0xB92 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5F9 PUSH2 0xC44 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x0 SLOAD SUB SUB SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x611 DUP4 DUP4 DUP4 PUSH2 0xC49 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x631 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x924 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x641 DUP3 PUSH2 0x10FD JUMP JUMPDEST PUSH1 0x0 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x6B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8F4EB60400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x5 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x72A SWAP1 PUSH2 0x1CB7 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 0x756 SWAP1 PUSH2 0x1CB7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x7A3 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x778 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x7A3 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 0x786 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x7B5 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x819 JUMPI PUSH1 0x40 MLOAD PUSH32 0xB06307DB00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x7 PUSH1 0x0 PUSH2 0x826 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8D3 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x918 SWAP2 SWAP1 PUSH2 0x1779 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x92F DUP5 DUP5 DUP5 PUSH2 0xC49 JUMP JUMPDEST PUSH2 0x94E DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x138C JUMP JUMPDEST DUP1 ISZERO PUSH2 0x963 JUMPI POP PUSH2 0x961 DUP5 DUP5 DUP5 DUP5 PUSH2 0x13AF JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x99A JUMPI PUSH1 0x40 MLOAD PUSH32 0xD1A57ED600000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x9AB DUP3 PUSH2 0xB3C JUMP JUMPDEST PUSH2 0x9E1 JUMPI PUSH1 0x40 MLOAD PUSH32 0xA14C4B5000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x9EB PUSH2 0x14FF JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD SUB PUSH2 0xA0B JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xA36 JUMP JUMPDEST DUP1 PUSH2 0xA15 DUP5 PUSH2 0x1516 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xA26 SWAP3 SWAP2 SWAP1 PUSH2 0x1D24 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0xB47 PUSH2 0xC44 JUMP JUMPDEST GT ISZERO DUP1 ISZERO PUSH2 0xB56 JUMPI POP PUSH1 0x0 SLOAD DUP3 LT JUMPDEST DUP1 ISZERO PUSH2 0xB83 JUMPI POP PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x1C SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP3 PUSH1 0x6 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC54 DUP3 PUSH2 0x10FD JUMP JUMPDEST SWAP1 POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xCBF JUMPI PUSH1 0x40 MLOAD PUSH32 0xA114810000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xCE0 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xD0F JUMPI POP PUSH2 0xD0E DUP6 PUSH2 0xD09 PUSH2 0xB8A JUMP JUMPDEST PUSH2 0xA3E JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0xD54 JUMPI POP PUSH2 0xD1D PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD3C DUP5 PUSH2 0x469 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP1 POP DUP1 PUSH2 0xD8D JUMPI PUSH1 0x40 MLOAD PUSH32 0x59C896BE00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xDF3 JUMPI PUSH1 0x40 MLOAD PUSH32 0xEA553B3400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE00 DUP6 DUP6 DUP6 PUSH1 0x1 PUSH2 0x1676 JUMP JUMPDEST PUSH2 0xE0C PUSH1 0x0 DUP5 DUP8 PUSH2 0xB92 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x5 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND SUB SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x5 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND ADD SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP DUP5 DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP TIMESTAMP DUP2 PUSH1 0x0 ADD PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x1 DUP6 ADD SWAP1 POP PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x108B JUMPI PUSH1 0x0 SLOAD DUP3 EQ PUSH2 0x108A JUMPI DUP8 DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP5 PUSH1 0x20 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMPDEST JUMPDEST POP POP POP DUP3 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x10F6 DUP6 DUP6 DUP6 PUSH1 0x1 PUSH2 0x167C JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1105 PUSH2 0x1682 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP DUP1 PUSH2 0x1113 PUSH2 0xC44 JUMP JUMPDEST GT ISZERO DUP1 ISZERO PUSH2 0x1122 JUMPI POP PUSH1 0x0 SLOAD DUP2 LT JUMPDEST ISZERO PUSH2 0x1355 JUMPI PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x1C SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE POP POP SWAP1 POP DUP1 PUSH1 0x40 ADD MLOAD PUSH2 0x1353 JUMPI PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1237 JUMPI DUP1 SWAP3 POP POP POP PUSH2 0x1387 JUMP JUMPDEST JUMPDEST PUSH1 0x1 ISZERO PUSH2 0x1352 JUMPI DUP2 DUP1 PUSH1 0x1 SWAP1 SUB SWAP3 POP POP PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x1C SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE POP POP SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x134D JUMPI DUP1 SWAP3 POP POP POP PUSH2 0x1387 JUMP JUMPDEST PUSH2 0x1238 JUMP JUMPDEST JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xDF2D9B4200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x13D5 PUSH2 0xB8A JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13F7 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1D9D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1433 JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1430 SWAP2 SWAP1 PUSH2 0x1DFE JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x14AC JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1463 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1468 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD SUB PUSH2 0x14A4 JUMPI PUSH1 0x40 MLOAD PUSH32 0xD1A57ED600000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 SUB PUSH2 0x155D JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1671 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x158F JUMPI DUP1 DUP1 PUSH2 0x1578 SWAP1 PUSH2 0x1E5A JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x1588 SWAP2 SWAP1 PUSH2 0x1ED1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1565 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x15AB JUMPI PUSH2 0x15AA PUSH2 0x1A9A JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x15DD JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x166A JUMPI PUSH1 0x1 DUP3 PUSH2 0x15F6 SWAP2 SWAP1 PUSH2 0x1F02 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x1605 SWAP2 SWAP1 PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x1611 SWAP2 SWAP1 PUSH2 0x1F67 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1627 JUMPI PUSH2 0x1626 PUSH2 0x1FBD JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x1663 SWAP2 SWAP1 PUSH2 0x1ED1 JUMP JUMPDEST SWAP5 POP PUSH2 0x15E1 JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x170E DUP2 PUSH2 0x16D9 JUMP JUMPDEST DUP2 EQ PUSH2 0x1719 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x172B DUP2 PUSH2 0x1705 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1747 JUMPI PUSH2 0x1746 PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1755 DUP5 DUP3 DUP6 ADD PUSH2 0x171C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1773 DUP2 PUSH2 0x175E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x178E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x176A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x17CE JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x17B3 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x17DD JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17FF DUP3 PUSH2 0x1794 JUMP JUMPDEST PUSH2 0x1809 DUP2 DUP6 PUSH2 0x179F JUMP JUMPDEST SWAP4 POP PUSH2 0x1819 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x17B0 JUMP JUMPDEST PUSH2 0x1822 DUP2 PUSH2 0x17E3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1847 DUP2 DUP5 PUSH2 0x17F4 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1862 DUP2 PUSH2 0x184F JUMP JUMPDEST DUP2 EQ PUSH2 0x186D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x187F DUP2 PUSH2 0x1859 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x189B JUMPI PUSH2 0x189A PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x18A9 DUP5 DUP3 DUP6 ADD PUSH2 0x1870 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18DD DUP3 PUSH2 0x18B2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x18ED DUP2 PUSH2 0x18D2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1908 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x18E4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1917 DUP2 PUSH2 0x18D2 JUMP JUMPDEST DUP2 EQ PUSH2 0x1922 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1934 DUP2 PUSH2 0x190E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1951 JUMPI PUSH2 0x1950 PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x195F DUP6 DUP3 DUP7 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1970 DUP6 DUP3 DUP7 ADD PUSH2 0x1870 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x1983 DUP2 PUSH2 0x184F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x199E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x197A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x19BD JUMPI PUSH2 0x19BC PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x19CB DUP7 DUP3 DUP8 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x19DC DUP7 DUP3 DUP8 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x19ED DUP7 DUP3 DUP8 ADD PUSH2 0x1870 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1A0D JUMPI PUSH2 0x1A0C PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1A1B DUP5 DUP3 DUP6 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1A2D DUP2 PUSH2 0x175E JUMP JUMPDEST DUP2 EQ PUSH2 0x1A38 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1A4A DUP2 PUSH2 0x1A24 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1A67 JUMPI PUSH2 0x1A66 PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1A75 DUP6 DUP3 DUP7 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1A86 DUP6 DUP3 DUP7 ADD PUSH2 0x1A3B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x1AD2 DUP3 PUSH2 0x17E3 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1AF1 JUMPI PUSH2 0x1AF0 PUSH2 0x1A9A JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B04 PUSH2 0x16C5 JUMP JUMPDEST SWAP1 POP PUSH2 0x1B10 DUP3 DUP3 PUSH2 0x1AC9 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1B30 JUMPI PUSH2 0x1B2F PUSH2 0x1A9A JUMP JUMPDEST JUMPDEST PUSH2 0x1B39 DUP3 PUSH2 0x17E3 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B68 PUSH2 0x1B63 DUP5 PUSH2 0x1B15 JUMP JUMPDEST PUSH2 0x1AFA JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1B84 JUMPI PUSH2 0x1B83 PUSH2 0x1A95 JUMP JUMPDEST JUMPDEST PUSH2 0x1B8F DUP5 DUP3 DUP6 PUSH2 0x1B46 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1BAC JUMPI PUSH2 0x1BAB PUSH2 0x1A90 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1BBC DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1B55 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1BDF JUMPI PUSH2 0x1BDE PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1BED DUP8 DUP3 DUP9 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x1BFE DUP8 DUP3 DUP9 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x1C0F DUP8 DUP3 DUP9 ADD PUSH2 0x1870 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1C30 JUMPI PUSH2 0x1C2F PUSH2 0x16D4 JUMP JUMPDEST JUMPDEST PUSH2 0x1C3C DUP8 DUP3 DUP9 ADD PUSH2 0x1B97 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1C5F JUMPI PUSH2 0x1C5E PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C6D DUP6 DUP3 DUP7 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1C7E DUP6 DUP3 DUP7 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1CCF JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1CE2 JUMPI PUSH2 0x1CE1 PUSH2 0x1C88 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CFE DUP3 PUSH2 0x1794 JUMP JUMPDEST PUSH2 0x1D08 DUP2 DUP6 PUSH2 0x1CE8 JUMP JUMPDEST SWAP4 POP PUSH2 0x1D18 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x17B0 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D30 DUP3 DUP6 PUSH2 0x1CF3 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D3C DUP3 DUP5 PUSH2 0x1CF3 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D6F DUP3 PUSH2 0x1D48 JUMP JUMPDEST PUSH2 0x1D79 DUP2 DUP6 PUSH2 0x1D53 JUMP JUMPDEST SWAP4 POP PUSH2 0x1D89 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x17B0 JUMP JUMPDEST PUSH2 0x1D92 DUP2 PUSH2 0x17E3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x1DB2 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x18E4 JUMP JUMPDEST PUSH2 0x1DBF PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x18E4 JUMP JUMPDEST PUSH2 0x1DCC PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x197A JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1DDE DUP2 DUP5 PUSH2 0x1D64 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x1DF8 DUP2 PUSH2 0x1705 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1E14 JUMPI PUSH2 0x1E13 PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1E22 DUP5 DUP3 DUP6 ADD PUSH2 0x1DE9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1E65 DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x1E97 JUMPI PUSH2 0x1E96 PUSH2 0x1E2B JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1EDC DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH2 0x1EE7 DUP4 PUSH2 0x184F JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1EF7 JUMPI PUSH2 0x1EF6 PUSH2 0x1EA2 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F0D DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH2 0x1F18 DUP4 PUSH2 0x184F JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1F2B JUMPI PUSH2 0x1F2A PUSH2 0x1E2B JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F41 DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH2 0x1F4C DUP4 PUSH2 0x184F JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1F5C JUMPI PUSH2 0x1F5B PUSH2 0x1EA2 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F72 DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH2 0x1F7D DUP4 PUSH2 0x184F JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1FB2 JUMPI PUSH2 0x1FB1 PUSH2 0x1E2B JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SLT CREATE2 DUP5 DELEGATECALL 0x21 ADD 0xE8 MUL 0xEB 0xCD SMOD PUSH3 0x3F2BDA CODESIZE 0xA5 SSTORE DIFFICULTY ADDMOD BLOCKHASH GT SSTORE PUSH20 0xDD81E236DB49E5EE64736F6C634300080D003300 ",
"sourceMap": "1464:20331:10:-:0;;;3357:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3431:5;3423;:13;;;;;;;;;;;;:::i;:::-;;3456:7;3446;:17;;;;;;;;;;;;:::i;:::-;;3489:15;:13;;;:15;;:::i;:::-;3473:13;:31;;;;3357:154;;1464:20331;;3603:90;3659:7;3603:90;:::o;1464:20331::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:12:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:307::-;1678:1;1688:113;1702:6;1699:1;1696:13;1688:113;;;1787:1;1782:3;1778:11;1772:18;1768:1;1763:3;1759:11;1752:39;1724:2;1721:1;1717:10;1712:15;;1688:113;;;1819:6;1816:1;1813:13;1810:101;;;1899:1;1890:6;1885:3;1881:16;1874:27;1810:101;1659:258;1610:307;;;:::o;1923:421::-;2012:5;2037:66;2053:49;2095:6;2053:49;:::i;:::-;2037:66;:::i;:::-;2028:75;;2126:6;2119:5;2112:21;2164:4;2157:5;2153:16;2202:3;2193:6;2188:3;2184:16;2181:25;2178:112;;;2209:79;;:::i;:::-;2178:112;2299:39;2331:6;2326:3;2321;2299:39;:::i;:::-;2018:326;1923:421;;;;;:::o;2364:355::-;2431:5;2480:3;2473:4;2465:6;2461:17;2457:27;2447:122;;2488:79;;:::i;:::-;2447:122;2598:6;2592:13;2623:90;2709:3;2701:6;2694:4;2686:6;2682:17;2623:90;:::i;:::-;2614:99;;2437:282;2364:355;;;;:::o;2725:853::-;2824:6;2832;2881:2;2869:9;2860:7;2856:23;2852:32;2849:119;;;2887:79;;:::i;:::-;2849:119;3028:1;3017:9;3013:17;3007:24;3058:18;3050:6;3047:30;3044:117;;;3080:79;;:::i;:::-;3044:117;3185:74;3251:7;3242:6;3231:9;3227:22;3185:74;:::i;:::-;3175:84;;2978:291;3329:2;3318:9;3314:18;3308:25;3360:18;3352:6;3349:30;3346:117;;;3382:79;;:::i;:::-;3346:117;3487:74;3553:7;3544:6;3533:9;3529:22;3487:74;:::i;:::-;3477:84;;3279:292;2725:853;;;;;:::o;3584:180::-;3632:77;3629:1;3622:88;3729:4;3726:1;3719:15;3753:4;3750:1;3743:15;3770:320;3814:6;3851:1;3845:4;3841:12;3831:22;;3898:1;3892:4;3888:12;3919:18;3909:81;;3975:4;3967:6;3963:17;3953:27;;3909:81;4037:2;4029:6;4026:14;4006:18;4003:38;4000:84;;4056:18;;:::i;:::-;4000:84;3821:269;3770:320;;;:::o;1464:20331:10:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfers_2181": {
"entryPoint": 5756,
"id": 2181,
"parameterSlots": 4,
"returnSlots": 0
},
"@_approve_2100": {
"entryPoint": 2962,
"id": 2100,
"parameterSlots": 3,
"returnSlots": 0
},
"@_baseURI_1297": {
"entryPoint": 5375,
"id": 1297,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfers_2168": {
"entryPoint": 5750,
"id": 2168,
"parameterSlots": 4,
"returnSlots": 0
},
"@_checkContractOnERC721Received_2155": {
"entryPoint": 5039,
"id": 2155,
"parameterSlots": 4,
"returnSlots": 1
},
"@_exists_1514": {
"entryPoint": 2876,
"id": 1514,
"parameterSlots": 1,
"returnSlots": 1
},
"@_msgSender_612": {
"entryPoint": 2954,
"id": 612,
"parameterSlots": 0,
"returnSlots": 1
},
"@_ownershipOf_1210": {
"entryPoint": 4349,
"id": 1210,
"parameterSlots": 1,
"returnSlots": 1
},
"@_startTokenId_985": {
"entryPoint": 3140,
"id": 985,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transfer_1883": {
"entryPoint": 3145,
"id": 1883,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_1343": {
"entryPoint": 1253,
"id": 1343,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_1072": {
"entryPoint": 1612,
"id": 1072,
"parameterSlots": 1,
"returnSlots": 1
},
"@getApproved_1365": {
"entryPoint": 1129,
"id": 1365,
"parameterSlots": 1,
"returnSlots": 1
},
"@isApprovedForAll_1417": {
"entryPoint": 2622,
"id": 1417,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_323": {
"entryPoint": 5004,
"id": 323,
"parameterSlots": 1,
"returnSlots": 1
},
"@name_1235": {
"entryPoint": 983,
"id": 1235,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_1225": {
"entryPoint": 1590,
"id": 1225,
"parameterSlots": 1,
"returnSlots": 1
},
"@safeTransferFrom_1454": {
"entryPoint": 1558,
"id": 1454,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_1490": {
"entryPoint": 2340,
"id": 1490,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_1399": {
"entryPoint": 1965,
"id": 1399,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_1044": {
"entryPoint": 757,
"id": 1044,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_848": {
"entryPoint": 2770,
"id": 848,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_1245": {
"entryPoint": 1819,
"id": 1245,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_707": {
"entryPoint": 5398,
"id": 707,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_1288": {
"entryPoint": 2464,
"id": 1288,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_1000": {
"entryPoint": 1519,
"id": 1000,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_1435": {
"entryPoint": 1542,
"id": 1435,
"parameterSlots": 3,
"returnSlots": 0
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 6997,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 6437,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 6715,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 5916,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 7657,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 7063,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 6256,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 6647,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 7240,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 6564,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 7109,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 6736,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 6458,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 5937,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 7678,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 6277,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 6372,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 5994,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 7524,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6132,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 7411,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 6522,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 7460,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 6387,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed": {
"entryPoint": 7581,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 6009,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6189,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 6537,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 6906,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 5829,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 6933,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 7496,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 6036,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 7507,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 6047,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 7400,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 8039,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 7889,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 7938,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 6354,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 5982,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 5849,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 6322,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 6223,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 6982,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 6064,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 7351,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 6857,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"increment_t_uint256": {
"entryPoint": 7770,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 7990,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 7723,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 7842,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 7304,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 8125,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 6810,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 6800,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 6805,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 5844,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 5839,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 6115,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_address": {
"entryPoint": 6414,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 6692,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 5893,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 6233,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:15471:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:12",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:12"
},
"nodeType": "YulFunctionCall",
"src": "67:9:12"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:12"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:12",
"type": ""
}
],
"src": "7:75:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:12"
},
"nodeType": "YulFunctionCall",
"src": "187:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:12"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:12"
},
"nodeType": "YulFunctionCall",
"src": "310:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:12"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "378:105:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "388:89:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "403:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "410:66:12",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "399:3:12"
},
"nodeType": "YulFunctionCall",
"src": "399:78:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "388:7:12"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "360:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "370:7:12",
"type": ""
}
],
"src": "334:149:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "531:78:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "587:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "596:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "599:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "589:6:12"
},
"nodeType": "YulFunctionCall",
"src": "589:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "589:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "554:5:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "578:5:12"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "561:16:12"
},
"nodeType": "YulFunctionCall",
"src": "561:23:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "551:2:12"
},
"nodeType": "YulFunctionCall",
"src": "551:34:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "544:6:12"
},
"nodeType": "YulFunctionCall",
"src": "544:42:12"
},
"nodeType": "YulIf",
"src": "541:62:12"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "524:5:12",
"type": ""
}
],
"src": "489:120:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "666:86:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "676:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "698:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "685:12:12"
},
"nodeType": "YulFunctionCall",
"src": "685:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "676:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "740:5:12"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "714:25:12"
},
"nodeType": "YulFunctionCall",
"src": "714:32:12"
},
"nodeType": "YulExpressionStatement",
"src": "714:32:12"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "644:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "652:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "660:5:12",
"type": ""
}
],
"src": "615:137:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "823:262:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "871:77:12"
},
"nodeType": "YulFunctionCall",
"src": "871:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "871:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "844:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "853:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "840:3:12"
},
"nodeType": "YulFunctionCall",
"src": "840:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "865:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "836:3:12"
},
"nodeType": "YulFunctionCall",
"src": "836:32:12"
},
"nodeType": "YulIf",
"src": "833:119:12"
},
{
"nodeType": "YulBlock",
"src": "962:116:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "977:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "991:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "981:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1006:62:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1040:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1051:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1036:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1036:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1060:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1016:19:12"
},
"nodeType": "YulFunctionCall",
"src": "1016:52:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1006:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "793:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "804:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "816:6:12",
"type": ""
}
],
"src": "758:327:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1133:48:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1143:32:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1168:5:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1161:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1161:13:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1154:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1154:21:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1143:7:12"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1115:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1125:7:12",
"type": ""
}
],
"src": "1091:90:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1246:50:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1263:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1283:5:12"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "1268:14:12"
},
"nodeType": "YulFunctionCall",
"src": "1268:21:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1256:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1256:34:12"
},
"nodeType": "YulExpressionStatement",
"src": "1256:34:12"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1234:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1241:3:12",
"type": ""
}
],
"src": "1187:109:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1394:118:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1404:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1416:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1427:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1412:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1412:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1404:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1478:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1491:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1502:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1487:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1487:17:12"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "1440:37:12"
},
"nodeType": "YulFunctionCall",
"src": "1440:65:12"
},
"nodeType": "YulExpressionStatement",
"src": "1440:65:12"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1366:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1378:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1389:4:12",
"type": ""
}
],
"src": "1302:210:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1577:40:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1588:22:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1604:5:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1598:5:12"
},
"nodeType": "YulFunctionCall",
"src": "1598:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1588:6:12"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1560:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1570:6:12",
"type": ""
}
],
"src": "1518:99:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1719:73:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1736:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1741:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1729:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1729:19:12"
},
"nodeType": "YulExpressionStatement",
"src": "1729:19:12"
},
{
"nodeType": "YulAssignment",
"src": "1757:29:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1776:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1781:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1772:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1772:14:12"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1757:11:12"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1691:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1696:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1707:11:12",
"type": ""
}
],
"src": "1623:169:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1847:258:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1857:10:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1866:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1861:1:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1926:63:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1951:3:12"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1956:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1947:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1947:11:12"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1970:3:12"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1975:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1966:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1966:11:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1960:5:12"
},
"nodeType": "YulFunctionCall",
"src": "1960:18:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1940:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1940:39:12"
},
"nodeType": "YulExpressionStatement",
"src": "1940:39:12"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1887:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1890:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1884:2:12"
},
"nodeType": "YulFunctionCall",
"src": "1884:13:12"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1898:19:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1900:15:12",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1909:1:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1912:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1905:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1905:10:12"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1900:1:12"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1880:3:12",
"statements": []
},
"src": "1876:113:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2023:76:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2073:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2078:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2069:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2069:16:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2087:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2062:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2062:27:12"
},
"nodeType": "YulExpressionStatement",
"src": "2062:27:12"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2004:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2007:6:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2001:2:12"
},
"nodeType": "YulFunctionCall",
"src": "2001:13:12"
},
"nodeType": "YulIf",
"src": "1998:101:12"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1829:3:12",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1834:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1839:6:12",
"type": ""
}
],
"src": "1798:307:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2159:54:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2169:38:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2187:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2194:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2183:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2183:14:12"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2203:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2199:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2199:7:12"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2179:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2179:28:12"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "2169:6:12"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2142:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "2152:6:12",
"type": ""
}
],
"src": "2111:102:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2311:272:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2321:53:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2368:5:12"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2335:32:12"
},
"nodeType": "YulFunctionCall",
"src": "2335:39:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2325:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2383:78:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2449:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2454:6:12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2390:58:12"
},
"nodeType": "YulFunctionCall",
"src": "2390:71:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2383:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2496:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2503:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2492:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2492:16:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2510:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2515:6:12"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2470:21:12"
},
"nodeType": "YulFunctionCall",
"src": "2470:52:12"
},
"nodeType": "YulExpressionStatement",
"src": "2470:52:12"
},
{
"nodeType": "YulAssignment",
"src": "2531:46:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2542:3:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2569:6:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2547:21:12"
},
"nodeType": "YulFunctionCall",
"src": "2547:29:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2538:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2538:39:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2531:3:12"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2292:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2299:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2307:3:12",
"type": ""
}
],
"src": "2219:364:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2707:195:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2717:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2729:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2740:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2725:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2725:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2717:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2764:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2775:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2760:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2760:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2783:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2789:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2779:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2779:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2753:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2753:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "2753:47:12"
},
{
"nodeType": "YulAssignment",
"src": "2809:86:12",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2881:6:12"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2890:4:12"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2817:63:12"
},
"nodeType": "YulFunctionCall",
"src": "2817:78:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2809:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2679:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2691:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2702:4:12",
"type": ""
}
],
"src": "2589:313:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2953:32:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2963:16:12",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2974:5:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2963:7:12"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2935:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2945:7:12",
"type": ""
}
],
"src": "2908:77:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3034:79:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3091:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3100:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3103:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3093:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3093:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "3093:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3057:5:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3082:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3064:17:12"
},
"nodeType": "YulFunctionCall",
"src": "3064:24:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3054:2:12"
},
"nodeType": "YulFunctionCall",
"src": "3054:35:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3047:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3047:43:12"
},
"nodeType": "YulIf",
"src": "3044:63:12"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3027:5:12",
"type": ""
}
],
"src": "2991:122:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3171:87:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3181:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3203:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3190:12:12"
},
"nodeType": "YulFunctionCall",
"src": "3190:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3181:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3246:5:12"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "3219:26:12"
},
"nodeType": "YulFunctionCall",
"src": "3219:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "3219:33:12"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3149:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3157:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3165:5:12",
"type": ""
}
],
"src": "3119:139:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3330:263:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3376:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3378:77:12"
},
"nodeType": "YulFunctionCall",
"src": "3378:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "3378:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3351:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3360:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3347:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3347:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3372:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3343:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3343:32:12"
},
"nodeType": "YulIf",
"src": "3340:119:12"
},
{
"nodeType": "YulBlock",
"src": "3469:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3484:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3498:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3488:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3513:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3548:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3559:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3544:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3544:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3568:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3523:20:12"
},
"nodeType": "YulFunctionCall",
"src": "3523:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3513:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3300:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3311:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3323:6:12",
"type": ""
}
],
"src": "3264:329:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3644:81:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3654:65:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3669:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3676:42:12",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3665:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3665:54:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3654:7:12"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3626:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3636:7:12",
"type": ""
}
],
"src": "3599:126:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3776:51:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3786:35:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3815:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "3797:17:12"
},
"nodeType": "YulFunctionCall",
"src": "3797:24:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3786:7:12"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3758:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3768:7:12",
"type": ""
}
],
"src": "3731:96:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3898:53:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3915:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3938:5:12"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "3920:17:12"
},
"nodeType": "YulFunctionCall",
"src": "3920:24:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3908:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3908:37:12"
},
"nodeType": "YulExpressionStatement",
"src": "3908:37:12"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3886:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3893:3:12",
"type": ""
}
],
"src": "3833:118:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4055:124:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4065:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4077:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4088:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4073:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4073:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4065:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4145:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4158:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4169:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4154:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4154:17:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "4101:43:12"
},
"nodeType": "YulFunctionCall",
"src": "4101:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "4101:71:12"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4027:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4039:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4050:4:12",
"type": ""
}
],
"src": "3957:222:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4228:79:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4285:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4294:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4297:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4287:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4287:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "4287:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4251:5:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4276:5:12"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "4258:17:12"
},
"nodeType": "YulFunctionCall",
"src": "4258:24:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4248:2:12"
},
"nodeType": "YulFunctionCall",
"src": "4248:35:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4241:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4241:43:12"
},
"nodeType": "YulIf",
"src": "4238:63:12"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4221:5:12",
"type": ""
}
],
"src": "4185:122:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4365:87:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4375:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4397:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4384:12:12"
},
"nodeType": "YulFunctionCall",
"src": "4384:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4375:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4440:5:12"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "4413:26:12"
},
"nodeType": "YulFunctionCall",
"src": "4413:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "4413:33:12"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4343:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4351:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4359:5:12",
"type": ""
}
],
"src": "4313:139:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4541:391:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4587:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4589:77:12"
},
"nodeType": "YulFunctionCall",
"src": "4589:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "4589:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4562:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4571:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4558:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4558:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4583:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4554:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4554:32:12"
},
"nodeType": "YulIf",
"src": "4551:119:12"
},
{
"nodeType": "YulBlock",
"src": "4680:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4695:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4709:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4699:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4724:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4759:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4770:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4755:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4755:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4779:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4734:20:12"
},
"nodeType": "YulFunctionCall",
"src": "4734:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4724:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4807:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4822:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4836:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4826:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4852:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4887:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4898:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4883:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4883:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4907:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4862:20:12"
},
"nodeType": "YulFunctionCall",
"src": "4862:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4852:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4503:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4514:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4526:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4534:6:12",
"type": ""
}
],
"src": "4458:474:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5003:53:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5020:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5043:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5025:17:12"
},
"nodeType": "YulFunctionCall",
"src": "5025:24:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5013:6:12"
},
"nodeType": "YulFunctionCall",
"src": "5013:37:12"
},
"nodeType": "YulExpressionStatement",
"src": "5013:37:12"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4991:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4998:3:12",
"type": ""
}
],
"src": "4938:118:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5160:124:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5170:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5182:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5193:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5178:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5178:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5170:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5250:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5263:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5274:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5259:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5259:17:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5206:43:12"
},
"nodeType": "YulFunctionCall",
"src": "5206:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "5206:71:12"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5132:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5144:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5155:4:12",
"type": ""
}
],
"src": "5062:222:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5390:519:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5436:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5438:77:12"
},
"nodeType": "YulFunctionCall",
"src": "5438:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "5438:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5411:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5420:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5407:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5407:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5432:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5403:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5403:32:12"
},
"nodeType": "YulIf",
"src": "5400:119:12"
},
{
"nodeType": "YulBlock",
"src": "5529:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5544:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5558:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5548:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5573:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5608:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5619:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5604:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5604:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5628:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5583:20:12"
},
"nodeType": "YulFunctionCall",
"src": "5583:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5573:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5656:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5671:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5685:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5675:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5701:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5736:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5747:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5732:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5732:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5756:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5711:20:12"
},
"nodeType": "YulFunctionCall",
"src": "5711:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5701:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5784:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5799:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5813:2:12",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5803:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5829:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5864:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5875:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5860:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5860:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5884:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5839:20:12"
},
"nodeType": "YulFunctionCall",
"src": "5839:53:12"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5829:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5344:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5355:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5367:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5375:6:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "5383:6:12",
"type": ""
}
],
"src": "5290:619:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5981:263:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6027:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6029:77:12"
},
"nodeType": "YulFunctionCall",
"src": "6029:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "6029:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6002:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6011:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5998:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5998:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6023:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5994:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5994:32:12"
},
"nodeType": "YulIf",
"src": "5991:119:12"
},
{
"nodeType": "YulBlock",
"src": "6120:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6135:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6149:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6139:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6164:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6199:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6210:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6195:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6195:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6219:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6174:20:12"
},
"nodeType": "YulFunctionCall",
"src": "6174:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6164:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5951:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5962:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5974:6:12",
"type": ""
}
],
"src": "5915:329:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6290:76:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6344:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6353:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6356:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6346:6:12"
},
"nodeType": "YulFunctionCall",
"src": "6346:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "6346:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6313:5:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6335:5:12"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "6320:14:12"
},
"nodeType": "YulFunctionCall",
"src": "6320:21:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6310:2:12"
},
"nodeType": "YulFunctionCall",
"src": "6310:32:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6303:6:12"
},
"nodeType": "YulFunctionCall",
"src": "6303:40:12"
},
"nodeType": "YulIf",
"src": "6300:60:12"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6283:5:12",
"type": ""
}
],
"src": "6250:116:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6421:84:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6431:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6453:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6440:12:12"
},
"nodeType": "YulFunctionCall",
"src": "6440:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6431:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6493:5:12"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "6469:23:12"
},
"nodeType": "YulFunctionCall",
"src": "6469:30:12"
},
"nodeType": "YulExpressionStatement",
"src": "6469:30:12"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6399:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6407:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6415:5:12",
"type": ""
}
],
"src": "6372:133:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6591:388:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6637:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6639:77:12"
},
"nodeType": "YulFunctionCall",
"src": "6639:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "6639:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6612:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6621:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6608:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6608:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6633:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6604:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6604:32:12"
},
"nodeType": "YulIf",
"src": "6601:119:12"
},
{
"nodeType": "YulBlock",
"src": "6730:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6745:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6759:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6749:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6774:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6809:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6820:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6805:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6805:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6829:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6784:20:12"
},
"nodeType": "YulFunctionCall",
"src": "6784:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6774:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6857:115:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6872:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6886:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6876:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6902:60:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6934:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6945:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6930:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6930:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6954:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "6912:17:12"
},
"nodeType": "YulFunctionCall",
"src": "6912:50:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6902:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6553:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6564:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6576:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6584:6:12",
"type": ""
}
],
"src": "6511:468:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7074:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7091:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7094:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7084:6:12"
},
"nodeType": "YulFunctionCall",
"src": "7084:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "7084:12:12"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "6985:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7197:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7214:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7217:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7207:6:12"
},
"nodeType": "YulFunctionCall",
"src": "7207:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "7207:12:12"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "7108:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7259:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7276:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7279:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7269:6:12"
},
"nodeType": "YulFunctionCall",
"src": "7269:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "7269:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7373:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7376:4:12",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7366:6:12"
},
"nodeType": "YulFunctionCall",
"src": "7366:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "7366:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7397:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7400:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7390:6:12"
},
"nodeType": "YulFunctionCall",
"src": "7390:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "7390:15:12"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "7231:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7460:238:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7470:58:12",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7492:6:12"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7522:4:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "7500:21:12"
},
"nodeType": "YulFunctionCall",
"src": "7500:27:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7488:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7488:40:12"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "7474:10:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7639:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "7641:16:12"
},
"nodeType": "YulFunctionCall",
"src": "7641:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "7641:18:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7582:10:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7594:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7579:2:12"
},
"nodeType": "YulFunctionCall",
"src": "7579:34:12"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7618:10:12"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7630:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7615:2:12"
},
"nodeType": "YulFunctionCall",
"src": "7615:22:12"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "7576:2:12"
},
"nodeType": "YulFunctionCall",
"src": "7576:62:12"
},
"nodeType": "YulIf",
"src": "7573:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7677:2:12",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7681:10:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7670:6:12"
},
"nodeType": "YulFunctionCall",
"src": "7670:22:12"
},
"nodeType": "YulExpressionStatement",
"src": "7670:22:12"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7446:6:12",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7454:4:12",
"type": ""
}
],
"src": "7417:281:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7745:88:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7755:30:12",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "7765:18:12"
},
"nodeType": "YulFunctionCall",
"src": "7765:20:12"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7755:6:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7814:6:12"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7822:4:12"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "7794:19:12"
},
"nodeType": "YulFunctionCall",
"src": "7794:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "7794:33:12"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7729:4:12",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7738:6:12",
"type": ""
}
],
"src": "7704:129:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7905:241:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8010:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "8012:16:12"
},
"nodeType": "YulFunctionCall",
"src": "8012:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "8012:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7982:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7990:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7979:2:12"
},
"nodeType": "YulFunctionCall",
"src": "7979:30:12"
},
"nodeType": "YulIf",
"src": "7976:56:12"
},
{
"nodeType": "YulAssignment",
"src": "8042:37:12",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8072:6:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "8050:21:12"
},
"nodeType": "YulFunctionCall",
"src": "8050:29:12"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8042:4:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8116:23:12",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8128:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8134:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8124:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8124:15:12"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8116:4:12"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7889:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7900:4:12",
"type": ""
}
],
"src": "7839:307:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8203:103:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8226:3:12"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8231:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8236:6:12"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "8213:12:12"
},
"nodeType": "YulFunctionCall",
"src": "8213:30:12"
},
"nodeType": "YulExpressionStatement",
"src": "8213:30:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8284:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8289:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8280:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8280:16:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8298:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8273:6:12"
},
"nodeType": "YulFunctionCall",
"src": "8273:27:12"
},
"nodeType": "YulExpressionStatement",
"src": "8273:27:12"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "8185:3:12",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "8190:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8195:6:12",
"type": ""
}
],
"src": "8152:154:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8395:327:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8405:74:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8471:6:12"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8430:40:12"
},
"nodeType": "YulFunctionCall",
"src": "8430:48:12"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "8414:15:12"
},
"nodeType": "YulFunctionCall",
"src": "8414:65:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8405:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8495:5:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8502:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8488:6:12"
},
"nodeType": "YulFunctionCall",
"src": "8488:21:12"
},
"nodeType": "YulExpressionStatement",
"src": "8488:21:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "8518:27:12",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8533:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8540:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8529:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8529:16:12"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "8522:3:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8583:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "8585:77:12"
},
"nodeType": "YulFunctionCall",
"src": "8585:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "8585:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8564:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8569:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8560:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8560:16:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8578:3:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8557:2:12"
},
"nodeType": "YulFunctionCall",
"src": "8557:25:12"
},
"nodeType": "YulIf",
"src": "8554:112:12"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8699:3:12"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8704:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8709:6:12"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "8675:23:12"
},
"nodeType": "YulFunctionCall",
"src": "8675:41:12"
},
"nodeType": "YulExpressionStatement",
"src": "8675:41:12"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "8368:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8373:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8381:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "8389:5:12",
"type": ""
}
],
"src": "8312:410:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8802:277:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8851:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "8853:77:12"
},
"nodeType": "YulFunctionCall",
"src": "8853:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "8853:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8830:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8838:4:12",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8826:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8826:17:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8845:3:12"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8822:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8822:27:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8815:6:12"
},
"nodeType": "YulFunctionCall",
"src": "8815:35:12"
},
"nodeType": "YulIf",
"src": "8812:122:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "8943:34:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8970:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "8957:12:12"
},
"nodeType": "YulFunctionCall",
"src": "8957:20:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8947:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8986:87:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9046:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9054:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9042:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9042:17:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9061:6:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9069:3:12"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8995:46:12"
},
"nodeType": "YulFunctionCall",
"src": "8995:78:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8986:5:12"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8780:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8788:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "8796:5:12",
"type": ""
}
],
"src": "8741:338:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9211:817:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9258:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "9260:77:12"
},
"nodeType": "YulFunctionCall",
"src": "9260:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "9260:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9232:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9241:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9228:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9228:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9253:3:12",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "9224:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9224:33:12"
},
"nodeType": "YulIf",
"src": "9221:120:12"
},
{
"nodeType": "YulBlock",
"src": "9351:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9366:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9380:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9370:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9395:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9430:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9441:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9426:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9426:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9450:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "9405:20:12"
},
"nodeType": "YulFunctionCall",
"src": "9405:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9395:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9478:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9493:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9507:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9497:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9523:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9558:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9569:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9554:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9554:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9578:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "9533:20:12"
},
"nodeType": "YulFunctionCall",
"src": "9533:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "9523:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9606:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9621:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9635:2:12",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9625:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9651:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9686:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9697:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9682:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9682:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9706:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "9661:20:12"
},
"nodeType": "YulFunctionCall",
"src": "9661:53:12"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "9651:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9734:287:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9749:46:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9780:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9791:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9776:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9776:18:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "9763:12:12"
},
"nodeType": "YulFunctionCall",
"src": "9763:32:12"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9753:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9842:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "9844:77:12"
},
"nodeType": "YulFunctionCall",
"src": "9844:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "9844:79:12"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9814:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9822:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9811:2:12"
},
"nodeType": "YulFunctionCall",
"src": "9811:30:12"
},
"nodeType": "YulIf",
"src": "9808:117:12"
},
{
"nodeType": "YulAssignment",
"src": "9939:72:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9983:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9994:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9979:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9979:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10003:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9949:29:12"
},
"nodeType": "YulFunctionCall",
"src": "9949:62:12"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "9939:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9157:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "9168:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9180:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "9188:6:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "9196:6:12",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "9204:6:12",
"type": ""
}
],
"src": "9085:943:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10117:391:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10163:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "10165:77:12"
},
"nodeType": "YulFunctionCall",
"src": "10165:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "10165:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10138:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10147:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10134:3:12"
},
"nodeType": "YulFunctionCall",
"src": "10134:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10159:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "10130:3:12"
},
"nodeType": "YulFunctionCall",
"src": "10130:32:12"
},
"nodeType": "YulIf",
"src": "10127:119:12"
},
{
"nodeType": "YulBlock",
"src": "10256:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10271:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10285:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "10275:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10300:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10335:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10346:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10331:3:12"
},
"nodeType": "YulFunctionCall",
"src": "10331:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10355:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "10310:20:12"
},
"nodeType": "YulFunctionCall",
"src": "10310:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10300:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "10383:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10398:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10412:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "10402:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10428:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10463:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10474:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10459:3:12"
},
"nodeType": "YulFunctionCall",
"src": "10459:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10483:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "10438:20:12"
},
"nodeType": "YulFunctionCall",
"src": "10438:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "10428:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10079:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "10090:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10102:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "10110:6:12",
"type": ""
}
],
"src": "10034:474:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10542:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10559:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10562:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10552:6:12"
},
"nodeType": "YulFunctionCall",
"src": "10552:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "10552:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10656:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10659:4:12",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10649:6:12"
},
"nodeType": "YulFunctionCall",
"src": "10649:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "10649:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10680:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10683:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "10673:6:12"
},
"nodeType": "YulFunctionCall",
"src": "10673:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "10673:15:12"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "10514:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10751:269:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10761:22:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10775:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10781:1:12",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "10771:3:12"
},
"nodeType": "YulFunctionCall",
"src": "10771:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10761:6:12"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10792:38:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10822:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10828:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10818:3:12"
},
"nodeType": "YulFunctionCall",
"src": "10818:12:12"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "10796:18:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10869:51:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10883:27:12",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10897:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10905:4:12",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10893:3:12"
},
"nodeType": "YulFunctionCall",
"src": "10893:17:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10883:6:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "10849:18:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10842:6:12"
},
"nodeType": "YulFunctionCall",
"src": "10842:26:12"
},
"nodeType": "YulIf",
"src": "10839:81:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10972:42:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "10986:16:12"
},
"nodeType": "YulFunctionCall",
"src": "10986:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "10986:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "10936:18:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10959:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10967:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10956:2:12"
},
"nodeType": "YulFunctionCall",
"src": "10956:14:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "10933:2:12"
},
"nodeType": "YulFunctionCall",
"src": "10933:38:12"
},
"nodeType": "YulIf",
"src": "10930:84:12"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "10735:4:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10744:6:12",
"type": ""
}
],
"src": "10700:320:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11140:34:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11150:18:12",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11165:3:12"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "11150:11:12"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11112:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11117:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "11128:11:12",
"type": ""
}
],
"src": "11026:148:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11290:267:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11300:53:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11347:5:12"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "11314:32:12"
},
"nodeType": "YulFunctionCall",
"src": "11314:39:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11304:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11362:96:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11446:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11451:6:12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "11369:76:12"
},
"nodeType": "YulFunctionCall",
"src": "11369:89:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11362:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11493:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11500:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11489:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11489:16:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11507:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11512:6:12"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "11467:21:12"
},
"nodeType": "YulFunctionCall",
"src": "11467:52:12"
},
"nodeType": "YulExpressionStatement",
"src": "11467:52:12"
},
{
"nodeType": "YulAssignment",
"src": "11528:23:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11539:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11544:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11535:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11535:16:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11528:3:12"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11271:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11278:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11286:3:12",
"type": ""
}
],
"src": "11180:377:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11747:251:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11758:102:12",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11847:6:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11856:3:12"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "11765:81:12"
},
"nodeType": "YulFunctionCall",
"src": "11765:95:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11758:3:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "11870:102:12",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "11959:6:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11968:3:12"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "11877:81:12"
},
"nodeType": "YulFunctionCall",
"src": "11877:95:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11870:3:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "11982:10:12",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11989:3:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11982:3:12"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11718:3:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "11724:6:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11732:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11743:3:12",
"type": ""
}
],
"src": "11563:435:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12062:40:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12073:22:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12089:5:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "12083:5:12"
},
"nodeType": "YulFunctionCall",
"src": "12083:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12073:6:12"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12045:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "12055:6:12",
"type": ""
}
],
"src": "12004:98:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12203:73:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12220:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12225:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12213:6:12"
},
"nodeType": "YulFunctionCall",
"src": "12213:19:12"
},
"nodeType": "YulExpressionStatement",
"src": "12213:19:12"
},
{
"nodeType": "YulAssignment",
"src": "12241:29:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12260:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12265:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12256:3:12"
},
"nodeType": "YulFunctionCall",
"src": "12256:14:12"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "12241:11:12"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12175:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "12180:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "12191:11:12",
"type": ""
}
],
"src": "12108:168:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12372:270:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "12382:52:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12428:5:12"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "12396:31:12"
},
"nodeType": "YulFunctionCall",
"src": "12396:38:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "12386:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "12443:77:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12508:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12513:6:12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12450:57:12"
},
"nodeType": "YulFunctionCall",
"src": "12450:70:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12443:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12555:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12562:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12551:3:12"
},
"nodeType": "YulFunctionCall",
"src": "12551:16:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12569:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12574:6:12"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "12529:21:12"
},
"nodeType": "YulFunctionCall",
"src": "12529:52:12"
},
"nodeType": "YulExpressionStatement",
"src": "12529:52:12"
},
{
"nodeType": "YulAssignment",
"src": "12590:46:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12601:3:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12628:6:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "12606:21:12"
},
"nodeType": "YulFunctionCall",
"src": "12606:29:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12597:3:12"
},
"nodeType": "YulFunctionCall",
"src": "12597:39:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12590:3:12"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12353:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12360:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12368:3:12",
"type": ""
}
],
"src": "12282:360:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12848:440:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12858:27:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12870:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12881:3:12",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12866:3:12"
},
"nodeType": "YulFunctionCall",
"src": "12866:19:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12858:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12939:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12952:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12963:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12948:3:12"
},
"nodeType": "YulFunctionCall",
"src": "12948:17:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "12895:43:12"
},
"nodeType": "YulFunctionCall",
"src": "12895:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "12895:71:12"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "13020:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13033:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13044:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13029:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13029:18:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "12976:43:12"
},
"nodeType": "YulFunctionCall",
"src": "12976:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "12976:72:12"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "13102:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13115:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13126:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13111:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13111:18:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "13058:43:12"
},
"nodeType": "YulFunctionCall",
"src": "13058:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "13058:72:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13151:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13162:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13147:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13147:18:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13171:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13177:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13167:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13167:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13140:6:12"
},
"nodeType": "YulFunctionCall",
"src": "13140:48:12"
},
"nodeType": "YulExpressionStatement",
"src": "13140:48:12"
},
{
"nodeType": "YulAssignment",
"src": "13197:84:12",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "13267:6:12"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13276:4:12"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13205:61:12"
},
"nodeType": "YulFunctionCall",
"src": "13205:76:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13197:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12796:9:12",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "12808:6:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "12816:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "12824:6:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12832:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12843:4:12",
"type": ""
}
],
"src": "12648:640:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13356:79:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13366:22:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "13381:6:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "13375:5:12"
},
"nodeType": "YulFunctionCall",
"src": "13375:13:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13366:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13423:5:12"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "13397:25:12"
},
"nodeType": "YulFunctionCall",
"src": "13397:32:12"
},
"nodeType": "YulExpressionStatement",
"src": "13397:32:12"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "13334:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13342:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13350:5:12",
"type": ""
}
],
"src": "13294:141:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13517:273:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "13563:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "13565:77:12"
},
"nodeType": "YulFunctionCall",
"src": "13565:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "13565:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "13538:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13547:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13534:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13534:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13559:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "13530:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13530:32:12"
},
"nodeType": "YulIf",
"src": "13527:119:12"
},
{
"nodeType": "YulBlock",
"src": "13656:127:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "13671:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "13685:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "13675:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "13700:73:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13745:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "13756:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13741:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13741:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "13765:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "13710:30:12"
},
"nodeType": "YulFunctionCall",
"src": "13710:63:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13700:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13487:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "13498:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13510:6:12",
"type": ""
}
],
"src": "13441:349:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13824:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13841:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13844:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13834:6:12"
},
"nodeType": "YulFunctionCall",
"src": "13834:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "13834:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13938:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13941:4:12",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13931:6:12"
},
"nodeType": "YulFunctionCall",
"src": "13931:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "13931:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13962:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13965:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "13955:6:12"
},
"nodeType": "YulFunctionCall",
"src": "13955:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "13955:15:12"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "13796:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14025:190:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14035:33:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14062:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "14044:17:12"
},
"nodeType": "YulFunctionCall",
"src": "14044:24:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14035:5:12"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "14158:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "14160:16:12"
},
"nodeType": "YulFunctionCall",
"src": "14160:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "14160:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14083:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14090:66:12",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "14080:2:12"
},
"nodeType": "YulFunctionCall",
"src": "14080:77:12"
},
"nodeType": "YulIf",
"src": "14077:103:12"
},
{
"nodeType": "YulAssignment",
"src": "14189:20:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14200:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14207:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14196:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14196:13:12"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "14189:3:12"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14011:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "14021:3:12",
"type": ""
}
],
"src": "13982:233:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14249:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14266:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14269:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14259:6:12"
},
"nodeType": "YulFunctionCall",
"src": "14259:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "14259:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14363:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14366:4:12",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14356:6:12"
},
"nodeType": "YulFunctionCall",
"src": "14356:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "14356:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14387:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14390:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "14380:6:12"
},
"nodeType": "YulFunctionCall",
"src": "14380:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "14380:15:12"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "14221:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14449:143:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14459:25:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14482:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "14464:17:12"
},
"nodeType": "YulFunctionCall",
"src": "14464:20:12"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14459:1:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "14493:25:12",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14516:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "14498:17:12"
},
"nodeType": "YulFunctionCall",
"src": "14498:20:12"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14493:1:12"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "14540:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "14542:16:12"
},
"nodeType": "YulFunctionCall",
"src": "14542:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "14542:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14537:1:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "14530:6:12"
},
"nodeType": "YulFunctionCall",
"src": "14530:9:12"
},
"nodeType": "YulIf",
"src": "14527:35:12"
},
{
"nodeType": "YulAssignment",
"src": "14572:14:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14581:1:12"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14584:1:12"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "14577:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14577:9:12"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "14572:1:12"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "14438:1:12",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "14441:1:12",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "14447:1:12",
"type": ""
}
],
"src": "14407:185:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14643:146:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14653:25:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14676:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "14658:17:12"
},
"nodeType": "YulFunctionCall",
"src": "14658:20:12"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14653:1:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "14687:25:12",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14710:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "14692:17:12"
},
"nodeType": "YulFunctionCall",
"src": "14692:20:12"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14687:1:12"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "14734:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "14736:16:12"
},
"nodeType": "YulFunctionCall",
"src": "14736:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "14736:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14728:1:12"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14731:1:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "14725:2:12"
},
"nodeType": "YulFunctionCall",
"src": "14725:8:12"
},
"nodeType": "YulIf",
"src": "14722:34:12"
},
{
"nodeType": "YulAssignment",
"src": "14766:17:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14778:1:12"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14781:1:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14774:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14774:9:12"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "14766:4:12"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "14629:1:12",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "14632:1:12",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "14638:4:12",
"type": ""
}
],
"src": "14598:191:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14829:142:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14839:25:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14862:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "14844:17:12"
},
"nodeType": "YulFunctionCall",
"src": "14844:20:12"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14839:1:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "14873:25:12",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14896:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "14878:17:12"
},
"nodeType": "YulFunctionCall",
"src": "14878:20:12"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14873:1:12"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "14920:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "14922:16:12"
},
"nodeType": "YulFunctionCall",
"src": "14922:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "14922:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14917:1:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "14910:6:12"
},
"nodeType": "YulFunctionCall",
"src": "14910:9:12"
},
"nodeType": "YulIf",
"src": "14907:35:12"
},
{
"nodeType": "YulAssignment",
"src": "14951:14:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14960:1:12"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14963:1:12"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "14956:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14956:9:12"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "14951:1:12"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "14818:1:12",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "14821:1:12",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "14827:1:12",
"type": ""
}
],
"src": "14795:176:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15021:261:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15031:25:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15054:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "15036:17:12"
},
"nodeType": "YulFunctionCall",
"src": "15036:20:12"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15031:1:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "15065:25:12",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15088:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "15070:17:12"
},
"nodeType": "YulFunctionCall",
"src": "15070:20:12"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15065:1:12"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "15228:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "15230:16:12"
},
"nodeType": "YulFunctionCall",
"src": "15230:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "15230:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15149:1:12"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15156:66:12",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15224:1:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15152:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15152:74:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "15146:2:12"
},
"nodeType": "YulFunctionCall",
"src": "15146:81:12"
},
"nodeType": "YulIf",
"src": "15143:107:12"
},
{
"nodeType": "YulAssignment",
"src": "15260:16:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15271:1:12"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15274:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15267:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15267:9:12"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "15260:3:12"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "15008:1:12",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "15011:1:12",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "15017:3:12",
"type": ""
}
],
"src": "14977:305:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15316:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15333:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15336:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15326:6:12"
},
"nodeType": "YulFunctionCall",
"src": "15326:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "15326:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15430:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15433:4:12",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15423:6:12"
},
"nodeType": "YulFunctionCall",
"src": "15423:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "15423:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15454:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15457:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "15447:6:12"
},
"nodeType": "YulFunctionCall",
"src": "15447:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "15447:15:12"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "15288:180:12"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bool(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_bytes_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_bytes_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_bytes_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value3 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value1, pos)\n\n end := pos\n }\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value3, tail)\n\n }\n\n function abi_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function mod_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n r := mod(x, y)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n}\n",
"id": 12,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100ea5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb4651461025d578063b88d4fde14610279578063c87b56dd14610295578063e985e9c5146102c5576100ea565b80636352211e146101df57806370a082311461020f57806395d89b411461023f576100ea565b8063095ea7b3116100c8578063095ea7b31461016d57806318160ddd1461018957806323b872dd146101a757806342842e0e146101c3576100ea565b806301ffc9a7146100ef57806306fdde031461011f578063081812fc1461013d575b600080fd5b61010960048036038101906101049190611731565b6102f5565b6040516101169190611779565b60405180910390f35b6101276103d7565b604051610134919061182d565b60405180910390f35b61015760048036038101906101529190611885565b610469565b60405161016491906118f3565b60405180910390f35b6101876004803603810190610182919061193a565b6104e5565b005b6101916105ef565b60405161019e9190611989565b60405180910390f35b6101c160048036038101906101bc91906119a4565b610606565b005b6101dd60048036038101906101d891906119a4565b610616565b005b6101f960048036038101906101f49190611885565b610636565b60405161020691906118f3565b60405180910390f35b610229600480360381019061022491906119f7565b61064c565b6040516102369190611989565b60405180910390f35b61024761071b565b604051610254919061182d565b60405180910390f35b61027760048036038101906102729190611a50565b6107ad565b005b610293600480360381019061028e9190611bc5565b610924565b005b6102af60048036038101906102aa9190611885565b6109a0565b6040516102bc919061182d565b60405180910390f35b6102df60048036038101906102da9190611c48565b610a3e565b6040516102ec9190611779565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806103c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103d057506103cf82610ad2565b5b9050919050565b6060600280546103e690611cb7565b80601f016020809104026020016040519081016040528092919081815260200182805461041290611cb7565b801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b600061047482610b3c565b6104aa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104f082610636565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610557576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610576610b8a565b73ffffffffffffffffffffffffffffffffffffffff16141580156105a857506105a6816105a1610b8a565b610a3e565b155b156105df576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6105ea838383610b92565b505050565b60006105f9610c44565b6001546000540303905090565b610611838383610c49565b505050565b61063183838360405180602001604052806000815250610924565b505050565b6000610641826110fd565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106b3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60606003805461072a90611cb7565b80601f016020809104026020016040519081016040528092919081815260200182805461075690611cb7565b80156107a35780601f10610778576101008083540402835291602001916107a3565b820191906000526020600020905b81548152906001019060200180831161078657829003601f168201915b5050505050905090565b6107b5610b8a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610819576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610826610b8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166108d3610b8a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516109189190611779565b60405180910390a35050565b61092f848484610c49565b61094e8373ffffffffffffffffffffffffffffffffffffffff1661138c565b80156109635750610961848484846113af565b155b1561099a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606109ab82610b3c565b6109e1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006109eb6114ff565b90506000815103610a0b5760405180602001604052806000815250610a36565b80610a1584611516565b604051602001610a26929190611d24565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081610b47610c44565b11158015610b56575060005482105b8015610b83575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000610c54826110fd565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cbf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16610ce0610b8a565b73ffffffffffffffffffffffffffffffffffffffff161480610d0f5750610d0e85610d09610b8a565b610a3e565b5b80610d545750610d1d610b8a565b73ffffffffffffffffffffffffffffffffffffffff16610d3c84610469565b73ffffffffffffffffffffffffffffffffffffffff16145b905080610d8d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610df3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e008585856001611676565b610e0c60008487610b92565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361108b57600054821461108a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110f6858585600161167c565b5050505050565b611105611682565b600082905080611113610c44565b11158015611122575060005481105b15611355576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161135357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611237578092505050611387565b5b60011561135257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461134d578092505050611387565b611238565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026113d5610b8a565b8786866040518563ffffffff1660e01b81526004016113f79493929190611d9d565b6020604051808303816000875af192505050801561143357506040513d601f19601f820116820180604052508101906114309190611dfe565b60015b6114ac573d8060008114611463576040519150601f19603f3d011682016040523d82523d6000602084013e611468565b606091505b5060008151036114a4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060405180602001604052806000815250905090565b60606000820361155d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611671565b600082905060005b6000821461158f57808061157890611e5a565b915050600a826115889190611ed1565b9150611565565b60008167ffffffffffffffff8111156115ab576115aa611a9a565b5b6040519080825280601f01601f1916602001820160405280156115dd5781602001600182028036833780820191505090505b5090505b6000851461166a576001826115f69190611f02565b9150600a856116059190611f36565b60306116119190611f67565b60f81b81838151811061162757611626611fbd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856116639190611ed1565b94506115e1565b8093505050505b919050565b50505050565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61170e816116d9565b811461171957600080fd5b50565b60008135905061172b81611705565b92915050565b600060208284031215611747576117466116cf565b5b60006117558482850161171c565b91505092915050565b60008115159050919050565b6117738161175e565b82525050565b600060208201905061178e600083018461176a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117ce5780820151818401526020810190506117b3565b838111156117dd576000848401525b50505050565b6000601f19601f8301169050919050565b60006117ff82611794565b611809818561179f565b93506118198185602086016117b0565b611822816117e3565b840191505092915050565b6000602082019050818103600083015261184781846117f4565b905092915050565b6000819050919050565b6118628161184f565b811461186d57600080fd5b50565b60008135905061187f81611859565b92915050565b60006020828403121561189b5761189a6116cf565b5b60006118a984828501611870565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118dd826118b2565b9050919050565b6118ed816118d2565b82525050565b600060208201905061190860008301846118e4565b92915050565b611917816118d2565b811461192257600080fd5b50565b6000813590506119348161190e565b92915050565b60008060408385031215611951576119506116cf565b5b600061195f85828601611925565b925050602061197085828601611870565b9150509250929050565b6119838161184f565b82525050565b600060208201905061199e600083018461197a565b92915050565b6000806000606084860312156119bd576119bc6116cf565b5b60006119cb86828701611925565b93505060206119dc86828701611925565b92505060406119ed86828701611870565b9150509250925092565b600060208284031215611a0d57611a0c6116cf565b5b6000611a1b84828501611925565b91505092915050565b611a2d8161175e565b8114611a3857600080fd5b50565b600081359050611a4a81611a24565b92915050565b60008060408385031215611a6757611a666116cf565b5b6000611a7585828601611925565b9250506020611a8685828601611a3b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611ad2826117e3565b810181811067ffffffffffffffff82111715611af157611af0611a9a565b5b80604052505050565b6000611b046116c5565b9050611b108282611ac9565b919050565b600067ffffffffffffffff821115611b3057611b2f611a9a565b5b611b39826117e3565b9050602081019050919050565b82818337600083830152505050565b6000611b68611b6384611b15565b611afa565b905082815260208101848484011115611b8457611b83611a95565b5b611b8f848285611b46565b509392505050565b600082601f830112611bac57611bab611a90565b5b8135611bbc848260208601611b55565b91505092915050565b60008060008060808587031215611bdf57611bde6116cf565b5b6000611bed87828801611925565b9450506020611bfe87828801611925565b9350506040611c0f87828801611870565b925050606085013567ffffffffffffffff811115611c3057611c2f6116d4565b5b611c3c87828801611b97565b91505092959194509250565b60008060408385031215611c5f57611c5e6116cf565b5b6000611c6d85828601611925565b9250506020611c7e85828601611925565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ccf57607f821691505b602082108103611ce257611ce1611c88565b5b50919050565b600081905092915050565b6000611cfe82611794565b611d088185611ce8565b9350611d188185602086016117b0565b80840191505092915050565b6000611d308285611cf3565b9150611d3c8284611cf3565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000611d6f82611d48565b611d798185611d53565b9350611d898185602086016117b0565b611d92816117e3565b840191505092915050565b6000608082019050611db260008301876118e4565b611dbf60208301866118e4565b611dcc604083018561197a565b8181036060830152611dde8184611d64565b905095945050505050565b600081519050611df881611705565b92915050565b600060208284031215611e1457611e136116cf565b5b6000611e2284828501611de9565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e658261184f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611e9757611e96611e2b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611edc8261184f565b9150611ee78361184f565b925082611ef757611ef6611ea2565b5b828204905092915050565b6000611f0d8261184f565b9150611f188361184f565b925082821015611f2b57611f2a611e2b565b5b828203905092915050565b6000611f418261184f565b9150611f4c8361184f565b925082611f5c57611f5b611ea2565b5b828206905092915050565b6000611f728261184f565b9150611f7d8361184f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611fb257611fb1611e2b565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122012f584f42101e802ebcd07623f2bda38a555440840115573dd81e236db49e5ee64736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x25D JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x279 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x295 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x2C5 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x20F JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x23F JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x189 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1A7 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x1C3 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x11F JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x13D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x109 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x104 SWAP2 SWAP1 PUSH2 0x1731 JUMP JUMPDEST PUSH2 0x2F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x116 SWAP2 SWAP1 PUSH2 0x1779 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x127 PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x182D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x157 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x1885 JUMP JUMPDEST PUSH2 0x469 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x164 SWAP2 SWAP1 PUSH2 0x18F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x187 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x182 SWAP2 SWAP1 PUSH2 0x193A JUMP JUMPDEST PUSH2 0x4E5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x191 PUSH2 0x5EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x19E SWAP2 SWAP1 PUSH2 0x1989 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1C1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BC SWAP2 SWAP1 PUSH2 0x19A4 JUMP JUMPDEST PUSH2 0x606 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1DD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1D8 SWAP2 SWAP1 PUSH2 0x19A4 JUMP JUMPDEST PUSH2 0x616 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1F9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F4 SWAP2 SWAP1 PUSH2 0x1885 JUMP JUMPDEST PUSH2 0x636 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x206 SWAP2 SWAP1 PUSH2 0x18F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x229 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x224 SWAP2 SWAP1 PUSH2 0x19F7 JUMP JUMPDEST PUSH2 0x64C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x236 SWAP2 SWAP1 PUSH2 0x1989 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x247 PUSH2 0x71B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x254 SWAP2 SWAP1 PUSH2 0x182D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x277 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x272 SWAP2 SWAP1 PUSH2 0x1A50 JUMP JUMPDEST PUSH2 0x7AD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x293 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28E SWAP2 SWAP1 PUSH2 0x1BC5 JUMP JUMPDEST PUSH2 0x924 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2AF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2AA SWAP2 SWAP1 PUSH2 0x1885 JUMP JUMPDEST PUSH2 0x9A0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2BC SWAP2 SWAP1 PUSH2 0x182D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2DF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DA SWAP2 SWAP1 PUSH2 0x1C48 JUMP JUMPDEST PUSH2 0xA3E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2EC SWAP2 SWAP1 PUSH2 0x1779 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x3C0 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x3D0 JUMPI POP PUSH2 0x3CF DUP3 PUSH2 0xAD2 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD PUSH2 0x3E6 SWAP1 PUSH2 0x1CB7 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 0x412 SWAP1 PUSH2 0x1CB7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x45F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x434 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x45F 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 0x442 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x474 DUP3 PUSH2 0xB3C JUMP JUMPDEST PUSH2 0x4AA JUMPI PUSH1 0x40 MLOAD PUSH32 0xCF4700E400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x6 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4F0 DUP3 PUSH2 0x636 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x557 JUMPI PUSH1 0x40 MLOAD PUSH32 0x943F7B8C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x576 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO DUP1 ISZERO PUSH2 0x5A8 JUMPI POP PUSH2 0x5A6 DUP2 PUSH2 0x5A1 PUSH2 0xB8A JUMP JUMPDEST PUSH2 0xA3E JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x5DF JUMPI PUSH1 0x40 MLOAD PUSH32 0xCFB3B94200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5EA DUP4 DUP4 DUP4 PUSH2 0xB92 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5F9 PUSH2 0xC44 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x0 SLOAD SUB SUB SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x611 DUP4 DUP4 DUP4 PUSH2 0xC49 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x631 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x924 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x641 DUP3 PUSH2 0x10FD JUMP JUMPDEST PUSH1 0x0 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x6B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8F4EB60400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x5 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x72A SWAP1 PUSH2 0x1CB7 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 0x756 SWAP1 PUSH2 0x1CB7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x7A3 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x778 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x7A3 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 0x786 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x7B5 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x819 JUMPI PUSH1 0x40 MLOAD PUSH32 0xB06307DB00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x7 PUSH1 0x0 PUSH2 0x826 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8D3 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x918 SWAP2 SWAP1 PUSH2 0x1779 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x92F DUP5 DUP5 DUP5 PUSH2 0xC49 JUMP JUMPDEST PUSH2 0x94E DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x138C JUMP JUMPDEST DUP1 ISZERO PUSH2 0x963 JUMPI POP PUSH2 0x961 DUP5 DUP5 DUP5 DUP5 PUSH2 0x13AF JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x99A JUMPI PUSH1 0x40 MLOAD PUSH32 0xD1A57ED600000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x9AB DUP3 PUSH2 0xB3C JUMP JUMPDEST PUSH2 0x9E1 JUMPI PUSH1 0x40 MLOAD PUSH32 0xA14C4B5000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x9EB PUSH2 0x14FF JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD SUB PUSH2 0xA0B JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xA36 JUMP JUMPDEST DUP1 PUSH2 0xA15 DUP5 PUSH2 0x1516 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xA26 SWAP3 SWAP2 SWAP1 PUSH2 0x1D24 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0xB47 PUSH2 0xC44 JUMP JUMPDEST GT ISZERO DUP1 ISZERO PUSH2 0xB56 JUMPI POP PUSH1 0x0 SLOAD DUP3 LT JUMPDEST DUP1 ISZERO PUSH2 0xB83 JUMPI POP PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x1C SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP3 PUSH1 0x6 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC54 DUP3 PUSH2 0x10FD JUMP JUMPDEST SWAP1 POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xCBF JUMPI PUSH1 0x40 MLOAD PUSH32 0xA114810000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xCE0 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xD0F JUMPI POP PUSH2 0xD0E DUP6 PUSH2 0xD09 PUSH2 0xB8A JUMP JUMPDEST PUSH2 0xA3E JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0xD54 JUMPI POP PUSH2 0xD1D PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD3C DUP5 PUSH2 0x469 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP1 POP DUP1 PUSH2 0xD8D JUMPI PUSH1 0x40 MLOAD PUSH32 0x59C896BE00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xDF3 JUMPI PUSH1 0x40 MLOAD PUSH32 0xEA553B3400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE00 DUP6 DUP6 DUP6 PUSH1 0x1 PUSH2 0x1676 JUMP JUMPDEST PUSH2 0xE0C PUSH1 0x0 DUP5 DUP8 PUSH2 0xB92 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x5 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND SUB SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x5 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND ADD SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP DUP5 DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP TIMESTAMP DUP2 PUSH1 0x0 ADD PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x1 DUP6 ADD SWAP1 POP PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x108B JUMPI PUSH1 0x0 SLOAD DUP3 EQ PUSH2 0x108A JUMPI DUP8 DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP5 PUSH1 0x20 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMPDEST JUMPDEST POP POP POP DUP3 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x10F6 DUP6 DUP6 DUP6 PUSH1 0x1 PUSH2 0x167C JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1105 PUSH2 0x1682 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP DUP1 PUSH2 0x1113 PUSH2 0xC44 JUMP JUMPDEST GT ISZERO DUP1 ISZERO PUSH2 0x1122 JUMPI POP PUSH1 0x0 SLOAD DUP2 LT JUMPDEST ISZERO PUSH2 0x1355 JUMPI PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x1C SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE POP POP SWAP1 POP DUP1 PUSH1 0x40 ADD MLOAD PUSH2 0x1353 JUMPI PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1237 JUMPI DUP1 SWAP3 POP POP POP PUSH2 0x1387 JUMP JUMPDEST JUMPDEST PUSH1 0x1 ISZERO PUSH2 0x1352 JUMPI DUP2 DUP1 PUSH1 0x1 SWAP1 SUB SWAP3 POP POP PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x1C SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE POP POP SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x134D JUMPI DUP1 SWAP3 POP POP POP PUSH2 0x1387 JUMP JUMPDEST PUSH2 0x1238 JUMP JUMPDEST JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xDF2D9B4200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x13D5 PUSH2 0xB8A JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13F7 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1D9D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1433 JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1430 SWAP2 SWAP1 PUSH2 0x1DFE JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x14AC JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1463 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1468 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD SUB PUSH2 0x14A4 JUMPI PUSH1 0x40 MLOAD PUSH32 0xD1A57ED600000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 SUB PUSH2 0x155D JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1671 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x158F JUMPI DUP1 DUP1 PUSH2 0x1578 SWAP1 PUSH2 0x1E5A JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x1588 SWAP2 SWAP1 PUSH2 0x1ED1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1565 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x15AB JUMPI PUSH2 0x15AA PUSH2 0x1A9A JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x15DD JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x166A JUMPI PUSH1 0x1 DUP3 PUSH2 0x15F6 SWAP2 SWAP1 PUSH2 0x1F02 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x1605 SWAP2 SWAP1 PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x1611 SWAP2 SWAP1 PUSH2 0x1F67 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1627 JUMPI PUSH2 0x1626 PUSH2 0x1FBD JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x1663 SWAP2 SWAP1 PUSH2 0x1ED1 JUMP JUMPDEST SWAP5 POP PUSH2 0x15E1 JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x170E DUP2 PUSH2 0x16D9 JUMP JUMPDEST DUP2 EQ PUSH2 0x1719 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x172B DUP2 PUSH2 0x1705 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1747 JUMPI PUSH2 0x1746 PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1755 DUP5 DUP3 DUP6 ADD PUSH2 0x171C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1773 DUP2 PUSH2 0x175E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x178E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x176A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x17CE JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x17B3 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x17DD JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17FF DUP3 PUSH2 0x1794 JUMP JUMPDEST PUSH2 0x1809 DUP2 DUP6 PUSH2 0x179F JUMP JUMPDEST SWAP4 POP PUSH2 0x1819 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x17B0 JUMP JUMPDEST PUSH2 0x1822 DUP2 PUSH2 0x17E3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1847 DUP2 DUP5 PUSH2 0x17F4 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1862 DUP2 PUSH2 0x184F JUMP JUMPDEST DUP2 EQ PUSH2 0x186D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x187F DUP2 PUSH2 0x1859 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x189B JUMPI PUSH2 0x189A PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x18A9 DUP5 DUP3 DUP6 ADD PUSH2 0x1870 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18DD DUP3 PUSH2 0x18B2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x18ED DUP2 PUSH2 0x18D2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1908 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x18E4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1917 DUP2 PUSH2 0x18D2 JUMP JUMPDEST DUP2 EQ PUSH2 0x1922 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1934 DUP2 PUSH2 0x190E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1951 JUMPI PUSH2 0x1950 PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x195F DUP6 DUP3 DUP7 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1970 DUP6 DUP3 DUP7 ADD PUSH2 0x1870 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x1983 DUP2 PUSH2 0x184F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x199E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x197A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x19BD JUMPI PUSH2 0x19BC PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x19CB DUP7 DUP3 DUP8 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x19DC DUP7 DUP3 DUP8 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x19ED DUP7 DUP3 DUP8 ADD PUSH2 0x1870 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1A0D JUMPI PUSH2 0x1A0C PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1A1B DUP5 DUP3 DUP6 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1A2D DUP2 PUSH2 0x175E JUMP JUMPDEST DUP2 EQ PUSH2 0x1A38 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1A4A DUP2 PUSH2 0x1A24 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1A67 JUMPI PUSH2 0x1A66 PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1A75 DUP6 DUP3 DUP7 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1A86 DUP6 DUP3 DUP7 ADD PUSH2 0x1A3B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x1AD2 DUP3 PUSH2 0x17E3 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1AF1 JUMPI PUSH2 0x1AF0 PUSH2 0x1A9A JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B04 PUSH2 0x16C5 JUMP JUMPDEST SWAP1 POP PUSH2 0x1B10 DUP3 DUP3 PUSH2 0x1AC9 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1B30 JUMPI PUSH2 0x1B2F PUSH2 0x1A9A JUMP JUMPDEST JUMPDEST PUSH2 0x1B39 DUP3 PUSH2 0x17E3 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B68 PUSH2 0x1B63 DUP5 PUSH2 0x1B15 JUMP JUMPDEST PUSH2 0x1AFA JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1B84 JUMPI PUSH2 0x1B83 PUSH2 0x1A95 JUMP JUMPDEST JUMPDEST PUSH2 0x1B8F DUP5 DUP3 DUP6 PUSH2 0x1B46 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1BAC JUMPI PUSH2 0x1BAB PUSH2 0x1A90 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1BBC DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1B55 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1BDF JUMPI PUSH2 0x1BDE PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1BED DUP8 DUP3 DUP9 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x1BFE DUP8 DUP3 DUP9 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x1C0F DUP8 DUP3 DUP9 ADD PUSH2 0x1870 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1C30 JUMPI PUSH2 0x1C2F PUSH2 0x16D4 JUMP JUMPDEST JUMPDEST PUSH2 0x1C3C DUP8 DUP3 DUP9 ADD PUSH2 0x1B97 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1C5F JUMPI PUSH2 0x1C5E PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C6D DUP6 DUP3 DUP7 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1C7E DUP6 DUP3 DUP7 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1CCF JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1CE2 JUMPI PUSH2 0x1CE1 PUSH2 0x1C88 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CFE DUP3 PUSH2 0x1794 JUMP JUMPDEST PUSH2 0x1D08 DUP2 DUP6 PUSH2 0x1CE8 JUMP JUMPDEST SWAP4 POP PUSH2 0x1D18 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x17B0 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D30 DUP3 DUP6 PUSH2 0x1CF3 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D3C DUP3 DUP5 PUSH2 0x1CF3 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D6F DUP3 PUSH2 0x1D48 JUMP JUMPDEST PUSH2 0x1D79 DUP2 DUP6 PUSH2 0x1D53 JUMP JUMPDEST SWAP4 POP PUSH2 0x1D89 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x17B0 JUMP JUMPDEST PUSH2 0x1D92 DUP2 PUSH2 0x17E3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x1DB2 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x18E4 JUMP JUMPDEST PUSH2 0x1DBF PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x18E4 JUMP JUMPDEST PUSH2 0x1DCC PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x197A JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1DDE DUP2 DUP5 PUSH2 0x1D64 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x1DF8 DUP2 PUSH2 0x1705 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1E14 JUMPI PUSH2 0x1E13 PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1E22 DUP5 DUP3 DUP6 ADD PUSH2 0x1DE9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1E65 DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x1E97 JUMPI PUSH2 0x1E96 PUSH2 0x1E2B JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1EDC DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH2 0x1EE7 DUP4 PUSH2 0x184F JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1EF7 JUMPI PUSH2 0x1EF6 PUSH2 0x1EA2 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F0D DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH2 0x1F18 DUP4 PUSH2 0x184F JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1F2B JUMPI PUSH2 0x1F2A PUSH2 0x1E2B JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F41 DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH2 0x1F4C DUP4 PUSH2 0x184F JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1F5C JUMPI PUSH2 0x1F5B PUSH2 0x1EA2 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F72 DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH2 0x1F7D DUP4 PUSH2 0x184F JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1FB2 JUMPI PUSH2 0x1FB1 PUSH2 0x1E2B JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SLT CREATE2 DUP5 DELEGATECALL 0x21 ADD 0xE8 MUL 0xEB 0xCD SMOD PUSH3 0x3F2BDA CODESIZE 0xA5 SSTORE DIFFICULTY ADDMOD BLOCKHASH GT SSTORE PUSH20 0xDD81E236DB49E5EE64736F6C634300080D003300 ",
"sourceMap": "1464:20331:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4551:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7579:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9035:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8612:362;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3822:297;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9874:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10104:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7394:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4910:203;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7741:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9302:282;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10349:359;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7909:313;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9650:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4551:300;4653:4;4703:25;4688:40;;;:11;:40;;;;:104;;;;4759:33;4744:48;;;:11;:48;;;;4688:104;:156;;;;4808:36;4832:11;4808:23;:36::i;:::-;4688:156;4669:175;;4551:300;;;:::o;7579:98::-;7633:13;7665:5;7658:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7579:98;:::o;9035:200::-;9103:7;9127:16;9135:7;9127;:16::i;:::-;9122:64;;9152:34;;;;;;;;;;;;;;9122:64;9204:15;:24;9220:7;9204:24;;;;;;;;;;;;;;;;;;;;;9197:31;;9035:200;;;:::o;8612:362::-;8684:13;8700:24;8716:7;8700:15;:24::i;:::-;8684:40;;8744:5;8738:11;;:2;:11;;;8734:48;;8758:24;;;;;;;;;;;;;;8734:48;8813:5;8797:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;8823:37;8840:5;8847:12;:10;:12::i;:::-;8823:16;:37::i;:::-;8822:38;8797:63;8793:136;;;8883:35;;;;;;;;;;;;;;8793:136;8939:28;8948:2;8952:7;8961:5;8939:8;:28::i;:::-;8674:300;8612:362;;:::o;3822:297::-;3866:7;4087:15;:13;:15::i;:::-;4072:12;;4056:13;;:28;:46;4049:53;;3822:297;:::o;9874:164::-;10003:28;10013:4;10019:2;10023:7;10003:9;:28::i;:::-;9874:164;;;:::o;10104:179::-;10237:39;10254:4;10260:2;10264:7;10237:39;;;;;;;;;;;;:16;:39::i;:::-;10104:179;;;:::o;7394:123::-;7458:7;7484:21;7497:7;7484:12;:21::i;:::-;:26;;;7477:33;;7394:123;;;:::o;4910:203::-;4974:7;5014:1;4997:19;;:5;:19;;;4993:60;;5025:28;;;;;;;;;;;;;;4993:60;5078:12;:19;5091:5;5078:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;5070:36;;5063:43;;4910:203;;;:::o;7741:102::-;7797:13;7829:7;7822:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7741:102;:::o;9302:282::-;9412:12;:10;:12::i;:::-;9400:24;;:8;:24;;;9396:54;;9433:17;;;;;;;;;;;;;;9396:54;9506:8;9461:18;:32;9480:12;:10;:12::i;:::-;9461:32;;;;;;;;;;;;;;;:42;9494:8;9461:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;9558:8;9529:48;;9544:12;:10;:12::i;:::-;9529:48;;;9568:8;9529:48;;;;;;:::i;:::-;;;;;;;;9302:282;;:::o;10349:359::-;10510:28;10520:4;10526:2;10530:7;10510:9;:28::i;:::-;10552:15;:2;:13;;;:15::i;:::-;:76;;;;;10572:56;10603:4;10609:2;10613:7;10622:5;10572:30;:56::i;:::-;10571:57;10552:76;10548:154;;;10651:40;;;;;;;;;;;;;;10548:154;10349:359;;;;:::o;7909:313::-;7982:13;8012:16;8020:7;8012;:16::i;:::-;8007:59;;8037:29;;;;;;;;;;;;;;8007:59;8077:21;8101:10;:8;:10::i;:::-;8077:34;;8153:1;8134:7;8128:21;:26;:87;;;;;;;;;;;;;;;;;8181:7;8190:18;:7;:16;:18::i;:::-;8164:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;8128:87;8121:94;;;7909:313;;;:::o;9650:162::-;9747:4;9770:18;:25;9789:5;9770:25;;;;;;;;;;;;;;;:35;9796:8;9770:35;;;;;;;;;;;;;;;;;;;;;;;;;9763:42;;9650:162;;;;:::o;829:155:8:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;10954:172:10:-;11011:4;11053:7;11034:15;:13;:15::i;:::-;:26;;:53;;;;;11074:13;;11064:7;:23;11034:53;:85;;;;;11092:11;:20;11104:7;11092:20;;;;;;;;;;;:27;;;;;;;;;;;;11091:28;11034:85;11027:92;;10954:172;;;:::o;640:96:6:-;693:7;719:10;712:17;;640:96;:::o;18894:189:10:-;19031:2;19004:15;:24;19020:7;19004:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19068:7;19064:2;19048:28;;19057:5;19048:28;;;;;;;;;;;;18894:189;;;:::o;3603:90::-;3659:7;3603:90;:::o;13964:2082::-;14074:35;14112:21;14125:7;14112:12;:21::i;:::-;14074:59;;14170:4;14148:26;;:13;:18;;;:26;;;14144:67;;14183:28;;;;;;;;;;;;;;14144:67;14222:22;14264:4;14248:20;;:12;:10;:12::i;:::-;:20;;;:72;;;;14284:36;14301:4;14307:12;:10;:12::i;:::-;14284:16;:36::i;:::-;14248:72;:124;;;;14360:12;:10;:12::i;:::-;14336:36;;:20;14348:7;14336:11;:20::i;:::-;:36;;;14248:124;14222:151;;14389:17;14384:66;;14415:35;;;;;;;;;;;;;;14384:66;14478:1;14464:16;;:2;:16;;;14460:52;;14489:23;;;;;;;;;;;;;;14460:52;14523:43;14545:4;14551:2;14555:7;14564:1;14523:21;:43::i;:::-;14628:35;14645:1;14649:7;14658:4;14628:8;:35::i;:::-;14983:1;14953:12;:18;14966:4;14953:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15026:1;14998:12;:16;15011:2;14998:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15042:31;15076:11;:20;15088:7;15076:20;;;;;;;;;;;15042:54;;15126:2;15110:8;:13;;;:18;;;;;;;;;;;;;;;;;;15175:15;15142:8;:23;;;:49;;;;;;;;;;;;;;;;;;15439:19;15471:1;15461:7;:11;15439:33;;15486:31;15520:11;:24;15532:11;15520:24;;;;;;;;;;;15486:58;;15587:1;15562:27;;:8;:13;;;;;;;;;;;;:27;;;15558:377;;15769:13;;15754:11;:28;15750:171;;15822:4;15806:8;:13;;;:20;;;;;;;;;;;;;;;;;;15874:13;:28;;;15848:8;:23;;;:54;;;;;;;;;;;;;;;;;;15750:171;15558:377;14929:1016;;;15979:7;15975:2;15960:27;;15969:4;15960:27;;;;;;;;;;;;15997:42;16018:4;16024:2;16028:7;16037:1;15997:20;:42::i;:::-;14064:1982;;13964:2082;;;:::o;6253:1084::-;6315:21;;:::i;:::-;6348:12;6363:7;6348:22;;6428:4;6409:15;:13;:15::i;:::-;:23;;:47;;;;;6443:13;;6436:4;:20;6409:47;6405:868;;;6476:31;6510:11;:17;6522:4;6510:17;;;;;;;;;;;6476:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6550:9;:16;;;6545:714;;6620:1;6594:28;;:9;:14;;;:28;;;6590:99;;6657:9;6650:16;;;;;;6590:99;6986:255;6993:4;6986:255;;;7025:6;;;;;;;;7069:11;:17;7081:4;7069:17;;;;;;;;;;;7057:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7142:1;7116:28;;:9;:14;;;:28;;;7112:107;;7183:9;7176:16;;;;;;7112:107;6986:255;;;6545:714;6458:815;6405:868;7299:31;;;;;;;;;;;;;;6253:1084;;;;:::o;1175:320:5:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;19564:650:10:-;19722:4;19758:2;19742:36;;;19779:12;:10;:12::i;:::-;19793:4;19799:7;19808:5;19742:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;19738:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19990:1;19973:6;:13;:18;19969:229;;20018:40;;;;;;;;;;;;;;19969:229;20158:6;20152:13;20143:6;20139:2;20135:15;20128:38;19738:470;19870:45;;;19860:55;;;:6;:55;;;;19853:62;;;19564:650;;;;;;:::o;8463:92::-;8514:13;8539:9;;;;;;;;;;;;;;8463:92;:::o;328:703:7:-;384:13;610:1;601:5;:10;597:51;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;20845:154:10:-;;;;;:::o;21640:153::-;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:12:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:116::-;6320:21;6335:5;6320:21;:::i;:::-;6313:5;6310:32;6300:60;;6356:1;6353;6346:12;6300:60;6250:116;:::o;6372:133::-;6415:5;6453:6;6440:20;6431:29;;6469:30;6493:5;6469:30;:::i;:::-;6372:133;;;;:::o;6511:468::-;6576:6;6584;6633:2;6621:9;6612:7;6608:23;6604:32;6601:119;;;6639:79;;:::i;:::-;6601:119;6759:1;6784:53;6829:7;6820:6;6809:9;6805:22;6784:53;:::i;:::-;6774:63;;6730:117;6886:2;6912:50;6954:7;6945:6;6934:9;6930:22;6912:50;:::i;:::-;6902:60;;6857:115;6511:468;;;;;:::o;6985:117::-;7094:1;7091;7084:12;7108:117;7217:1;7214;7207:12;7231:180;7279:77;7276:1;7269:88;7376:4;7373:1;7366:15;7400:4;7397:1;7390:15;7417:281;7500:27;7522:4;7500:27;:::i;:::-;7492:6;7488:40;7630:6;7618:10;7615:22;7594:18;7582:10;7579:34;7576:62;7573:88;;;7641:18;;:::i;:::-;7573:88;7681:10;7677:2;7670:22;7460:238;7417:281;;:::o;7704:129::-;7738:6;7765:20;;:::i;:::-;7755:30;;7794:33;7822:4;7814:6;7794:33;:::i;:::-;7704:129;;;:::o;7839:307::-;7900:4;7990:18;7982:6;7979:30;7976:56;;;8012:18;;:::i;:::-;7976:56;8050:29;8072:6;8050:29;:::i;:::-;8042:37;;8134:4;8128;8124:15;8116:23;;7839:307;;;:::o;8152:154::-;8236:6;8231:3;8226;8213:30;8298:1;8289:6;8284:3;8280:16;8273:27;8152:154;;;:::o;8312:410::-;8389:5;8414:65;8430:48;8471:6;8430:48;:::i;:::-;8414:65;:::i;:::-;8405:74;;8502:6;8495:5;8488:21;8540:4;8533:5;8529:16;8578:3;8569:6;8564:3;8560:16;8557:25;8554:112;;;8585:79;;:::i;:::-;8554:112;8675:41;8709:6;8704:3;8699;8675:41;:::i;:::-;8395:327;8312:410;;;;;:::o;8741:338::-;8796:5;8845:3;8838:4;8830:6;8826:17;8822:27;8812:122;;8853:79;;:::i;:::-;8812:122;8970:6;8957:20;8995:78;9069:3;9061:6;9054:4;9046:6;9042:17;8995:78;:::i;:::-;8986:87;;8802:277;8741:338;;;;:::o;9085:943::-;9180:6;9188;9196;9204;9253:3;9241:9;9232:7;9228:23;9224:33;9221:120;;;9260:79;;:::i;:::-;9221:120;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:53;9578:7;9569:6;9558:9;9554:22;9533:53;:::i;:::-;9523:63;;9478:118;9635:2;9661:53;9706:7;9697:6;9686:9;9682:22;9661:53;:::i;:::-;9651:63;;9606:118;9791:2;9780:9;9776:18;9763:32;9822:18;9814:6;9811:30;9808:117;;;9844:79;;:::i;:::-;9808:117;9949:62;10003:7;9994:6;9983:9;9979:22;9949:62;:::i;:::-;9939:72;;9734:287;9085:943;;;;;;;:::o;10034:474::-;10102:6;10110;10159:2;10147:9;10138:7;10134:23;10130:32;10127:119;;;10165:79;;:::i;:::-;10127:119;10285:1;10310:53;10355:7;10346:6;10335:9;10331:22;10310:53;:::i;:::-;10300:63;;10256:117;10412:2;10438:53;10483:7;10474:6;10463:9;10459:22;10438:53;:::i;:::-;10428:63;;10383:118;10034:474;;;;;:::o;10514:180::-;10562:77;10559:1;10552:88;10659:4;10656:1;10649:15;10683:4;10680:1;10673:15;10700:320;10744:6;10781:1;10775:4;10771:12;10761:22;;10828:1;10822:4;10818:12;10849:18;10839:81;;10905:4;10897:6;10893:17;10883:27;;10839:81;10967:2;10959:6;10956:14;10936:18;10933:38;10930:84;;10986:18;;:::i;:::-;10930:84;10751:269;10700:320;;;:::o;11026:148::-;11128:11;11165:3;11150:18;;11026:148;;;;:::o;11180:377::-;11286:3;11314:39;11347:5;11314:39;:::i;:::-;11369:89;11451:6;11446:3;11369:89;:::i;:::-;11362:96;;11467:52;11512:6;11507:3;11500:4;11493:5;11489:16;11467:52;:::i;:::-;11544:6;11539:3;11535:16;11528:23;;11290:267;11180:377;;;;:::o;11563:435::-;11743:3;11765:95;11856:3;11847:6;11765:95;:::i;:::-;11758:102;;11877:95;11968:3;11959:6;11877:95;:::i;:::-;11870:102;;11989:3;11982:10;;11563:435;;;;;:::o;12004:98::-;12055:6;12089:5;12083:12;12073:22;;12004:98;;;:::o;12108:168::-;12191:11;12225:6;12220:3;12213:19;12265:4;12260:3;12256:14;12241:29;;12108:168;;;;:::o;12282:360::-;12368:3;12396:38;12428:5;12396:38;:::i;:::-;12450:70;12513:6;12508:3;12450:70;:::i;:::-;12443:77;;12529:52;12574:6;12569:3;12562:4;12555:5;12551:16;12529:52;:::i;:::-;12606:29;12628:6;12606:29;:::i;:::-;12601:3;12597:39;12590:46;;12372:270;12282:360;;;;:::o;12648:640::-;12843:4;12881:3;12870:9;12866:19;12858:27;;12895:71;12963:1;12952:9;12948:17;12939:6;12895:71;:::i;:::-;12976:72;13044:2;13033:9;13029:18;13020:6;12976:72;:::i;:::-;13058;13126:2;13115:9;13111:18;13102:6;13058:72;:::i;:::-;13177:9;13171:4;13167:20;13162:2;13151:9;13147:18;13140:48;13205:76;13276:4;13267:6;13205:76;:::i;:::-;13197:84;;12648:640;;;;;;;:::o;13294:141::-;13350:5;13381:6;13375:13;13366:22;;13397:32;13423:5;13397:32;:::i;:::-;13294:141;;;;:::o;13441:349::-;13510:6;13559:2;13547:9;13538:7;13534:23;13530:32;13527:119;;;13565:79;;:::i;:::-;13527:119;13685:1;13710:63;13765:7;13756:6;13745:9;13741:22;13710:63;:::i;:::-;13700:73;;13656:127;13441:349;;;;:::o;13796:180::-;13844:77;13841:1;13834:88;13941:4;13938:1;13931:15;13965:4;13962:1;13955:15;13982:233;14021:3;14044:24;14062:5;14044:24;:::i;:::-;14035:33;;14090:66;14083:5;14080:77;14077:103;;14160:18;;:::i;:::-;14077:103;14207:1;14200:5;14196:13;14189:20;;13982:233;;;:::o;14221:180::-;14269:77;14266:1;14259:88;14366:4;14363:1;14356:15;14390:4;14387:1;14380:15;14407:185;14447:1;14464:20;14482:1;14464:20;:::i;:::-;14459:25;;14498:20;14516:1;14498:20;:::i;:::-;14493:25;;14537:1;14527:35;;14542:18;;:::i;:::-;14527:35;14584:1;14581;14577:9;14572:14;;14407:185;;;;:::o;14598:191::-;14638:4;14658:20;14676:1;14658:20;:::i;:::-;14653:25;;14692:20;14710:1;14692:20;:::i;:::-;14687:25;;14731:1;14728;14725:8;14722:34;;;14736:18;;:::i;:::-;14722:34;14781:1;14778;14774:9;14766:17;;14598:191;;;;:::o;14795:176::-;14827:1;14844:20;14862:1;14844:20;:::i;:::-;14839:25;;14878:20;14896:1;14878:20;:::i;:::-;14873:25;;14917:1;14907:35;;14922:18;;:::i;:::-;14907:35;14963:1;14960;14956:9;14951:14;;14795:176;;;;:::o;14977:305::-;15017:3;15036:20;15054:1;15036:20;:::i;:::-;15031:25;;15070:20;15088:1;15070:20;:::i;:::-;15065:25;;15224:1;15156:66;15152:74;15149:1;15146:81;15143:107;;;15230:18;;:::i;:::-;15143:107;15274:1;15271;15267:9;15260:16;;14977:305;;;;:::o;15288:180::-;15336:77;15333:1;15326:88;15433:4;15430:1;15423:15;15457:4;15454:1;15447:15"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1645200",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2969",
"getApproved(uint256)": "7458",
"isApprovedForAll(address,address)": "infinite",
"name()": "infinite",
"ownerOf(uint256)": "infinite",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "infinite",
"supportsInterface(bytes4)": "797",
"symbol()": "infinite",
"tokenURI(uint256)": "5625",
"totalSupply()": "4621",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"_afterTokenTransfers(address,address,uint256,uint256)": "17",
"_approve(address,uint256,address)": "26292",
"_baseURI()": "infinite",
"_beforeTokenTransfers(address,address,uint256,uint256)": "17",
"_burn(uint256)": "infinite",
"_burn(uint256,bool)": "infinite",
"_checkContractOnERC721Received(address,address,uint256,bytes memory)": "infinite",
"_exists(uint256)": "4499",
"_getAux(address)": "infinite",
"_mint(address,uint256,bytes memory,bool)": "infinite",
"_numberBurned(address)": "infinite",
"_numberMinted(address)": "infinite",
"_ownershipOf(uint256)": "infinite",
"_safeMint(address,uint256)": "infinite",
"_safeMint(address,uint256,bytes memory)": "infinite",
"_setAux(address,uint64)": "infinite",
"_startTokenId()": "15",
"_totalMinted()": "infinite",
"_transfer(address,address,uint256)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "80"
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "40"
},
{
"begin": 1464,
"end": 21795,
"name": "MSTORE",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "CALLVALUE",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "DUP1",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "ISZERO",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "PUSH [tag]",
"source": 10,
"value": "1"
},
{
"begin": 3357,
"end": 3511,
"name": "JUMPI",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 3357,
"end": 3511,
"name": "DUP1",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "REVERT",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "tag",
"source": 10,
"value": "1"
},
{
"begin": 3357,
"end": 3511,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "POP",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "PUSH",
"source": 10,
"value": "40"
},
{
"begin": 3357,
"end": 3511,
"name": "MLOAD",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "PUSHSIZE",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "CODESIZE",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "SUB",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "DUP1",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "PUSHSIZE",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "DUP4",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "CODECOPY",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "DUP2",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "DUP2",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "ADD",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "PUSH",
"source": 10,
"value": "40"
},
{
"begin": 3357,
"end": 3511,
"name": "MSTORE",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "DUP2",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "ADD",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "SWAP1",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "PUSH [tag]",
"source": 10,
"value": "2"
},
{
"begin": 3357,
"end": 3511,
"name": "SWAP2",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "SWAP1",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "PUSH [tag]",
"source": 10,
"value": "3"
},
{
"begin": 3357,
"end": 3511,
"name": "JUMP",
"source": 10,
"value": "[in]"
},
{
"begin": 3357,
"end": 3511,
"name": "tag",
"source": 10,
"value": "2"
},
{
"begin": 3357,
"end": 3511,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 3431,
"end": 3436,
"name": "DUP2",
"source": 10
},
{
"begin": 3423,
"end": 3428,
"name": "PUSH",
"source": 10,
"value": "2"
},
{
"begin": 3423,
"end": 3436,
"name": "SWAP1",
"source": 10
},
{
"begin": 3423,
"end": 3436,
"name": "DUP1",
"source": 10
},
{
"begin": 3423,
"end": 3436,
"name": "MLOAD",
"source": 10
},
{
"begin": 3423,
"end": 3436,
"name": "SWAP1",
"source": 10
},
{
"begin": 3423,
"end": 3436,
"name": "PUSH",
"source": 10,
"value": "20"
},
{
"begin": 3423,
"end": 3436,
"name": "ADD",
"source": 10
},
{
"begin": 3423,
"end": 3436,
"name": "SWAP1",
"source": 10
},
{
"begin": 3423,
"end": 3436,
"name": "PUSH [tag]",
"source": 10,
"value": "6"
},
{
"begin": 3423,
"end": 3436,
"name": "SWAP3",
"source": 10
},
{
"begin": 3423,
"end": 3436,
"name": "SWAP2",
"source": 10
},
{
"begin": 3423,
"end": 3436,
"name": "SWAP1",
"source": 10
},
{
"begin": 3423,
"end": 3436,
"name": "PUSH [tag]",
"source": 10,
"value": "7"
},
{
"begin": 3423,
"end": 3436,
"name": "JUMP",
"source": 10,
"value": "[in]"
},
{
"begin": 3423,
"end": 3436,
"name": "tag",
"source": 10,
"value": "6"
},
{
"begin": 3423,
"end": 3436,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 3423,
"end": 3436,
"name": "POP",
"source": 10
},
{
"begin": 3456,
"end": 3463,
"name": "DUP1",
"source": 10
},
{
"begin": 3446,
"end": 3453,
"name": "PUSH",
"source": 10,
"value": "3"
},
{
"begin": 3446,
"end": 3463,
"name": "SWAP1",
"source": 10
},
{
"begin": 3446,
"end": 3463,
"name": "DUP1",
"source": 10
},
{
"begin": 3446,
"end": 3463,
"name": "MLOAD",
"source": 10
},
{
"begin": 3446,
"end": 3463,
"name": "SWAP1",
"source": 10
},
{
"begin": 3446,
"end": 3463,
"name": "PUSH",
"source": 10,
"value": "20"
},
{
"begin": 3446,
"end": 3463,
"name": "ADD",
"source": 10
},
{
"begin": 3446,
"end": 3463,
"name": "SWAP1",
"source": 10
},
{
"begin": 3446,
"end": 3463,
"name": "PUSH [tag]",
"source": 10,
"value": "8"
},
{
"begin": 3446,
"end": 3463,
"name": "SWAP3",
"source": 10
},
{
"begin": 3446,
"end": 3463,
"name": "SWAP2",
"source": 10
},
{
"begin": 3446,
"end": 3463,
"name": "SWAP1",
"source": 10
},
{
"begin": 3446,
"end": 3463,
"name": "PUSH [tag]",
"source": 10,
"value": "7"
},
{
"begin": 3446,
"end": 3463,
"name": "JUMP",
"source": 10,
"value": "[in]"
},
{
"begin": 3446,
"end": 3463,
"name": "tag",
"source": 10,
"value": "8"
},
{
"begin": 3446,
"end": 3463,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 3446,
"end": 3463,
"name": "POP",
"source": 10
},
{
"begin": 3489,
"end": 3504,
"name": "PUSH [tag]",
"source": 10,
"value": "9"
},
{
"begin": 3489,
"end": 3502,
"name": "PUSH [tag]",
"source": 10,
"value": "10"
},
{
"begin": 3489,
"end": 3502,
"name": "PUSH",
"source": 10,
"value": "20"
},
{
"begin": 3489,
"end": 3502,
"name": "SHL",
"source": 10
},
{
"begin": 3489,
"end": 3504,
"name": "PUSH",
"source": 10,
"value": "20"
},
{
"begin": 3489,
"end": 3504,
"name": "SHR",
"source": 10
},
{
"begin": 3489,
"end": 3504,
"name": "JUMP",
"source": 10,
"value": "[in]"
},
{
"begin": 3489,
"end": 3504,
"name": "tag",
"source": 10,
"value": "9"
},
{
"begin": 3489,
"end": 3504,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 3473,
"end": 3486,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 3473,
"end": 3504,
"name": "DUP2",
"source": 10
},
{
"begin": 3473,
"end": 3504,
"name": "SWAP1",
"source": 10
},
{
"begin": 3473,
"end": 3504,
"name": "SSTORE",
"source": 10
},
{
"begin": 3473,
"end": 3504,
"name": "POP",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "POP",
"source": 10
},
{
"begin": 3357,
"end": 3511,
"name": "POP",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "11"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMP",
"source": 10
},
{
"begin": 3603,
"end": 3693,
"name": "tag",
"source": 10,
"value": "10"
},
{
"begin": 3603,
"end": 3693,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 3659,
"end": 3666,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 3603,
"end": 3693,
"name": "SWAP1",
"source": 10
},
{
"begin": 3603,
"end": 3693,
"name": "JUMP",
"source": 10,
"value": "[out]"
},
{
"begin": 1464,
"end": 21795,
"name": "tag",
"source": 10,
"value": "7"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP3",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "SLOAD",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "13"
},
{
"begin": 1464,
"end": 21795,
"name": "SWAP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "14"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMP",
"source": 10,
"value": "[in]"
},
{
"begin": 1464,
"end": 21795,
"name": "tag",
"source": 10,
"value": "13"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "SWAP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 1464,
"end": 21795,
"name": "MSTORE",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "20"
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 1464,
"end": 21795,
"name": "KECCAK256",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "SWAP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "1F"
},
{
"begin": 1464,
"end": 21795,
"name": "ADD",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "20"
},
{
"begin": 1464,
"end": 21795,
"name": "SWAP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DIV",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP2",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "ADD",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "SWAP3",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP3",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "16"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 1464,
"end": 21795,
"name": "DUP6",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "SSTORE",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "15"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMP",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "tag",
"source": 10,
"value": "16"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP3",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "1F"
},
{
"begin": 1464,
"end": 21795,
"name": "LT",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "17"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "MLOAD",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "FF"
},
{
"begin": 1464,
"end": 21795,
"name": "NOT",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "AND",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP4",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "ADD",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "OR",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP6",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "SSTORE",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "15"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMP",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "tag",
"source": 10,
"value": "17"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP3",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "ADD",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "1"
},
{
"begin": 1464,
"end": 21795,
"name": "ADD",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP6",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "SSTORE",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP3",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "ISZERO",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "15"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "SWAP2",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP3",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "ADD",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "tag",
"source": 10,
"value": "18"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP3",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP2",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "GT",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "ISZERO",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "19"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP3",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "MLOAD",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP3",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "SSTORE",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "SWAP2",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "20"
},
{
"begin": 1464,
"end": 21795,
"name": "ADD",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "SWAP2",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "SWAP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "1"
},
{
"begin": 1464,
"end": 21795,
"name": "ADD",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "SWAP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "18"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMP",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "tag",
"source": 10,
"value": "19"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "tag",
"source": 10,
"value": "15"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "POP",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "SWAP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "POP",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "20"
},
{
"begin": 1464,
"end": 21795,
"name": "SWAP2",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "SWAP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "21"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMP",
"source": 10,
"value": "[in]"
},
{
"begin": 1464,
"end": 21795,
"name": "tag",
"source": 10,
"value": "20"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "POP",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "SWAP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "JUMP",
"source": 10,
"value": "[out]"
},
{
"begin": 1464,
"end": 21795,
"name": "tag",
"source": 10,
"value": "21"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "tag",
"source": 10,
"value": "22"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP3",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "GT",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "ISZERO",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "23"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 1464,
"end": 21795,
"name": "DUP2",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 1464,
"end": 21795,
"name": "SWAP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "SSTORE",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "POP",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "1"
},
{
"begin": 1464,
"end": 21795,
"name": "ADD",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "22"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMP",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "tag",
"source": 10,
"value": "23"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "POP",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "SWAP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "JUMP",
"source": 10,
"value": "[out]"
},
{
"begin": 7,
"end": 82,
"name": "tag",
"source": 12,
"value": "24"
},
{
"begin": 7,
"end": 82,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 40,
"end": 46,
"name": "PUSH",
"source": 12,
"value": "0"
},
{
"begin": 73,
"end": 75,
"name": "PUSH",
"source": 12,
"value": "40"
},
{
"begin": 67,
"end": 76,
"name": "MLOAD",
"source": 12
},
{
"begin": 57,
"end": 76,
"name": "SWAP1",
"source": 12
},
{
"begin": 57,
"end": 76,
"name": "POP",
"source": 12
},
{
"begin": 7,
"end": 82,
"name": "SWAP1",
"source": 12
},
{
"begin": 7,
"end": 82,
"name": "JUMP",
"source": 12,
"value": "[out]"
},
{
"begin": 88,
"end": 205,
"name": "tag",
"source": 12,
"value": "25"
},
{
"begin": 88,
"end": 205,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 197,
"end": 198,
"name": "PUSH",
"source": 12,
"value": "0"
},
{
"begin": 194,
"end": 195,
"name": "DUP1",
"source": 12
},
{
"begin": 187,
"end": 199,
"name": "REVERT",
"source": 12
},
{
"begin": 211,
"end": 328,
"name": "tag",
"source": 12,
"value": "26"
},
{
"begin": 211,
"end": 328,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 320,
"end": 321,
"name": "PUSH",
"source": 12,
"value": "0"
},
{
"begin": 317,
"end": 318,
"name": "DUP1",
"source": 12
},
{
"begin": 310,
"end": 322,
"name": "REVERT",
"source": 12
},
{
"begin": 334,
"end": 451,
"name": "tag",
"source": 12,
"value": "27"
},
{
"begin": 334,
"end": 451,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 443,
"end": 444,
"name": "PUSH",
"source": 12,
"value": "0"
},
{
"begin": 440,
"end": 441,
"name": "DUP1",
"source": 12
},
{
"begin": 433,
"end": 445,
"name": "REVERT",
"source": 12
},
{
"begin": 457,
"end": 574,
"name": "tag",
"source": 12,
"value": "28"
},
{
"begin": 457,
"end": 574,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 566,
"end": 567,
"name": "PUSH",
"source": 12,
"value": "0"
},
{
"begin": 563,
"end": 564,
"name": "DUP1",
"source": 12
},
{
"begin": 556,
"end": 568,
"name": "REVERT",
"source": 12
},
{
"begin": 580,
"end": 682,
"name": "tag",
"source": 12,
"value": "29"
},
{
"begin": 580,
"end": 682,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 621,
"end": 627,
"name": "PUSH",
"source": 12,
"value": "0"
},
{
"begin": 672,
"end": 674,
"name": "PUSH",
"source": 12,
"value": "1F"
},
{
"begin": 668,
"end": 675,
"name": "NOT",
"source": 12
},
{
"begin": 663,
"end": 665,
"name": "PUSH",
"source": 12,
"value": "1F"
},
{
"begin": 656,
"end": 661,
"name": "DUP4",
"source": 12
},
{
"begin": 652,
"end": 666,
"name": "ADD",
"source": 12
},
{
"begin": 648,
"end": 676,
"name": "AND",
"source": 12
},
{
"begin": 638,
"end": 676,
"name": "SWAP1",
"source": 12
},
{
"begin": 638,
"end": 676,
"name": "POP",
"source": 12
},
{
"begin": 580,
"end": 682,
"name": "SWAP2",
"source": 12
},
{
"begin": 580,
"end": 682,
"name": "SWAP1",
"source": 12
},
{
"begin": 580,
"end": 682,
"name": "POP",
"source": 12
},
{
"begin": 580,
"end": 682,
"name": "JUMP",
"source": 12,
"value": "[out]"
},
{
"begin": 688,
"end": 868,
"name": "tag",
"source": 12,
"value": "30"
},
{
"begin": 688,
"end": 868,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 736,
"end": 813,
"name": "PUSH",
"source": 12,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 733,
"end": 734,
"name": "PUSH",
"source": 12,
"value": "0"
},
{
"begin": 726,
"end": 814,
"name": "MSTORE",
"source": 12
},
{
"begin": 833,
"end": 837,
"name": "PUSH",
"source": 12,
"value": "41"
},
{
"begin": 830,
"end": 831,
"name": "PUSH",
"source": 12,
"value": "4"
},
{
"begin": 823,
"end": 838,
"name": "MSTORE",
"source": 12
},
{
"begin": 857,
"end": 861,
"name": "PUSH",
"source": 12,
"value": "24"
},
{
"begin": 854,
"end": 855,
"name": "PUSH",
"source": 12,
"value": "0"
},
{
"begin": 847,
"end": 862,
"name": "REVERT",
"source": 12
},
{
"begin": 874,
"end": 1155,
"name": "tag",
"source": 12,
"value": "31"
},
{
"begin": 874,
"end": 1155,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 957,
"end": 984,
"name": "PUSH [tag]",
"source": 12,
"value": "47"
},
{
"begin": 979,
"end": 983,
"name": "DUP3",
"source": 12
},
{
"begin": 957,
"end": 984,
"name": "PUSH [tag]",
"source": 12,
"value": "29"
},
{
"begin": 957,
"end": 984,
"name": "JUMP",
"source": 12,
"value": "[in]"
},
{
"begin": 957,
"end": 984,
"name": "tag",
"source": 12,
"value": "47"
},
{
"begin": 957,
"end": 984,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 949,
"end": 955,
"name": "DUP2",
"source": 12
},
{
"begin": 945,
"end": 985,
"name": "ADD",
"source": 12
},
{
"begin": 1087,
"end": 1093,
"name": "DUP2",
"source": 12
},
{
"begin": 1075,
"end": 1085,
"name": "DUP2",
"source": 12
},
{
"begin": 1072,
"end": 1094,
"name": "LT",
"source": 12
},
{
"begin": 1051,
"end": 1069,
"name": "PUSH",
"source": 12,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 1039,
"end": 1049,
"name": "DUP3",
"source": 12
},
{
"begin": 1036,
"end": 1070,
"name": "GT",
"source": 12
},
{
"begin": 1033,
"end": 1095,
"name": "OR",
"source": 12
},
{
"begin": 1030,
"end": 1118,
"name": "ISZERO",
"source": 12
},
{
"begin": 1030,
"end": 1118,
"name": "PUSH [tag]",
"source": 12,
"value": "48"
},
{
"begin": 1030,
"end": 1118,
"name": "JUMPI",
"source": 12
},
{
"begin": 1098,
"end": 1116,
"name": "PUSH [tag]",
"source": 12,
"value": "49"
},
{
"begin": 1098,
"end": 1116,
"name": "PUSH [tag]",
"source": 12,
"value": "30"
},
{
"begin": 1098,
"end": 1116,
"name": "JUMP",
"source": 12,
"value": "[in]"
},
{
"begin": 1098,
"end": 1116,
"name": "tag",
"source": 12,
"value": "49"
},
{
"begin": 1098,
"end": 1116,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 1030,
"end": 1118,
"name": "tag",
"source": 12,
"value": "48"
},
{
"begin": 1030,
"end": 1118,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 1138,
"end": 1148,
"name": "DUP1",
"source": 12
},
{
"begin": 1134,
"end": 1136,
"name": "PUSH",
"source": 12,
"value": "40"
},
{
"begin": 1127,
"end": 1149,
"name": "MSTORE",
"source": 12
},
{
"begin": 917,
"end": 1155,
"name": "POP",
"source": 12
},
{
"begin": 874,
"end": 1155,
"name": "POP",
"source": 12
},
{
"begin": 874,
"end": 1155,
"name": "POP",
"source": 12
},
{
"begin": 874,
"end": 1155,
"name": "JUMP",
"source": 12,
"value": "[out]"
},
{
"begin": 1161,
"end": 1290,
"name": "tag",
"source": 12,
"value": "32"
},
{
"begin": 1161,
"end": 1290,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 1195,
"end": 1201,
"name": "PUSH",
"source": 12,
"value": "0"
},
{
"begin": 1222,
"end": 1242,
"name": "PUSH [tag]",
"source": 12,
"value": "51"
},
{
"begin": 1222,
"end": 1242,
"name": "PUSH [tag]",
"source": 12,
"value": "24"
},
{
"begin": 1222,
"end": 1242,
"name": "JUMP",
"source": 12,
"value": "[in]"
},
{
"begin": 1222,
"end": 1242,
"name": "tag",
"source": 12,
"value": "51"
},
{
"begin": 1222,
"end": 1242,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 1212,
"end": 1242,
"name": "SWAP1",
"source": 12
},
{
"begin": 1212,
"end": 1242,
"name": "POP",
"source": 12
},
{
"begin": 1251,
"end": 1284,
"name": "PUSH [tag]",
"source": 12,
"value": "52"
},
{
"begin": 1279,
"end": 1283,
"name": "DUP3",
"source": 12
},
{
"begin": 1271,
"end": 1277,
"name": "DUP3",
"source": 12
},
{
"begin": 1251,
"end": 1284,
"name": "PUSH [tag]",
"source": 12,
"value": "31"
},
{
"begin": 1251,
"end": 1284,
"name": "JUMP",
"source": 12,
"value": "[in]"
},
{
"begin": 1251,
"end": 1284,
"name": "tag",
"source": 12,
"value": "52"
},
{
"begin": 1251,
"end": 1284,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 1161,
"end": 1290,
"name": "SWAP2",
"source": 12
},
{
"begin": 1161,
"end": 1290,
"name": "SWAP1",
"source": 12
},
{
"begin": 1161,
"end": 1290,
"name": "POP",
"source": 12
},
{
"begin": 1161,
"end": 1290,
"name": "JUMP",
"source": 12,
"value": "[out]"
},
{
"begin": 1296,
"end": 1604,
"name": "tag",
"source": 12,
"value": "33"
},
{
"begin": 1296,
"end": 1604,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 1358,
"end": 1362,
"name": "PUSH",
"source": 12,
"value": "0"
},
{
"begin": 1448,
"end": 1466,
"name": "PUSH",
"source": 12,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 1440,
"end": 1446,
"name": "DUP3",
"source": 12
},
{
"begin": 1437,
"end": 1467,
"name": "GT",
"source": 12
},
{
"begin": 1434,
"end": 1490,
"name": "ISZERO",
"source": 12
},
{
"begin": 1434,
"end": 1490,
"name": "PUSH [tag]",
"source": 12,
"value": "54"
},
{
"begin": 1434,
"end": 1490,
"name": "JUMPI",
"source": 12
},
{
"begin": 1470,
"end": 1488,
"name": "PUSH [tag]",
"source": 12,
"value": "55"
},
{
"begin": 1470,
"end": 1488,
"name": "PUSH [tag]",
"source": 12,
"value": "30"
},
{
"begin": 1470,
"end": 1488,
"name": "JUMP",
"source": 12,
"value": "[in]"
},
{
"begin": 1470,
"end": 1488,
"name": "tag",
"source": 12,
"value": "55"
},
{
"begin": 1470,
"end": 1488,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 1434,
"end": 1490,
"name": "tag",
"source": 12,
"value": "54"
},
{
"begin": 1434,
"end": 1490,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 1508,
"end": 1537,
"name": "PUSH [tag]",
"source": 12,
"value": "56"
},
{
"begin": 1530,
"end": 1536,
"name": "DUP3",
"source": 12
},
{
"begin": 1508,
"end": 1537,
"name": "PUSH [tag]",
"source": 12,
"value": "29"
},
{
"begin": 1508,
"end": 1537,
"name": "JUMP",
"source": 12,
"value": "[in]"
},
{
"begin": 1508,
"end": 1537,
"name": "tag",
"source": 12,
"value": "56"
},
{
"begin": 1508,
"end": 1537,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 1500,
"end": 1537,
"name": "SWAP1",
"source": 12
},
{
"begin": 1500,
"end": 1537,
"name": "POP",
"source": 12
},
{
"begin": 1592,
"end": 1596,
"name": "PUSH",
"source": 12,
"value": "20"
},
{
"begin": 1586,
"end": 1590,
"name": "DUP2",
"source": 12
},
{
"begin": 1582,
"end": 1597,
"name": "ADD",
"source": 12
},
{
"begin": 1574,
"end": 1597,
"name": "SWAP1",
"source": 12
},
{
"begin": 1574,
"end": 1597,
"name": "POP",
"source": 12
},
{
"begin": 1296,
"end": 1604,
"name": "SWAP2",
"source": 12
},
{
"begin": 1296,
"end": 1604,
"name": "SWAP1",
"source": 12
},
{
"begin": 1296,
"end": 1604,
"name": "POP",
"source": 12
},
{
"begin": 1296,
"end": 1604,
"name": "JUMP",
"source": 12,
"value": "[out]"
},
{
"begin": 1610,
"end": 1917,
"name": "tag",
"source": 12,
"value": "34"
},
{
"begin": 1610,
"end": 1917,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 1678,
"end": 1679,
"name": "PUSH",
"source": 12,
"value": "0"
},
{
"begin": 1688,
"end": 1801,
"name": "tag",
"source": 12,
"value": "58"
},
{
"begin": 1688,
"end": 1801,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 1702,
"end": 1708,
"name": "DUP4",
"source": 12
},
{
"begin": 1699,
"end": 1700,
"name": "DUP2",
"source": 12
},
{
"begin": 1696,
"end": 1709,
"name": "LT",
"source": 12
},
{
"begin": 1688,
"end": 1801,
"name": "ISZERO",
"source": 12
},
{
"begin": 1688,
"end": 1801,
"name": "PUSH [tag]",
"source": 12,
"value": "60"
},
{
"begin": 1688,
"end": 1801,
"name": "JUMPI",
"source": 12
},
{
"begin": 1787,
"end": 1788,
"name": "DUP1",
"source": 12
},
{
"begin": 1782,
"end": 1785,
"name": "DUP3",
"source": 12
},
{
"begin": 1778,
"end": 1789,
"name": "ADD",
"source": 12
},
{
"begin": 1772,
"end": 1790,
"name": "MLOAD",
"source": 12
},
{
"begin": 1768,
"end": 1769,
"name": "DUP2",
"source": 12
},
{
"begin": 1763,
"end": 1766,
"name": "DUP5",
"source": 12
},
{
"begin": 1759,
"end": 1770,
"name": "ADD",
"source": 12
},
{
"begin": 1752,
"end": 1791,
"name": "MSTORE",
"source": 12
},
{
"begin": 1724,
"end": 1726,
"name": "PUSH",
"source": 12,
"value": "20"
},
{
"begin": 1721,
"end": 1722,
"name": "DUP2",
"source": 12
},
{
"begin": 1717,
"end": 1727,
"name": "ADD",
"source": 12
},
{
"begin": 1712,
"end": 1727,
"name": "SWAP1",
"source": 12
},
{
"begin": 1712,
"end": 1727,
"name": "POP",
"source": 12
},
{
"begin": 1688,
"end": 1801,
"name": "PUSH [tag]",
"source": 12,
"value": "58"
},
{
"begin": 1688,
"end": 1801,
"name": "JUMP",
"source": 12
},
{
"begin": 1688,
"end": 1801,
"name": "tag",
"source": 12,
"value": "60"
},
{
"begin": 1688,
"end": 1801,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 1819,
"end": 1825,
"name": "DUP4",
"source": 12
},
{
"begin": 1816,
"end": 1817,
"name": "DUP2",
"source": 12
},
{
"begin": 1813,
"end": 1826,
"name": "GT",
"source": 12
},
{
"begin": 1810,
"end": 1911,
"name": "ISZERO",
"source": 12
},
{
"begin": 1810,
"end": 1911,
"name": "PUSH [tag]",
"source": 12,
"value": "61"
},
{
"begin": 1810,
"end": 1911,
"name": "JUMPI",
"source": 12
},
{
"begin": 1899,
"end": 1900,
"name": "PUSH",
"source": 12,
"value": "0"
},
{
"begin": 1890,
"end": 1896,
"name": "DUP5",
"source": 12
},
{
"begin": 1885,
"end": 1888,
"name": "DUP5",
"source": 12
},
{
"begin": 1881,
"end": 1897,
"name": "ADD",
"source": 12
},
{
"begin": 1874,
"end": 1901,
"name": "MSTORE",
"source": 12
},
{
"begin": 1810,
"end": 1911,
"name": "tag",
"source": 12,
"value": "61"
},
{
"begin": 1810,
"end": 1911,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 1659,
"end": 1917,
"name": "POP",
"source": 12
},
{
"begin": 1610,
"end": 1917,
"name": "POP",
"source": 12
},
{
"begin": 1610,
"end": 1917,
"name": "POP",
"source": 12
},
{
"begin": 1610,
"end": 1917,
"name": "POP",
"source": 12
},
{
"begin": 1610,
"end": 1917,
"name": "JUMP",
"source": 12,
"value": "[out]"
},
{
"begin": 1923,
"end": 2344,
"name": "tag",
"source": 12,
"value": "35"
},
{
"begin": 1923,
"end": 2344,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 2012,
"end": 2017,
"name": "PUSH",
"source": 12,
"value": "0"
},
{
"begin": 2037,
"end": 2103,
"name": "PUSH [tag]",
"source": 12,
"value": "63"
},
{
"begin": 2053,
"end": 2102,
"name": "PUSH [tag]",
"source": 12,
"value": "64"
},
{
"begin": 2095,
"end": 2101,
"name": "DUP5",
"source": 12
},
{
"begin": 2053,
"end": 2102,
"name": "PUSH [tag]",
"source": 12,
"value": "33"
},
{
"begin": 2053,
"end": 2102,
"name": "JUMP",
"source": 12,
"value": "[in]"
},
{
"begin": 2053,
"end": 2102,
"name": "tag",
"source": 12,
"value": "64"
},
{
"begin": 2053,
"end": 2102,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 2037,
"end": 2103,
"name": "PUSH [tag]",
"source": 12,
"value": "32"
},
{
"begin": 2037,
"end": 2103,
"name": "JUMP",
"source": 12,
"value": "[in]"
},
{
"begin": 2037,
"end": 2103,
"name": "tag",
"source": 12,
"value": "63"
},
{
"begin": 2037,
"end": 2103,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 2028,
"end": 2103,
"name": "SWAP1",
"source": 12
},
{
"begin": 2028,
"end": 2103,
"name": "POP",
"source": 12
},
{
"begin": 2126,
"end": 2132,
"name": "DUP3",
"source": 12
},
{
"begin": 2119,
"end": 2124,
"name": "DUP2",
"source": 12
},
{
"begin": 2112,
"end": 2133,
"name": "MSTORE",
"source": 12
},
{
"begin": 2164,
"end": 2168,
"name": "PUSH",
"source": 12,
"value": "20"
},
{
"begin": 2157,
"end": 2162,
"name": "DUP2",
"source": 12
},
{
"begin": 2153,
"end": 2169,
"name": "ADD",
"source": 12
},
{
"begin": 2202,
"end": 2205,
"name": "DUP5",
"source": 12
},
{
"begin": 2193,
"end": 2199,
"name": "DUP5",
"source": 12
},
{
"begin": 2188,
"end": 2191,
"name": "DUP5",
"source": 12
},
{
"begin": 2184,
"end": 2200,
"name": "ADD",
"source": 12
},
{
"begin": 2181,
"end": 2206,
"name": "GT",
"source": 12
},
{
"begin": 2178,
"end": 2290,
"name": "ISZERO",
"source": 12
},
{
"begin": 2178,
"end": 2290,
"name": "PUSH [tag]",
"source": 12,
"value": "65"
},
{
"begin": 2178,
"end": 2290,
"name": "JUMPI",
"source": 12
},
{
"begin": 2209,
"end": 2288,
"name": "PUSH [tag]",
"source": 12,
"value": "66"
},
{
"begin": 2209,
"end": 2288,
"name": "PUSH [tag]",
"source": 12,
"value": "28"
},
{
"begin": 2209,
"end": 2288,
"name": "JUMP",
"source": 12,
"value": "[in]"
},
{
"begin": 2209,
"end": 2288,
"name": "tag",
"source": 12,
"value": "66"
},
{
"begin": 2209,
"end": 2288,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 2178,
"end": 2290,
"name": "tag",
"source": 12,
"value": "65"
},
{
"begin": 2178,
"end": 2290,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 2299,
"end": 2338,
"name": "PUSH [tag]",
"source": 12,
"value": "67"
},
{
"begin": 2331,
"end": 2337,
"name": "DUP5",
"source": 12
},
{
"begin": 2326,
"end": 2329,
"name": "DUP3",
"source": 12
},
{
"begin": 2321,
"end": 2324,
"name": "DUP6",
"source": 12
},
{
"begin": 2299,
"end": 2338,
"name": "PUSH [tag]",
"source": 12,
"value": "34"
},
{
"begin": 2299,
"end": 2338,
"name": "JUMP",
"source": 12,
"value": "[in]"
},
{
"begin": 2299,
"end": 2338,
"name": "tag",
"source": 12,
"value": "67"
},
{
"begin": 2299,
"end": 2338,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 2018,
"end": 2344,
"name": "POP",
"source": 12
},
{
"begin": 1923,
"end": 2344,
"name": "SWAP4",
"source": 12
},
{
"begin": 1923,
"end": 2344,
"name": "SWAP3",
"source": 12
},
{
"begin": 1923,
"end": 2344,
"name": "POP",
"source": 12
},
{
"begin": 1923,
"end": 2344,
"name": "POP",
"source": 12
},
{
"begin": 1923,
"end": 2344,
"name": "POP",
"source": 12
},
{
"begin": 1923,
"end": 2344,
"name": "JUMP",
"source": 12,
"value": "[out]"
},
{
"begin": 2364,
"end": 2719,
"name": "tag",
"source": 12,
"value": "36"
},
{
"begin": 2364,
"end": 2719,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 2431,
"end": 2436,
"name": "PUSH",
"source": 12,
"value": "0"
},
{
"begin": 2480,
"end": 2483,
"name": "DUP3",
"source": 12
},
{
"begin": 2473,
"end": 2477,
"name": "PUSH",
"source": 12,
"value": "1F"
},
{
"begin": 2465,
"end": 2471,
"name": "DUP4",
"source": 12
},
{
"begin": 2461,
"end": 2478,
"name": "ADD",
"source": 12
},
{
"begin": 2457,
"end": 2484,
"name": "SLT",
"source": 12
},
{
"begin": 2447,
"end": 2569,
"name": "PUSH [tag]",
"source": 12,
"value": "69"
},
{
"begin": 2447,
"end": 2569,
"name": "JUMPI",
"source": 12
},
{
"begin": 2488,
"end": 2567,
"name": "PUSH [tag]",
"source": 12,
"value": "70"
},
{
"begin": 2488,
"end": 2567,
"name": "PUSH [tag]",
"source": 12,
"value": "27"
},
{
"begin": 2488,
"end": 2567,
"name": "JUMP",
"source": 12,
"value": "[in]"
},
{
"begin": 2488,
"end": 2567,
"name": "tag",
"source": 12,
"value": "70"
},
{
"begin": 2488,
"end": 2567,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 2447,
"end": 2569,
"name": "tag",
"source": 12,
"value": "69"
},
{
"begin": 2447,
"end": 2569,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 2598,
"end": 2604,
"name": "DUP2",
"source": 12
},
{
"begin": 2592,
"end": 2605,
"name": "MLOAD",
"source": 12
},
{
"begin": 2623,
"end": 2713,
"name": "PUSH [tag]",
"source": 12,
"value": "71"
},
{
"begin": 2709,
"end": 2712,
"name": "DUP5",
"source": 12
},
{
"begin": 2701,
"end": 2707,
"name": "DUP3",
"source": 12
},
{
"begin": 2694,
"end": 2698,
"name": "PUSH",
"source": 12,
"value": "20"
},
{
"begin": 2686,
"end": 2692,
"name": "DUP7",
"source": 12
},
{
"begin": 2682,
"end": 2699,
"name": "ADD",
"source": 12
},
{
"begin": 2623,
"end": 2713,
"name": "PUSH [tag]",
"source": 12,
"value": "35"
},
{
"begin": 2623,
"end": 2713,
"name": "JUMP",
"source": 12,
"value": "[in]"
},
{
"begin": 2623,
"end": 2713,
"name": "tag",
"source": 12,
"value": "71"
},
{
"begin": 2623,
"end": 2713,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 2614,
"end": 2713,
"name": "SWAP2",
"source": 12
},
{
"begin": 2614,
"end": 2713,
"name": "POP",
"source": 12
},
{
"begin": 2437,
"end": 2719,
"name": "POP",
"source": 12
},
{
"begin": 2364,
"end": 2719,
"name": "SWAP3",
"source": 12
},
{
"begin": 2364,
"end": 2719,
"name": "SWAP2",
"source": 12
},
{
"begin": 2364,
"end": 2719,
"name": "POP",
"source": 12
},
{
"begin": 2364,
"end": 2719,
"name": "POP",
"source": 12
},
{
"begin": 2364,
"end": 2719,
"name": "JUMP",
"source": 12,
"value": "[out]"
},
{
"begin": 2725,
"end": 3578,
"name": "tag",
"source": 12,
"value": "3"
},
{
"begin": 2725,
"end": 3578,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 2824,
"end": 2830,
"name": "PUSH",
"source": 12,
"value": "0"
},
{
"begin": 2832,
"end": 2838,
"name": "DUP1",
"source": 12
},
{
"begin": 2881,
"end": 2883,
"name": "PUSH",
"source": 12,
"value": "40"
},
{
"begin": 2869,
"end": 2878,
"name": "DUP4",
"source": 12
},
{
"begin": 2860,
"end": 2867,
"name": "DUP6",
"source": 12
},
{
"begin": 2856,
"end": 2879,
"name": "SUB",
"source": 12
},
{
"begin": 2852,
"end": 2884,
"name": "SLT",
"source": 12
},
{
"begin": 2849,
"end": 2968,
"name": "ISZERO",
"source": 12
},
{
"begin": 2849,
"end": 2968,
"name": "PUSH [tag]",
"source": 12,
"value": "73"
},
{
"begin": 2849,
"end": 2968,
"name": "JUMPI",
"source": 12
},
{
"begin": 2887,
"end": 2966,
"name": "PUSH [tag]",
"source": 12,
"value": "74"
},
{
"begin": 2887,
"end": 2966,
"name": "PUSH [tag]",
"source": 12,
"value": "25"
},
{
"begin": 2887,
"end": 2966,
"name": "JUMP",
"source": 12,
"value": "[in]"
},
{
"begin": 2887,
"end": 2966,
"name": "tag",
"source": 12,
"value": "74"
},
{
"begin": 2887,
"end": 2966,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 2849,
"end": 2968,
"name": "tag",
"source": 12,
"value": "73"
},
{
"begin": 2849,
"end": 2968,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 3028,
"end": 3029,
"name": "PUSH",
"source": 12,
"value": "0"
},
{
"begin": 3017,
"end": 3026,
"name": "DUP4",
"source": 12
},
{
"begin": 3013,
"end": 3030,
"name": "ADD",
"source": 12
},
{
"begin": 3007,
"end": 3031,
"name": "MLOAD",
"source": 12
},
{
"begin": 3058,
"end": 3076,
"name": "PUSH",
"source": 12,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 3050,
"end": 3056,
"name": "DUP2",
"source": 12
},
{
"begin": 3047,
"end": 3077,
"name": "GT",
"source": 12
},
{
"begin": 3044,
"end": 3161,
"name": "ISZERO",
"source": 12
},
{
"begin": 3044,
"end": 3161,
"name": "PUSH [tag]",
"source": 12,
"value": "75"
},
{
"begin": 3044,
"end": 3161,
"name": "JUMPI",
"source": 12
},
{
"begin": 3080,
"end": 3159,
"name": "PUSH [tag]",
"source": 12,
"value": "76"
},
{
"begin": 3080,
"end": 3159,
"name": "PUSH [tag]",
"source": 12,
"value": "26"
},
{
"begin": 3080,
"end": 3159,
"name": "JUMP",
"source": 12,
"value": "[in]"
},
{
"begin": 3080,
"end": 3159,
"name": "tag",
"source": 12,
"value": "76"
},
{
"begin": 3080,
"end": 3159,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 3044,
"end": 3161,
"name": "tag",
"source": 12,
"value": "75"
},
{
"begin": 3044,
"end": 3161,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 3185,
"end": 3259,
"name": "PUSH [tag]",
"source": 12,
"value": "77"
},
{
"begin": 3251,
"end": 3258,
"name": "DUP6",
"source": 12
},
{
"begin": 3242,
"end": 3248,
"name": "DUP3",
"source": 12
},
{
"begin": 3231,
"end": 3240,
"name": "DUP7",
"source": 12
},
{
"begin": 3227,
"end": 3249,
"name": "ADD",
"source": 12
},
{
"begin": 3185,
"end": 3259,
"name": "PUSH [tag]",
"source": 12,
"value": "36"
},
{
"begin": 3185,
"end": 3259,
"name": "JUMP",
"source": 12,
"value": "[in]"
},
{
"begin": 3185,
"end": 3259,
"name": "tag",
"source": 12,
"value": "77"
},
{
"begin": 3185,
"end": 3259,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 3175,
"end": 3259,
"name": "SWAP3",
"source": 12
},
{
"begin": 3175,
"end": 3259,
"name": "POP",
"source": 12
},
{
"begin": 2978,
"end": 3269,
"name": "POP",
"source": 12
},
{
"begin": 3329,
"end": 3331,
"name": "PUSH",
"source": 12,
"value": "20"
},
{
"begin": 3318,
"end": 3327,
"name": "DUP4",
"source": 12
},
{
"begin": 3314,
"end": 3332,
"name": "ADD",
"source": 12
},
{
"begin": 3308,
"end": 3333,
"name": "MLOAD",
"source": 12
},
{
"begin": 3360,
"end": 3378,
"name": "PUSH",
"source": 12,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 3352,
"end": 3358,
"name": "DUP2",
"source": 12
},
{
"begin": 3349,
"end": 3379,
"name": "GT",
"source": 12
},
{
"begin": 3346,
"end": 3463,
"name": "ISZERO",
"source": 12
},
{
"begin": 3346,
"end": 3463,
"name": "PUSH [tag]",
"source": 12,
"value": "78"
},
{
"begin": 3346,
"end": 3463,
"name": "JUMPI",
"source": 12
},
{
"begin": 3382,
"end": 3461,
"name": "PUSH [tag]",
"source": 12,
"value": "79"
},
{
"begin": 3382,
"end": 3461,
"name": "PUSH [tag]",
"source": 12,
"value": "26"
},
{
"begin": 3382,
"end": 3461,
"name": "JUMP",
"source": 12,
"value": "[in]"
},
{
"begin": 3382,
"end": 3461,
"name": "tag",
"source": 12,
"value": "79"
},
{
"begin": 3382,
"end": 3461,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 3346,
"end": 3463,
"name": "tag",
"source": 12,
"value": "78"
},
{
"begin": 3346,
"end": 3463,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 3487,
"end": 3561,
"name": "PUSH [tag]",
"source": 12,
"value": "80"
},
{
"begin": 3553,
"end": 3560,
"name": "DUP6",
"source": 12
},
{
"begin": 3544,
"end": 3550,
"name": "DUP3",
"source": 12
},
{
"begin": 3533,
"end": 3542,
"name": "DUP7",
"source": 12
},
{
"begin": 3529,
"end": 3551,
"name": "ADD",
"source": 12
},
{
"begin": 3487,
"end": 3561,
"name": "PUSH [tag]",
"source": 12,
"value": "36"
},
{
"begin": 3487,
"end": 3561,
"name": "JUMP",
"source": 12,
"value": "[in]"
},
{
"begin": 3487,
"end": 3561,
"name": "tag",
"source": 12,
"value": "80"
},
{
"begin": 3487,
"end": 3561,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 3477,
"end": 3561,
"name": "SWAP2",
"source": 12
},
{
"begin": 3477,
"end": 3561,
"name": "POP",
"source": 12
},
{
"begin": 3279,
"end": 3571,
"name": "POP",
"source": 12
},
{
"begin": 2725,
"end": 3578,
"name": "SWAP3",
"source": 12
},
{
"begin": 2725,
"end": 3578,
"name": "POP",
"source": 12
},
{
"begin": 2725,
"end": 3578,
"name": "SWAP3",
"source": 12
},
{
"begin": 2725,
"end": 3578,
"name": "SWAP1",
"source": 12
},
{
"begin": 2725,
"end": 3578,
"name": "POP",
"source": 12
},
{
"begin": 2725,
"end": 3578,
"name": "JUMP",
"source": 12,
"value": "[out]"
},
{
"begin": 3584,
"end": 3764,
"name": "tag",
"source": 12,
"value": "37"
},
{
"begin": 3584,
"end": 3764,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 3632,
"end": 3709,
"name": "PUSH",
"source": 12,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 3629,
"end": 3630,
"name": "PUSH",
"source": 12,
"value": "0"
},
{
"begin": 3622,
"end": 3710,
"name": "MSTORE",
"source": 12
},
{
"begin": 3729,
"end": 3733,
"name": "PUSH",
"source": 12,
"value": "22"
},
{
"begin": 3726,
"end": 3727,
"name": "PUSH",
"source": 12,
"value": "4"
},
{
"begin": 3719,
"end": 3734,
"name": "MSTORE",
"source": 12
},
{
"begin": 3753,
"end": 3757,
"name": "PUSH",
"source": 12,
"value": "24"
},
{
"begin": 3750,
"end": 3751,
"name": "PUSH",
"source": 12,
"value": "0"
},
{
"begin": 3743,
"end": 3758,
"name": "REVERT",
"source": 12
},
{
"begin": 3770,
"end": 4090,
"name": "tag",
"source": 12,
"value": "14"
},
{
"begin": 3770,
"end": 4090,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 3814,
"end": 3820,
"name": "PUSH",
"source": 12,
"value": "0"
},
{
"begin": 3851,
"end": 3852,
"name": "PUSH",
"source": 12,
"value": "2"
},
{
"begin": 3845,
"end": 3849,
"name": "DUP3",
"source": 12
},
{
"begin": 3841,
"end": 3853,
"name": "DIV",
"source": 12
},
{
"begin": 3831,
"end": 3853,
"name": "SWAP1",
"source": 12
},
{
"begin": 3831,
"end": 3853,
"name": "POP",
"source": 12
},
{
"begin": 3898,
"end": 3899,
"name": "PUSH",
"source": 12,
"value": "1"
},
{
"begin": 3892,
"end": 3896,
"name": "DUP3",
"source": 12
},
{
"begin": 3888,
"end": 3900,
"name": "AND",
"source": 12
},
{
"begin": 3919,
"end": 3937,
"name": "DUP1",
"source": 12
},
{
"begin": 3909,
"end": 3990,
"name": "PUSH [tag]",
"source": 12,
"value": "83"
},
{
"begin": 3909,
"end": 3990,
"name": "JUMPI",
"source": 12
},
{
"begin": 3975,
"end": 3979,
"name": "PUSH",
"source": 12,
"value": "7F"
},
{
"begin": 3967,
"end": 3973,
"name": "DUP3",
"source": 12
},
{
"begin": 3963,
"end": 3980,
"name": "AND",
"source": 12
},
{
"begin": 3953,
"end": 3980,
"name": "SWAP2",
"source": 12
},
{
"begin": 3953,
"end": 3980,
"name": "POP",
"source": 12
},
{
"begin": 3909,
"end": 3990,
"name": "tag",
"source": 12,
"value": "83"
},
{
"begin": 3909,
"end": 3990,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 4037,
"end": 4039,
"name": "PUSH",
"source": 12,
"value": "20"
},
{
"begin": 4029,
"end": 4035,
"name": "DUP3",
"source": 12
},
{
"begin": 4026,
"end": 4040,
"name": "LT",
"source": 12
},
{
"begin": 4006,
"end": 4024,
"name": "DUP2",
"source": 12
},
{
"begin": 4003,
"end": 4041,
"name": "SUB",
"source": 12
},
{
"begin": 4000,
"end": 4084,
"name": "PUSH [tag]",
"source": 12,
"value": "84"
},
{
"begin": 4000,
"end": 4084,
"name": "JUMPI",
"source": 12
},
{
"begin": 4056,
"end": 4074,
"name": "PUSH [tag]",
"source": 12,
"value": "85"
},
{
"begin": 4056,
"end": 4074,
"name": "PUSH [tag]",
"source": 12,
"value": "37"
},
{
"begin": 4056,
"end": 4074,
"name": "JUMP",
"source": 12,
"value": "[in]"
},
{
"begin": 4056,
"end": 4074,
"name": "tag",
"source": 12,
"value": "85"
},
{
"begin": 4056,
"end": 4074,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 4000,
"end": 4084,
"name": "tag",
"source": 12,
"value": "84"
},
{
"begin": 4000,
"end": 4084,
"name": "JUMPDEST",
"source": 12
},
{
"begin": 3821,
"end": 4090,
"name": "POP",
"source": 12
},
{
"begin": 3770,
"end": 4090,
"name": "SWAP2",
"source": 12
},
{
"begin": 3770,
"end": 4090,
"name": "SWAP1",
"source": 12
},
{
"begin": 3770,
"end": 4090,
"name": "POP",
"source": 12
},
{
"begin": 3770,
"end": 4090,
"name": "JUMP",
"source": 12,
"value": "[out]"
},
{
"begin": 1464,
"end": 21795,
"name": "tag",
"source": 10,
"value": "11"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH #[$]",
"source": 10,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [$]",
"source": 10,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 1464,
"end": 21795,
"name": "CODECOPY",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 1464,
"end": 21795,
"name": "RETURN",
"source": 10
}
],
".data": {
"0": {
".auxdata": "a264697066735822122012f584f42101e802ebcd07623f2bda38a555440840115573dd81e236db49e5ee64736f6c634300080d0033",
".code": [
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "80"
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "40"
},
{
"begin": 1464,
"end": 21795,
"name": "MSTORE",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "CALLVALUE",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "ISZERO",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "1"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "REVERT",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "tag",
"source": 10,
"value": "1"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "POP",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "4"
},
{
"begin": 1464,
"end": 21795,
"name": "CALLDATASIZE",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "LT",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "2"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 1464,
"end": 21795,
"name": "CALLDATALOAD",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "E0"
},
{
"begin": 1464,
"end": 21795,
"name": "SHR",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "6352211E"
},
{
"begin": 1464,
"end": 21795,
"name": "GT",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "17"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "A22CB465"
},
{
"begin": 1464,
"end": 21795,
"name": "GT",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "18"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "A22CB465"
},
{
"begin": 1464,
"end": 21795,
"name": "EQ",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "13"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "B88D4FDE"
},
{
"begin": 1464,
"end": 21795,
"name": "EQ",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "14"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "C87B56DD"
},
{
"begin": 1464,
"end": 21795,
"name": "EQ",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "15"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "E985E9C5"
},
{
"begin": 1464,
"end": 21795,
"name": "EQ",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "16"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "2"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMP",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "tag",
"source": 10,
"value": "18"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "6352211E"
},
{
"begin": 1464,
"end": 21795,
"name": "EQ",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "10"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "70A08231"
},
{
"begin": 1464,
"end": 21795,
"name": "EQ",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "11"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "95D89B41"
},
{
"begin": 1464,
"end": 21795,
"name": "EQ",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "12"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "2"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMP",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "tag",
"source": 10,
"value": "17"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "95EA7B3"
},
{
"begin": 1464,
"end": 21795,
"name": "GT",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "19"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "95EA7B3"
},
{
"begin": 1464,
"end": 21795,
"name": "EQ",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "6"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "18160DDD"
},
{
"begin": 1464,
"end": 21795,
"name": "EQ",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "7"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "23B872DD"
},
{
"begin": 1464,
"end": 21795,
"name": "EQ",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "8"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "42842E0E"
},
{
"begin": 1464,
"end": 21795,
"name": "EQ",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "9"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "2"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMP",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "tag",
"source": 10,
"value": "19"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "1FFC9A7"
},
{
"begin": 1464,
"end": 21795,
"name": "EQ",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "3"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "6FDDE03"
},
{
"begin": 1464,
"end": 21795,
"name": "EQ",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "4"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "81812FC"
},
{
"begin": 1464,
"end": 21795,
"name": "EQ",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH [tag]",
"source": 10,
"value": "5"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPI",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "tag",
"source": 10,
"value": "2"
},
{
"begin": 1464,
"end": 21795,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 1464,
"end": 21795,
"name": "DUP1",
"source": 10
},
{
"begin": 1464,
"end": 21795,
"name": "REVERT",
"source": 10
},
{
"begin": 4551,
"end": 4851,
"name": "tag",
"source": 10,
"value": "3"
},
{
"begin": 4551,
"end": 4851,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 4551,
"end": 4851,
"name": "PUSH [tag]",
"source": 10,
"value": "20"
},
{
"begin": 4551,
"end": 4851,
"name": "PUSH",
"source": 10,
"value": "4"
},
{
"begin": 4551,
"end": 4851,
"name": "DUP1",
"source": 10
},
{
"begin": 4551,
"end": 4851,
"name": "CALLDATASIZE",
"source": 10
},
{
"begin": 4551,
"end": 4851,
"name": "SUB",
"source": 10
},
{
"begin": 4551,
"end": 4851,
"name": "DUP2",
"source": 10
},
{
"begin": 4551,
"end": 4851,
"name": "ADD",
"source": 10
},
{
"begin": 4551,
"end": 4851,
"name": "SWAP1",
"source": 10
},
{
"begin": 4551,
"end": 4851,
"name": "PUSH [tag]",
"source": 10,
"value": "21"
},
{
"begin": 4551,
"end": 4851,
"name": "SWAP2",
"source": 10
},
{
"begin": 4551,
"end": 4851,
"name": "SWAP1",
"source": 10
},
{
"begin": 4551,
"end": 4851,
"name": "PUSH [tag]",
"source": 10,
"value": "22"
},
{
"begin": 4551,
"end": 4851,
"name": "JUMP",
"source": 10,
"value": "[in]"
},
{
"begin": 4551,
"end": 4851,
"name": "tag",
"source": 10,
"value": "21"
},
{
"begin": 4551,
"end": 4851,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 4551,
"end": 4851,
"name": "PUSH [tag]",
"source": 10,
"value": "23"
},
{
"begin": 4551,
"end": 4851,
"name": "JUMP",
"source": 10,
"value": "[in]"
},
{
"begin": 4551,
"end": 4851,
"name": "tag",
"source": 10,
"value": "20"
},
{
"begin": 4551,
"end": 4851,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 4551,
"end": 4851,
"name": "PUSH",
"source": 10,
"value": "40"
},
{
"begin": 4551,
"end": 4851,
"name": "MLOAD",
"source": 10
},
{
"begin": 4551,
"end": 4851,
"name": "PUSH [tag]",
"source": 10,
"value": "24"
},
{
"begin": 4551,
"end": 4851,
"name": "SWAP2",
"source": 10
},
{
"begin": 4551,
"end": 4851,
"name": "SWAP1",
"source": 10
},
{
"begin": 4551,
"end": 4851,
"name": "PUSH [tag]",
"source": 10,
"value": "25"
},
{
"begin": 4551,
"end": 4851,
"name": "JUMP",
"source": 10,
"value": "[in]"
},
{
"begin": 4551,
"end": 4851,
"name": "tag",
"source": 10,
"value": "24"
},
{
"begin": 4551,
"end": 4851,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 4551,
"end": 4851,
"name": "PUSH",
"source": 10,
"value": "40"
},
{
"begin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment