Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save RAAbbott/1452a3eb55ed1e432564260b57a5987d to your computer and use it in GitHub Desktop.
Save RAAbbott/1452a3eb55ed1e432564260b57a5987d to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.9+commit.e5eed63a.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
REMIX EXAMPLE PROJECT
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer.
It contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity.
SCRIPTS
The 'scripts' folder contains example async/await scripts for deploying the 'Storage' contract.
For the deployment of any other contract, 'contractName' and 'constructorArgs' should be updated (along with other code if required).
Scripts have full access to the web3.js and ethers.js libraries.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
// SPDX-License-Identifier: GPL-3.0
// Amended by HashLips
/**
!Disclaimer!
These contracts have been used to create tutorials,
and was created for the purpose to teach people
how to create smart contracts on the blockchain.
please review this code on your own before using any of
the following code for production.
HashLips will not be liable in any way if for the use
of the code. That being said, the code has been tested
to the best of the developers' knowledge to work as intended.
*/
pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract NFT is ERC721Enumerable, Ownable {
using Strings for uint256;
string public baseURI;
string public baseExtension = ".json";
uint256 public cost = 0.05 ether;
uint256 public maxSupply = 10000;
uint256 public maxMintAmount = 20;
uint256 public nftPerAddressLimit = 3;
bool public paused = false;
bool public revealed = false;
string public notRevealedUri;
mapping(address => bool) public whitelisted;
bool public onlyWhitelisted = true;
address[] public whitelistedUsers;
constructor(
string memory _name,
string memory _symbol,
string memory _initBaseURI,
string memory _initNotRevealedUri
) ERC721(_name, _symbol) {
setBaseURI(_initBaseURI);
setNotRevealedURI(_initNotRevealedUri);
// mint(msg.sender, 20);
}
// internal
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}
// public
function mint(uint256 _mintAmount) public payable {
require(!paused);
uint256 supply = totalSupply();
require(_mintAmount > 0);
require(_mintAmount <= maxMintAmount);
require(supply + _mintAmount <= maxSupply);
if (msg.sender != owner()) {
if (onlyWhitelisted == true) {
require(isWhitelisted(msg.sender), "User is not whitelisted!");
}
require(msg.value >= cost * _mintAmount);
}
for (uint256 i = 1; i <= _mintAmount; i++) {
_safeMint(msg.sender, supply + i);
}
}
function isWhitelisted(address _user) public view returns (bool) {
for (uint256 i = 0; i < whitelistedUsers.length; i++) {
if (whitelistedUsers[i] == _user) {
return true;
}
}
return false;
}
function walletOfOwner(address _owner)
public
view
returns (uint256[] memory)
{
uint256 ownerTokenCount = balanceOf(_owner);
uint256[] memory tokenIds = new uint256[](ownerTokenCount);
for (uint256 i; i < ownerTokenCount; i++) {
tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
}
return tokenIds;
}
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
if(revealed == false) {
return notRevealedUri;
}
string memory currentBaseURI = _baseURI();
return bytes(currentBaseURI).length > 0
? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
: "";
}
//only owner
function reveal() public onlyOwner() {
revealed = true;
}
function setNftPerAddressLimit(uint256 _limit) public onlyOwner() {
nftPerAddressLimit = _limit;
}
function setCost(uint256 _newCost) public onlyOwner() {
cost = _newCost;
}
function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
maxMintAmount = _newmaxMintAmount;
}
function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
notRevealedUri = _notRevealedURI;
}
function setBaseURI(string memory _newBaseURI) public onlyOwner {
baseURI = _newBaseURI;
}
function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
baseExtension = _newBaseExtension;
}
function pause(bool _state) public onlyOwner {
paused = _state;
}
function whitelistUsers(address[] calldata _users) public onlyOwner {
delete whitelistedUsers;
whitelistedUsers = _users;
}
function withdraw() public payable onlyOwner {
(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
require(success);
}
}
This file has been truncated, but you can view the full file.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_166": {
"entryPoint": null,
"id": 166,
"parameterSlots": 2,
"returnSlots": 0
},
"@_2077": {
"entryPoint": null,
"id": 2077,
"parameterSlots": 4,
"returnSlots": 0
},
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_1758": {
"entryPoint": 371,
"id": 1758,
"parameterSlots": 0,
"returnSlots": 1
},
"@_setOwner_102": {
"entryPoint": 379,
"id": 102,
"parameterSlots": 1,
"returnSlots": 0
},
"@owner_32": {
"entryPoint": 919,
"id": 32,
"parameterSlots": 0,
"returnSlots": 1
},
"@setBaseURI_2370": {
"entryPoint": 577,
"id": 2370,
"parameterSlots": 1,
"returnSlots": 0
},
"@setNotRevealedURI_2358": {
"entryPoint": 748,
"id": 2358,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr_fromMemory": {
"entryPoint": 1424,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr_fromMemory": {
"entryPoint": 1499,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 1550,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1846,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1885,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1285,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 1137,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1316,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1788,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 1370,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 1966,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1231,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1919,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1184,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 1157,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1162,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 1152,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1147,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 1167,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 1805,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5912:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:13"
},
"nodeType": "YulFunctionCall",
"src": "67:9:13"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:13"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:13",
"type": ""
}
],
"src": "7:75:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:13"
},
"nodeType": "YulFunctionCall",
"src": "187:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:13"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:13"
},
"nodeType": "YulFunctionCall",
"src": "310:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:13"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "423:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "433:6:13"
},
"nodeType": "YulFunctionCall",
"src": "433:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "433:12:13"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "334:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "546:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "563:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "566:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "556:6:13"
},
"nodeType": "YulFunctionCall",
"src": "556:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "556:12:13"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "457:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "628:54:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "638:38:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "656:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "663:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "652:3:13"
},
"nodeType": "YulFunctionCall",
"src": "652:14:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "672:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "668:3:13"
},
"nodeType": "YulFunctionCall",
"src": "668:7:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "648:3:13"
},
"nodeType": "YulFunctionCall",
"src": "648:28:13"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "638:6:13"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "621:6:13",
"type": ""
}
],
"src": "580:102:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "716:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "733:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "726:6:13"
},
"nodeType": "YulFunctionCall",
"src": "726:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "726:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "830:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "833:4:13",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "823:6:13"
},
"nodeType": "YulFunctionCall",
"src": "823:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "823:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "854:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "847:6:13"
},
"nodeType": "YulFunctionCall",
"src": "847:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "847:15:13"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "688:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "917:238:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "927:58:13",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "949:6:13"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "979:4:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "957:21:13"
},
"nodeType": "YulFunctionCall",
"src": "957:27:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "945:3:13"
},
"nodeType": "YulFunctionCall",
"src": "945:40:13"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "931:10:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1096:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1098:16:13"
},
"nodeType": "YulFunctionCall",
"src": "1098:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "1098:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1039:10:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1051:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1036:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1036:34:13"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1075:10:13"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1087:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1072:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1072:22:13"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1033:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1033:62:13"
},
"nodeType": "YulIf",
"src": "1030:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1134:2:13",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1138:10:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1127:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1127:22:13"
},
"nodeType": "YulExpressionStatement",
"src": "1127:22:13"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "903:6:13",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "911:4:13",
"type": ""
}
],
"src": "874:281:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1202:88:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1212:30:13",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1222:18:13"
},
"nodeType": "YulFunctionCall",
"src": "1222:20:13"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1212:6:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1271:6:13"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1279:4:13"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1251:19:13"
},
"nodeType": "YulFunctionCall",
"src": "1251:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "1251:33:13"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1186:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1195:6:13",
"type": ""
}
],
"src": "1161:129:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1363:241:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1468:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1470:16:13"
},
"nodeType": "YulFunctionCall",
"src": "1470:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "1470:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1440:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1448:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1437:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1437:30:13"
},
"nodeType": "YulIf",
"src": "1434:56:13"
},
{
"nodeType": "YulAssignment",
"src": "1500:37:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1530:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1508:21:13"
},
"nodeType": "YulFunctionCall",
"src": "1508:29:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1500:4:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1574:23:13",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1586:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1592:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1582:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1582:15:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1574:4:13"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1347:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1358:4:13",
"type": ""
}
],
"src": "1296:308:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1659:258:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1669:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1678:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1673:1:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1738:63:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1763:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1768:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1759:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1759:11:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1782:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1787:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1778:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1778:11:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1772:5:13"
},
"nodeType": "YulFunctionCall",
"src": "1772:18:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1752:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1752:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "1752:39:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1699:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1702:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1696:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1696:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1710:19:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1712:15:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1721:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1724:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1717:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1717:10:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1712:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1692:3:13",
"statements": []
},
"src": "1688:113:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1835:76:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1885:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1890:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1881:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1881:16:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1899:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1874:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1874:27:13"
},
"nodeType": "YulExpressionStatement",
"src": "1874:27:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1816:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1819:6:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1813:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1813:13:13"
},
"nodeType": "YulIf",
"src": "1810:101:13"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1641:3:13",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1646:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1651:6:13",
"type": ""
}
],
"src": "1610:307:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2018:326:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2028:75:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2095:6:13"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2053:41:13"
},
"nodeType": "YulFunctionCall",
"src": "2053:49:13"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "2037:15:13"
},
"nodeType": "YulFunctionCall",
"src": "2037:66:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2028:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2119:5:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2126:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2112:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2112:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "2112:21:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2142:27:13",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2157:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2164:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2153:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2153:16:13"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2146:3:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2207:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "2209:77:13"
},
"nodeType": "YulFunctionCall",
"src": "2209:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "2209:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2188:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2193:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2184:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2184:16:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2202:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2181:2:13"
},
"nodeType": "YulFunctionCall",
"src": "2181:25:13"
},
"nodeType": "YulIf",
"src": "2178:112:13"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2321:3:13"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2326:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2331:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2299:21:13"
},
"nodeType": "YulFunctionCall",
"src": "2299:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "2299:39:13"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1991:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1996:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2004:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2012:5:13",
"type": ""
}
],
"src": "1923:421:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2437:282:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2486:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2488:77:13"
},
"nodeType": "YulFunctionCall",
"src": "2488:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "2488:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2465:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2473:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2461:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2461:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2480:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2457:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2457:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2450:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2450:35:13"
},
"nodeType": "YulIf",
"src": "2447:122:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2578:27:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2598:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2592:5:13"
},
"nodeType": "YulFunctionCall",
"src": "2592:13:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2582:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2614:99:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2686:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2694:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2682:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2682:17:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2701:6:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2709:3:13"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "2623:58:13"
},
"nodeType": "YulFunctionCall",
"src": "2623:90:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2614:5:13"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2415:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2423:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2431:5:13",
"type": ""
}
],
"src": "2364:355:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2893:1344:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2940:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2942:77:13"
},
"nodeType": "YulFunctionCall",
"src": "2942:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "2942:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2914:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2923:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2910:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2910:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2935:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2906:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2906:33:13"
},
"nodeType": "YulIf",
"src": "2903:120:13"
},
{
"nodeType": "YulBlock",
"src": "3033:291:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3048:38:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3072:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3083:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3068:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3068:17:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3062:5:13"
},
"nodeType": "YulFunctionCall",
"src": "3062:24:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3052:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3133:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3135:77:13"
},
"nodeType": "YulFunctionCall",
"src": "3135:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "3135:79:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3105:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3113:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3102:2:13"
},
"nodeType": "YulFunctionCall",
"src": "3102:30:13"
},
"nodeType": "YulIf",
"src": "3099:117:13"
},
{
"nodeType": "YulAssignment",
"src": "3230:84:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3286:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3297:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3282:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3282:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3306:7:13"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3240:41:13"
},
"nodeType": "YulFunctionCall",
"src": "3240:74:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3230:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3334:292:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3349:39:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3373:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3384:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3369:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3369:18:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3363:5:13"
},
"nodeType": "YulFunctionCall",
"src": "3363:25:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3353:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3435:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3437:77:13"
},
"nodeType": "YulFunctionCall",
"src": "3437:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "3437:79:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3407:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3415:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3404:2:13"
},
"nodeType": "YulFunctionCall",
"src": "3404:30:13"
},
"nodeType": "YulIf",
"src": "3401:117:13"
},
{
"nodeType": "YulAssignment",
"src": "3532:84:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3588:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3599:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3584:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3584:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3608:7:13"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3542:41:13"
},
"nodeType": "YulFunctionCall",
"src": "3542:74:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3532:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3636:292:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3651:39:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3675:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3686:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3671:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3671:18:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3665:5:13"
},
"nodeType": "YulFunctionCall",
"src": "3665:25:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3655:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3737:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3739:77:13"
},
"nodeType": "YulFunctionCall",
"src": "3739:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "3739:79:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3709:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3717:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3706:2:13"
},
"nodeType": "YulFunctionCall",
"src": "3706:30:13"
},
"nodeType": "YulIf",
"src": "3703:117:13"
},
{
"nodeType": "YulAssignment",
"src": "3834:84:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3890:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3901:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3886:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3886:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3910:7:13"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3844:41:13"
},
"nodeType": "YulFunctionCall",
"src": "3844:74:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3834:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3938:292:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3953:39:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3977:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3988:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3973:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3973:18:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3967:5:13"
},
"nodeType": "YulFunctionCall",
"src": "3967:25:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3957:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4039:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "4041:77:13"
},
"nodeType": "YulFunctionCall",
"src": "4041:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "4041:79:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4011:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4019:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4008:2:13"
},
"nodeType": "YulFunctionCall",
"src": "4008:30:13"
},
"nodeType": "YulIf",
"src": "4005:117:13"
},
{
"nodeType": "YulAssignment",
"src": "4136:84:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4192:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4203:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4188:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4188:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4212:7:13"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "4146:41:13"
},
"nodeType": "YulFunctionCall",
"src": "4146:74:13"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "4136:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2839:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2850:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2862:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2870:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2878:6:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "2886:6:13",
"type": ""
}
],
"src": "2725:1512:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4339:73:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4356:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4361:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4349:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4349:19:13"
},
"nodeType": "YulExpressionStatement",
"src": "4349:19:13"
},
{
"nodeType": "YulAssignment",
"src": "4377:29:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4396:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4401:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4392:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4392:14:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "4377:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4311:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4316:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4327:11:13",
"type": ""
}
],
"src": "4243:169:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4524:76:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4546:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4554:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4542:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4542:14:13"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4558:34:13",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4535:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4535:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "4535:58:13"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4516:6:13",
"type": ""
}
],
"src": "4418:182:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4752:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4762:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4828:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4833:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4769:58:13"
},
"nodeType": "YulFunctionCall",
"src": "4769:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4762:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4934:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "4845:88:13"
},
"nodeType": "YulFunctionCall",
"src": "4845:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "4845:93:13"
},
{
"nodeType": "YulAssignment",
"src": "4947:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4958:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4963:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4954:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4954:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4947:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4740:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4748:3:13",
"type": ""
}
],
"src": "4606:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5149:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5159:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5171:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5182:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5167:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5167:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5159:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5206:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5217:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5202:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5202:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5225:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5231:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5221:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5221:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5195:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5195:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "5195:47:13"
},
{
"nodeType": "YulAssignment",
"src": "5251:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5385:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5259:124:13"
},
"nodeType": "YulFunctionCall",
"src": "5259:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5251:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5129:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5144:4:13",
"type": ""
}
],
"src": "4978:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5431:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5448:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5451:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5441:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5441:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "5441:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5545:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5548:4:13",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5538:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5538:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "5538:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5569:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5572:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5562:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5562:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "5562:15:13"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "5403:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5640:269:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5650:22:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5664:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5670:1:13",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5660:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5660:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5650:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5681:38:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5711:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5717:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5707:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5707:12:13"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5685:18:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5758:51:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5772:27:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5786:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5794:4:13",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5782:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5782:17:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5772:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5738:18:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5731:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5731:26:13"
},
"nodeType": "YulIf",
"src": "5728:81:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5861:42:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "5875:16:13"
},
"nodeType": "YulFunctionCall",
"src": "5875:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "5875:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5825:18:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5848:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5856:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5845:2:13"
},
"nodeType": "YulFunctionCall",
"src": "5845:14:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5822:2:13"
},
"nodeType": "YulFunctionCall",
"src": "5822:38:13"
},
"nodeType": "YulIf",
"src": "5819:84:13"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5624:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5633:6:13",
"type": ""
}
],
"src": "5589:320:13"
}
]
},
"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_ptrt_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { 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 let offset := mload(add(headStart, 64))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value2 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value3 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\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 store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\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": 13,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620003c1565b5066b1a2bc2ec50000600d55612710600e556014600f5560036010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506001601460006101000a81548160ff021916908315150217905550348015620000cb57600080fd5b50604051620052d4380380620052d48339818101604052810190620000f191906200060e565b838381600090805190602001906200010b929190620003c1565b50806001908051906020019062000124929190620003c1565b505050620001476200013b6200017360201b60201c565b6200017b60201b60201c565b62000158826200024160201b60201c565b6200016981620002ec60201b60201c565b50505050620007e4565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002516200017360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002776200039760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c7906200075d565b60405180910390fd5b80600b9080519060200190620002e8929190620003c1565b5050565b620002fc6200017360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003226200039760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200037b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000372906200075d565b60405180910390fd5b806012908051906020019062000393929190620003c1565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003cf90620007ae565b90600052602060002090601f016020900481019282620003f357600085556200043f565b82601f106200040e57805160ff19168380011785556200043f565b828001600101855582156200043f579182015b828111156200043e57825182559160200191906001019062000421565b5b5090506200044e919062000452565b5090565b5b808211156200046d57600081600090555060010162000453565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004da826200048f565b810181811067ffffffffffffffff82111715620004fc57620004fb620004a0565b5b80604052505050565b60006200051162000471565b90506200051f8282620004cf565b919050565b600067ffffffffffffffff821115620005425762000541620004a0565b5b6200054d826200048f565b9050602081019050919050565b60005b838110156200057a5780820151818401526020810190506200055d565b838111156200058a576000848401525b50505050565b6000620005a7620005a18462000524565b62000505565b905082815260208101848484011115620005c657620005c56200048a565b5b620005d38482856200055a565b509392505050565b600082601f830112620005f357620005f262000485565b5b81516200060584826020860162000590565b91505092915050565b600080600080608085870312156200062b576200062a6200047b565b5b600085015167ffffffffffffffff8111156200064c576200064b62000480565b5b6200065a87828801620005db565b945050602085015167ffffffffffffffff8111156200067e576200067d62000480565b5b6200068c87828801620005db565b935050604085015167ffffffffffffffff811115620006b057620006af62000480565b5b620006be87828801620005db565b925050606085015167ffffffffffffffff811115620006e257620006e162000480565b5b620006f087828801620005db565b91505092959194509250565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000745602083620006fc565b915062000752826200070d565b602082019050919050565b60006020820190508181036000830152620007788162000736565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007c757607f821691505b60208210811415620007de57620007dd6200077f565b5b50919050565b614ae080620007f46000396000f3fe6080604052600436106102675760003560e01c806370a0823111610144578063ba7d2c76116100b6578063d936547e1161007a578063d936547e14610916578063da3ef23f14610953578063e985e9c51461097c578063edec5f27146109b9578063f2c4ce1e146109e2578063f2fde38b14610a0b57610267565b8063ba7d2c761461082f578063c66828621461085a578063c87b56dd14610885578063d0eb26b0146108c2578063d5abeb01146108eb57610267565b806395d89b411161010857806395d89b41146107545780639c70b5121461077f578063a0712d68146107aa578063a22cb465146107c6578063a475b5dd146107ef578063b88d4fde1461080657610267565b806370a082311461066f578063715018a6146106ac5780637f00c7a6146106c357806385668275146106ec5780638da5cb5b1461072957610267565b80633af32abf116101dd5780634f6ccce7116101a15780634f6ccce71461054b578063518302271461058857806355f804b3146105b35780635c975abb146105dc5780636352211e146106075780636c0360eb1461064457610267565b80633af32abf146104755780633ccfd60b146104b257806342842e0e146104bc578063438b6300146104e557806344a0d68a1461052257610267565b8063095ea7b31161022f578063095ea7b31461036557806313faede61461038e57806318160ddd146103b9578063239c70ae146103e457806323b872dd1461040f5780632f745c591461043857610267565b806301ffc9a71461026c57806302329a29146102a957806306fdde03146102d2578063081812fc146102fd578063081c8c441461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906133c1565b610a34565b6040516102a09190613409565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613450565b610aae565b005b3480156102de57600080fd5b506102e7610b47565b6040516102f49190613516565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f919061356e565b610bd9565b60405161033191906135dc565b60405180910390f35b34801561034657600080fd5b5061034f610c5e565b60405161035c9190613516565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613623565b610cec565b005b34801561039a57600080fd5b506103a3610e04565b6040516103b09190613672565b60405180910390f35b3480156103c557600080fd5b506103ce610e0a565b6040516103db9190613672565b60405180910390f35b3480156103f057600080fd5b506103f9610e17565b6040516104069190613672565b60405180910390f35b34801561041b57600080fd5b506104366004803603810190610431919061368d565b610e1d565b005b34801561044457600080fd5b5061045f600480360381019061045a9190613623565b610e7d565b60405161046c9190613672565b60405180910390f35b34801561048157600080fd5b5061049c600480360381019061049791906136e0565b610f22565b6040516104a99190613409565b60405180910390f35b6104ba610fd1565b005b3480156104c857600080fd5b506104e360048036038101906104de919061368d565b6110c6565b005b3480156104f157600080fd5b5061050c600480360381019061050791906136e0565b6110e6565b60405161051991906137cb565b60405180910390f35b34801561052e57600080fd5b506105496004803603810190610544919061356e565b611194565b005b34801561055757600080fd5b50610572600480360381019061056d919061356e565b61121a565b60405161057f9190613672565b60405180910390f35b34801561059457600080fd5b5061059d61128b565b6040516105aa9190613409565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d59190613922565b61129e565b005b3480156105e857600080fd5b506105f1611334565b6040516105fe9190613409565b60405180910390f35b34801561061357600080fd5b5061062e6004803603810190610629919061356e565b611347565b60405161063b91906135dc565b60405180910390f35b34801561065057600080fd5b506106596113f9565b6040516106669190613516565b60405180910390f35b34801561067b57600080fd5b50610696600480360381019061069191906136e0565b611487565b6040516106a39190613672565b60405180910390f35b3480156106b857600080fd5b506106c161153f565b005b3480156106cf57600080fd5b506106ea60048036038101906106e5919061356e565b6115c7565b005b3480156106f857600080fd5b50610713600480360381019061070e919061356e565b61164d565b60405161072091906135dc565b60405180910390f35b34801561073557600080fd5b5061073e61168c565b60405161074b91906135dc565b60405180910390f35b34801561076057600080fd5b506107696116b6565b6040516107769190613516565b60405180910390f35b34801561078b57600080fd5b50610794611748565b6040516107a19190613409565b60405180910390f35b6107c460048036038101906107bf919061356e565b61175b565b005b3480156107d257600080fd5b506107ed60048036038101906107e8919061396b565b6118ac565b005b3480156107fb57600080fd5b50610804611a2d565b005b34801561081257600080fd5b5061082d60048036038101906108289190613a4c565b611ac6565b005b34801561083b57600080fd5b50610844611b28565b6040516108519190613672565b60405180910390f35b34801561086657600080fd5b5061086f611b2e565b60405161087c9190613516565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a7919061356e565b611bbc565b6040516108b99190613516565b60405180910390f35b3480156108ce57600080fd5b506108e960048036038101906108e4919061356e565b611d15565b005b3480156108f757600080fd5b50610900611d9b565b60405161090d9190613672565b60405180910390f35b34801561092257600080fd5b5061093d600480360381019061093891906136e0565b611da1565b60405161094a9190613409565b60405180910390f35b34801561095f57600080fd5b5061097a60048036038101906109759190613922565b611dc1565b005b34801561098857600080fd5b506109a3600480360381019061099e9190613acf565b611e57565b6040516109b09190613409565b60405180910390f35b3480156109c557600080fd5b506109e060048036038101906109db9190613b6f565b611eeb565b005b3480156109ee57600080fd5b50610a096004803603810190610a049190613922565b611f8b565b005b348015610a1757600080fd5b50610a326004803603810190610a2d91906136e0565b612021565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa75750610aa682612119565b5b9050919050565b610ab66121fb565b73ffffffffffffffffffffffffffffffffffffffff16610ad461168c565b73ffffffffffffffffffffffffffffffffffffffff1614610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2190613c08565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060008054610b5690613c57565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8290613c57565b8015610bcf5780601f10610ba457610100808354040283529160200191610bcf565b820191906000526020600020905b815481529060010190602001808311610bb257829003601f168201915b5050505050905090565b6000610be482612203565b610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a90613cfb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60128054610c6b90613c57565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9790613c57565b8015610ce45780601f10610cb957610100808354040283529160200191610ce4565b820191906000526020600020905b815481529060010190602001808311610cc757829003601f168201915b505050505081565b6000610cf782611347565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f90613d8d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d876121fb565b73ffffffffffffffffffffffffffffffffffffffff161480610db65750610db581610db06121fb565b611e57565b5b610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec90613e1f565b60405180910390fd5b610dff838361226f565b505050565b600d5481565b6000600880549050905090565b600f5481565b610e2e610e286121fb565b82612328565b610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490613eb1565b60405180910390fd5b610e78838383612406565b505050565b6000610e8883611487565b8210610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec090613f43565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601580549050811015610fc6578273ffffffffffffffffffffffffffffffffffffffff1660158281548110610f6257610f61613f63565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610fb3576001915050610fcc565b8080610fbe90613fc1565b915050610f2a565b50600090505b919050565b610fd96121fb565b73ffffffffffffffffffffffffffffffffffffffff16610ff761168c565b73ffffffffffffffffffffffffffffffffffffffff161461104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490613c08565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110739061403b565b60006040518083038185875af1925050503d80600081146110b0576040519150601f19603f3d011682016040523d82523d6000602084013e6110b5565b606091505b50509050806110c357600080fd5b50565b6110e183838360405180602001604052806000815250611ac6565b505050565b606060006110f383611487565b905060008167ffffffffffffffff811115611111576111106137f7565b5b60405190808252806020026020018201604052801561113f5781602001602082028036833780820191505090505b50905060005b82811015611189576111578582610e7d565b82828151811061116a57611169613f63565b5b602002602001018181525050808061118190613fc1565b915050611145565b508092505050919050565b61119c6121fb565b73ffffffffffffffffffffffffffffffffffffffff166111ba61168c565b73ffffffffffffffffffffffffffffffffffffffff1614611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790613c08565b60405180910390fd5b80600d8190555050565b6000611224610e0a565b8210611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c906140c2565b60405180910390fd5b6008828154811061127957611278613f63565b5b90600052602060002001549050919050565b601160019054906101000a900460ff1681565b6112a66121fb565b73ffffffffffffffffffffffffffffffffffffffff166112c461168c565b73ffffffffffffffffffffffffffffffffffffffff161461131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190613c08565b60405180910390fd5b80600b90805190602001906113309291906131f1565b5050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790614154565b60405180910390fd5b80915050919050565b600b805461140690613c57565b80601f016020809104026020016040519081016040528092919081815260200182805461143290613c57565b801561147f5780601f106114545761010080835404028352916020019161147f565b820191906000526020600020905b81548152906001019060200180831161146257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef906141e6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115476121fb565b73ffffffffffffffffffffffffffffffffffffffff1661156561168c565b73ffffffffffffffffffffffffffffffffffffffff16146115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290613c08565b60405180910390fd5b6115c56000612662565b565b6115cf6121fb565b73ffffffffffffffffffffffffffffffffffffffff166115ed61168c565b73ffffffffffffffffffffffffffffffffffffffff1614611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a90613c08565b60405180910390fd5b80600f8190555050565b6015818154811061165d57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116c590613c57565b80601f01602080910402602001604051908101604052809291908181526020018280546116f190613c57565b801561173e5780601f106117135761010080835404028352916020019161173e565b820191906000526020600020905b81548152906001019060200180831161172157829003601f168201915b5050505050905090565b601460009054906101000a900460ff1681565b601160009054906101000a900460ff161561177557600080fd5b600061177f610e0a565b90506000821161178e57600080fd5b600f5482111561179d57600080fd5b600e5482826117ac9190614206565b11156117b757600080fd5b6117bf61168c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118715760011515601460009054906101000a900460ff16151514156118565761181633610f22565b611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c906142a8565b60405180910390fd5b5b81600d5461186491906142c8565b34101561187057600080fd5b5b6000600190505b8281116118a75761189433828461188f9190614206565b612728565b808061189f90613fc1565b915050611878565b505050565b6118b46121fb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611922576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119199061436e565b60405180910390fd5b806005600061192f6121fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119dc6121fb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a219190613409565b60405180910390a35050565b611a356121fb565b73ffffffffffffffffffffffffffffffffffffffff16611a5361168c565b73ffffffffffffffffffffffffffffffffffffffff1614611aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa090613c08565b60405180910390fd5b6001601160016101000a81548160ff021916908315150217905550565b611ad7611ad16121fb565b83612328565b611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90613eb1565b60405180910390fd5b611b2284848484612746565b50505050565b60105481565b600c8054611b3b90613c57565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6790613c57565b8015611bb45780601f10611b8957610100808354040283529160200191611bb4565b820191906000526020600020905b815481529060010190602001808311611b9757829003601f168201915b505050505081565b6060611bc782612203565b611c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfd90614400565b60405180910390fd5b60001515601160019054906101000a900460ff1615151415611cb45760128054611c2f90613c57565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5b90613c57565b8015611ca85780601f10611c7d57610100808354040283529160200191611ca8565b820191906000526020600020905b815481529060010190602001808311611c8b57829003601f168201915b50505050509050611d10565b6000611cbe6127a2565b90506000815111611cde5760405180602001604052806000815250611d0c565b80611ce884612834565b600c604051602001611cfc939291906144f0565b6040516020818303038152906040525b9150505b919050565b611d1d6121fb565b73ffffffffffffffffffffffffffffffffffffffff16611d3b61168c565b73ffffffffffffffffffffffffffffffffffffffff1614611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890613c08565b60405180910390fd5b8060108190555050565b600e5481565b60136020528060005260406000206000915054906101000a900460ff1681565b611dc96121fb565b73ffffffffffffffffffffffffffffffffffffffff16611de761168c565b73ffffffffffffffffffffffffffffffffffffffff1614611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3490613c08565b60405180910390fd5b80600c9080519060200190611e539291906131f1565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ef36121fb565b73ffffffffffffffffffffffffffffffffffffffff16611f1161168c565b73ffffffffffffffffffffffffffffffffffffffff1614611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e90613c08565b60405180910390fd5b60156000611f759190613277565b818160159190611f86929190613298565b505050565b611f936121fb565b73ffffffffffffffffffffffffffffffffffffffff16611fb161168c565b73ffffffffffffffffffffffffffffffffffffffff1614612007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffe90613c08565b60405180910390fd5b806012908051906020019061201d9291906131f1565b5050565b6120296121fb565b73ffffffffffffffffffffffffffffffffffffffff1661204761168c565b73ffffffffffffffffffffffffffffffffffffffff161461209d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209490613c08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561210d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210490614593565b60405180910390fd5b61211681612662565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121f457506121f382612995565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122e283611347565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061233382612203565b612372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236990614625565b60405180910390fd5b600061237d83611347565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123ec57508373ffffffffffffffffffffffffffffffffffffffff166123d484610bd9565b73ffffffffffffffffffffffffffffffffffffffff16145b806123fd57506123fc8185611e57565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661242682611347565b73ffffffffffffffffffffffffffffffffffffffff161461247c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612473906146b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e390614749565b60405180910390fd5b6124f78383836129ff565b61250260008261226f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125529190614769565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125a99190614206565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612742828260405180602001604052806000815250612b13565b5050565b612751848484612406565b61275d84848484612b6e565b61279c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127939061480f565b60405180910390fd5b50505050565b6060600b80546127b190613c57565b80601f01602080910402602001604051908101604052809291908181526020018280546127dd90613c57565b801561282a5780601f106127ff5761010080835404028352916020019161282a565b820191906000526020600020905b81548152906001019060200180831161280d57829003601f168201915b5050505050905090565b6060600082141561287c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612990565b600082905060005b600082146128ae57808061289790613fc1565b915050600a826128a7919061485e565b9150612884565b60008167ffffffffffffffff8111156128ca576128c96137f7565b5b6040519080825280601f01601f1916602001820160405280156128fc5781602001600182028036833780820191505090505b5090505b60008514612989576001826129159190614769565b9150600a85612924919061488f565b60306129309190614206565b60f81b81838151811061294657612945613f63565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612982919061485e565b9450612900565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a0a838383612d05565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a4d57612a4881612d0a565b612a8c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a8b57612a8a8382612d53565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612acf57612aca81612ec0565b612b0e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b0d57612b0c8282612f91565b5b5b505050565b612b1d8383613010565b612b2a6000848484612b6e565b612b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b609061480f565b60405180910390fd5b505050565b6000612b8f8473ffffffffffffffffffffffffffffffffffffffff166131de565b15612cf8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bb86121fb565b8786866040518563ffffffff1660e01b8152600401612bda9493929190614915565b602060405180830381600087803b158015612bf457600080fd5b505af1925050508015612c2557506040513d601f19601f82011682018060405250810190612c229190614976565b60015b612ca8573d8060008114612c55576040519150601f19603f3d011682016040523d82523d6000602084013e612c5a565b606091505b50600081511415612ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c979061480f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612cfd565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d6084611487565b612d6a9190614769565b9050600060076000848152602001908152602001600020549050818114612e4f576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ed49190614769565b9050600060096000848152602001908152602001600020549050600060088381548110612f0457612f03613f63565b5b906000526020600020015490508060088381548110612f2657612f25613f63565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f7557612f746149a3565b5b6001900381819060005260206000200160009055905550505050565b6000612f9c83611487565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307790614a1e565b60405180910390fd5b61308981612203565b156130c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c090614a8a565b60405180910390fd5b6130d5600083836129ff565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131259190614206565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131fd90613c57565b90600052602060002090601f01602090048101928261321f5760008555613266565b82601f1061323857805160ff1916838001178555613266565b82800160010185558215613266579182015b8281111561326557825182559160200191906001019061324a565b5b5090506132739190613338565b5090565b50805460008255906000526020600020908101906132959190613338565b50565b828054828255906000526020600020908101928215613327579160200282015b8281111561332657823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906132b8565b5b5090506133349190613338565b5090565b5b80821115613351576000816000905550600101613339565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61339e81613369565b81146133a957600080fd5b50565b6000813590506133bb81613395565b92915050565b6000602082840312156133d7576133d661335f565b5b60006133e5848285016133ac565b91505092915050565b60008115159050919050565b613403816133ee565b82525050565b600060208201905061341e60008301846133fa565b92915050565b61342d816133ee565b811461343857600080fd5b50565b60008135905061344a81613424565b92915050565b6000602082840312156134665761346561335f565b5b60006134748482850161343b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134b757808201518184015260208101905061349c565b838111156134c6576000848401525b50505050565b6000601f19601f8301169050919050565b60006134e88261347d565b6134f28185613488565b9350613502818560208601613499565b61350b816134cc565b840191505092915050565b6000602082019050818103600083015261353081846134dd565b905092915050565b6000819050919050565b61354b81613538565b811461355657600080fd5b50565b60008135905061356881613542565b92915050565b6000602082840312156135845761358361335f565b5b600061359284828501613559565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135c68261359b565b9050919050565b6135d6816135bb565b82525050565b60006020820190506135f160008301846135cd565b92915050565b613600816135bb565b811461360b57600080fd5b50565b60008135905061361d816135f7565b92915050565b6000806040838503121561363a5761363961335f565b5b60006136488582860161360e565b925050602061365985828601613559565b9150509250929050565b61366c81613538565b82525050565b60006020820190506136876000830184613663565b92915050565b6000806000606084860312156136a6576136a561335f565b5b60006136b48682870161360e565b93505060206136c58682870161360e565b92505060406136d686828701613559565b9150509250925092565b6000602082840312156136f6576136f561335f565b5b60006137048482850161360e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61374281613538565b82525050565b60006137548383613739565b60208301905092915050565b6000602082019050919050565b60006137788261370d565b6137828185613718565b935061378d83613729565b8060005b838110156137be5781516137a58882613748565b97506137b083613760565b925050600181019050613791565b5085935050505092915050565b600060208201905081810360008301526137e5818461376d565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61382f826134cc565b810181811067ffffffffffffffff8211171561384e5761384d6137f7565b5b80604052505050565b6000613861613355565b905061386d8282613826565b919050565b600067ffffffffffffffff82111561388d5761388c6137f7565b5b613896826134cc565b9050602081019050919050565b82818337600083830152505050565b60006138c56138c084613872565b613857565b9050828152602081018484840111156138e1576138e06137f2565b5b6138ec8482856138a3565b509392505050565b600082601f830112613909576139086137ed565b5b81356139198482602086016138b2565b91505092915050565b6000602082840312156139385761393761335f565b5b600082013567ffffffffffffffff81111561395657613955613364565b5b613962848285016138f4565b91505092915050565b600080604083850312156139825761398161335f565b5b60006139908582860161360e565b92505060206139a18582860161343b565b9150509250929050565b600067ffffffffffffffff8211156139c6576139c56137f7565b5b6139cf826134cc565b9050602081019050919050565b60006139ef6139ea846139ab565b613857565b905082815260208101848484011115613a0b57613a0a6137f2565b5b613a168482856138a3565b509392505050565b600082601f830112613a3357613a326137ed565b5b8135613a438482602086016139dc565b91505092915050565b60008060008060808587031215613a6657613a6561335f565b5b6000613a748782880161360e565b9450506020613a858782880161360e565b9350506040613a9687828801613559565b925050606085013567ffffffffffffffff811115613ab757613ab6613364565b5b613ac387828801613a1e565b91505092959194509250565b60008060408385031215613ae657613ae561335f565b5b6000613af48582860161360e565b9250506020613b058582860161360e565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613b2f57613b2e6137ed565b5b8235905067ffffffffffffffff811115613b4c57613b4b613b0f565b5b602083019150836020820283011115613b6857613b67613b14565b5b9250929050565b60008060208385031215613b8657613b8561335f565b5b600083013567ffffffffffffffff811115613ba457613ba3613364565b5b613bb085828601613b19565b92509250509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bf2602083613488565b9150613bfd82613bbc565b602082019050919050565b60006020820190508181036000830152613c2181613be5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c6f57607f821691505b60208210811415613c8357613c82613c28565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613ce5602c83613488565b9150613cf082613c89565b604082019050919050565b60006020820190508181036000830152613d1481613cd8565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d77602183613488565b9150613d8282613d1b565b604082019050919050565b60006020820190508181036000830152613da681613d6a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613e09603883613488565b9150613e1482613dad565b604082019050919050565b60006020820190508181036000830152613e3881613dfc565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613e9b603183613488565b9150613ea682613e3f565b604082019050919050565b60006020820190508181036000830152613eca81613e8e565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613f2d602b83613488565b9150613f3882613ed1565b604082019050919050565b60006020820190508181036000830152613f5c81613f20565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fcc82613538565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fff57613ffe613f92565b5b600182019050919050565b600081905092915050565b50565b600061402560008361400a565b915061403082614015565b600082019050919050565b600061404682614018565b9150819050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006140ac602c83613488565b91506140b782614050565b604082019050919050565b600060208201905081810360008301526140db8161409f565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061413e602983613488565b9150614149826140e2565b604082019050919050565b6000602082019050818103600083015261416d81614131565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006141d0602a83613488565b91506141db82614174565b604082019050919050565b600060208201905081810360008301526141ff816141c3565b9050919050565b600061421182613538565b915061421c83613538565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561425157614250613f92565b5b828201905092915050565b7f55736572206973206e6f742077686974656c6973746564210000000000000000600082015250565b6000614292601883613488565b915061429d8261425c565b602082019050919050565b600060208201905081810360008301526142c181614285565b9050919050565b60006142d382613538565b91506142de83613538565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561431757614316613f92565b5b828202905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614358601983613488565b915061436382614322565b602082019050919050565b600060208201905081810360008301526143878161434b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006143ea602f83613488565b91506143f58261438e565b604082019050919050565b60006020820190508181036000830152614419816143dd565b9050919050565b600081905092915050565b60006144368261347d565b6144408185614420565b9350614450818560208601613499565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461447e81613c57565b6144888186614420565b945060018216600081146144a357600181146144b4576144e7565b60ff198316865281860193506144e7565b6144bd8561445c565b60005b838110156144df578154818901526001820191506020810190506144c0565b838801955050505b50505092915050565b60006144fc828661442b565b9150614508828561442b565b91506145148284614471565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061457d602683613488565b915061458882614521565b604082019050919050565b600060208201905081810360008301526145ac81614570565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061460f602c83613488565b915061461a826145b3565b604082019050919050565b6000602082019050818103600083015261463e81614602565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006146a1602983613488565b91506146ac82614645565b604082019050919050565b600060208201905081810360008301526146d081614694565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614733602483613488565b915061473e826146d7565b604082019050919050565b6000602082019050818103600083015261476281614726565b9050919050565b600061477482613538565b915061477f83613538565b92508282101561479257614791613f92565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006147f9603283613488565b91506148048261479d565b604082019050919050565b60006020820190508181036000830152614828816147ec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061486982613538565b915061487483613538565b9250826148845761488361482f565b5b828204905092915050565b600061489a82613538565b91506148a583613538565b9250826148b5576148b461482f565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006148e7826148c0565b6148f181856148cb565b9350614901818560208601613499565b61490a816134cc565b840191505092915050565b600060808201905061492a60008301876135cd565b61493760208301866135cd565b6149446040830185613663565b818103606083015261495681846148dc565b905095945050505050565b60008151905061497081613395565b92915050565b60006020828403121561498c5761498b61335f565b5b600061499a84828501614961565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614a08602083613488565b9150614a13826149d2565b602082019050919050565b60006020820190508181036000830152614a37816149fb565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614a74601c83613488565b9150614a7f82614a3e565b602082019050919050565b60006020820190508181036000830152614aa381614a67565b905091905056fea26469706673582212201496e1f5a091650a78d7475b07666452b2dcda979f168bcb83d1af28895a700764736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x2E6A736F6E000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0xC SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x51 SWAP3 SWAP2 SWAP1 PUSH3 0x3C1 JUMP JUMPDEST POP PUSH7 0xB1A2BC2EC50000 PUSH1 0xD SSTORE PUSH2 0x2710 PUSH1 0xE SSTORE PUSH1 0x14 PUSH1 0xF SSTORE PUSH1 0x3 PUSH1 0x10 SSTORE PUSH1 0x0 PUSH1 0x11 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x11 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x14 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH3 0xCB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x52D4 CODESIZE SUB DUP1 PUSH3 0x52D4 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0xF1 SWAP2 SWAP1 PUSH3 0x60E JUMP JUMPDEST DUP4 DUP4 DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x10B SWAP3 SWAP2 SWAP1 PUSH3 0x3C1 JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x124 SWAP3 SWAP2 SWAP1 PUSH3 0x3C1 JUMP JUMPDEST POP POP POP PUSH3 0x147 PUSH3 0x13B PUSH3 0x173 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x17B PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x158 DUP3 PUSH3 0x241 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x169 DUP2 PUSH3 0x2EC PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP POP POP PUSH3 0x7E4 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0xA PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH3 0x251 PUSH3 0x173 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0x277 PUSH3 0x397 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH3 0x2D0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x2C7 SWAP1 PUSH3 0x75D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xB SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x2E8 SWAP3 SWAP2 SWAP1 PUSH3 0x3C1 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH3 0x2FC PUSH3 0x173 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0x322 PUSH3 0x397 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH3 0x37B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x372 SWAP1 PUSH3 0x75D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x12 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x393 SWAP3 SWAP2 SWAP1 PUSH3 0x3C1 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x3CF SWAP1 PUSH3 0x7AE JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x3F3 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x43F JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x40E JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x43F JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x43F JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x43E JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x421 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x44E SWAP2 SWAP1 PUSH3 0x452 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x46D JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x453 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 0x4DA DUP3 PUSH3 0x48F JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x4FC JUMPI PUSH3 0x4FB PUSH3 0x4A0 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x511 PUSH3 0x471 JUMP JUMPDEST SWAP1 POP PUSH3 0x51F DUP3 DUP3 PUSH3 0x4CF JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x542 JUMPI PUSH3 0x541 PUSH3 0x4A0 JUMP JUMPDEST JUMPDEST PUSH3 0x54D DUP3 PUSH3 0x48F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x57A JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x55D JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x58A JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x5A7 PUSH3 0x5A1 DUP5 PUSH3 0x524 JUMP JUMPDEST PUSH3 0x505 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x5C6 JUMPI PUSH3 0x5C5 PUSH3 0x48A JUMP JUMPDEST JUMPDEST PUSH3 0x5D3 DUP5 DUP3 DUP6 PUSH3 0x55A JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x5F3 JUMPI PUSH3 0x5F2 PUSH3 0x485 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x605 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x590 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH3 0x62B JUMPI PUSH3 0x62A PUSH3 0x47B JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP6 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x64C JUMPI PUSH3 0x64B PUSH3 0x480 JUMP JUMPDEST JUMPDEST PUSH3 0x65A DUP8 DUP3 DUP9 ADD PUSH3 0x5DB JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 DUP6 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x67E JUMPI PUSH3 0x67D PUSH3 0x480 JUMP JUMPDEST JUMPDEST PUSH3 0x68C DUP8 DUP3 DUP9 ADD PUSH3 0x5DB JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 DUP6 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x6B0 JUMPI PUSH3 0x6AF PUSH3 0x480 JUMP JUMPDEST JUMPDEST PUSH3 0x6BE DUP8 DUP3 DUP9 ADD PUSH3 0x5DB JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x6E2 JUMPI PUSH3 0x6E1 PUSH3 0x480 JUMP JUMPDEST JUMPDEST PUSH3 0x6F0 DUP8 DUP3 DUP9 ADD PUSH3 0x5DB JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x745 PUSH1 0x20 DUP4 PUSH3 0x6FC JUMP JUMPDEST SWAP2 POP PUSH3 0x752 DUP3 PUSH3 0x70D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x778 DUP2 PUSH3 0x736 JUMP JUMPDEST SWAP1 POP SWAP2 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 0x7C7 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x7DE JUMPI PUSH3 0x7DD PUSH3 0x77F JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x4AE0 DUP1 PUSH3 0x7F4 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x267 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x144 JUMPI DUP1 PUSH4 0xBA7D2C76 GT PUSH2 0xB6 JUMPI DUP1 PUSH4 0xD936547E GT PUSH2 0x7A JUMPI DUP1 PUSH4 0xD936547E EQ PUSH2 0x916 JUMPI DUP1 PUSH4 0xDA3EF23F EQ PUSH2 0x953 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x97C JUMPI DUP1 PUSH4 0xEDEC5F27 EQ PUSH2 0x9B9 JUMPI DUP1 PUSH4 0xF2C4CE1E EQ PUSH2 0x9E2 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0xA0B JUMPI PUSH2 0x267 JUMP JUMPDEST DUP1 PUSH4 0xBA7D2C76 EQ PUSH2 0x82F JUMPI DUP1 PUSH4 0xC6682862 EQ PUSH2 0x85A JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x885 JUMPI DUP1 PUSH4 0xD0EB26B0 EQ PUSH2 0x8C2 JUMPI DUP1 PUSH4 0xD5ABEB01 EQ PUSH2 0x8EB JUMPI PUSH2 0x267 JUMP JUMPDEST DUP1 PUSH4 0x95D89B41 GT PUSH2 0x108 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x754 JUMPI DUP1 PUSH4 0x9C70B512 EQ PUSH2 0x77F JUMPI DUP1 PUSH4 0xA0712D68 EQ PUSH2 0x7AA JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x7C6 JUMPI DUP1 PUSH4 0xA475B5DD EQ PUSH2 0x7EF JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x806 JUMPI PUSH2 0x267 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x66F JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x6AC JUMPI DUP1 PUSH4 0x7F00C7A6 EQ PUSH2 0x6C3 JUMPI DUP1 PUSH4 0x85668275 EQ PUSH2 0x6EC JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x729 JUMPI PUSH2 0x267 JUMP JUMPDEST DUP1 PUSH4 0x3AF32ABF GT PUSH2 0x1DD JUMPI DUP1 PUSH4 0x4F6CCCE7 GT PUSH2 0x1A1 JUMPI DUP1 PUSH4 0x4F6CCCE7 EQ PUSH2 0x54B JUMPI DUP1 PUSH4 0x51830227 EQ PUSH2 0x588 JUMPI DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x5B3 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x5DC JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x607 JUMPI DUP1 PUSH4 0x6C0360EB EQ PUSH2 0x644 JUMPI PUSH2 0x267 JUMP JUMPDEST DUP1 PUSH4 0x3AF32ABF EQ PUSH2 0x475 JUMPI DUP1 PUSH4 0x3CCFD60B EQ PUSH2 0x4B2 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x4BC JUMPI DUP1 PUSH4 0x438B6300 EQ PUSH2 0x4E5 JUMPI DUP1 PUSH4 0x44A0D68A EQ PUSH2 0x522 JUMPI PUSH2 0x267 JUMP JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x22F JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x365 JUMPI DUP1 PUSH4 0x13FAEDE6 EQ PUSH2 0x38E JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x3B9 JUMPI DUP1 PUSH4 0x239C70AE EQ PUSH2 0x3E4 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x40F JUMPI DUP1 PUSH4 0x2F745C59 EQ PUSH2 0x438 JUMPI PUSH2 0x267 JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x26C JUMPI DUP1 PUSH4 0x2329A29 EQ PUSH2 0x2A9 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x2D2 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x2FD JUMPI DUP1 PUSH4 0x81C8C44 EQ PUSH2 0x33A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x278 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x293 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28E SWAP2 SWAP1 PUSH2 0x33C1 JUMP JUMPDEST PUSH2 0xA34 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A0 SWAP2 SWAP1 PUSH2 0x3409 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2B5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2CB SWAP2 SWAP1 PUSH2 0x3450 JUMP JUMPDEST PUSH2 0xAAE JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2E7 PUSH2 0xB47 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F4 SWAP2 SWAP1 PUSH2 0x3516 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x309 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x324 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x31F SWAP2 SWAP1 PUSH2 0x356E JUMP JUMPDEST PUSH2 0xBD9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x331 SWAP2 SWAP1 PUSH2 0x35DC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x346 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x34F PUSH2 0xC5E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x35C SWAP2 SWAP1 PUSH2 0x3516 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x371 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x38C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x387 SWAP2 SWAP1 PUSH2 0x3623 JUMP JUMPDEST PUSH2 0xCEC JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x39A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3A3 PUSH2 0xE04 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3B0 SWAP2 SWAP1 PUSH2 0x3672 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3CE PUSH2 0xE0A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3DB SWAP2 SWAP1 PUSH2 0x3672 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3F9 PUSH2 0xE17 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x406 SWAP2 SWAP1 PUSH2 0x3672 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x41B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x436 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x431 SWAP2 SWAP1 PUSH2 0x368D JUMP JUMPDEST PUSH2 0xE1D JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x444 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x45F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x45A SWAP2 SWAP1 PUSH2 0x3623 JUMP JUMPDEST PUSH2 0xE7D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x46C SWAP2 SWAP1 PUSH2 0x3672 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x481 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x49C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x497 SWAP2 SWAP1 PUSH2 0x36E0 JUMP JUMPDEST PUSH2 0xF22 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4A9 SWAP2 SWAP1 PUSH2 0x3409 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4BA PUSH2 0xFD1 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4E3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4DE SWAP2 SWAP1 PUSH2 0x368D JUMP JUMPDEST PUSH2 0x10C6 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x50C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x507 SWAP2 SWAP1 PUSH2 0x36E0 JUMP JUMPDEST PUSH2 0x10E6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x519 SWAP2 SWAP1 PUSH2 0x37CB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x52E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x549 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x544 SWAP2 SWAP1 PUSH2 0x356E JUMP JUMPDEST PUSH2 0x1194 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x557 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x572 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x56D SWAP2 SWAP1 PUSH2 0x356E JUMP JUMPDEST PUSH2 0x121A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x57F SWAP2 SWAP1 PUSH2 0x3672 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x594 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x59D PUSH2 0x128B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5AA SWAP2 SWAP1 PUSH2 0x3409 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5BF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5DA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5D5 SWAP2 SWAP1 PUSH2 0x3922 JUMP JUMPDEST PUSH2 0x129E JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5F1 PUSH2 0x1334 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5FE SWAP2 SWAP1 PUSH2 0x3409 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x613 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x62E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x629 SWAP2 SWAP1 PUSH2 0x356E JUMP JUMPDEST PUSH2 0x1347 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x63B SWAP2 SWAP1 PUSH2 0x35DC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x650 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x659 PUSH2 0x13F9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x666 SWAP2 SWAP1 PUSH2 0x3516 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x67B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x696 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x691 SWAP2 SWAP1 PUSH2 0x36E0 JUMP JUMPDEST PUSH2 0x1487 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6A3 SWAP2 SWAP1 PUSH2 0x3672 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x6C1 PUSH2 0x153F JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x6EA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E5 SWAP2 SWAP1 PUSH2 0x356E JUMP JUMPDEST PUSH2 0x15C7 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x713 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x70E SWAP2 SWAP1 PUSH2 0x356E JUMP JUMPDEST PUSH2 0x164D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x720 SWAP2 SWAP1 PUSH2 0x35DC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x735 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x73E PUSH2 0x168C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x74B SWAP2 SWAP1 PUSH2 0x35DC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x760 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x769 PUSH2 0x16B6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x776 SWAP2 SWAP1 PUSH2 0x3516 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x78B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x794 PUSH2 0x1748 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x7A1 SWAP2 SWAP1 PUSH2 0x3409 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x7C4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x7BF SWAP2 SWAP1 PUSH2 0x356E JUMP JUMPDEST PUSH2 0x175B JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x7ED PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x7E8 SWAP2 SWAP1 PUSH2 0x396B JUMP JUMPDEST PUSH2 0x18AC JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7FB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x804 PUSH2 0x1A2D JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x812 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x82D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x828 SWAP2 SWAP1 PUSH2 0x3A4C JUMP JUMPDEST PUSH2 0x1AC6 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x83B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x844 PUSH2 0x1B28 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x851 SWAP2 SWAP1 PUSH2 0x3672 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x866 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x86F PUSH2 0x1B2E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x87C SWAP2 SWAP1 PUSH2 0x3516 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x891 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x8AC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8A7 SWAP2 SWAP1 PUSH2 0x356E JUMP JUMPDEST PUSH2 0x1BBC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x8B9 SWAP2 SWAP1 PUSH2 0x3516 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x8E9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8E4 SWAP2 SWAP1 PUSH2 0x356E JUMP JUMPDEST PUSH2 0x1D15 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x900 PUSH2 0x1D9B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x90D SWAP2 SWAP1 PUSH2 0x3672 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x922 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x93D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x938 SWAP2 SWAP1 PUSH2 0x36E0 JUMP JUMPDEST PUSH2 0x1DA1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x94A SWAP2 SWAP1 PUSH2 0x3409 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x95F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x97A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x975 SWAP2 SWAP1 PUSH2 0x3922 JUMP JUMPDEST PUSH2 0x1DC1 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x988 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x9A3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x99E SWAP2 SWAP1 PUSH2 0x3ACF JUMP JUMPDEST PUSH2 0x1E57 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x9B0 SWAP2 SWAP1 PUSH2 0x3409 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x9E0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x9DB SWAP2 SWAP1 PUSH2 0x3B6F JUMP JUMPDEST PUSH2 0x1EEB JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xA09 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA04 SWAP2 SWAP1 PUSH2 0x3922 JUMP JUMPDEST PUSH2 0x1F8B JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA17 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xA32 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA2D SWAP2 SWAP1 PUSH2 0x36E0 JUMP JUMPDEST PUSH2 0x2021 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH32 0x780E9D6300000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0xAA7 JUMPI POP PUSH2 0xAA6 DUP3 PUSH2 0x2119 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xAB6 PUSH2 0x21FB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xAD4 PUSH2 0x168C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xB2A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB21 SWAP1 PUSH2 0x3C08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x11 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0xB56 SWAP1 PUSH2 0x3C57 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 0xB82 SWAP1 PUSH2 0x3C57 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xBCF JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xBA4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xBCF 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 0xBB2 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBE4 DUP3 PUSH2 0x2203 JUMP JUMPDEST PUSH2 0xC23 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC1A SWAP1 PUSH2 0x3CFB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x12 DUP1 SLOAD PUSH2 0xC6B SWAP1 PUSH2 0x3C57 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 0xC97 SWAP1 PUSH2 0x3C57 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xCE4 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xCB9 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xCE4 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 0xCC7 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCF7 DUP3 PUSH2 0x1347 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xD68 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD5F SWAP1 PUSH2 0x3D8D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD87 PUSH2 0x21FB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xDB6 JUMPI POP PUSH2 0xDB5 DUP2 PUSH2 0xDB0 PUSH2 0x21FB JUMP JUMPDEST PUSH2 0x1E57 JUMP JUMPDEST JUMPDEST PUSH2 0xDF5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDEC SWAP1 PUSH2 0x3E1F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xDFF DUP4 DUP4 PUSH2 0x226F JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0xD SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP1 SLOAD SWAP1 POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0xF SLOAD DUP2 JUMP JUMPDEST PUSH2 0xE2E PUSH2 0xE28 PUSH2 0x21FB JUMP JUMPDEST DUP3 PUSH2 0x2328 JUMP JUMPDEST PUSH2 0xE6D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE64 SWAP1 PUSH2 0x3EB1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE78 DUP4 DUP4 DUP4 PUSH2 0x2406 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE88 DUP4 PUSH2 0x1487 JUMP JUMPDEST DUP3 LT PUSH2 0xEC9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEC0 SWAP1 PUSH2 0x3F43 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x6 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 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 POP JUMPDEST PUSH1 0x15 DUP1 SLOAD SWAP1 POP DUP2 LT ISZERO PUSH2 0xFC6 JUMPI DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x15 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xF62 JUMPI PUSH2 0xF61 PUSH2 0x3F63 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xFB3 JUMPI PUSH1 0x1 SWAP2 POP POP PUSH2 0xFCC JUMP JUMPDEST DUP1 DUP1 PUSH2 0xFBE SWAP1 PUSH2 0x3FC1 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xF2A JUMP JUMPDEST POP PUSH1 0x0 SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xFD9 PUSH2 0x21FB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xFF7 PUSH2 0x168C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x104D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1044 SWAP1 PUSH2 0x3C08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SELFBALANCE PUSH1 0x40 MLOAD PUSH2 0x1073 SWAP1 PUSH2 0x403B JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x10B0 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 0x10B5 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x10C3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x10E1 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1AC6 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x10F3 DUP4 PUSH2 0x1487 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1111 JUMPI PUSH2 0x1110 PUSH2 0x37F7 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x113F JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1189 JUMPI PUSH2 0x1157 DUP6 DUP3 PUSH2 0xE7D JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x116A JUMPI PUSH2 0x1169 PUSH2 0x3F63 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 DUP1 PUSH2 0x1181 SWAP1 PUSH2 0x3FC1 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1145 JUMP JUMPDEST POP DUP1 SWAP3 POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x119C PUSH2 0x21FB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x11BA PUSH2 0x168C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1210 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1207 SWAP1 PUSH2 0x3C08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xD DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1224 PUSH2 0xE0A JUMP JUMPDEST DUP3 LT PUSH2 0x1265 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x125C SWAP1 PUSH2 0x40C2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x8 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x1279 JUMPI PUSH2 0x1278 PUSH2 0x3F63 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x11 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x12A6 PUSH2 0x21FB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x12C4 PUSH2 0x168C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x131A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1311 SWAP1 PUSH2 0x3C08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xB SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1330 SWAP3 SWAP2 SWAP1 PUSH2 0x31F1 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x11 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x2 PUSH1 0x0 DUP5 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 PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x13F0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13E7 SWAP1 PUSH2 0x4154 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xB DUP1 SLOAD PUSH2 0x1406 SWAP1 PUSH2 0x3C57 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 0x1432 SWAP1 PUSH2 0x3C57 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x147F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1454 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x147F 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 0x1462 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x14F8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14EF SWAP1 PUSH2 0x41E6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1547 PUSH2 0x21FB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1565 PUSH2 0x168C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x15BB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15B2 SWAP1 PUSH2 0x3C08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x15C5 PUSH1 0x0 PUSH2 0x2662 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x15CF PUSH2 0x21FB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x15ED PUSH2 0x168C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1643 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x163A SWAP1 PUSH2 0x3C08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xF DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x15 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x165D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x16C5 SWAP1 PUSH2 0x3C57 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 0x16F1 SWAP1 PUSH2 0x3C57 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x173E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1713 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x173E 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 0x1721 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x14 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x11 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1775 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x177F PUSH2 0xE0A JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP3 GT PUSH2 0x178E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xF SLOAD DUP3 GT ISZERO PUSH2 0x179D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xE SLOAD DUP3 DUP3 PUSH2 0x17AC SWAP2 SWAP1 PUSH2 0x4206 JUMP JUMPDEST GT ISZERO PUSH2 0x17B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x17BF PUSH2 0x168C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1871 JUMPI PUSH1 0x1 ISZERO ISZERO PUSH1 0x14 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ ISZERO PUSH2 0x1856 JUMPI PUSH2 0x1816 CALLER PUSH2 0xF22 JUMP JUMPDEST PUSH2 0x1855 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x184C SWAP1 PUSH2 0x42A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMPDEST DUP2 PUSH1 0xD SLOAD PUSH2 0x1864 SWAP2 SWAP1 PUSH2 0x42C8 JUMP JUMPDEST CALLVALUE LT ISZERO PUSH2 0x1870 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 POP JUMPDEST DUP3 DUP2 GT PUSH2 0x18A7 JUMPI PUSH2 0x1894 CALLER DUP3 DUP5 PUSH2 0x188F SWAP2 SWAP1 PUSH2 0x4206 JUMP JUMPDEST PUSH2 0x2728 JUMP JUMPDEST DUP1 DUP1 PUSH2 0x189F SWAP1 PUSH2 0x3FC1 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1878 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x18B4 PUSH2 0x21FB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1922 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1919 SWAP1 PUSH2 0x436E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 PUSH2 0x192F PUSH2 0x21FB 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 0x19DC PUSH2 0x21FB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1A21 SWAP2 SWAP1 PUSH2 0x3409 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x1A35 PUSH2 0x21FB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1A53 PUSH2 0x168C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1AA9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1AA0 SWAP1 PUSH2 0x3C08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x11 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0x1AD7 PUSH2 0x1AD1 PUSH2 0x21FB JUMP JUMPDEST DUP4 PUSH2 0x2328 JUMP JUMPDEST PUSH2 0x1B16 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B0D SWAP1 PUSH2 0x3EB1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1B22 DUP5 DUP5 DUP5 DUP5 PUSH2 0x2746 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x10 SLOAD DUP2 JUMP JUMPDEST PUSH1 0xC DUP1 SLOAD PUSH2 0x1B3B SWAP1 PUSH2 0x3C57 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 0x1B67 SWAP1 PUSH2 0x3C57 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1BB4 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1B89 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1BB4 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 0x1B97 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1BC7 DUP3 PUSH2 0x2203 JUMP JUMPDEST PUSH2 0x1C06 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1BFD SWAP1 PUSH2 0x4400 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 ISZERO ISZERO PUSH1 0x11 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ ISZERO PUSH2 0x1CB4 JUMPI PUSH1 0x12 DUP1 SLOAD PUSH2 0x1C2F SWAP1 PUSH2 0x3C57 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 0x1C5B SWAP1 PUSH2 0x3C57 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1CA8 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1C7D JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1CA8 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 0x1C8B JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH2 0x1D10 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CBE PUSH2 0x27A2 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x1CDE JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1D0C JUMP JUMPDEST DUP1 PUSH2 0x1CE8 DUP5 PUSH2 0x2834 JUMP JUMPDEST PUSH1 0xC PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1CFC SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x44F0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1D1D PUSH2 0x21FB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1D3B PUSH2 0x168C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1D91 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D88 SWAP1 PUSH2 0x3C08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x10 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0xE SLOAD DUP2 JUMP JUMPDEST PUSH1 0x13 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x1DC9 PUSH2 0x21FB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1DE7 PUSH2 0x168C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1E3D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E34 SWAP1 PUSH2 0x3C08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xC SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1E53 SWAP3 SWAP2 SWAP1 PUSH2 0x31F1 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1EF3 PUSH2 0x21FB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1F11 PUSH2 0x168C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1F67 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F5E SWAP1 PUSH2 0x3C08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x15 PUSH1 0x0 PUSH2 0x1F75 SWAP2 SWAP1 PUSH2 0x3277 JUMP JUMPDEST DUP2 DUP2 PUSH1 0x15 SWAP2 SWAP1 PUSH2 0x1F86 SWAP3 SWAP2 SWAP1 PUSH2 0x3298 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1F93 PUSH2 0x21FB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1FB1 PUSH2 0x168C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2007 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1FFE SWAP1 PUSH2 0x3C08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x12 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x201D SWAP3 SWAP2 SWAP1 PUSH2 0x31F1 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x2029 PUSH2 0x21FB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2047 PUSH2 0x168C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x209D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2094 SWAP1 PUSH2 0x3C08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x210D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2104 SWAP1 PUSH2 0x4593 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2116 DUP2 PUSH2 0x2662 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x21E4 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x21F4 JUMPI POP PUSH2 0x21F3 DUP3 PUSH2 0x2995 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 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 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x22E2 DUP4 PUSH2 0x1347 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2333 DUP3 PUSH2 0x2203 JUMP JUMPDEST PUSH2 0x2372 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2369 SWAP1 PUSH2 0x4625 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x237D DUP4 PUSH2 0x1347 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x23EC JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x23D4 DUP5 PUSH2 0xBD9 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH2 0x23FD JUMPI POP PUSH2 0x23FC DUP2 DUP6 PUSH2 0x1E57 JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2426 DUP3 PUSH2 0x1347 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x247C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2473 SWAP1 PUSH2 0x46B7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x24EC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x24E3 SWAP1 PUSH2 0x4749 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x24F7 DUP4 DUP4 DUP4 PUSH2 0x29FF JUMP JUMPDEST PUSH2 0x2502 PUSH1 0x0 DUP3 PUSH2 0x226F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2552 SWAP2 SWAP1 PUSH2 0x4769 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x25A9 SWAP2 SWAP1 PUSH2 0x4206 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0xA PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x2742 DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x2B13 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x2751 DUP5 DUP5 DUP5 PUSH2 0x2406 JUMP JUMPDEST PUSH2 0x275D DUP5 DUP5 DUP5 DUP5 PUSH2 0x2B6E JUMP JUMPDEST PUSH2 0x279C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2793 SWAP1 PUSH2 0x480F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0xB DUP1 SLOAD PUSH2 0x27B1 SWAP1 PUSH2 0x3C57 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 0x27DD SWAP1 PUSH2 0x3C57 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x282A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x27FF JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x282A 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 0x280D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x287C 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 0x2990 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x28AE JUMPI DUP1 DUP1 PUSH2 0x2897 SWAP1 PUSH2 0x3FC1 JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x28A7 SWAP2 SWAP1 PUSH2 0x485E JUMP JUMPDEST SWAP2 POP PUSH2 0x2884 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x28CA JUMPI PUSH2 0x28C9 PUSH2 0x37F7 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 0x28FC 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 0x2989 JUMPI PUSH1 0x1 DUP3 PUSH2 0x2915 SWAP2 SWAP1 PUSH2 0x4769 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x2924 SWAP2 SWAP1 PUSH2 0x488F JUMP JUMPDEST PUSH1 0x30 PUSH2 0x2930 SWAP2 SWAP1 PUSH2 0x4206 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x2946 JUMPI PUSH2 0x2945 PUSH2 0x3F63 JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x2982 SWAP2 SWAP1 PUSH2 0x485E JUMP JUMPDEST SWAP5 POP PUSH2 0x2900 JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2A0A DUP4 DUP4 DUP4 PUSH2 0x2D05 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2A4D JUMPI PUSH2 0x2A48 DUP2 PUSH2 0x2D0A JUMP JUMPDEST PUSH2 0x2A8C JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2A8B JUMPI PUSH2 0x2A8A DUP4 DUP3 PUSH2 0x2D53 JUMP JUMPDEST JUMPDEST JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2ACF JUMPI PUSH2 0x2ACA DUP2 PUSH2 0x2EC0 JUMP JUMPDEST PUSH2 0x2B0E JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2B0D JUMPI PUSH2 0x2B0C DUP3 DUP3 PUSH2 0x2F91 JUMP JUMPDEST JUMPDEST JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x2B1D DUP4 DUP4 PUSH2 0x3010 JUMP JUMPDEST PUSH2 0x2B2A PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x2B6E JUMP JUMPDEST PUSH2 0x2B69 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2B60 SWAP1 PUSH2 0x480F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B8F DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x31DE JUMP JUMPDEST ISZERO PUSH2 0x2CF8 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x2BB8 PUSH2 0x21FB JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2BDA SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4915 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2BF4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2C25 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 0x2C22 SWAP2 SWAP1 PUSH2 0x4976 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2CA8 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x2C55 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 0x2C5A JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x2CA0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2C97 SWAP1 PUSH2 0x480F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP PUSH2 0x2CFD JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x8 DUP1 SLOAD SWAP1 POP PUSH1 0x9 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x8 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH2 0x2D60 DUP5 PUSH2 0x1487 JUMP JUMPDEST PUSH2 0x2D6A SWAP2 SWAP1 PUSH2 0x4769 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 EQ PUSH2 0x2E4F JUMPI PUSH1 0x0 PUSH1 0x6 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 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP1 PUSH1 0x6 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 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x7 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMPDEST PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH1 0x6 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x8 DUP1 SLOAD SWAP1 POP PUSH2 0x2ED4 SWAP2 SWAP1 PUSH2 0x4769 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x9 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP PUSH1 0x0 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x2F04 JUMPI PUSH2 0x2F03 PUSH2 0x3F63 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP DUP1 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x2F26 JUMPI PUSH2 0x2F25 PUSH2 0x3F63 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x9 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x9 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH1 0x8 DUP1 SLOAD DUP1 PUSH2 0x2F75 JUMPI PUSH2 0x2F74 PUSH2 0x49A3 JUMP JUMPDEST JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2F9C DUP4 PUSH2 0x1487 JUMP JUMPDEST SWAP1 POP DUP2 PUSH1 0x6 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x3080 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3077 SWAP1 PUSH2 0x4A1E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3089 DUP2 PUSH2 0x2203 JUMP JUMPDEST ISZERO PUSH2 0x30C9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x30C0 SWAP1 PUSH2 0x4A8A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x30D5 PUSH1 0x0 DUP4 DUP4 PUSH2 0x29FF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x3125 SWAP2 SWAP1 PUSH2 0x4206 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 EXTCODESIZE SWAP1 POP PUSH1 0x0 DUP2 GT SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x31FD SWAP1 PUSH2 0x3C57 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x321F JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x3266 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x3238 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x3266 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x3266 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x3265 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x324A JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x3273 SWAP2 SWAP1 PUSH2 0x3338 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST POP DUP1 SLOAD PUSH1 0x0 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x3295 SWAP2 SWAP1 PUSH2 0x3338 JUMP JUMPDEST POP JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x3327 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x3326 JUMPI DUP3 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x32B8 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x3334 SWAP2 SWAP1 PUSH2 0x3338 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x3351 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x3339 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 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x339E DUP2 PUSH2 0x3369 JUMP JUMPDEST DUP2 EQ PUSH2 0x33A9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x33BB DUP2 PUSH2 0x3395 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x33D7 JUMPI PUSH2 0x33D6 PUSH2 0x335F JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x33E5 DUP5 DUP3 DUP6 ADD PUSH2 0x33AC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3403 DUP2 PUSH2 0x33EE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x341E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x33FA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x342D DUP2 PUSH2 0x33EE JUMP JUMPDEST DUP2 EQ PUSH2 0x3438 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x344A DUP2 PUSH2 0x3424 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3466 JUMPI PUSH2 0x3465 PUSH2 0x335F JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3474 DUP5 DUP3 DUP6 ADD PUSH2 0x343B JUMP JUMPDEST SWAP2 POP POP 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 0x34B7 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x349C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x34C6 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 0x34E8 DUP3 PUSH2 0x347D JUMP JUMPDEST PUSH2 0x34F2 DUP2 DUP6 PUSH2 0x3488 JUMP JUMPDEST SWAP4 POP PUSH2 0x3502 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3499 JUMP JUMPDEST PUSH2 0x350B DUP2 PUSH2 0x34CC 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 0x3530 DUP2 DUP5 PUSH2 0x34DD JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x354B DUP2 PUSH2 0x3538 JUMP JUMPDEST DUP2 EQ PUSH2 0x3556 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3568 DUP2 PUSH2 0x3542 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3584 JUMPI PUSH2 0x3583 PUSH2 0x335F JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3592 DUP5 DUP3 DUP6 ADD PUSH2 0x3559 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 0x35C6 DUP3 PUSH2 0x359B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x35D6 DUP2 PUSH2 0x35BB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x35F1 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x35CD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3600 DUP2 PUSH2 0x35BB JUMP JUMPDEST DUP2 EQ PUSH2 0x360B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x361D DUP2 PUSH2 0x35F7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x363A JUMPI PUSH2 0x3639 PUSH2 0x335F JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3648 DUP6 DUP3 DUP7 ADD PUSH2 0x360E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x3659 DUP6 DUP3 DUP7 ADD PUSH2 0x3559 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x366C DUP2 PUSH2 0x3538 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3687 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3663 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x36A6 JUMPI PUSH2 0x36A5 PUSH2 0x335F JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x36B4 DUP7 DUP3 DUP8 ADD PUSH2 0x360E JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x36C5 DUP7 DUP3 DUP8 ADD PUSH2 0x360E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x36D6 DUP7 DUP3 DUP8 ADD PUSH2 0x3559 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x36F6 JUMPI PUSH2 0x36F5 PUSH2 0x335F JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3704 DUP5 DUP3 DUP6 ADD PUSH2 0x360E JUMP JUMPDEST SWAP2 POP POP 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 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3742 DUP2 PUSH2 0x3538 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3754 DUP4 DUP4 PUSH2 0x3739 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3778 DUP3 PUSH2 0x370D JUMP JUMPDEST PUSH2 0x3782 DUP2 DUP6 PUSH2 0x3718 JUMP JUMPDEST SWAP4 POP PUSH2 0x378D DUP4 PUSH2 0x3729 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x37BE JUMPI DUP2 MLOAD PUSH2 0x37A5 DUP9 DUP3 PUSH2 0x3748 JUMP JUMPDEST SWAP8 POP PUSH2 0x37B0 DUP4 PUSH2 0x3760 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x3791 JUMP JUMPDEST POP DUP6 SWAP4 POP POP 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 0x37E5 DUP2 DUP5 PUSH2 0x376D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP 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 0x382F DUP3 PUSH2 0x34CC JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x384E JUMPI PUSH2 0x384D PUSH2 0x37F7 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3861 PUSH2 0x3355 JUMP JUMPDEST SWAP1 POP PUSH2 0x386D DUP3 DUP3 PUSH2 0x3826 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x388D JUMPI PUSH2 0x388C PUSH2 0x37F7 JUMP JUMPDEST JUMPDEST PUSH2 0x3896 DUP3 PUSH2 0x34CC 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 0x38C5 PUSH2 0x38C0 DUP5 PUSH2 0x3872 JUMP JUMPDEST PUSH2 0x3857 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x38E1 JUMPI PUSH2 0x38E0 PUSH2 0x37F2 JUMP JUMPDEST JUMPDEST PUSH2 0x38EC DUP5 DUP3 DUP6 PUSH2 0x38A3 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x3909 JUMPI PUSH2 0x3908 PUSH2 0x37ED JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3919 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x38B2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3938 JUMPI PUSH2 0x3937 PUSH2 0x335F JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3956 JUMPI PUSH2 0x3955 PUSH2 0x3364 JUMP JUMPDEST JUMPDEST PUSH2 0x3962 DUP5 DUP3 DUP6 ADD PUSH2 0x38F4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3982 JUMPI PUSH2 0x3981 PUSH2 0x335F JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3990 DUP6 DUP3 DUP7 ADD PUSH2 0x360E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x39A1 DUP6 DUP3 DUP7 ADD PUSH2 0x343B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x39C6 JUMPI PUSH2 0x39C5 PUSH2 0x37F7 JUMP JUMPDEST JUMPDEST PUSH2 0x39CF DUP3 PUSH2 0x34CC JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39EF PUSH2 0x39EA DUP5 PUSH2 0x39AB JUMP JUMPDEST PUSH2 0x3857 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x3A0B JUMPI PUSH2 0x3A0A PUSH2 0x37F2 JUMP JUMPDEST JUMPDEST PUSH2 0x3A16 DUP5 DUP3 DUP6 PUSH2 0x38A3 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x3A33 JUMPI PUSH2 0x3A32 PUSH2 0x37ED JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3A43 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x39DC 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 0x3A66 JUMPI PUSH2 0x3A65 PUSH2 0x335F JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3A74 DUP8 DUP3 DUP9 ADD PUSH2 0x360E JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x3A85 DUP8 DUP3 DUP9 ADD PUSH2 0x360E JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x3A96 DUP8 DUP3 DUP9 ADD PUSH2 0x3559 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3AB7 JUMPI PUSH2 0x3AB6 PUSH2 0x3364 JUMP JUMPDEST JUMPDEST PUSH2 0x3AC3 DUP8 DUP3 DUP9 ADD PUSH2 0x3A1E 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 0x3AE6 JUMPI PUSH2 0x3AE5 PUSH2 0x335F JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3AF4 DUP6 DUP3 DUP7 ADD PUSH2 0x360E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x3B05 DUP6 DUP3 DUP7 ADD PUSH2 0x360E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x3B2F JUMPI PUSH2 0x3B2E PUSH2 0x37ED JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3B4C JUMPI PUSH2 0x3B4B PUSH2 0x3B0F JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x3B68 JUMPI PUSH2 0x3B67 PUSH2 0x3B14 JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3B86 JUMPI PUSH2 0x3B85 PUSH2 0x335F JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3BA4 JUMPI PUSH2 0x3BA3 PUSH2 0x3364 JUMP JUMPDEST JUMPDEST PUSH2 0x3BB0 DUP6 DUP3 DUP7 ADD PUSH2 0x3B19 JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BF2 PUSH1 0x20 DUP4 PUSH2 0x3488 JUMP JUMPDEST SWAP2 POP PUSH2 0x3BFD DUP3 PUSH2 0x3BBC JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3C21 DUP2 PUSH2 0x3BE5 JUMP JUMPDEST SWAP1 POP SWAP2 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 0x3C6F JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x3C83 JUMPI PUSH2 0x3C82 PUSH2 0x3C28 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3CE5 PUSH1 0x2C DUP4 PUSH2 0x3488 JUMP JUMPDEST SWAP2 POP PUSH2 0x3CF0 DUP3 PUSH2 0x3C89 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3D14 DUP2 PUSH2 0x3CD8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D77 PUSH1 0x21 DUP4 PUSH2 0x3488 JUMP JUMPDEST SWAP2 POP PUSH2 0x3D82 DUP3 PUSH2 0x3D1B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3DA6 DUP2 PUSH2 0x3D6A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E09 PUSH1 0x38 DUP4 PUSH2 0x3488 JUMP JUMPDEST SWAP2 POP PUSH2 0x3E14 DUP3 PUSH2 0x3DAD JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3E38 DUP2 PUSH2 0x3DFC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E9B PUSH1 0x31 DUP4 PUSH2 0x3488 JUMP JUMPDEST SWAP2 POP PUSH2 0x3EA6 DUP3 PUSH2 0x3E3F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3ECA DUP2 PUSH2 0x3E8E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x455243373231456E756D657261626C653A206F776E657220696E646578206F75 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x74206F6620626F756E6473000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3F2D PUSH1 0x2B DUP4 PUSH2 0x3488 JUMP JUMPDEST SWAP2 POP PUSH2 0x3F38 DUP3 PUSH2 0x3ED1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3F5C DUP2 PUSH2 0x3F20 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3FCC DUP3 PUSH2 0x3538 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x3FFF JUMPI PUSH2 0x3FFE PUSH2 0x3F92 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4025 PUSH1 0x0 DUP4 PUSH2 0x400A JUMP JUMPDEST SWAP2 POP PUSH2 0x4030 DUP3 PUSH2 0x4015 JUMP JUMPDEST PUSH1 0x0 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4046 DUP3 PUSH2 0x4018 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x455243373231456E756D657261626C653A20676C6F62616C20696E646578206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7574206F6620626F756E64730000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x40AC PUSH1 0x2C DUP4 PUSH2 0x3488 JUMP JUMPDEST SWAP2 POP PUSH2 0x40B7 DUP3 PUSH2 0x4050 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x40DB DUP2 PUSH2 0x409F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x413E PUSH1 0x29 DUP4 PUSH2 0x3488 JUMP JUMPDEST SWAP2 POP PUSH2 0x4149 DUP3 PUSH2 0x40E2 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x416D DUP2 PUSH2 0x4131 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x41D0 PUSH1 0x2A DUP4 PUSH2 0x3488 JUMP JUMPDEST SWAP2 POP PUSH2 0x41DB DUP3 PUSH2 0x4174 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x41FF DUP2 PUSH2 0x41C3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4211 DUP3 PUSH2 0x3538 JUMP JUMPDEST SWAP2 POP PUSH2 0x421C DUP4 PUSH2 0x3538 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x4251 JUMPI PUSH2 0x4250 PUSH2 0x3F92 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x55736572206973206E6F742077686974656C6973746564210000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4292 PUSH1 0x18 DUP4 PUSH2 0x3488 JUMP JUMPDEST SWAP2 POP PUSH2 0x429D DUP3 PUSH2 0x425C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x42C1 DUP2 PUSH2 0x4285 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x42D3 DUP3 PUSH2 0x3538 JUMP JUMPDEST SWAP2 POP PUSH2 0x42DE DUP4 PUSH2 0x3538 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x4317 JUMPI PUSH2 0x4316 PUSH2 0x3F92 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4358 PUSH1 0x19 DUP4 PUSH2 0x3488 JUMP JUMPDEST SWAP2 POP PUSH2 0x4363 DUP3 PUSH2 0x4322 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x4387 DUP2 PUSH2 0x434B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43EA PUSH1 0x2F DUP4 PUSH2 0x3488 JUMP JUMPDEST SWAP2 POP PUSH2 0x43F5 DUP3 PUSH2 0x438E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x4419 DUP2 PUSH2 0x43DD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4436 DUP3 PUSH2 0x347D JUMP JUMPDEST PUSH2 0x4440 DUP2 DUP6 PUSH2 0x4420 JUMP JUMPDEST SWAP4 POP PUSH2 0x4450 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3499 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SLOAD PUSH2 0x447E DUP2 PUSH2 0x3C57 JUMP JUMPDEST PUSH2 0x4488 DUP2 DUP7 PUSH2 0x4420 JUMP JUMPDEST SWAP5 POP PUSH1 0x1 DUP3 AND PUSH1 0x0 DUP2 EQ PUSH2 0x44A3 JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x44B4 JUMPI PUSH2 0x44E7 JUMP JUMPDEST PUSH1 0xFF NOT DUP4 AND DUP7 MSTORE DUP2 DUP7 ADD SWAP4 POP PUSH2 0x44E7 JUMP JUMPDEST PUSH2 0x44BD DUP6 PUSH2 0x445C JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x44DF JUMPI DUP2 SLOAD DUP2 DUP10 ADD MSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x44C0 JUMP JUMPDEST DUP4 DUP9 ADD SWAP6 POP POP POP JUMPDEST POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x44FC DUP3 DUP7 PUSH2 0x442B JUMP JUMPDEST SWAP2 POP PUSH2 0x4508 DUP3 DUP6 PUSH2 0x442B JUMP JUMPDEST SWAP2 POP PUSH2 0x4514 DUP3 DUP5 PUSH2 0x4471 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x457D PUSH1 0x26 DUP4 PUSH2 0x3488 JUMP JUMPDEST SWAP2 POP PUSH2 0x4588 DUP3 PUSH2 0x4521 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x45AC DUP2 PUSH2 0x4570 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x460F PUSH1 0x2C DUP4 PUSH2 0x3488 JUMP JUMPDEST SWAP2 POP PUSH2 0x461A DUP3 PUSH2 0x45B3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x463E DUP2 PUSH2 0x4602 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x73206E6F74206F776E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x46A1 PUSH1 0x29 DUP4 PUSH2 0x3488 JUMP JUMPDEST SWAP2 POP PUSH2 0x46AC DUP3 PUSH2 0x4645 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x46D0 DUP2 PUSH2 0x4694 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4733 PUSH1 0x24 DUP4 PUSH2 0x3488 JUMP JUMPDEST SWAP2 POP PUSH2 0x473E DUP3 PUSH2 0x46D7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x4762 DUP2 PUSH2 0x4726 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4774 DUP3 PUSH2 0x3538 JUMP JUMPDEST SWAP2 POP PUSH2 0x477F DUP4 PUSH2 0x3538 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x4792 JUMPI PUSH2 0x4791 PUSH2 0x3F92 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x47F9 PUSH1 0x32 DUP4 PUSH2 0x3488 JUMP JUMPDEST SWAP2 POP PUSH2 0x4804 DUP3 PUSH2 0x479D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x4828 DUP2 PUSH2 0x47EC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x4869 DUP3 PUSH2 0x3538 JUMP JUMPDEST SWAP2 POP PUSH2 0x4874 DUP4 PUSH2 0x3538 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x4884 JUMPI PUSH2 0x4883 PUSH2 0x482F JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x489A DUP3 PUSH2 0x3538 JUMP JUMPDEST SWAP2 POP PUSH2 0x48A5 DUP4 PUSH2 0x3538 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x48B5 JUMPI PUSH2 0x48B4 PUSH2 0x482F JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP 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 PUSH2 0x48E7 DUP3 PUSH2 0x48C0 JUMP JUMPDEST PUSH2 0x48F1 DUP2 DUP6 PUSH2 0x48CB JUMP JUMPDEST SWAP4 POP PUSH2 0x4901 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3499 JUMP JUMPDEST PUSH2 0x490A DUP2 PUSH2 0x34CC JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x492A PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x35CD JUMP JUMPDEST PUSH2 0x4937 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x35CD JUMP JUMPDEST PUSH2 0x4944 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x3663 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x4956 DUP2 DUP5 PUSH2 0x48DC JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x4970 DUP2 PUSH2 0x3395 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x498C JUMPI PUSH2 0x498B PUSH2 0x335F JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x499A DUP5 DUP3 DUP6 ADD PUSH2 0x4961 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4A08 PUSH1 0x20 DUP4 PUSH2 0x3488 JUMP JUMPDEST SWAP2 POP PUSH2 0x4A13 DUP3 PUSH2 0x49D2 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x4A37 DUP2 PUSH2 0x49FB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4A74 PUSH1 0x1C DUP4 PUSH2 0x3488 JUMP JUMPDEST SWAP2 POP PUSH2 0x4A7F DUP3 PUSH2 0x4A3E JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x4AA3 DUP2 PUSH2 0x4A67 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EQ SWAP7 0xE1 CREATE2 LOG0 SWAP2 PUSH6 0xA78D7475B07 PUSH7 0x6452B2DCDA979F AND DUP12 0xCB DUP4 0xD1 0xAF 0x28 DUP10 GAS PUSH17 0x764736F6C634300080900330000000000 ",
"sourceMap": "696:3662:12:-:0;;;797:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;860:10;838:32;;901:5;874:32;;941:2;910:33;;983:1;947:37;;1009:5;988:26;;;;;;;;;;;;;;;;;;;;1041:5;1018:28;;;;;;;;;;;;;;;;;;;;1159:4;1129:34;;;;;;;;;;;;;;;;;;;;1205:270;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1351:5;1358:7;1390:5:1;1382;:13;;;;;;;;;;;;:::i;:::-;;1415:7;1405;:17;;;;;;;;;;;;:::i;:::-;;1316:113;;867:23:0;877:12;:10;;;:12;;:::i;:::-;867:9;;;:23;;:::i;:::-;1373:24:12::1;1384:12;1373:10;;;:24;;:::i;:::-;1403:38;1421:19;1403:17;;;:38;;:::i;:::-;1205:270:::0;;;;696:3662;;587:96:8;640:7;666:10;659:17;;587:96;:::o;2041:169:0:-;2096:16;2115:6;;;;;;;;;;;2096:25;;2140:8;2131:6;;:17;;;;;;;;;;;;;;;;;;2194:8;2163:40;;2184:8;2163:40;;;;;;;;;;;;2086:124;2041:169;:::o;3765:96:12:-;1196:12:0;:10;;;:12;;:::i;:::-;1185:23;;:7;:5;;;:7;;:::i;:::-;:23;;;1177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3845:11:12::1;3835:7;:21;;;;;;;;;;;;:::i;:::-;;3765:96:::0;:::o;3643:118::-;1196:12:0;:10;;;:12;;:::i;:::-;1185:23;;:7;:5;;;:7;;:::i;:::-;:23;;;1177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3741:15:12::1;3724:14;:32;;;;;;;;;;;;:::i;:::-;;3643:118:::0;:::o;973:85:0:-;1019:7;1045:6;;;;;;;;;;;1038:13;;973:85;:::o;696:3662:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:13:-;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:1512::-;2862:6;2870;2878;2886;2935:3;2923:9;2914:7;2910:23;2906:33;2903:120;;;2942:79;;:::i;:::-;2903:120;3083:1;3072:9;3068:17;3062:24;3113:18;3105:6;3102:30;3099:117;;;3135:79;;:::i;:::-;3099:117;3240:74;3306:7;3297:6;3286:9;3282:22;3240:74;:::i;:::-;3230:84;;3033:291;3384:2;3373:9;3369:18;3363:25;3415:18;3407:6;3404:30;3401:117;;;3437:79;;:::i;:::-;3401:117;3542:74;3608:7;3599:6;3588:9;3584:22;3542:74;:::i;:::-;3532:84;;3334:292;3686:2;3675:9;3671:18;3665:25;3717:18;3709:6;3706:30;3703:117;;;3739:79;;:::i;:::-;3703:117;3844:74;3910:7;3901:6;3890:9;3886:22;3844:74;:::i;:::-;3834:84;;3636:292;3988:2;3977:9;3973:18;3967:25;4019:18;4011:6;4008:30;4005:117;;;4041:79;;:::i;:::-;4005:117;4146:74;4212:7;4203:6;4192:9;4188:22;4146:74;:::i;:::-;4136:84;;3938:292;2725:1512;;;;;;;:::o;4243:169::-;4327:11;4361:6;4356:3;4349:19;4401:4;4396:3;4392:14;4377:29;;4243:169;;;;:::o;4418:182::-;4558:34;4554:1;4546:6;4542:14;4535:58;4418:182;:::o;4606:366::-;4748:3;4769:67;4833:2;4828:3;4769:67;:::i;:::-;4762:74;;4845:93;4934:3;4845:93;:::i;:::-;4963:2;4958:3;4954:12;4947:19;;4606:366;;;:::o;4978:419::-;5144:4;5182:2;5171:9;5167:18;5159:26;;5231:9;5225:4;5221:20;5217:1;5206:9;5202:17;5195:47;5259:131;5385:4;5259:131;:::i;:::-;5251:139;;4978:419;;;:::o;5403:180::-;5451:77;5448:1;5441:88;5548:4;5545:1;5538:15;5572:4;5569:1;5562:15;5589:320;5633:6;5670:1;5664:4;5660:12;5650:22;;5717:1;5711:4;5707:12;5738:18;5728:81;;5794:4;5786:6;5782:17;5772:27;;5728:81;5856:2;5848:6;5845:14;5825:18;5822:38;5819:84;;;5875:18;;:::i;:::-;5819:84;5640:269;5589:320;;;:::o;696:3662:12:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_addTokenToAllTokensEnumeration_1279": {
"entryPoint": 11530,
"id": 1279,
"parameterSlots": 1,
"returnSlots": 0
},
"@_addTokenToOwnerEnumeration_1259": {
"entryPoint": 12177,
"id": 1259,
"parameterSlots": 2,
"returnSlots": 0
},
"@_approve_845": {
"entryPoint": 8815,
"id": 845,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_2086": {
"entryPoint": 10146,
"id": 2086,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_1229": {
"entryPoint": 10751,
"id": 1229,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_918": {
"entryPoint": 11525,
"id": 918,
"parameterSlots": 3,
"returnSlots": 0
},
"@_checkOnERC721Received_907": {
"entryPoint": 11118,
"id": 907,
"parameterSlots": 4,
"returnSlots": 1
},
"@_exists_559": {
"entryPoint": 8707,
"id": 559,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_600": {
"entryPoint": 9000,
"id": 600,
"parameterSlots": 2,
"returnSlots": 1
},
"@_mint_701": {
"entryPoint": 12304,
"id": 701,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_1758": {
"entryPoint": 8699,
"id": 1758,
"parameterSlots": 0,
"returnSlots": 1
},
"@_removeTokenFromAllTokensEnumeration_1390": {
"entryPoint": 11968,
"id": 1390,
"parameterSlots": 1,
"returnSlots": 0
},
"@_removeTokenFromOwnerEnumeration_1342": {
"entryPoint": 11603,
"id": 1342,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_615": {
"entryPoint": 10024,
"id": 615,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_644": {
"entryPoint": 11027,
"id": 644,
"parameterSlots": 3,
"returnSlots": 0
},
"@_safeTransfer_541": {
"entryPoint": 10054,
"id": 541,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setOwner_102": {
"entryPoint": 9826,
"id": 102,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_821": {
"entryPoint": 9222,
"id": 821,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_363": {
"entryPoint": 3308,
"id": 363,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_221": {
"entryPoint": 5255,
"id": 221,
"parameterSlots": 1,
"returnSlots": 1
},
"@baseExtension_2023": {
"entryPoint": 6958,
"id": 2023,
"parameterSlots": 0,
"returnSlots": 0
},
"@baseURI_2020": {
"entryPoint": 5113,
"id": 2020,
"parameterSlots": 0,
"returnSlots": 0
},
"@cost_2026": {
"entryPoint": 3588,
"id": 2026,
"parameterSlots": 0,
"returnSlots": 0
},
"@getApproved_384": {
"entryPoint": 3033,
"id": 384,
"parameterSlots": 1,
"returnSlots": 1
},
"@isApprovedForAll_436": {
"entryPoint": 7767,
"id": 436,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1469": {
"entryPoint": 12766,
"id": 1469,
"parameterSlots": 1,
"returnSlots": 1
},
"@isWhitelisted_2203": {
"entryPoint": 3874,
"id": 2203,
"parameterSlots": 1,
"returnSlots": 1
},
"@maxMintAmount_2032": {
"entryPoint": 3607,
"id": 2032,
"parameterSlots": 0,
"returnSlots": 0
},
"@maxSupply_2029": {
"entryPoint": 7579,
"id": 2029,
"parameterSlots": 0,
"returnSlots": 0
},
"@mint_2171": {
"entryPoint": 5979,
"id": 2171,
"parameterSlots": 1,
"returnSlots": 0
},
"@name_259": {
"entryPoint": 2887,
"id": 259,
"parameterSlots": 0,
"returnSlots": 1
},
"@nftPerAddressLimit_2035": {
"entryPoint": 6952,
"id": 2035,
"parameterSlots": 0,
"returnSlots": 0
},
"@notRevealedUri_2043": {
"entryPoint": 3166,
"id": 2043,
"parameterSlots": 0,
"returnSlots": 0
},
"@onlyWhitelisted_2050": {
"entryPoint": 5960,
"id": 2050,
"parameterSlots": 0,
"returnSlots": 0
},
"@ownerOf_249": {
"entryPoint": 4935,
"id": 249,
"parameterSlots": 1,
"returnSlots": 1
},
"@owner_32": {
"entryPoint": 5772,
"id": 32,
"parameterSlots": 0,
"returnSlots": 1
},
"@pause_2394": {
"entryPoint": 2734,
"id": 2394,
"parameterSlots": 1,
"returnSlots": 0
},
"@paused_2038": {
"entryPoint": 4916,
"id": 2038,
"parameterSlots": 0,
"returnSlots": 0
},
"@renounceOwnership_60": {
"entryPoint": 5439,
"id": 60,
"parameterSlots": 0,
"returnSlots": 0
},
"@reveal_2310": {
"entryPoint": 6701,
"id": 2310,
"parameterSlots": 0,
"returnSlots": 0
},
"@revealed_2041": {
"entryPoint": 4747,
"id": 2041,
"parameterSlots": 0,
"returnSlots": 0
},
"@safeTransferFrom_482": {
"entryPoint": 4294,
"id": 482,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_512": {
"entryPoint": 6854,
"id": 512,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_418": {
"entryPoint": 6316,
"id": 418,
"parameterSlots": 2,
"returnSlots": 0
},
"@setBaseExtension_2382": {
"entryPoint": 7617,
"id": 2382,
"parameterSlots": 1,
"returnSlots": 0
},
"@setBaseURI_2370": {
"entryPoint": 4766,
"id": 2370,
"parameterSlots": 1,
"returnSlots": 0
},
"@setCost_2334": {
"entryPoint": 4500,
"id": 2334,
"parameterSlots": 1,
"returnSlots": 0
},
"@setNftPerAddressLimit_2322": {
"entryPoint": 7445,
"id": 2322,
"parameterSlots": 1,
"returnSlots": 0
},
"@setNotRevealedURI_2358": {
"entryPoint": 8075,
"id": 2358,
"parameterSlots": 1,
"returnSlots": 0
},
"@setmaxMintAmount_2346": {
"entryPoint": 5575,
"id": 2346,
"parameterSlots": 1,
"returnSlots": 0
},
"@supportsInterface_1103": {
"entryPoint": 2612,
"id": 1103,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_197": {
"entryPoint": 8473,
"id": 197,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_1994": {
"entryPoint": 10645,
"id": 1994,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_269": {
"entryPoint": 5814,
"id": 269,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_1853": {
"entryPoint": 10292,
"id": 1853,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenByIndex_1165": {
"entryPoint": 4634,
"id": 1165,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenOfOwnerByIndex_1131": {
"entryPoint": 3709,
"id": 1131,
"parameterSlots": 2,
"returnSlots": 1
},
"@tokenURI_2300": {
"entryPoint": 7100,
"id": 2300,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_1142": {
"entryPoint": 3594,
"id": 1142,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_463": {
"entryPoint": 3613,
"id": 463,
"parameterSlots": 3,
"returnSlots": 0
},
"@transferOwnership_83": {
"entryPoint": 8225,
"id": 83,
"parameterSlots": 1,
"returnSlots": 0
},
"@walletOfOwner_2251": {
"entryPoint": 4326,
"id": 2251,
"parameterSlots": 1,
"returnSlots": 1
},
"@whitelistUsers_2410": {
"entryPoint": 7915,
"id": 2410,
"parameterSlots": 2,
"returnSlots": 0
},
"@whitelistedUsers_2053": {
"entryPoint": 5709,
"id": 2053,
"parameterSlots": 0,
"returnSlots": 0
},
"@whitelisted_2047": {
"entryPoint": 7585,
"id": 2047,
"parameterSlots": 0,
"returnSlots": 0
},
"@withdraw_2437": {
"entryPoint": 4049,
"id": 2437,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 14812,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 14514,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 13838,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_array$_t_address_$dyn_calldata_ptr": {
"entryPoint": 15129,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_t_bool": {
"entryPoint": 13371,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 13228,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 18785,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 14878,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 14580,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 13657,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 14048,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 15055,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 13965,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 14924,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 14699,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 13859,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptr": {
"entryPoint": 15215,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bool": {
"entryPoint": 13392,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 13249,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 18806,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 14626,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 13678,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encodeUpdatedPos_t_uint256_to_t_uint256": {
"entryPoint": 14152,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 13773,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack": {
"entryPoint": 14189,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 13306,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 18652,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13533,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 17451,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 17521,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 16160,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 18412,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 17776,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack": {
"entryPoint": 19047,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 18214,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack": {
"entryPoint": 17227,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 17922,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 15868,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack": {
"entryPoint": 16835,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack": {
"entryPoint": 16689,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 18939,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 15576,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 15333,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack": {
"entryPoint": 18068,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack": {
"entryPoint": 17373,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack": {
"entryPoint": 15722,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b62b736cc94e77f6b35623bdcee4df97764fd904db91635f16afee63d3e52fb9_to_t_string_memory_ptr_fromStack": {
"entryPoint": 17029,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 16408,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack": {
"entryPoint": 16014,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack": {
"entryPoint": 16543,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256": {
"entryPoint": 14137,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 13923,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 17648,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 16443,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 13788,
"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": 18709,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
"entryPoint": 14283,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 13321,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13590,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 16195,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 18447,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 17811,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 19082,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 18249,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 17262,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 17957,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15903,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 16870,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 16724,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 18974,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15611,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15368,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 18103,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 17408,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15757,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b62b736cc94e77f6b35623bdcee4df97764fd904db91635f16afee63d3e52fb9__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 17064,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 16049,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 16578,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 13938,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 14423,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 13141,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 14763,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 14450,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 14121,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 17500,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 14093,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 18624,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 13437,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_nextElement_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 14176,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack": {
"entryPoint": 14104,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 18635,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 16394,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 13448,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 17440,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 16902,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 18526,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 17096,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 18281,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 13755,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 13294,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 13161,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 13723,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 13624,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 14499,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 13465,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 15447,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 14374,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"increment_t_uint256": {
"entryPoint": 16321,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 18575,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 16274,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 18479,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 15400,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x31": {
"entryPoint": 18851,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 16227,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 14327,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490": {
"entryPoint": 15119,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 14317,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef": {
"entryPoint": 15124,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 14322,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 13156,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 13151,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 13516,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c": {
"entryPoint": 16081,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e": {
"entryPoint": 18333,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 17697,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57": {
"entryPoint": 19006,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4": {
"entryPoint": 18135,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05": {
"entryPoint": 17186,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c": {
"entryPoint": 17843,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d": {
"entryPoint": 15789,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba": {
"entryPoint": 16756,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397": {
"entryPoint": 16610,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6": {
"entryPoint": 18898,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d": {
"entryPoint": 15497,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 15292,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950": {
"entryPoint": 17989,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb": {
"entryPoint": 17294,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942": {
"entryPoint": 15643,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b62b736cc94e77f6b35623bdcee4df97764fd904db91635f16afee63d3e52fb9": {
"entryPoint": 16988,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470": {
"entryPoint": 16405,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2": {
"entryPoint": 15935,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc": {
"entryPoint": 16464,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 13815,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 13348,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 13205,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 13634,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:42974:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:13"
},
"nodeType": "YulFunctionCall",
"src": "67:9:13"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:13"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:13",
"type": ""
}
],
"src": "7:75:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:13"
},
"nodeType": "YulFunctionCall",
"src": "187:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:13"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:13"
},
"nodeType": "YulFunctionCall",
"src": "310:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:13"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "378:105:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "388:89:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "403:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "410:66:13",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "399:3:13"
},
"nodeType": "YulFunctionCall",
"src": "399:78:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "388:7:13"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "360:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "370:7:13",
"type": ""
}
],
"src": "334:149:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "531:78:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "587:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "596:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "599:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "589:6:13"
},
"nodeType": "YulFunctionCall",
"src": "589:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "589:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "554:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "578:5:13"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "561:16:13"
},
"nodeType": "YulFunctionCall",
"src": "561:23:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "551:2:13"
},
"nodeType": "YulFunctionCall",
"src": "551:34:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "544:6:13"
},
"nodeType": "YulFunctionCall",
"src": "544:42:13"
},
"nodeType": "YulIf",
"src": "541:62:13"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "524:5:13",
"type": ""
}
],
"src": "489:120:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "666:86:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "676:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "698:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "685:12:13"
},
"nodeType": "YulFunctionCall",
"src": "685:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "676:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "740:5:13"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "714:25:13"
},
"nodeType": "YulFunctionCall",
"src": "714:32:13"
},
"nodeType": "YulExpressionStatement",
"src": "714:32:13"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "644:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "652:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "660:5:13",
"type": ""
}
],
"src": "615:137:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "823:262:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "871:77:13"
},
"nodeType": "YulFunctionCall",
"src": "871:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "871:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "844:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "853:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "840:3:13"
},
"nodeType": "YulFunctionCall",
"src": "840:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "865:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "836:3:13"
},
"nodeType": "YulFunctionCall",
"src": "836:32:13"
},
"nodeType": "YulIf",
"src": "833:119:13"
},
{
"nodeType": "YulBlock",
"src": "962:116:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "977:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "991:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "981:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1006:62:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1040:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1051:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1036:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1036:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1060:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1016:19:13"
},
"nodeType": "YulFunctionCall",
"src": "1016:52:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1006:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "793:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "804:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "816:6:13",
"type": ""
}
],
"src": "758:327:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1133:48:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1143:32:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1168:5:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1161:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1161:13:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1154:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1154:21:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1143:7:13"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1115:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1125:7:13",
"type": ""
}
],
"src": "1091:90:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1246:50:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1263:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1283:5:13"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "1268:14:13"
},
"nodeType": "YulFunctionCall",
"src": "1268:21:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1256:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1256:34:13"
},
"nodeType": "YulExpressionStatement",
"src": "1256:34:13"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1234:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1241:3:13",
"type": ""
}
],
"src": "1187:109:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1394:118:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1404:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1416:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1427:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1412:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1412:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1404:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1478:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1491:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1502:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1487:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1487:17:13"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "1440:37:13"
},
"nodeType": "YulFunctionCall",
"src": "1440:65:13"
},
"nodeType": "YulExpressionStatement",
"src": "1440:65:13"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1366:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1378:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1389:4:13",
"type": ""
}
],
"src": "1302:210:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1558:76:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1612:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1621:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1624:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1614:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1614:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1614:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1581:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1603:5:13"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "1588:14:13"
},
"nodeType": "YulFunctionCall",
"src": "1588:21:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1578:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1578:32:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1571:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1571:40:13"
},
"nodeType": "YulIf",
"src": "1568:60:13"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1551:5:13",
"type": ""
}
],
"src": "1518:116:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1689:84:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1699:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1721:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1708:12:13"
},
"nodeType": "YulFunctionCall",
"src": "1708:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1699:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1761:5:13"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "1737:23:13"
},
"nodeType": "YulFunctionCall",
"src": "1737:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "1737:30:13"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1667:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1675:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1683:5:13",
"type": ""
}
],
"src": "1640:133:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1842:260:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1888:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1890:77:13"
},
"nodeType": "YulFunctionCall",
"src": "1890:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "1890:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1863:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1872:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1859:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1859:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1884:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1855:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1855:32:13"
},
"nodeType": "YulIf",
"src": "1852:119:13"
},
{
"nodeType": "YulBlock",
"src": "1981:114:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1996:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2010:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2000:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2025:60:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2057:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2068:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2053:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2053:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2077:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "2035:17:13"
},
"nodeType": "YulFunctionCall",
"src": "2035:50:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2025:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1812:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1823:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1835:6:13",
"type": ""
}
],
"src": "1779:323:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2167:40:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2178:22:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2194:5:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2188:5:13"
},
"nodeType": "YulFunctionCall",
"src": "2188:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2178:6:13"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2150:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2160:6:13",
"type": ""
}
],
"src": "2108:99:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2309:73:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2326:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2331:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2319:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2319:19:13"
},
"nodeType": "YulExpressionStatement",
"src": "2319:19:13"
},
{
"nodeType": "YulAssignment",
"src": "2347:29:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2366:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2371:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2362:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2362:14:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2347:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2281:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2286:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2297:11:13",
"type": ""
}
],
"src": "2213:169:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2437:258:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2447:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2456:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "2451:1:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2516:63:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2541:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2546:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2537:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2537:11:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2560:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2565:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2556:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2556:11:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2550:5:13"
},
"nodeType": "YulFunctionCall",
"src": "2550:18:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2530:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2530:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "2530:39:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2477:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2480:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2474:2:13"
},
"nodeType": "YulFunctionCall",
"src": "2474:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2488:19:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2490:15:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2499:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2502:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2495:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2495:10:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2490:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2470:3:13",
"statements": []
},
"src": "2466:113:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2613:76:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2663:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2668:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2659:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2659:16:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2677:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2652:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2652:27:13"
},
"nodeType": "YulExpressionStatement",
"src": "2652:27:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2594:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2597:6:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2591:2:13"
},
"nodeType": "YulFunctionCall",
"src": "2591:13:13"
},
"nodeType": "YulIf",
"src": "2588:101:13"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2419:3:13",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2424:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2429:6:13",
"type": ""
}
],
"src": "2388:307:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2749:54:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2759:38:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2777:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2784:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2773:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2773:14:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2793:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2789:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2789:7:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2769:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2769:28:13"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "2759:6:13"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2732:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "2742:6:13",
"type": ""
}
],
"src": "2701:102:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2901:272:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2911:53:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2958:5:13"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2925:32:13"
},
"nodeType": "YulFunctionCall",
"src": "2925:39:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2915:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2973:78:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3039:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3044:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2980:58:13"
},
"nodeType": "YulFunctionCall",
"src": "2980:71:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2973:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3086:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3093:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3082:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3082:16:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3100:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3105:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "3060:21:13"
},
"nodeType": "YulFunctionCall",
"src": "3060:52:13"
},
"nodeType": "YulExpressionStatement",
"src": "3060:52:13"
},
{
"nodeType": "YulAssignment",
"src": "3121:46:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3132:3:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3159:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "3137:21:13"
},
"nodeType": "YulFunctionCall",
"src": "3137:29:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3128:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3128:39:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3121:3:13"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2882:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2889:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2897:3:13",
"type": ""
}
],
"src": "2809:364:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3297:195:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3307:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3319:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3330:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3315:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3315:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3307:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3354:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3365:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3350:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3350:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3373:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3379:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3369:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3369:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3343:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3343:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "3343:47:13"
},
{
"nodeType": "YulAssignment",
"src": "3399:86:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3471:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3480:4:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3407:63:13"
},
"nodeType": "YulFunctionCall",
"src": "3407:78:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3399:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3269:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3281:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3292:4:13",
"type": ""
}
],
"src": "3179:313:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3543:32:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3553:16:13",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3564:5:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3553:7:13"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3525:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3535:7:13",
"type": ""
}
],
"src": "3498:77:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3624:79:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3681:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3690:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3693:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3683:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3683:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "3683:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3647:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3672:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3654:17:13"
},
"nodeType": "YulFunctionCall",
"src": "3654:24:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3644:2:13"
},
"nodeType": "YulFunctionCall",
"src": "3644:35:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3637:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3637:43:13"
},
"nodeType": "YulIf",
"src": "3634:63:13"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3617:5:13",
"type": ""
}
],
"src": "3581:122:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3761:87:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3771:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3793:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3780:12:13"
},
"nodeType": "YulFunctionCall",
"src": "3780:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3771:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3836:5:13"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "3809:26:13"
},
"nodeType": "YulFunctionCall",
"src": "3809:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "3809:33:13"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3739:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3747:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3755:5:13",
"type": ""
}
],
"src": "3709:139:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3920:263:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3966:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3968:77:13"
},
"nodeType": "YulFunctionCall",
"src": "3968:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "3968:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3941:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3950:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3937:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3937:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3962:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3933:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3933:32:13"
},
"nodeType": "YulIf",
"src": "3930:119:13"
},
{
"nodeType": "YulBlock",
"src": "4059:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4074:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4088:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4078:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4103:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4138:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4149:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4134:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4134:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4158:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4113:20:13"
},
"nodeType": "YulFunctionCall",
"src": "4113:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4103:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3890:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3901:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3913:6:13",
"type": ""
}
],
"src": "3854:329:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4234:81:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4244:65:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4259:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4266:42:13",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4255:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4255:54:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4244:7:13"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4216:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4226:7:13",
"type": ""
}
],
"src": "4189:126:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4366:51:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4376:35:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4405:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "4387:17:13"
},
"nodeType": "YulFunctionCall",
"src": "4387:24:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4376:7:13"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4348:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4358:7:13",
"type": ""
}
],
"src": "4321:96:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4488:53:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4505:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4528:5:13"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "4510:17:13"
},
"nodeType": "YulFunctionCall",
"src": "4510:24:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4498:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4498:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "4498:37:13"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4476:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4483:3:13",
"type": ""
}
],
"src": "4423:118:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4645:124:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4655:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4667:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4678:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4663:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4663:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4655:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4735:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4748:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4759:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4744:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4744:17:13"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "4691:43:13"
},
"nodeType": "YulFunctionCall",
"src": "4691:71:13"
},
"nodeType": "YulExpressionStatement",
"src": "4691:71:13"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4617:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4629:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4640:4:13",
"type": ""
}
],
"src": "4547:222:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4818:79:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4875:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4884:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4887:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4877:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4877:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "4877:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4841:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4866:5:13"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "4848:17:13"
},
"nodeType": "YulFunctionCall",
"src": "4848:24:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4838:2:13"
},
"nodeType": "YulFunctionCall",
"src": "4838:35:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4831:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4831:43:13"
},
"nodeType": "YulIf",
"src": "4828:63:13"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4811:5:13",
"type": ""
}
],
"src": "4775:122:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4955:87:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4965:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4987:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4974:12:13"
},
"nodeType": "YulFunctionCall",
"src": "4974:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4965:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5030:5:13"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "5003:26:13"
},
"nodeType": "YulFunctionCall",
"src": "5003:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "5003:33:13"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4933:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4941:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4949:5:13",
"type": ""
}
],
"src": "4903:139:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5131:391:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5177:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5179:77:13"
},
"nodeType": "YulFunctionCall",
"src": "5179:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "5179:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5152:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5161:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5148:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5148:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5173:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5144:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5144:32:13"
},
"nodeType": "YulIf",
"src": "5141:119:13"
},
{
"nodeType": "YulBlock",
"src": "5270:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5285:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5299:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5289:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5314:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5349:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5360:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5345:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5345:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5369:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5324:20:13"
},
"nodeType": "YulFunctionCall",
"src": "5324:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5314:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5397:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5412:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5426:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5416:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5442:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5477:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5488:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5473:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5473:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5497:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5452:20:13"
},
"nodeType": "YulFunctionCall",
"src": "5452:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5442:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5093:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5104:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5116:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5124:6:13",
"type": ""
}
],
"src": "5048:474:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5593:53:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5610:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5633:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5615:17:13"
},
"nodeType": "YulFunctionCall",
"src": "5615:24:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5603:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5603:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "5603:37:13"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5581:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5588:3:13",
"type": ""
}
],
"src": "5528:118:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5750:124:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5760:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5772:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5783:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5768:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5768:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5760:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5840:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5853:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5864:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5849:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5849:17:13"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5796:43:13"
},
"nodeType": "YulFunctionCall",
"src": "5796:71:13"
},
"nodeType": "YulExpressionStatement",
"src": "5796:71:13"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5722:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5734:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5745:4:13",
"type": ""
}
],
"src": "5652:222:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5980:519:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6026:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6028:77:13"
},
"nodeType": "YulFunctionCall",
"src": "6028:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "6028:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6001:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6010:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5997:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5997:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6022:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5993:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5993:32:13"
},
"nodeType": "YulIf",
"src": "5990:119:13"
},
{
"nodeType": "YulBlock",
"src": "6119:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6134:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6148:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6138:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6163:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6198:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6209:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6194:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6194:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6218:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6173:20:13"
},
"nodeType": "YulFunctionCall",
"src": "6173:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6163:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6246:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6261:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6275:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6265:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6291:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6326:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6337:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6322:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6322:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6346:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6301:20:13"
},
"nodeType": "YulFunctionCall",
"src": "6301:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6291:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6374:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6389:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6403:2:13",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6393:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6419:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6454:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6465:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6450:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6450:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6474:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "6429:20:13"
},
"nodeType": "YulFunctionCall",
"src": "6429:53:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "6419:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5934:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5945:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5957:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5965:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "5973:6:13",
"type": ""
}
],
"src": "5880:619:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6571:263:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6617:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6619:77:13"
},
"nodeType": "YulFunctionCall",
"src": "6619:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "6619:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6592:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6601:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6588:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6588:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6613:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6584:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6584:32:13"
},
"nodeType": "YulIf",
"src": "6581:119:13"
},
{
"nodeType": "YulBlock",
"src": "6710:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6725:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6739:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6729:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6754:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6789:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6800:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6785:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6785:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6809:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6764:20:13"
},
"nodeType": "YulFunctionCall",
"src": "6764:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6754:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6541:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6552:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6564:6:13",
"type": ""
}
],
"src": "6505:329:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6914:40:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6925:22:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6941:5:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "6935:5:13"
},
"nodeType": "YulFunctionCall",
"src": "6935:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6925:6:13"
}
]
}
]
},
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6897:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6907:6:13",
"type": ""
}
],
"src": "6840:114:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7071:73:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7088:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7093:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7081:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7081:19:13"
},
"nodeType": "YulExpressionStatement",
"src": "7081:19:13"
},
{
"nodeType": "YulAssignment",
"src": "7109:29:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7128:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7133:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7124:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7124:14:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "7109:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7043:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7048:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "7059:11:13",
"type": ""
}
],
"src": "6960:184:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7222:60:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7232:11:13",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "7240:3:13"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7232:4:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7253:22:13",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "7265:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7270:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7261:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7261:14:13"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7253:4:13"
}
]
}
]
},
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "7209:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "7217:4:13",
"type": ""
}
],
"src": "7150:132:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7343:53:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7360:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7383:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7365:17:13"
},
"nodeType": "YulFunctionCall",
"src": "7365:24:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7353:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7353:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "7353:37:13"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7331:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7338:3:13",
"type": ""
}
],
"src": "7288:108:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7482:99:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7526:6:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7534:3:13"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "7492:33:13"
},
"nodeType": "YulFunctionCall",
"src": "7492:46:13"
},
"nodeType": "YulExpressionStatement",
"src": "7492:46:13"
},
{
"nodeType": "YulAssignment",
"src": "7547:28:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7565:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7570:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7561:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7561:14:13"
},
"variableNames": [
{
"name": "updatedPos",
"nodeType": "YulIdentifier",
"src": "7547:10:13"
}
]
}
]
},
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7455:6:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7463:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updatedPos",
"nodeType": "YulTypedName",
"src": "7471:10:13",
"type": ""
}
],
"src": "7402:179:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7662:38:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7672:22:13",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "7684:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7689:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7680:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7680:14:13"
},
"variableNames": [
{
"name": "next",
"nodeType": "YulIdentifier",
"src": "7672:4:13"
}
]
}
]
},
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "7649:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "next",
"nodeType": "YulTypedName",
"src": "7657:4:13",
"type": ""
}
],
"src": "7587:113:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7860:608:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7870:68:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7932:5:13"
}
],
"functionName": {
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7884:47:13"
},
"nodeType": "YulFunctionCall",
"src": "7884:54:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7874:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7947:93:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8028:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8033:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7954:73:13"
},
"nodeType": "YulFunctionCall",
"src": "7954:86:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7947:3:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "8049:71:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8114:5:13"
}
],
"functionName": {
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8064:49:13"
},
"nodeType": "YulFunctionCall",
"src": "8064:56:13"
},
"variables": [
{
"name": "baseRef",
"nodeType": "YulTypedName",
"src": "8053:7:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "8129:21:13",
"value": {
"name": "baseRef",
"nodeType": "YulIdentifier",
"src": "8143:7:13"
},
"variables": [
{
"name": "srcPtr",
"nodeType": "YulTypedName",
"src": "8133:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8219:224:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8233:34:13",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "8260:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "8254:5:13"
},
"nodeType": "YulFunctionCall",
"src": "8254:13:13"
},
"variables": [
{
"name": "elementValue0",
"nodeType": "YulTypedName",
"src": "8237:13:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8280:70:13",
"value": {
"arguments": [
{
"name": "elementValue0",
"nodeType": "YulIdentifier",
"src": "8331:13:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8346:3:13"
}
],
"functionName": {
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "8287:43:13"
},
"nodeType": "YulFunctionCall",
"src": "8287:63:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8280:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8363:70:13",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "8426:6:13"
}
],
"functionName": {
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8373:52:13"
},
"nodeType": "YulFunctionCall",
"src": "8373:60:13"
},
"variableNames": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "8363:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "8181:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8184:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8178:2:13"
},
"nodeType": "YulFunctionCall",
"src": "8178:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "8192:18:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8194:14:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "8203:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8206:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8199:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8199:9:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "8194:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "8163:14:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8165:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8174:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "8169:1:13",
"type": ""
}
]
}
]
},
"src": "8159:284:13"
},
{
"nodeType": "YulAssignment",
"src": "8452:10:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8459:3:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8452:3:13"
}
]
}
]
},
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7839:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7846:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7855:3:13",
"type": ""
}
],
"src": "7736:732:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8622:225:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8632:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8644:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8655:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8640:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8640:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8632:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8679:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8690:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8675:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8675:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8698:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8704:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8694:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8694:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8668:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8668:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "8668:47:13"
},
{
"nodeType": "YulAssignment",
"src": "8724:116:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8826:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8835:4:13"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8732:93:13"
},
"nodeType": "YulFunctionCall",
"src": "8732:108:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8724:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8594:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8606:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8617:4:13",
"type": ""
}
],
"src": "8474:373:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8942:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8959:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8962:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8952:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8952:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "8952:12:13"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "8853:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9065:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9082:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9085:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9075:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9075:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "9075:12:13"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "8976:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9127:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9144:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9147:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9137:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9137:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "9137:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9241:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9244:4:13",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9234:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9234:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "9234:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9265:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9268:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9258:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9258:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "9258:15:13"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "9099:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9328:238:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9338:58:13",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9360:6:13"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "9390:4:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "9368:21:13"
},
"nodeType": "YulFunctionCall",
"src": "9368:27:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9356:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9356:40:13"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "9342:10:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9507:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "9509:16:13"
},
"nodeType": "YulFunctionCall",
"src": "9509:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "9509:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "9450:10:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9462:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9447:2:13"
},
"nodeType": "YulFunctionCall",
"src": "9447:34:13"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "9486:10:13"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9498:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "9483:2:13"
},
"nodeType": "YulFunctionCall",
"src": "9483:22:13"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "9444:2:13"
},
"nodeType": "YulFunctionCall",
"src": "9444:62:13"
},
"nodeType": "YulIf",
"src": "9441:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9545:2:13",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "9549:10:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9538:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9538:22:13"
},
"nodeType": "YulExpressionStatement",
"src": "9538:22:13"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "9314:6:13",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "9322:4:13",
"type": ""
}
],
"src": "9285:281:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9613:88:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9623:30:13",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "9633:18:13"
},
"nodeType": "YulFunctionCall",
"src": "9633:20:13"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9623:6:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9682:6:13"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "9690:4:13"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "9662:19:13"
},
"nodeType": "YulFunctionCall",
"src": "9662:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "9662:33:13"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "9597:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "9606:6:13",
"type": ""
}
],
"src": "9572:129:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9774:241:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9879:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "9881:16:13"
},
"nodeType": "YulFunctionCall",
"src": "9881:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "9881:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9851:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9859:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9848:2:13"
},
"nodeType": "YulFunctionCall",
"src": "9848:30:13"
},
"nodeType": "YulIf",
"src": "9845:56:13"
},
{
"nodeType": "YulAssignment",
"src": "9911:37:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9941:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "9919:21:13"
},
"nodeType": "YulFunctionCall",
"src": "9919:29:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "9911:4:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "9985:23:13",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "9997:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10003:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9993:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9993:15:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "9985:4:13"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9758:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "9769:4:13",
"type": ""
}
],
"src": "9707:308:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10072:103:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10095:3:13"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10100:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10105:6:13"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "10082:12:13"
},
"nodeType": "YulFunctionCall",
"src": "10082:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "10082:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10153:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10158:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10149:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10149:16:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10167:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10142:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10142:27:13"
},
"nodeType": "YulExpressionStatement",
"src": "10142:27:13"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "10054:3:13",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "10059:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10064:6:13",
"type": ""
}
],
"src": "10021:154:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10265:328:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10275:75:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10342:6:13"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10300:41:13"
},
"nodeType": "YulFunctionCall",
"src": "10300:49:13"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "10284:15:13"
},
"nodeType": "YulFunctionCall",
"src": "10284:66:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "10275:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "10366:5:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10373:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10359:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10359:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "10359:21:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "10389:27:13",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "10404:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10411:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10400:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10400:16:13"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "10393:3:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10454:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "10456:77:13"
},
"nodeType": "YulFunctionCall",
"src": "10456:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "10456:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10435:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10440:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10431:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10431:16:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10449:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10428:2:13"
},
"nodeType": "YulFunctionCall",
"src": "10428:25:13"
},
"nodeType": "YulIf",
"src": "10425:112:13"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10570:3:13"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10575:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10580:6:13"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "10546:23:13"
},
"nodeType": "YulFunctionCall",
"src": "10546:41:13"
},
"nodeType": "YulExpressionStatement",
"src": "10546:41:13"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "10238:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10243:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10251:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "10259:5:13",
"type": ""
}
],
"src": "10181:412:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10675:278:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10724:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "10726:77:13"
},
"nodeType": "YulFunctionCall",
"src": "10726:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "10726:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10703:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10711:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10699:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10699:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10718:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "10695:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10695:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10688:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10688:35:13"
},
"nodeType": "YulIf",
"src": "10685:122:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "10816:34:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10843:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "10830:12:13"
},
"nodeType": "YulFunctionCall",
"src": "10830:20:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10820:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10859:88:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10920:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10928:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10916:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10916:17:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10935:6:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10943:3:13"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10868:47:13"
},
"nodeType": "YulFunctionCall",
"src": "10868:79:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "10859:5:13"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "10653:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10661:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "10669:5:13",
"type": ""
}
],
"src": "10613:340:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11035:433:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11081:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "11083:77:13"
},
"nodeType": "YulFunctionCall",
"src": "11083:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "11083:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11056:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11065:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11052:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11052:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11077:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "11048:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11048:32:13"
},
"nodeType": "YulIf",
"src": "11045:119:13"
},
{
"nodeType": "YulBlock",
"src": "11174:287:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11189:45:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11220:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11231:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11216:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11216:17:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "11203:12:13"
},
"nodeType": "YulFunctionCall",
"src": "11203:31:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11193:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11281:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "11283:77:13"
},
"nodeType": "YulFunctionCall",
"src": "11283:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "11283:79:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11253:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11261:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "11250:2:13"
},
"nodeType": "YulFunctionCall",
"src": "11250:30:13"
},
"nodeType": "YulIf",
"src": "11247:117:13"
},
{
"nodeType": "YulAssignment",
"src": "11378:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11423:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11434:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11419:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11419:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11443:7:13"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "11388:30:13"
},
"nodeType": "YulFunctionCall",
"src": "11388:63:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11378:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11005:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "11016:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11028:6:13",
"type": ""
}
],
"src": "10959:509:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11554:388:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11600:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "11602:77:13"
},
"nodeType": "YulFunctionCall",
"src": "11602:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "11602:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11575:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11584:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11571:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11571:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11596:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "11567:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11567:32:13"
},
"nodeType": "YulIf",
"src": "11564:119:13"
},
{
"nodeType": "YulBlock",
"src": "11693:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11708:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "11722:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11712:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11737:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11772:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11783:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11768:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11768:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11792:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "11747:20:13"
},
"nodeType": "YulFunctionCall",
"src": "11747:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11737:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "11820:115:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11835:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "11849:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11839:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11865:60:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11897:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11908:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11893:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11893:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11917:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "11875:17:13"
},
"nodeType": "YulFunctionCall",
"src": "11875:50:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "11865:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11516:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "11527:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11539:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "11547:6:13",
"type": ""
}
],
"src": "11474:468:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12014:241:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "12119:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "12121:16:13"
},
"nodeType": "YulFunctionCall",
"src": "12121:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "12121:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12091:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12099:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "12088:2:13"
},
"nodeType": "YulFunctionCall",
"src": "12088:30:13"
},
"nodeType": "YulIf",
"src": "12085:56:13"
},
{
"nodeType": "YulAssignment",
"src": "12151:37:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12181:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "12159:21:13"
},
"nodeType": "YulFunctionCall",
"src": "12159:29:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "12151:4:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "12225:23:13",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "12237:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12243:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12233:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12233:15:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "12225:4:13"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11998:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "12009:4:13",
"type": ""
}
],
"src": "11948:307:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12344:327:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12354:74:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12420:6:13"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "12379:40:13"
},
"nodeType": "YulFunctionCall",
"src": "12379:48:13"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "12363:15:13"
},
"nodeType": "YulFunctionCall",
"src": "12363:65:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "12354:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "12444:5:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12451:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12437:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12437:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "12437:21:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "12467:27:13",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "12482:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12489:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12478:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12478:16:13"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "12471:3:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "12532:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "12534:77:13"
},
"nodeType": "YulFunctionCall",
"src": "12534:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "12534:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "12513:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12518:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12509:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12509:16:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12527:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "12506:2:13"
},
"nodeType": "YulFunctionCall",
"src": "12506:25:13"
},
"nodeType": "YulIf",
"src": "12503:112:13"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "12648:3:13"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "12653:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12658:6:13"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "12624:23:13"
},
"nodeType": "YulFunctionCall",
"src": "12624:41:13"
},
"nodeType": "YulExpressionStatement",
"src": "12624:41:13"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "12317:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "12322:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12330:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "12338:5:13",
"type": ""
}
],
"src": "12261:410:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12751:277:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "12800:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "12802:77:13"
},
"nodeType": "YulFunctionCall",
"src": "12802:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "12802:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "12779:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12787:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12775:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12775:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12794:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "12771:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12771:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "12764:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12764:35:13"
},
"nodeType": "YulIf",
"src": "12761:122:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "12892:34:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "12919:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "12906:12:13"
},
"nodeType": "YulFunctionCall",
"src": "12906:20:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "12896:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "12935:87:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "12995:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13003:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12991:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12991:17:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13010:6:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13018:3:13"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "12944:46:13"
},
"nodeType": "YulFunctionCall",
"src": "12944:78:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "12935:5:13"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "12729:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12737:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "12745:5:13",
"type": ""
}
],
"src": "12690:338:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13160:817:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "13207:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "13209:77:13"
},
"nodeType": "YulFunctionCall",
"src": "13209:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "13209:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "13181:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13190:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13177:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13177:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13202:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "13173:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13173:33:13"
},
"nodeType": "YulIf",
"src": "13170:120:13"
},
{
"nodeType": "YulBlock",
"src": "13300:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "13315:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "13329:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "13319:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "13344:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13379:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "13390:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13375:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13375:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "13399:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "13354:20:13"
},
"nodeType": "YulFunctionCall",
"src": "13354:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13344:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "13427:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "13442:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "13456:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "13446:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "13472:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13507:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "13518:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13503:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13503:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "13527:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "13482:20:13"
},
"nodeType": "YulFunctionCall",
"src": "13482:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "13472:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "13555:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "13570:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "13584:2:13",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "13574:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "13600:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13635:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "13646:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13631:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13631:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "13655:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "13610:20:13"
},
"nodeType": "YulFunctionCall",
"src": "13610:53:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "13600:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "13683:287:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "13698:46:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13729:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13740:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13725:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13725:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "13712:12:13"
},
"nodeType": "YulFunctionCall",
"src": "13712:32:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "13702:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "13791:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "13793:77:13"
},
"nodeType": "YulFunctionCall",
"src": "13793:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "13793:79:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "13763:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13771:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "13760:2:13"
},
"nodeType": "YulFunctionCall",
"src": "13760:30:13"
},
"nodeType": "YulIf",
"src": "13757:117:13"
},
{
"nodeType": "YulAssignment",
"src": "13888:72:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13932:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "13943:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13928:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13928:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "13952:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "13898:29:13"
},
"nodeType": "YulFunctionCall",
"src": "13898:62:13"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "13888:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13106:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "13117:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13129:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "13137:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "13145:6:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "13153:6:13",
"type": ""
}
],
"src": "13034:943:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14066:391:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "14112:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "14114:77:13"
},
"nodeType": "YulFunctionCall",
"src": "14114:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "14114:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "14087:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14096:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14083:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14083:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14108:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "14079:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14079:32:13"
},
"nodeType": "YulIf",
"src": "14076:119:13"
},
{
"nodeType": "YulBlock",
"src": "14205:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "14220:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "14234:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "14224:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "14249:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14284:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "14295:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14280:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14280:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "14304:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "14259:20:13"
},
"nodeType": "YulFunctionCall",
"src": "14259:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "14249:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "14332:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "14347:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "14361:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "14351:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "14377:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14412:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "14423:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14408:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14408:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "14432:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "14387:20:13"
},
"nodeType": "YulFunctionCall",
"src": "14387:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "14377:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14028:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "14039:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "14051:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "14059:6:13",
"type": ""
}
],
"src": "13983:474:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14552:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14569:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14572:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "14562:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14562:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "14562:12:13"
}
]
},
"name": "revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490",
"nodeType": "YulFunctionDefinition",
"src": "14463:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14675:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14692:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14695:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "14685:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14685:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "14685:12:13"
}
]
},
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulFunctionDefinition",
"src": "14586:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14816:478:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "14865:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "14867:77:13"
},
"nodeType": "YulFunctionCall",
"src": "14867:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "14867:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "14844:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14852:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14840:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14840:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14859:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "14836:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14836:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "14829:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14829:35:13"
},
"nodeType": "YulIf",
"src": "14826:122:13"
},
{
"nodeType": "YulAssignment",
"src": "14957:30:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "14980:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "14967:12:13"
},
"nodeType": "YulFunctionCall",
"src": "14967:20:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "14957:6:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "15030:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490",
"nodeType": "YulIdentifier",
"src": "15032:77:13"
},
"nodeType": "YulFunctionCall",
"src": "15032:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "15032:79:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15002:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15010:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "14999:2:13"
},
"nodeType": "YulFunctionCall",
"src": "14999:30:13"
},
"nodeType": "YulIf",
"src": "14996:117:13"
},
{
"nodeType": "YulAssignment",
"src": "15122:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "15138:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15146:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15134:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15134:17:13"
},
"variableNames": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "15122:8:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "15205:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulIdentifier",
"src": "15207:77:13"
},
"nodeType": "YulFunctionCall",
"src": "15207:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "15207:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "15170:8:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15184:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15192:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "15180:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15180:17:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15166:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15166:32:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15200:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "15163:2:13"
},
"nodeType": "YulFunctionCall",
"src": "15163:41:13"
},
"nodeType": "YulIf",
"src": "15160:128:13"
}
]
},
"name": "abi_decode_t_array$_t_address_$dyn_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "14783:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14791:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "arrayPos",
"nodeType": "YulTypedName",
"src": "14799:8:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "14809:6:13",
"type": ""
}
],
"src": "14726:568:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15401:458:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "15447:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "15449:77:13"
},
"nodeType": "YulFunctionCall",
"src": "15449:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "15449:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "15422:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15431:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15418:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15418:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15443:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "15414:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15414:32:13"
},
"nodeType": "YulIf",
"src": "15411:119:13"
},
{
"nodeType": "YulBlock",
"src": "15540:312:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "15555:45:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15586:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15597:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15582:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15582:17:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "15569:12:13"
},
"nodeType": "YulFunctionCall",
"src": "15569:31:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "15559:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "15647:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "15649:77:13"
},
"nodeType": "YulFunctionCall",
"src": "15649:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "15649:79:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "15619:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15627:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "15616:2:13"
},
"nodeType": "YulFunctionCall",
"src": "15616:30:13"
},
"nodeType": "YulIf",
"src": "15613:117:13"
},
{
"nodeType": "YulAssignment",
"src": "15744:98:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15814:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "15825:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15810:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15810:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "15834:7:13"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_address_$dyn_calldata_ptr",
"nodeType": "YulIdentifier",
"src": "15762:47:13"
},
"nodeType": "YulFunctionCall",
"src": "15762:80:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15744:6:13"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "15752:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15363:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "15374:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15386:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "15394:6:13",
"type": ""
}
],
"src": "15300:559:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15971:76:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15993:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16001:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15989:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15989:14:13"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16005:34:13",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15982:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15982:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "15982:58:13"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15963:6:13",
"type": ""
}
],
"src": "15865:182:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16199:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16209:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16275:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16280:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16216:58:13"
},
"nodeType": "YulFunctionCall",
"src": "16216:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16209:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16381:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "16292:88:13"
},
"nodeType": "YulFunctionCall",
"src": "16292:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "16292:93:13"
},
{
"nodeType": "YulAssignment",
"src": "16394:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16405:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16410:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16401:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16401:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16394:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16187:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16195:3:13",
"type": ""
}
],
"src": "16053:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16596:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16606:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16618:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16629:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16614:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16614:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16606:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16653:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16664:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16649:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16649:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16672:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16678:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16668:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16668:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16642:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16642:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "16642:47:13"
},
{
"nodeType": "YulAssignment",
"src": "16698:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16832:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16706:124:13"
},
"nodeType": "YulFunctionCall",
"src": "16706:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16698:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16576:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16591:4:13",
"type": ""
}
],
"src": "16425:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16878:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16895:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16898:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16888:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16888:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "16888:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16992:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16995:4:13",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16985:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16985:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "16985:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17016:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17019:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "17009:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17009:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "17009:15:13"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "16850:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17087:269:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17097:22:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "17111:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17117:1:13",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "17107:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17107:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17097:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "17128:38:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "17158:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17164:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "17154:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17154:12:13"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "17132:18:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "17205:51:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17219:27:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17233:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17241:4:13",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "17229:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17229:17:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17219:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "17185:18:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "17178:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17178:26:13"
},
"nodeType": "YulIf",
"src": "17175:81:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17308:42:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "17322:16:13"
},
"nodeType": "YulFunctionCall",
"src": "17322:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "17322:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "17272:18:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17295:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17303:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "17292:2:13"
},
"nodeType": "YulFunctionCall",
"src": "17292:14:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "17269:2:13"
},
"nodeType": "YulFunctionCall",
"src": "17269:38:13"
},
"nodeType": "YulIf",
"src": "17266:84:13"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "17071:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "17080:6:13",
"type": ""
}
],
"src": "17036:320:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17468:125:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17490:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17498:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17486:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17486:14:13"
},
{
"hexValue": "4552433732313a20617070726f76656420717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17502:34:13",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17479:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17479:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "17479:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17558:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17566:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17554:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17554:15:13"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17571:14:13",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17547:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17547:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "17547:39:13"
}
]
},
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "17460:6:13",
"type": ""
}
],
"src": "17362:231:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17745:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17755:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17821:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17826:2:13",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17762:58:13"
},
"nodeType": "YulFunctionCall",
"src": "17762:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17755:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17927:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulIdentifier",
"src": "17838:88:13"
},
"nodeType": "YulFunctionCall",
"src": "17838:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "17838:93:13"
},
{
"nodeType": "YulAssignment",
"src": "17940:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17951:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17956:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17947:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17947:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17940:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17733:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17741:3:13",
"type": ""
}
],
"src": "17599:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18142:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18152:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18164:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18175:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18160:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18160:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18152:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18199:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18210:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18195:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18195:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18218:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18224:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18214:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18214:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18188:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18188:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "18188:47:13"
},
{
"nodeType": "YulAssignment",
"src": "18244:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18378:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18252:124:13"
},
"nodeType": "YulFunctionCall",
"src": "18252:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18244:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18122:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18137:4:13",
"type": ""
}
],
"src": "17971:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18502:114:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18524:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18532:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18520:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18520:14:13"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18536:34:13",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18513:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18513:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "18513:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18592:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18600:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18588:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18588:15:13"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18605:3:13",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18581:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18581:28:13"
},
"nodeType": "YulExpressionStatement",
"src": "18581:28:13"
}
]
},
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18494:6:13",
"type": ""
}
],
"src": "18396:220:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18768:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18778:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18844:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18849:2:13",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18785:58:13"
},
"nodeType": "YulFunctionCall",
"src": "18785:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18778:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18950:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "18861:88:13"
},
"nodeType": "YulFunctionCall",
"src": "18861:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "18861:93:13"
},
{
"nodeType": "YulAssignment",
"src": "18963:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18974:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18979:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18970:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18970:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "18963:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18756:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "18764:3:13",
"type": ""
}
],
"src": "18622:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19165:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19175:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19187:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19198:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19183:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19183:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19175:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19222:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19233:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19218:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19218:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19241:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19247:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19237:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19237:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19211:6:13"
},
"nodeType": "YulFunctionCall",
"src": "19211:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "19211:47:13"
},
{
"nodeType": "YulAssignment",
"src": "19267:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19401:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19275:124:13"
},
"nodeType": "YulFunctionCall",
"src": "19275:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19267:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19145:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19160:4:13",
"type": ""
}
],
"src": "18994:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19525:137:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19547:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19555:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19543:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19543:14:13"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f74206f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19559:34:13",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19536:6:13"
},
"nodeType": "YulFunctionCall",
"src": "19536:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "19536:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19615:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19623:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19611:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19611:15:13"
},
{
"hexValue": "6e6572206e6f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19628:26:13",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19604:6:13"
},
"nodeType": "YulFunctionCall",
"src": "19604:51:13"
},
"nodeType": "YulExpressionStatement",
"src": "19604:51:13"
}
]
},
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19517:6:13",
"type": ""
}
],
"src": "19419:243:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19814:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19824:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19890:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19895:2:13",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19831:58:13"
},
"nodeType": "YulFunctionCall",
"src": "19831:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19824:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19996:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulIdentifier",
"src": "19907:88:13"
},
"nodeType": "YulFunctionCall",
"src": "19907:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "19907:93:13"
},
{
"nodeType": "YulAssignment",
"src": "20009:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20020:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20025:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20016:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20016:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "20009:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19802:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "19810:3:13",
"type": ""
}
],
"src": "19668:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20211:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20221:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20233:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20244:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20229:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20229:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20221:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20268:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20279:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20264:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20264:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20287:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20293:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20283:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20283:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20257:6:13"
},
"nodeType": "YulFunctionCall",
"src": "20257:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "20257:47:13"
},
{
"nodeType": "YulAssignment",
"src": "20313:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20447:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20321:124:13"
},
"nodeType": "YulFunctionCall",
"src": "20321:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20313:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20191:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20206:4:13",
"type": ""
}
],
"src": "20040:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20571:130:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20593:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20601:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20589:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20589:14:13"
},
{
"hexValue": "4552433732313a207472616e736665722063616c6c6572206973206e6f74206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20605:34:13",
"type": "",
"value": "ERC721: transfer caller is not o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20582:6:13"
},
"nodeType": "YulFunctionCall",
"src": "20582:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "20582:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20661:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20669:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20657:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20657:15:13"
},
{
"hexValue": "776e6572206e6f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20674:19:13",
"type": "",
"value": "wner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20650:6:13"
},
"nodeType": "YulFunctionCall",
"src": "20650:44:13"
},
"nodeType": "YulExpressionStatement",
"src": "20650:44:13"
}
]
},
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20563:6:13",
"type": ""
}
],
"src": "20465:236:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20853:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20863:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20929:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20934:2:13",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20870:58:13"
},
"nodeType": "YulFunctionCall",
"src": "20870:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20863:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21035:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulIdentifier",
"src": "20946:88:13"
},
"nodeType": "YulFunctionCall",
"src": "20946:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "20946:93:13"
},
{
"nodeType": "YulAssignment",
"src": "21048:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21059:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21064:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21055:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21055:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "21048:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20841:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "20849:3:13",
"type": ""
}
],
"src": "20707:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21250:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21260:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21272:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21283:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21268:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21268:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21260:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21307:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21318:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21303:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21303:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21326:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21332:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21322:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21322:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21296:6:13"
},
"nodeType": "YulFunctionCall",
"src": "21296:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "21296:47:13"
},
{
"nodeType": "YulAssignment",
"src": "21352:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21486:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21360:124:13"
},
"nodeType": "YulFunctionCall",
"src": "21360:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21352:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21230:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21245:4:13",
"type": ""
}
],
"src": "21079:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21610:124:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "21632:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21640:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21628:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21628:14:13"
},
{
"hexValue": "455243373231456e756d657261626c653a206f776e657220696e646578206f75",
"kind": "string",
"nodeType": "YulLiteral",
"src": "21644:34:13",
"type": "",
"value": "ERC721Enumerable: owner index ou"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21621:6:13"
},
"nodeType": "YulFunctionCall",
"src": "21621:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "21621:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "21700:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21708:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21696:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21696:15:13"
},
{
"hexValue": "74206f6620626f756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "21713:13:13",
"type": "",
"value": "t of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21689:6:13"
},
"nodeType": "YulFunctionCall",
"src": "21689:38:13"
},
"nodeType": "YulExpressionStatement",
"src": "21689:38:13"
}
]
},
"name": "store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "21602:6:13",
"type": ""
}
],
"src": "21504:230:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21886:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21896:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21962:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21967:2:13",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21903:58:13"
},
"nodeType": "YulFunctionCall",
"src": "21903:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21896:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22068:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c",
"nodeType": "YulIdentifier",
"src": "21979:88:13"
},
"nodeType": "YulFunctionCall",
"src": "21979:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "21979:93:13"
},
{
"nodeType": "YulAssignment",
"src": "22081:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22092:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22097:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22088:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22088:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "22081:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "21874:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "21882:3:13",
"type": ""
}
],
"src": "21740:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22283:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22293:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22305:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22316:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22301:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22301:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22293:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22340:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22351:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22336:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22336:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22359:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22365:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22355:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22355:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22329:6:13"
},
"nodeType": "YulFunctionCall",
"src": "22329:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "22329:47:13"
},
{
"nodeType": "YulAssignment",
"src": "22385:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22519:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22393:124:13"
},
"nodeType": "YulFunctionCall",
"src": "22393:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22385:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22263:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22278:4:13",
"type": ""
}
],
"src": "22112:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22565:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22582:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22585:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22575:6:13"
},
"nodeType": "YulFunctionCall",
"src": "22575:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "22575:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22679:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22682:4:13",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22672:6:13"
},
"nodeType": "YulFunctionCall",
"src": "22672:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "22672:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22703:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22706:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "22696:6:13"
},
"nodeType": "YulFunctionCall",
"src": "22696:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "22696:15:13"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "22537:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22751:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22768:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22771:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22761:6:13"
},
"nodeType": "YulFunctionCall",
"src": "22761:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "22761:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22865:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22868:4:13",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22858:6:13"
},
"nodeType": "YulFunctionCall",
"src": "22858:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "22858:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22889:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22892:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "22882:6:13"
},
"nodeType": "YulFunctionCall",
"src": "22882:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "22882:15:13"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "22723:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22952:190:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22962:33:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22989:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22971:17:13"
},
"nodeType": "YulFunctionCall",
"src": "22971:24:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22962:5:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "23085:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "23087:16:13"
},
"nodeType": "YulFunctionCall",
"src": "23087:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "23087:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "23010:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23017:66:13",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "23007:2:13"
},
"nodeType": "YulFunctionCall",
"src": "23007:77:13"
},
"nodeType": "YulIf",
"src": "23004:103:13"
},
{
"nodeType": "YulAssignment",
"src": "23116:20:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "23127:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23134:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23123:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23123:13:13"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "23116:3:13"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22938:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "22948:3:13",
"type": ""
}
],
"src": "22909:233:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23261:34:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23271:18:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23286:3:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "23271:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "23233:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "23238:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "23249:11:13",
"type": ""
}
],
"src": "23148:147:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23407:8:13",
"statements": []
},
"name": "store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23399:6:13",
"type": ""
}
],
"src": "23301:114:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23584:235:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23594:90:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23677:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23682:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "23601:75:13"
},
"nodeType": "YulFunctionCall",
"src": "23601:83:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23594:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23782:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"nodeType": "YulIdentifier",
"src": "23693:88:13"
},
"nodeType": "YulFunctionCall",
"src": "23693:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "23693:93:13"
},
{
"nodeType": "YulAssignment",
"src": "23795:18:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23806:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23811:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23802:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23802:11:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "23795:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "23572:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "23580:3:13",
"type": ""
}
],
"src": "23421:398:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24013:191:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24024:154:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24174:3:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "24031:141:13"
},
"nodeType": "YulFunctionCall",
"src": "24031:147:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24024:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "24188:10:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24195:3:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "24188:3:13"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "24000:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "24009:3:13",
"type": ""
}
],
"src": "23825:379:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24316:125:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24338:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24346:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24334:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24334:14:13"
},
{
"hexValue": "455243373231456e756d657261626c653a20676c6f62616c20696e646578206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "24350:34:13",
"type": "",
"value": "ERC721Enumerable: global index o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24327:6:13"
},
"nodeType": "YulFunctionCall",
"src": "24327:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "24327:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24406:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24414:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24402:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24402:15:13"
},
{
"hexValue": "7574206f6620626f756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "24419:14:13",
"type": "",
"value": "ut of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24395:6:13"
},
"nodeType": "YulFunctionCall",
"src": "24395:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "24395:39:13"
}
]
},
"name": "store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24308:6:13",
"type": ""
}
],
"src": "24210:231:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24593:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24603:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24669:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24674:2:13",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24610:58:13"
},
"nodeType": "YulFunctionCall",
"src": "24610:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24603:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24775:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc",
"nodeType": "YulIdentifier",
"src": "24686:88:13"
},
"nodeType": "YulFunctionCall",
"src": "24686:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "24686:93:13"
},
{
"nodeType": "YulAssignment",
"src": "24788:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24799:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24804:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24795:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24795:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "24788:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "24581:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "24589:3:13",
"type": ""
}
],
"src": "24447:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24990:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25000:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25012:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25023:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25008:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25008:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25000:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25047:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25058:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25043:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25043:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25066:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25072:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25062:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25062:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25036:6:13"
},
"nodeType": "YulFunctionCall",
"src": "25036:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "25036:47:13"
},
{
"nodeType": "YulAssignment",
"src": "25092:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25226:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25100:124:13"
},
"nodeType": "YulFunctionCall",
"src": "25100:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25092:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24970:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24985:4:13",
"type": ""
}
],
"src": "24819:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25350:122:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25372:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25380:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25368:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25368:14:13"
},
{
"hexValue": "4552433732313a206f776e657220717565727920666f72206e6f6e6578697374",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25384:34:13",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25361:6:13"
},
"nodeType": "YulFunctionCall",
"src": "25361:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "25361:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25440:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25448:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25436:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25436:15:13"
},
{
"hexValue": "656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25453:11:13",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25429:6:13"
},
"nodeType": "YulFunctionCall",
"src": "25429:36:13"
},
"nodeType": "YulExpressionStatement",
"src": "25429:36:13"
}
]
},
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25342:6:13",
"type": ""
}
],
"src": "25244:228:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25624:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25634:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25700:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25705:2:13",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25641:58:13"
},
"nodeType": "YulFunctionCall",
"src": "25641:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25634:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25806:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulIdentifier",
"src": "25717:88:13"
},
"nodeType": "YulFunctionCall",
"src": "25717:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "25717:93:13"
},
{
"nodeType": "YulAssignment",
"src": "25819:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25830:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25835:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25826:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25826:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "25819:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25612:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "25620:3:13",
"type": ""
}
],
"src": "25478:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26021:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26031:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26043:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26054:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26039:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26039:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26031:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26078:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26089:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26074:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26074:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26097:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26103:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26093:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26093:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26067:6:13"
},
"nodeType": "YulFunctionCall",
"src": "26067:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "26067:47:13"
},
{
"nodeType": "YulAssignment",
"src": "26123:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26257:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26131:124:13"
},
"nodeType": "YulFunctionCall",
"src": "26131:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26123:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "26001:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "26016:4:13",
"type": ""
}
],
"src": "25850:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26381:123:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26403:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26411:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26399:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26399:14:13"
},
{
"hexValue": "4552433732313a2062616c616e636520717565727920666f7220746865207a65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26415:34:13",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26392:6:13"
},
"nodeType": "YulFunctionCall",
"src": "26392:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "26392:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26471:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26479:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26467:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26467:15:13"
},
{
"hexValue": "726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26484:12:13",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26460:6:13"
},
"nodeType": "YulFunctionCall",
"src": "26460:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "26460:37:13"
}
]
},
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26373:6:13",
"type": ""
}
],
"src": "26275:229:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26656:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26666:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26732:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26737:2:13",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26673:58:13"
},
"nodeType": "YulFunctionCall",
"src": "26673:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26666:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26838:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulIdentifier",
"src": "26749:88:13"
},
"nodeType": "YulFunctionCall",
"src": "26749:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "26749:93:13"
},
{
"nodeType": "YulAssignment",
"src": "26851:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26862:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26867:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26858:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26858:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "26851:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "26644:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "26652:3:13",
"type": ""
}
],
"src": "26510:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27053:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27063:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27075:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27086:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27071:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27071:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27063:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27110:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27121:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27106:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27106:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27129:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27135:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "27125:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27125:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27099:6:13"
},
"nodeType": "YulFunctionCall",
"src": "27099:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "27099:47:13"
},
{
"nodeType": "YulAssignment",
"src": "27155:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27289:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27163:124:13"
},
"nodeType": "YulFunctionCall",
"src": "27163:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27155:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "27033:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "27048:4:13",
"type": ""
}
],
"src": "26882:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27351:261:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27361:25:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27384:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "27366:17:13"
},
"nodeType": "YulFunctionCall",
"src": "27366:20:13"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27361:1:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "27395:25:13",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27418:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "27400:17:13"
},
"nodeType": "YulFunctionCall",
"src": "27400:20:13"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27395:1:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "27558:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "27560:16:13"
},
"nodeType": "YulFunctionCall",
"src": "27560:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "27560:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27479:1:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27486:66:13",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27554:1:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "27482:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27482:74:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "27476:2:13"
},
"nodeType": "YulFunctionCall",
"src": "27476:81:13"
},
"nodeType": "YulIf",
"src": "27473:107:13"
},
{
"nodeType": "YulAssignment",
"src": "27590:16:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27601:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27604:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27597:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27597:9:13"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "27590:3:13"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "27338:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "27341:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "27347:3:13",
"type": ""
}
],
"src": "27307:305:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27724:68:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27746:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27754:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27742:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27742:14:13"
},
{
"hexValue": "55736572206973206e6f742077686974656c697374656421",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27758:26:13",
"type": "",
"value": "User is not whitelisted!"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27735:6:13"
},
"nodeType": "YulFunctionCall",
"src": "27735:50:13"
},
"nodeType": "YulExpressionStatement",
"src": "27735:50:13"
}
]
},
"name": "store_literal_in_memory_b62b736cc94e77f6b35623bdcee4df97764fd904db91635f16afee63d3e52fb9",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27716:6:13",
"type": ""
}
],
"src": "27618:174:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27944:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27954:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28020:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28025:2:13",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27961:58:13"
},
"nodeType": "YulFunctionCall",
"src": "27961:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27954:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28126:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_b62b736cc94e77f6b35623bdcee4df97764fd904db91635f16afee63d3e52fb9",
"nodeType": "YulIdentifier",
"src": "28037:88:13"
},
"nodeType": "YulFunctionCall",
"src": "28037:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "28037:93:13"
},
{
"nodeType": "YulAssignment",
"src": "28139:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28150:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28155:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28146:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28146:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "28139:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b62b736cc94e77f6b35623bdcee4df97764fd904db91635f16afee63d3e52fb9_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "27932:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "27940:3:13",
"type": ""
}
],
"src": "27798:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28341:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28351:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28363:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28374:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28359:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28359:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28351:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28398:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28409:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28394:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28394:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28417:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28423:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28413:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28413:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28387:6:13"
},
"nodeType": "YulFunctionCall",
"src": "28387:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "28387:47:13"
},
{
"nodeType": "YulAssignment",
"src": "28443:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28577:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b62b736cc94e77f6b35623bdcee4df97764fd904db91635f16afee63d3e52fb9_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28451:124:13"
},
"nodeType": "YulFunctionCall",
"src": "28451:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28443:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b62b736cc94e77f6b35623bdcee4df97764fd904db91635f16afee63d3e52fb9__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "28321:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "28336:4:13",
"type": ""
}
],
"src": "28170:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28643:300:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28653:25:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28676:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "28658:17:13"
},
"nodeType": "YulFunctionCall",
"src": "28658:20:13"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28653:1:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "28687:25:13",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28710:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "28692:17:13"
},
"nodeType": "YulFunctionCall",
"src": "28692:20:13"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28687:1:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "28885:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "28887:16:13"
},
"nodeType": "YulFunctionCall",
"src": "28887:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "28887:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28797:1:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "28790:6:13"
},
"nodeType": "YulFunctionCall",
"src": "28790:9:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "28783:6:13"
},
"nodeType": "YulFunctionCall",
"src": "28783:17:13"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28805:1:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28812:66:13",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28880:1:13"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "28808:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28808:74:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "28802:2:13"
},
"nodeType": "YulFunctionCall",
"src": "28802:81:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "28779:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28779:105:13"
},
"nodeType": "YulIf",
"src": "28776:131:13"
},
{
"nodeType": "YulAssignment",
"src": "28917:20:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28932:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28935:1:13"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "28928:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28928:9:13"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "28917:7:13"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "28626:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "28629:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "28635:7:13",
"type": ""
}
],
"src": "28595:348:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29055:69:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29077:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29085:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29073:3:13"
},
"nodeType": "YulFunctionCall",
"src": "29073:14:13"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29089:27:13",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29066:6:13"
},
"nodeType": "YulFunctionCall",
"src": "29066:51:13"
},
"nodeType": "YulExpressionStatement",
"src": "29066:51:13"
}
]
},
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "29047:6:13",
"type": ""
}
],
"src": "28949:175:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29276:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29286:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29352:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29357:2:13",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29293:58:13"
},
"nodeType": "YulFunctionCall",
"src": "29293:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29286:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29458:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulIdentifier",
"src": "29369:88:13"
},
"nodeType": "YulFunctionCall",
"src": "29369:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "29369:93:13"
},
{
"nodeType": "YulAssignment",
"src": "29471:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29482:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29487:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29478:3:13"
},
"nodeType": "YulFunctionCall",
"src": "29478:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "29471:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "29264:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "29272:3:13",
"type": ""
}
],
"src": "29130:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29673:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29683:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29695:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29706:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29691:3:13"
},
"nodeType": "YulFunctionCall",
"src": "29691:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29683:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29730:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29741:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29726:3:13"
},
"nodeType": "YulFunctionCall",
"src": "29726:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29749:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29755:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "29745:3:13"
},
"nodeType": "YulFunctionCall",
"src": "29745:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29719:6:13"
},
"nodeType": "YulFunctionCall",
"src": "29719:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "29719:47:13"
},
{
"nodeType": "YulAssignment",
"src": "29775:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29909:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29783:124:13"
},
"nodeType": "YulFunctionCall",
"src": "29783:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29775:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29653:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "29668:4:13",
"type": ""
}
],
"src": "29502:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30033:128:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30055:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30063:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30051:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30051:14:13"
},
{
"hexValue": "4552433732314d657461646174613a2055524920717565727920666f72206e6f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30067:34:13",
"type": "",
"value": "ERC721Metadata: URI query for no"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30044:6:13"
},
"nodeType": "YulFunctionCall",
"src": "30044:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "30044:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30123:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30131:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30119:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30119:15:13"
},
{
"hexValue": "6e6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30136:17:13",
"type": "",
"value": "nexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30112:6:13"
},
"nodeType": "YulFunctionCall",
"src": "30112:42:13"
},
"nodeType": "YulExpressionStatement",
"src": "30112:42:13"
}
]
},
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "30025:6:13",
"type": ""
}
],
"src": "29927:234:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30313:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30323:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30389:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30394:2:13",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "30330:58:13"
},
"nodeType": "YulFunctionCall",
"src": "30330:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30323:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30495:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulIdentifier",
"src": "30406:88:13"
},
"nodeType": "YulFunctionCall",
"src": "30406:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "30406:93:13"
},
{
"nodeType": "YulAssignment",
"src": "30508:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30519:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30524:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30515:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30515:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "30508:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "30301:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "30309:3:13",
"type": ""
}
],
"src": "30167:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30710:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30720:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30732:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30743:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30728:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30728:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30720:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30767:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30778:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30763:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30763:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30786:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30792:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "30782:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30782:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30756:6:13"
},
"nodeType": "YulFunctionCall",
"src": "30756:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "30756:47:13"
},
{
"nodeType": "YulAssignment",
"src": "30812:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30946:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "30820:124:13"
},
"nodeType": "YulFunctionCall",
"src": "30820:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30812:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "30690:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "30705:4:13",
"type": ""
}
],
"src": "30539:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31078:34:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31088:18:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31103:3:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "31088:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "31050:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "31055:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "31066:11:13",
"type": ""
}
],
"src": "30964:148:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31228:267:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "31238:53:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "31285:5:13"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "31252:32:13"
},
"nodeType": "YulFunctionCall",
"src": "31252:39:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "31242:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "31300:96:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31384:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "31389:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "31307:76:13"
},
"nodeType": "YulFunctionCall",
"src": "31307:89:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31300:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "31431:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31438:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31427:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31427:16:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31445:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "31450:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "31405:21:13"
},
"nodeType": "YulFunctionCall",
"src": "31405:52:13"
},
"nodeType": "YulExpressionStatement",
"src": "31405:52:13"
},
{
"nodeType": "YulAssignment",
"src": "31466:23:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31477:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "31482:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31473:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31473:16:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "31466:3:13"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "31209:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "31216:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "31224:3:13",
"type": ""
}
],
"src": "31118:377:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31555:87:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31565:11:13",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "31573:3:13"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "31565:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31593:1:13",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "31596:3:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31586:6:13"
},
"nodeType": "YulFunctionCall",
"src": "31586:14:13"
},
"nodeType": "YulExpressionStatement",
"src": "31586:14:13"
},
{
"nodeType": "YulAssignment",
"src": "31609:26:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31627:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31630:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "31617:9:13"
},
"nodeType": "YulFunctionCall",
"src": "31617:18:13"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "31609:4:13"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "31542:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "31550:4:13",
"type": ""
}
],
"src": "31501:141:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31779:738:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "31789:29:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "31812:5:13"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "31806:5:13"
},
"nodeType": "YulFunctionCall",
"src": "31806:12:13"
},
"variables": [
{
"name": "slotValue",
"nodeType": "YulTypedName",
"src": "31793:9:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "31827:50:13",
"value": {
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "31867:9:13"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "31841:25:13"
},
"nodeType": "YulFunctionCall",
"src": "31841:36:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "31831:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "31886:96:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31970:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "31975:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "31893:76:13"
},
"nodeType": "YulFunctionCall",
"src": "31893:89:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31886:3:13"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "32031:130:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32084:3:13"
},
{
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "32093:9:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32108:4:13",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "32104:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32104:9:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "32089:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32089:25:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32077:6:13"
},
"nodeType": "YulFunctionCall",
"src": "32077:38:13"
},
"nodeType": "YulExpressionStatement",
"src": "32077:38:13"
},
{
"nodeType": "YulAssignment",
"src": "32128:23:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32139:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "32144:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32135:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32135:16:13"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "32128:3:13"
}
]
}
]
},
"nodeType": "YulCase",
"src": "32024:137:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "32029:1:13",
"type": "",
"value": "0"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "32177:334:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "32222:53:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32269:5:13"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "32237:31:13"
},
"nodeType": "YulFunctionCall",
"src": "32237:38:13"
},
"variables": [
{
"name": "dataPos",
"nodeType": "YulTypedName",
"src": "32226:7:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "32288:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "32297:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "32292:1:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "32355:110:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32384:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "32389:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32380:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32380:11:13"
},
{
"arguments": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "32399:7:13"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "32393:5:13"
},
"nodeType": "YulFunctionCall",
"src": "32393:14:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32373:6:13"
},
"nodeType": "YulFunctionCall",
"src": "32373:35:13"
},
"nodeType": "YulExpressionStatement",
"src": "32373:35:13"
},
{
"nodeType": "YulAssignment",
"src": "32425:26:13",
"value": {
"arguments": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "32440:7:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32449:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32436:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32436:15:13"
},
"variableNames": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "32425:7:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "32322:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "32325:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "32319:2:13"
},
"nodeType": "YulFunctionCall",
"src": "32319:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "32333:21:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32335:17:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "32344:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32347:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32340:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32340:12:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "32335:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "32315:3:13",
"statements": []
},
"src": "32311:154:13"
},
{
"nodeType": "YulAssignment",
"src": "32478:23:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32489:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "32494:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32485:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32485:16:13"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "32478:3:13"
}
]
}
]
},
"nodeType": "YulCase",
"src": "32170:341:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "32175:1:13",
"type": "",
"value": "1"
}
}
],
"expression": {
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "32002:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32013:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "31998:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31998:17:13"
},
"nodeType": "YulSwitch",
"src": "31991:520:13"
}
]
},
"name": "abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "31760:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "31767:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "31775:3:13",
"type": ""
}
],
"src": "31672:845:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32752:360:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32763:102:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "32852:6:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32861:3:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "32770:81:13"
},
"nodeType": "YulFunctionCall",
"src": "32770:95:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32763:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "32875:102:13",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "32964:6:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32973:3:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "32882:81:13"
},
"nodeType": "YulFunctionCall",
"src": "32882:95:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32875:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "32987:99:13",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "33073:6:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33082:3:13"
}
],
"functionName": {
"name": "abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "32994:78:13"
},
"nodeType": "YulFunctionCall",
"src": "32994:92:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32987:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "33096:10:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33103:3:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "33096:3:13"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "32715:3:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "32721:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "32729:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "32737:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "32748:3:13",
"type": ""
}
],
"src": "32523:589:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33224:119:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "33246:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33254:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33242:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33242:14:13"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "33258:34:13",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33235:6:13"
},
"nodeType": "YulFunctionCall",
"src": "33235:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "33235:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "33314:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33322:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33310:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33310:15:13"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "33327:8:13",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33303:6:13"
},
"nodeType": "YulFunctionCall",
"src": "33303:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "33303:33:13"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "33216:6:13",
"type": ""
}
],
"src": "33118:225:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33495:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33505:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33571:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33576:2:13",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "33512:58:13"
},
"nodeType": "YulFunctionCall",
"src": "33512:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33505:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33677:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "33588:88:13"
},
"nodeType": "YulFunctionCall",
"src": "33588:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "33588:93:13"
},
{
"nodeType": "YulAssignment",
"src": "33690:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33701:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33706:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33697:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33697:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "33690:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "33483:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "33491:3:13",
"type": ""
}
],
"src": "33349:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33892:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33902:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33914:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33925:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33910:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33910:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33902:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33949:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33960:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33945:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33945:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33968:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33974:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "33964:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33964:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33938:6:13"
},
"nodeType": "YulFunctionCall",
"src": "33938:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "33938:47:13"
},
{
"nodeType": "YulAssignment",
"src": "33994:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34128:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "34002:124:13"
},
"nodeType": "YulFunctionCall",
"src": "34002:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33994:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "33872:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "33887:4:13",
"type": ""
}
],
"src": "33721:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34252:125:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34274:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34282:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34270:3:13"
},
"nodeType": "YulFunctionCall",
"src": "34270:14:13"
},
{
"hexValue": "4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "34286:34:13",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34263:6:13"
},
"nodeType": "YulFunctionCall",
"src": "34263:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "34263:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34342:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34350:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34338:3:13"
},
"nodeType": "YulFunctionCall",
"src": "34338:15:13"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "34355:14:13",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34331:6:13"
},
"nodeType": "YulFunctionCall",
"src": "34331:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "34331:39:13"
}
]
},
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "34244:6:13",
"type": ""
}
],
"src": "34146:231:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34529:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34539:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34605:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34610:2:13",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "34546:58:13"
},
"nodeType": "YulFunctionCall",
"src": "34546:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34539:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34711:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulIdentifier",
"src": "34622:88:13"
},
"nodeType": "YulFunctionCall",
"src": "34622:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "34622:93:13"
},
{
"nodeType": "YulAssignment",
"src": "34724:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34735:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34740:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34731:3:13"
},
"nodeType": "YulFunctionCall",
"src": "34731:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "34724:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "34517:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "34525:3:13",
"type": ""
}
],
"src": "34383:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34926:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34936:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34948:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34959:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34944:3:13"
},
"nodeType": "YulFunctionCall",
"src": "34944:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34936:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34983:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34994:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34979:3:13"
},
"nodeType": "YulFunctionCall",
"src": "34979:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35002:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35008:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "34998:3:13"
},
"nodeType": "YulFunctionCall",
"src": "34998:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34972:6:13"
},
"nodeType": "YulFunctionCall",
"src": "34972:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "34972:47:13"
},
{
"nodeType": "YulAssignment",
"src": "35028:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35162:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "35036:124:13"
},
"nodeType": "YulFunctionCall",
"src": "35036:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35028:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "34906:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "34921:4:13",
"type": ""
}
],
"src": "34755:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35286:122:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "35308:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35316:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35304:3:13"
},
"nodeType": "YulFunctionCall",
"src": "35304:14:13"
},
{
"hexValue": "4552433732313a207472616e73666572206f6620746f6b656e20746861742069",
"kind": "string",
"nodeType": "YulLiteral",
"src": "35320:34:13",
"type": "",
"value": "ERC721: transfer of token that i"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35297:6:13"
},
"nodeType": "YulFunctionCall",
"src": "35297:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "35297:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "35376:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35384:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35372:3:13"
},
"nodeType": "YulFunctionCall",
"src": "35372:15:13"
},
{
"hexValue": "73206e6f74206f776e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "35389:11:13",
"type": "",
"value": "s not own"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35365:6:13"
},
"nodeType": "YulFunctionCall",
"src": "35365:36:13"
},
"nodeType": "YulExpressionStatement",
"src": "35365:36:13"
}
]
},
"name": "store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "35278:6:13",
"type": ""
}
],
"src": "35180:228:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35560:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35570:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35636:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35641:2:13",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "35577:58:13"
},
"nodeType": "YulFunctionCall",
"src": "35577:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35570:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35742:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950",
"nodeType": "YulIdentifier",
"src": "35653:88:13"
},
"nodeType": "YulFunctionCall",
"src": "35653:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "35653:93:13"
},
{
"nodeType": "YulAssignment",
"src": "35755:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35766:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35771:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35762:3:13"
},
"nodeType": "YulFunctionCall",
"src": "35762:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "35755:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "35548:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "35556:3:13",
"type": ""
}
],
"src": "35414:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35957:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35967:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35979:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35990:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35975:3:13"
},
"nodeType": "YulFunctionCall",
"src": "35975:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35967:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36014:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36025:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36010:3:13"
},
"nodeType": "YulFunctionCall",
"src": "36010:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36033:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36039:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "36029:3:13"
},
"nodeType": "YulFunctionCall",
"src": "36029:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36003:6:13"
},
"nodeType": "YulFunctionCall",
"src": "36003:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "36003:47:13"
},
{
"nodeType": "YulAssignment",
"src": "36059:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36193:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "36067:124:13"
},
"nodeType": "YulFunctionCall",
"src": "36067:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36059:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "35937:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "35952:4:13",
"type": ""
}
],
"src": "35786:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36317:117:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36339:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36347:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36335:3:13"
},
"nodeType": "YulFunctionCall",
"src": "36335:14:13"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "36351:34:13",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36328:6:13"
},
"nodeType": "YulFunctionCall",
"src": "36328:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "36328:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36407:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36415:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36403:3:13"
},
"nodeType": "YulFunctionCall",
"src": "36403:15:13"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "36420:6:13",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36396:6:13"
},
"nodeType": "YulFunctionCall",
"src": "36396:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "36396:31:13"
}
]
},
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "36309:6:13",
"type": ""
}
],
"src": "36211:223:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36586:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36596:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36662:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36667:2:13",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "36603:58:13"
},
"nodeType": "YulFunctionCall",
"src": "36603:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36596:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36768:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "36679:88:13"
},
"nodeType": "YulFunctionCall",
"src": "36679:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "36679:93:13"
},
{
"nodeType": "YulAssignment",
"src": "36781:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36792:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36797:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36788:3:13"
},
"nodeType": "YulFunctionCall",
"src": "36788:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "36781:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "36574:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "36582:3:13",
"type": ""
}
],
"src": "36440:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36983:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36993:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37005:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37016:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37001:3:13"
},
"nodeType": "YulFunctionCall",
"src": "37001:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36993:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37040:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37051:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37036:3:13"
},
"nodeType": "YulFunctionCall",
"src": "37036:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37059:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37065:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "37055:3:13"
},
"nodeType": "YulFunctionCall",
"src": "37055:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37029:6:13"
},
"nodeType": "YulFunctionCall",
"src": "37029:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "37029:47:13"
},
{
"nodeType": "YulAssignment",
"src": "37085:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37219:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "37093:124:13"
},
"nodeType": "YulFunctionCall",
"src": "37093:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37085:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "36963:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "36978:4:13",
"type": ""
}
],
"src": "36812:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37282:146:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37292:25:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37315:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37297:17:13"
},
"nodeType": "YulFunctionCall",
"src": "37297:20:13"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37292:1:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "37326:25:13",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37349:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37331:17:13"
},
"nodeType": "YulFunctionCall",
"src": "37331:20:13"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37326:1:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "37373:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "37375:16:13"
},
"nodeType": "YulFunctionCall",
"src": "37375:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "37375:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37367:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37370:1:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "37364:2:13"
},
"nodeType": "YulFunctionCall",
"src": "37364:8:13"
},
"nodeType": "YulIf",
"src": "37361:34:13"
},
{
"nodeType": "YulAssignment",
"src": "37405:17:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37417:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37420:1:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "37413:3:13"
},
"nodeType": "YulFunctionCall",
"src": "37413:9:13"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "37405:4:13"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "37268:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "37271:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "37277:4:13",
"type": ""
}
],
"src": "37237:191:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37540:131:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "37562:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37570:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37558:3:13"
},
"nodeType": "YulFunctionCall",
"src": "37558:14:13"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "37574:34:13",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37551:6:13"
},
"nodeType": "YulFunctionCall",
"src": "37551:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "37551:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "37630:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37638:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37626:3:13"
},
"nodeType": "YulFunctionCall",
"src": "37626:15:13"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "37643:20:13",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37619:6:13"
},
"nodeType": "YulFunctionCall",
"src": "37619:45:13"
},
"nodeType": "YulExpressionStatement",
"src": "37619:45:13"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "37532:6:13",
"type": ""
}
],
"src": "37434:237:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37823:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37833:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37899:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37904:2:13",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "37840:58:13"
},
"nodeType": "YulFunctionCall",
"src": "37840:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37833:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "38005:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "37916:88:13"
},
"nodeType": "YulFunctionCall",
"src": "37916:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "37916:93:13"
},
{
"nodeType": "YulAssignment",
"src": "38018:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "38029:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38034:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38025:3:13"
},
"nodeType": "YulFunctionCall",
"src": "38025:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "38018:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "37811:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "37819:3:13",
"type": ""
}
],
"src": "37677:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38220:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38230:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "38242:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38253:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38238:3:13"
},
"nodeType": "YulFunctionCall",
"src": "38238:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38230:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "38277:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38288:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38273:3:13"
},
"nodeType": "YulFunctionCall",
"src": "38273:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38296:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "38302:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "38292:3:13"
},
"nodeType": "YulFunctionCall",
"src": "38292:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38266:6:13"
},
"nodeType": "YulFunctionCall",
"src": "38266:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "38266:47:13"
},
{
"nodeType": "YulAssignment",
"src": "38322:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38456:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "38330:124:13"
},
"nodeType": "YulFunctionCall",
"src": "38330:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38322:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "38200:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "38215:4:13",
"type": ""
}
],
"src": "38049:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38502:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38519:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38522:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38512:6:13"
},
"nodeType": "YulFunctionCall",
"src": "38512:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "38512:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38616:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38619:4:13",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38609:6:13"
},
"nodeType": "YulFunctionCall",
"src": "38609:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "38609:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38640:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38643:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "38633:6:13"
},
"nodeType": "YulFunctionCall",
"src": "38633:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "38633:15:13"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "38474:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38702:143:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38712:25:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "38735:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "38717:17:13"
},
"nodeType": "YulFunctionCall",
"src": "38717:20:13"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "38712:1:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "38746:25:13",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "38769:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "38751:17:13"
},
"nodeType": "YulFunctionCall",
"src": "38751:20:13"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "38746:1:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "38793:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "38795:16:13"
},
"nodeType": "YulFunctionCall",
"src": "38795:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "38795:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "38790:1:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "38783:6:13"
},
"nodeType": "YulFunctionCall",
"src": "38783:9:13"
},
"nodeType": "YulIf",
"src": "38780:35:13"
},
{
"nodeType": "YulAssignment",
"src": "38825:14:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "38834:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "38837:1:13"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "38830:3:13"
},
"nodeType": "YulFunctionCall",
"src": "38830:9:13"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "38825:1:13"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "38691:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "38694:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "38700:1:13",
"type": ""
}
],
"src": "38660:185:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38885:142:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38895:25:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "38918:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "38900:17:13"
},
"nodeType": "YulFunctionCall",
"src": "38900:20:13"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "38895:1:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "38929:25:13",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "38952:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "38934:17:13"
},
"nodeType": "YulFunctionCall",
"src": "38934:20:13"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "38929:1:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "38976:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "38978:16:13"
},
"nodeType": "YulFunctionCall",
"src": "38978:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "38978:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "38973:1:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "38966:6:13"
},
"nodeType": "YulFunctionCall",
"src": "38966:9:13"
},
"nodeType": "YulIf",
"src": "38963:35:13"
},
{
"nodeType": "YulAssignment",
"src": "39007:14:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "39016:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "39019:1:13"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "39012:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39012:9:13"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "39007:1:13"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "38874:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "38877:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "38883:1:13",
"type": ""
}
],
"src": "38851:176:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39091:40:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "39102:22:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "39118:5:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "39112:5:13"
},
"nodeType": "YulFunctionCall",
"src": "39112:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "39102:6:13"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "39074:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "39084:6:13",
"type": ""
}
],
"src": "39033:98:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39232:73:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "39249:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "39254:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39242:6:13"
},
"nodeType": "YulFunctionCall",
"src": "39242:19:13"
},
"nodeType": "YulExpressionStatement",
"src": "39242:19:13"
},
{
"nodeType": "YulAssignment",
"src": "39270:29:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "39289:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39294:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39285:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39285:14:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "39270:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "39204:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "39209:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "39220:11:13",
"type": ""
}
],
"src": "39137:168:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39401:270:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "39411:52:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "39457:5:13"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "39425:31:13"
},
"nodeType": "YulFunctionCall",
"src": "39425:38:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "39415:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "39472:77:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "39537:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "39542:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "39479:57:13"
},
"nodeType": "YulFunctionCall",
"src": "39479:70:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "39472:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "39584:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39591:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39580:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39580:16:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "39598:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "39603:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "39558:21:13"
},
"nodeType": "YulFunctionCall",
"src": "39558:52:13"
},
"nodeType": "YulExpressionStatement",
"src": "39558:52:13"
},
{
"nodeType": "YulAssignment",
"src": "39619:46:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "39630:3:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "39657:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "39635:21:13"
},
"nodeType": "YulFunctionCall",
"src": "39635:29:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39626:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39626:39:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "39619:3:13"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "39382:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "39389:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "39397:3:13",
"type": ""
}
],
"src": "39311:360:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39877:440:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "39887:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "39899:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39910:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39895:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39895:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "39887:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "39968:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "39981:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39992:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39977:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39977:17:13"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "39924:43:13"
},
"nodeType": "YulFunctionCall",
"src": "39924:71:13"
},
"nodeType": "YulExpressionStatement",
"src": "39924:71:13"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "40049:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "40062:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40073:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40058:3:13"
},
"nodeType": "YulFunctionCall",
"src": "40058:18:13"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "40005:43:13"
},
"nodeType": "YulFunctionCall",
"src": "40005:72:13"
},
"nodeType": "YulExpressionStatement",
"src": "40005:72:13"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "40131:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "40144:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40155:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40140:3:13"
},
"nodeType": "YulFunctionCall",
"src": "40140:18:13"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "40087:43:13"
},
"nodeType": "YulFunctionCall",
"src": "40087:72:13"
},
"nodeType": "YulExpressionStatement",
"src": "40087:72:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "40180:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40191:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40176:3:13"
},
"nodeType": "YulFunctionCall",
"src": "40176:18:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "40200:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "40206:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "40196:3:13"
},
"nodeType": "YulFunctionCall",
"src": "40196:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40169:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40169:48:13"
},
"nodeType": "YulExpressionStatement",
"src": "40169:48:13"
},
{
"nodeType": "YulAssignment",
"src": "40226:84:13",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "40296:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "40305:4:13"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "40234:61:13"
},
"nodeType": "YulFunctionCall",
"src": "40234:76:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "40226:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "39825:9:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "39837:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "39845:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "39853:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "39861:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "39872:4:13",
"type": ""
}
],
"src": "39677:640:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40385:79:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "40395:22:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "40410:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "40404:5:13"
},
"nodeType": "YulFunctionCall",
"src": "40404:13:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "40395:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "40452:5:13"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "40426:25:13"
},
"nodeType": "YulFunctionCall",
"src": "40426:32:13"
},
"nodeType": "YulExpressionStatement",
"src": "40426:32:13"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "40363:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "40371:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "40379:5:13",
"type": ""
}
],
"src": "40323:141:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40546:273:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "40592:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "40594:77:13"
},
"nodeType": "YulFunctionCall",
"src": "40594:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "40594:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "40567:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "40576:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "40563:3:13"
},
"nodeType": "YulFunctionCall",
"src": "40563:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40588:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "40559:3:13"
},
"nodeType": "YulFunctionCall",
"src": "40559:32:13"
},
"nodeType": "YulIf",
"src": "40556:119:13"
},
{
"nodeType": "YulBlock",
"src": "40685:127:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "40700:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "40714:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "40704:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "40729:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "40774:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "40785:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40770:3:13"
},
"nodeType": "YulFunctionCall",
"src": "40770:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "40794:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "40739:30:13"
},
"nodeType": "YulFunctionCall",
"src": "40739:63:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "40729:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "40516:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "40527:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "40539:6:13",
"type": ""
}
],
"src": "40470:349:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40853:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40870:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40873:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40863:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40863:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "40863:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40967:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40970:4:13",
"type": "",
"value": "0x31"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40960:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40960:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "40960:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40991:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40994:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "40984:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40984:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "40984:15:13"
}
]
},
"name": "panic_error_0x31",
"nodeType": "YulFunctionDefinition",
"src": "40825:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41117:76:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "41139:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41147:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41135:3:13"
},
"nodeType": "YulFunctionCall",
"src": "41135:14:13"
},
{
"hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "41151:34:13",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "41128:6:13"
},
"nodeType": "YulFunctionCall",
"src": "41128:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "41128:58:13"
}
]
},
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "41109:6:13",
"type": ""
}
],
"src": "41011:182:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41345:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "41355:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "41421:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41426:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "41362:58:13"
},
"nodeType": "YulFunctionCall",
"src": "41362:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "41355:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "41527:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulIdentifier",
"src": "41438:88:13"
},
"nodeType": "YulFunctionCall",
"src": "41438:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "41438:93:13"
},
{
"nodeType": "YulAssignment",
"src": "41540:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "41551:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41556:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41547:3:13"
},
"nodeType": "YulFunctionCall",
"src": "41547:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "41540:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "41333:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "41341:3:13",
"type": ""
}
],
"src": "41199:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41742:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "41752:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "41764:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41775:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41760:3:13"
},
"nodeType": "YulFunctionCall",
"src": "41760:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "41752:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "41799:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41810:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41795:3:13"
},
"nodeType": "YulFunctionCall",
"src": "41795:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "41818:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "41824:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "41814:3:13"
},
"nodeType": "YulFunctionCall",
"src": "41814:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "41788:6:13"
},
"nodeType": "YulFunctionCall",
"src": "41788:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "41788:47:13"
},
{
"nodeType": "YulAssignment",
"src": "41844:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "41978:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "41852:124:13"
},
"nodeType": "YulFunctionCall",
"src": "41852:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "41844:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "41722:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "41737:4:13",
"type": ""
}
],
"src": "41571:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42102:72:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "42124:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42132:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42120:3:13"
},
"nodeType": "YulFunctionCall",
"src": "42120:14:13"
},
{
"hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "42136:30:13",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42113:6:13"
},
"nodeType": "YulFunctionCall",
"src": "42113:54:13"
},
"nodeType": "YulExpressionStatement",
"src": "42113:54:13"
}
]
},
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "42094:6:13",
"type": ""
}
],
"src": "41996:178:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42326:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "42336:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "42402:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42407:2:13",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "42343:58:13"
},
"nodeType": "YulFunctionCall",
"src": "42343:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "42336:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "42508:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulIdentifier",
"src": "42419:88:13"
},
"nodeType": "YulFunctionCall",
"src": "42419:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "42419:93:13"
},
{
"nodeType": "YulAssignment",
"src": "42521:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "42532:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42537:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42528:3:13"
},
"nodeType": "YulFunctionCall",
"src": "42528:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "42521:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "42314:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "42322:3:13",
"type": ""
}
],
"src": "42180:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42723:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "42733:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "42745:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42756:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42741:3:13"
},
"nodeType": "YulFunctionCall",
"src": "42741:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "42733:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "42780:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42791:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42776:3:13"
},
"nodeType": "YulFunctionCall",
"src": "42776:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "42799:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "42805:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "42795:3:13"
},
"nodeType": "YulFunctionCall",
"src": "42795:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42769:6:13"
},
"nodeType": "YulFunctionCall",
"src": "42769:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "42769:47:13"
},
{
"nodeType": "YulAssignment",
"src": "42825:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "42959:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "42833:124:13"
},
"nodeType": "YulFunctionCall",
"src": "42833:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "42825:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "42703:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "42718:4:13",
"type": ""
}
],
"src": "42552:419:13"
}
]
},
"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 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_bool(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_bool(add(headStart, offset), dataEnd)\n }\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 array_length_t_array$_t_uint256_$dyn_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_dataslot_t_array$_t_uint256_$dyn_memory_ptr(ptr) -> data {\n data := ptr\n\n data := add(ptr, 0x20)\n\n }\n\n function abi_encode_t_uint256_to_t_uint256(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encodeUpdatedPos_t_uint256_to_t_uint256(value0, pos) -> updatedPos {\n abi_encode_t_uint256_to_t_uint256(value0, pos)\n updatedPos := add(pos, 0x20)\n }\n\n function array_nextElement_t_array$_t_uint256_$dyn_memory_ptr(ptr) -> next {\n next := add(ptr, 0x20)\n }\n\n // uint256[] -> uint256[]\n function abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_uint256_$dyn_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack(pos, length)\n let baseRef := array_dataslot_t_array$_t_uint256_$dyn_memory_ptr(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n let elementValue0 := mload(srcPtr)\n pos := abi_encodeUpdatedPos_t_uint256_to_t_uint256(elementValue0, pos)\n srcPtr := array_nextElement_t_array$_t_uint256_$dyn_memory_ptr(srcPtr)\n }\n end := pos\n }\n\n function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value0, tail)\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_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_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_string_memory_ptr(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_calldata_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_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_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\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 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 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 revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490() {\n revert(0, 0)\n }\n\n function revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() {\n revert(0, 0)\n }\n\n // address[]\n function abi_decode_t_array$_t_address_$dyn_calldata_ptr(offset, end) -> arrayPos, length {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n length := calldataload(offset)\n if gt(length, 0xffffffffffffffff) { revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490() }\n arrayPos := add(offset, 0x20)\n if gt(add(arrayPos, mul(length, 0x20)), end) { revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() }\n }\n\n function abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0, value1 := abi_decode_t_array$_t_address_$dyn_calldata_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approved query for nonex\")\n\n mstore(add(memPtr, 32), \"istent token\")\n\n }\n\n function abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approval to current owne\")\n\n mstore(add(memPtr, 32), \"r\")\n\n }\n\n function abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve caller is not ow\")\n\n mstore(add(memPtr, 32), \"ner nor approved for all\")\n\n }\n\n function abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 56)\n store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer caller is not o\")\n\n mstore(add(memPtr, 32), \"wner nor approved\")\n\n }\n\n function abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 49)\n store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Enumerable: owner index ou\")\n\n mstore(add(memPtr, 32), \"t of bounds\")\n\n }\n\n function abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 43)\n store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\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 array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470(memPtr) {\n\n }\n\n function abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack(pos, 0)\n store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470(pos)\n end := add(pos, 0)\n }\n\n function abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos ) -> end {\n\n pos := abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n end := pos\n }\n\n function store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Enumerable: global index o\")\n\n mstore(add(memPtr, 32), \"ut of bounds\")\n\n }\n\n function abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: owner query for nonexist\")\n\n mstore(add(memPtr, 32), \"ent token\")\n\n }\n\n function abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: balance query for the ze\")\n\n mstore(add(memPtr, 32), \"ro address\")\n\n }\n\n function abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 42)\n store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack( tail)\n\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 store_literal_in_memory_b62b736cc94e77f6b35623bdcee4df97764fd904db91635f16afee63d3e52fb9(memPtr) {\n\n mstore(add(memPtr, 0), \"User is not whitelisted!\")\n\n }\n\n function abi_encode_t_stringliteral_b62b736cc94e77f6b35623bdcee4df97764fd904db91635f16afee63d3e52fb9_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 24)\n store_literal_in_memory_b62b736cc94e77f6b35623bdcee4df97764fd904db91635f16afee63d3e52fb9(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_b62b736cc94e77f6b35623bdcee4df97764fd904db91635f16afee63d3e52fb9__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b62b736cc94e77f6b35623bdcee4df97764fd904db91635f16afee63d3e52fb9_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve to caller\")\n\n }\n\n function abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Metadata: URI query for no\")\n\n mstore(add(memPtr, 32), \"nexistent token\")\n\n }\n\n function abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 47)\n store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n // string -> string\n function abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> ret {\n let slotValue := sload(value)\n let length := extract_byte_array_length(slotValue)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n switch and(slotValue, 1)\n case 0 {\n // short byte array\n mstore(pos, and(slotValue, not(0xff)))\n ret := add(pos, length)\n }\n case 1 {\n // long byte array\n let dataPos := array_dataslot_t_string_storage(value)\n let i := 0\n for { } lt(i, length) { i := add(i, 0x20) } {\n mstore(add(pos, i), sload(dataPos))\n dataPos := add(dataPos, 1)\n }\n ret := add(pos, length)\n }\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value2, value1, value0) -> end {\n\n 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 pos := abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value2, pos)\n\n end := pos\n }\n\n function store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: new owner is the zero a\")\n\n mstore(add(memPtr, 32), \"ddress\")\n\n }\n\n function abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: operator query for nonex\")\n\n mstore(add(memPtr, 32), \"istent token\")\n\n }\n\n function abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer of token that i\")\n\n mstore(add(memPtr, 32), \"s not own\")\n\n }\n\n function abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function 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 store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to non ERC721Re\")\n\n mstore(add(memPtr, 32), \"ceiver implementer\")\n\n }\n\n function abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 50)\n store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function 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 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 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_0x31() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x31)\n revert(0, 0x24)\n }\n\n function store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: mint to the zero address\")\n\n }\n\n function abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: token already minted\")\n\n }\n\n function abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 28)\n store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n",
"id": 13,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106102675760003560e01c806370a0823111610144578063ba7d2c76116100b6578063d936547e1161007a578063d936547e14610916578063da3ef23f14610953578063e985e9c51461097c578063edec5f27146109b9578063f2c4ce1e146109e2578063f2fde38b14610a0b57610267565b8063ba7d2c761461082f578063c66828621461085a578063c87b56dd14610885578063d0eb26b0146108c2578063d5abeb01146108eb57610267565b806395d89b411161010857806395d89b41146107545780639c70b5121461077f578063a0712d68146107aa578063a22cb465146107c6578063a475b5dd146107ef578063b88d4fde1461080657610267565b806370a082311461066f578063715018a6146106ac5780637f00c7a6146106c357806385668275146106ec5780638da5cb5b1461072957610267565b80633af32abf116101dd5780634f6ccce7116101a15780634f6ccce71461054b578063518302271461058857806355f804b3146105b35780635c975abb146105dc5780636352211e146106075780636c0360eb1461064457610267565b80633af32abf146104755780633ccfd60b146104b257806342842e0e146104bc578063438b6300146104e557806344a0d68a1461052257610267565b8063095ea7b31161022f578063095ea7b31461036557806313faede61461038e57806318160ddd146103b9578063239c70ae146103e457806323b872dd1461040f5780632f745c591461043857610267565b806301ffc9a71461026c57806302329a29146102a957806306fdde03146102d2578063081812fc146102fd578063081c8c441461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906133c1565b610a34565b6040516102a09190613409565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613450565b610aae565b005b3480156102de57600080fd5b506102e7610b47565b6040516102f49190613516565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f919061356e565b610bd9565b60405161033191906135dc565b60405180910390f35b34801561034657600080fd5b5061034f610c5e565b60405161035c9190613516565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613623565b610cec565b005b34801561039a57600080fd5b506103a3610e04565b6040516103b09190613672565b60405180910390f35b3480156103c557600080fd5b506103ce610e0a565b6040516103db9190613672565b60405180910390f35b3480156103f057600080fd5b506103f9610e17565b6040516104069190613672565b60405180910390f35b34801561041b57600080fd5b506104366004803603810190610431919061368d565b610e1d565b005b34801561044457600080fd5b5061045f600480360381019061045a9190613623565b610e7d565b60405161046c9190613672565b60405180910390f35b34801561048157600080fd5b5061049c600480360381019061049791906136e0565b610f22565b6040516104a99190613409565b60405180910390f35b6104ba610fd1565b005b3480156104c857600080fd5b506104e360048036038101906104de919061368d565b6110c6565b005b3480156104f157600080fd5b5061050c600480360381019061050791906136e0565b6110e6565b60405161051991906137cb565b60405180910390f35b34801561052e57600080fd5b506105496004803603810190610544919061356e565b611194565b005b34801561055757600080fd5b50610572600480360381019061056d919061356e565b61121a565b60405161057f9190613672565b60405180910390f35b34801561059457600080fd5b5061059d61128b565b6040516105aa9190613409565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d59190613922565b61129e565b005b3480156105e857600080fd5b506105f1611334565b6040516105fe9190613409565b60405180910390f35b34801561061357600080fd5b5061062e6004803603810190610629919061356e565b611347565b60405161063b91906135dc565b60405180910390f35b34801561065057600080fd5b506106596113f9565b6040516106669190613516565b60405180910390f35b34801561067b57600080fd5b50610696600480360381019061069191906136e0565b611487565b6040516106a39190613672565b60405180910390f35b3480156106b857600080fd5b506106c161153f565b005b3480156106cf57600080fd5b506106ea60048036038101906106e5919061356e565b6115c7565b005b3480156106f857600080fd5b50610713600480360381019061070e919061356e565b61164d565b60405161072091906135dc565b60405180910390f35b34801561073557600080fd5b5061073e61168c565b60405161074b91906135dc565b60405180910390f35b34801561076057600080fd5b506107696116b6565b6040516107769190613516565b60405180910390f35b34801561078b57600080fd5b50610794611748565b6040516107a19190613409565b60405180910390f35b6107c460048036038101906107bf919061356e565b61175b565b005b3480156107d257600080fd5b506107ed60048036038101906107e8919061396b565b6118ac565b005b3480156107fb57600080fd5b50610804611a2d565b005b34801561081257600080fd5b5061082d60048036038101906108289190613a4c565b611ac6565b005b34801561083b57600080fd5b50610844611b28565b6040516108519190613672565b60405180910390f35b34801561086657600080fd5b5061086f611b2e565b60405161087c9190613516565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a7919061356e565b611bbc565b6040516108b99190613516565b60405180910390f35b3480156108ce57600080fd5b506108e960048036038101906108e4919061356e565b611d15565b005b3480156108f757600080fd5b50610900611d9b565b60405161090d9190613672565b60405180910390f35b34801561092257600080fd5b5061093d600480360381019061093891906136e0565b611da1565b60405161094a9190613409565b60405180910390f35b34801561095f57600080fd5b5061097a60048036038101906109759190613922565b611dc1565b005b34801561098857600080fd5b506109a3600480360381019061099e9190613acf565b611e57565b6040516109b09190613409565b60405180910390f35b3480156109c557600080fd5b506109e060048036038101906109db9190613b6f565b611eeb565b005b3480156109ee57600080fd5b50610a096004803603810190610a049190613922565b611f8b565b005b348015610a1757600080fd5b50610a326004803603810190610a2d91906136e0565b612021565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa75750610aa682612119565b5b9050919050565b610ab66121fb565b73ffffffffffffffffffffffffffffffffffffffff16610ad461168c565b73ffffffffffffffffffffffffffffffffffffffff1614610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2190613c08565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060008054610b5690613c57565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8290613c57565b8015610bcf5780601f10610ba457610100808354040283529160200191610bcf565b820191906000526020600020905b815481529060010190602001808311610bb257829003601f168201915b5050505050905090565b6000610be482612203565b610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a90613cfb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60128054610c6b90613c57565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9790613c57565b8015610ce45780601f10610cb957610100808354040283529160200191610ce4565b820191906000526020600020905b815481529060010190602001808311610cc757829003601f168201915b505050505081565b6000610cf782611347565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f90613d8d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d876121fb565b73ffffffffffffffffffffffffffffffffffffffff161480610db65750610db581610db06121fb565b611e57565b5b610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec90613e1f565b60405180910390fd5b610dff838361226f565b505050565b600d5481565b6000600880549050905090565b600f5481565b610e2e610e286121fb565b82612328565b610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490613eb1565b60405180910390fd5b610e78838383612406565b505050565b6000610e8883611487565b8210610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec090613f43565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601580549050811015610fc6578273ffffffffffffffffffffffffffffffffffffffff1660158281548110610f6257610f61613f63565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610fb3576001915050610fcc565b8080610fbe90613fc1565b915050610f2a565b50600090505b919050565b610fd96121fb565b73ffffffffffffffffffffffffffffffffffffffff16610ff761168c565b73ffffffffffffffffffffffffffffffffffffffff161461104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490613c08565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110739061403b565b60006040518083038185875af1925050503d80600081146110b0576040519150601f19603f3d011682016040523d82523d6000602084013e6110b5565b606091505b50509050806110c357600080fd5b50565b6110e183838360405180602001604052806000815250611ac6565b505050565b606060006110f383611487565b905060008167ffffffffffffffff811115611111576111106137f7565b5b60405190808252806020026020018201604052801561113f5781602001602082028036833780820191505090505b50905060005b82811015611189576111578582610e7d565b82828151811061116a57611169613f63565b5b602002602001018181525050808061118190613fc1565b915050611145565b508092505050919050565b61119c6121fb565b73ffffffffffffffffffffffffffffffffffffffff166111ba61168c565b73ffffffffffffffffffffffffffffffffffffffff1614611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790613c08565b60405180910390fd5b80600d8190555050565b6000611224610e0a565b8210611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c906140c2565b60405180910390fd5b6008828154811061127957611278613f63565b5b90600052602060002001549050919050565b601160019054906101000a900460ff1681565b6112a66121fb565b73ffffffffffffffffffffffffffffffffffffffff166112c461168c565b73ffffffffffffffffffffffffffffffffffffffff161461131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190613c08565b60405180910390fd5b80600b90805190602001906113309291906131f1565b5050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790614154565b60405180910390fd5b80915050919050565b600b805461140690613c57565b80601f016020809104026020016040519081016040528092919081815260200182805461143290613c57565b801561147f5780601f106114545761010080835404028352916020019161147f565b820191906000526020600020905b81548152906001019060200180831161146257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef906141e6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115476121fb565b73ffffffffffffffffffffffffffffffffffffffff1661156561168c565b73ffffffffffffffffffffffffffffffffffffffff16146115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290613c08565b60405180910390fd5b6115c56000612662565b565b6115cf6121fb565b73ffffffffffffffffffffffffffffffffffffffff166115ed61168c565b73ffffffffffffffffffffffffffffffffffffffff1614611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a90613c08565b60405180910390fd5b80600f8190555050565b6015818154811061165d57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116c590613c57565b80601f01602080910402602001604051908101604052809291908181526020018280546116f190613c57565b801561173e5780601f106117135761010080835404028352916020019161173e565b820191906000526020600020905b81548152906001019060200180831161172157829003601f168201915b5050505050905090565b601460009054906101000a900460ff1681565b601160009054906101000a900460ff161561177557600080fd5b600061177f610e0a565b90506000821161178e57600080fd5b600f5482111561179d57600080fd5b600e5482826117ac9190614206565b11156117b757600080fd5b6117bf61168c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118715760011515601460009054906101000a900460ff16151514156118565761181633610f22565b611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c906142a8565b60405180910390fd5b5b81600d5461186491906142c8565b34101561187057600080fd5b5b6000600190505b8281116118a75761189433828461188f9190614206565b612728565b808061189f90613fc1565b915050611878565b505050565b6118b46121fb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611922576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119199061436e565b60405180910390fd5b806005600061192f6121fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119dc6121fb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a219190613409565b60405180910390a35050565b611a356121fb565b73ffffffffffffffffffffffffffffffffffffffff16611a5361168c565b73ffffffffffffffffffffffffffffffffffffffff1614611aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa090613c08565b60405180910390fd5b6001601160016101000a81548160ff021916908315150217905550565b611ad7611ad16121fb565b83612328565b611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90613eb1565b60405180910390fd5b611b2284848484612746565b50505050565b60105481565b600c8054611b3b90613c57565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6790613c57565b8015611bb45780601f10611b8957610100808354040283529160200191611bb4565b820191906000526020600020905b815481529060010190602001808311611b9757829003601f168201915b505050505081565b6060611bc782612203565b611c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfd90614400565b60405180910390fd5b60001515601160019054906101000a900460ff1615151415611cb45760128054611c2f90613c57565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5b90613c57565b8015611ca85780601f10611c7d57610100808354040283529160200191611ca8565b820191906000526020600020905b815481529060010190602001808311611c8b57829003601f168201915b50505050509050611d10565b6000611cbe6127a2565b90506000815111611cde5760405180602001604052806000815250611d0c565b80611ce884612834565b600c604051602001611cfc939291906144f0565b6040516020818303038152906040525b9150505b919050565b611d1d6121fb565b73ffffffffffffffffffffffffffffffffffffffff16611d3b61168c565b73ffffffffffffffffffffffffffffffffffffffff1614611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890613c08565b60405180910390fd5b8060108190555050565b600e5481565b60136020528060005260406000206000915054906101000a900460ff1681565b611dc96121fb565b73ffffffffffffffffffffffffffffffffffffffff16611de761168c565b73ffffffffffffffffffffffffffffffffffffffff1614611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3490613c08565b60405180910390fd5b80600c9080519060200190611e539291906131f1565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ef36121fb565b73ffffffffffffffffffffffffffffffffffffffff16611f1161168c565b73ffffffffffffffffffffffffffffffffffffffff1614611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e90613c08565b60405180910390fd5b60156000611f759190613277565b818160159190611f86929190613298565b505050565b611f936121fb565b73ffffffffffffffffffffffffffffffffffffffff16611fb161168c565b73ffffffffffffffffffffffffffffffffffffffff1614612007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffe90613c08565b60405180910390fd5b806012908051906020019061201d9291906131f1565b5050565b6120296121fb565b73ffffffffffffffffffffffffffffffffffffffff1661204761168c565b73ffffffffffffffffffffffffffffffffffffffff161461209d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209490613c08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561210d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210490614593565b60405180910390fd5b61211681612662565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121f457506121f382612995565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122e283611347565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061233382612203565b612372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236990614625565b60405180910390fd5b600061237d83611347565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123ec57508373ffffffffffffffffffffffffffffffffffffffff166123d484610bd9565b73ffffffffffffffffffffffffffffffffffffffff16145b806123fd57506123fc8185611e57565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661242682611347565b73ffffffffffffffffffffffffffffffffffffffff161461247c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612473906146b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e390614749565b60405180910390fd5b6124f78383836129ff565b61250260008261226f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125529190614769565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125a99190614206565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612742828260405180602001604052806000815250612b13565b5050565b612751848484612406565b61275d84848484612b6e565b61279c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127939061480f565b60405180910390fd5b50505050565b6060600b80546127b190613c57565b80601f01602080910402602001604051908101604052809291908181526020018280546127dd90613c57565b801561282a5780601f106127ff5761010080835404028352916020019161282a565b820191906000526020600020905b81548152906001019060200180831161280d57829003601f168201915b5050505050905090565b6060600082141561287c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612990565b600082905060005b600082146128ae57808061289790613fc1565b915050600a826128a7919061485e565b9150612884565b60008167ffffffffffffffff8111156128ca576128c96137f7565b5b6040519080825280601f01601f1916602001820160405280156128fc5781602001600182028036833780820191505090505b5090505b60008514612989576001826129159190614769565b9150600a85612924919061488f565b60306129309190614206565b60f81b81838151811061294657612945613f63565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612982919061485e565b9450612900565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a0a838383612d05565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a4d57612a4881612d0a565b612a8c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a8b57612a8a8382612d53565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612acf57612aca81612ec0565b612b0e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b0d57612b0c8282612f91565b5b5b505050565b612b1d8383613010565b612b2a6000848484612b6e565b612b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b609061480f565b60405180910390fd5b505050565b6000612b8f8473ffffffffffffffffffffffffffffffffffffffff166131de565b15612cf8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bb86121fb565b8786866040518563ffffffff1660e01b8152600401612bda9493929190614915565b602060405180830381600087803b158015612bf457600080fd5b505af1925050508015612c2557506040513d601f19601f82011682018060405250810190612c229190614976565b60015b612ca8573d8060008114612c55576040519150601f19603f3d011682016040523d82523d6000602084013e612c5a565b606091505b50600081511415612ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c979061480f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612cfd565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d6084611487565b612d6a9190614769565b9050600060076000848152602001908152602001600020549050818114612e4f576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ed49190614769565b9050600060096000848152602001908152602001600020549050600060088381548110612f0457612f03613f63565b5b906000526020600020015490508060088381548110612f2657612f25613f63565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f7557612f746149a3565b5b6001900381819060005260206000200160009055905550505050565b6000612f9c83611487565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307790614a1e565b60405180910390fd5b61308981612203565b156130c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c090614a8a565b60405180910390fd5b6130d5600083836129ff565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131259190614206565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131fd90613c57565b90600052602060002090601f01602090048101928261321f5760008555613266565b82601f1061323857805160ff1916838001178555613266565b82800160010185558215613266579182015b8281111561326557825182559160200191906001019061324a565b5b5090506132739190613338565b5090565b50805460008255906000526020600020908101906132959190613338565b50565b828054828255906000526020600020908101928215613327579160200282015b8281111561332657823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906132b8565b5b5090506133349190613338565b5090565b5b80821115613351576000816000905550600101613339565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61339e81613369565b81146133a957600080fd5b50565b6000813590506133bb81613395565b92915050565b6000602082840312156133d7576133d661335f565b5b60006133e5848285016133ac565b91505092915050565b60008115159050919050565b613403816133ee565b82525050565b600060208201905061341e60008301846133fa565b92915050565b61342d816133ee565b811461343857600080fd5b50565b60008135905061344a81613424565b92915050565b6000602082840312156134665761346561335f565b5b60006134748482850161343b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134b757808201518184015260208101905061349c565b838111156134c6576000848401525b50505050565b6000601f19601f8301169050919050565b60006134e88261347d565b6134f28185613488565b9350613502818560208601613499565b61350b816134cc565b840191505092915050565b6000602082019050818103600083015261353081846134dd565b905092915050565b6000819050919050565b61354b81613538565b811461355657600080fd5b50565b60008135905061356881613542565b92915050565b6000602082840312156135845761358361335f565b5b600061359284828501613559565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135c68261359b565b9050919050565b6135d6816135bb565b82525050565b60006020820190506135f160008301846135cd565b92915050565b613600816135bb565b811461360b57600080fd5b50565b60008135905061361d816135f7565b92915050565b6000806040838503121561363a5761363961335f565b5b60006136488582860161360e565b925050602061365985828601613559565b9150509250929050565b61366c81613538565b82525050565b60006020820190506136876000830184613663565b92915050565b6000806000606084860312156136a6576136a561335f565b5b60006136b48682870161360e565b93505060206136c58682870161360e565b92505060406136d686828701613559565b9150509250925092565b6000602082840312156136f6576136f561335f565b5b60006137048482850161360e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61374281613538565b82525050565b60006137548383613739565b60208301905092915050565b6000602082019050919050565b60006137788261370d565b6137828185613718565b935061378d83613729565b8060005b838110156137be5781516137a58882613748565b97506137b083613760565b925050600181019050613791565b5085935050505092915050565b600060208201905081810360008301526137e5818461376d565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61382f826134cc565b810181811067ffffffffffffffff8211171561384e5761384d6137f7565b5b80604052505050565b6000613861613355565b905061386d8282613826565b919050565b600067ffffffffffffffff82111561388d5761388c6137f7565b5b613896826134cc565b9050602081019050919050565b82818337600083830152505050565b60006138c56138c084613872565b613857565b9050828152602081018484840111156138e1576138e06137f2565b5b6138ec8482856138a3565b509392505050565b600082601f830112613909576139086137ed565b5b81356139198482602086016138b2565b91505092915050565b6000602082840312156139385761393761335f565b5b600082013567ffffffffffffffff81111561395657613955613364565b5b613962848285016138f4565b91505092915050565b600080604083850312156139825761398161335f565b5b60006139908582860161360e565b92505060206139a18582860161343b565b9150509250929050565b600067ffffffffffffffff8211156139c6576139c56137f7565b5b6139cf826134cc565b9050602081019050919050565b60006139ef6139ea846139ab565b613857565b905082815260208101848484011115613a0b57613a0a6137f2565b5b613a168482856138a3565b509392505050565b600082601f830112613a3357613a326137ed565b5b8135613a438482602086016139dc565b91505092915050565b60008060008060808587031215613a6657613a6561335f565b5b6000613a748782880161360e565b9450506020613a858782880161360e565b9350506040613a9687828801613559565b925050606085013567ffffffffffffffff811115613ab757613ab6613364565b5b613ac387828801613a1e565b91505092959194509250565b60008060408385031215613ae657613ae561335f565b5b6000613af48582860161360e565b9250506020613b058582860161360e565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613b2f57613b2e6137ed565b5b8235905067ffffffffffffffff811115613b4c57613b4b613b0f565b5b602083019150836020820283011115613b6857613b67613b14565b5b9250929050565b60008060208385031215613b8657613b8561335f565b5b600083013567ffffffffffffffff811115613ba457613ba3613364565b5b613bb085828601613b19565b92509250509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bf2602083613488565b9150613bfd82613bbc565b602082019050919050565b60006020820190508181036000830152613c2181613be5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c6f57607f821691505b60208210811415613c8357613c82613c28565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613ce5602c83613488565b9150613cf082613c89565b604082019050919050565b60006020820190508181036000830152613d1481613cd8565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d77602183613488565b9150613d8282613d1b565b604082019050919050565b60006020820190508181036000830152613da681613d6a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613e09603883613488565b9150613e1482613dad565b604082019050919050565b60006020820190508181036000830152613e3881613dfc565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613e9b603183613488565b9150613ea682613e3f565b604082019050919050565b60006020820190508181036000830152613eca81613e8e565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613f2d602b83613488565b9150613f3882613ed1565b604082019050919050565b60006020820190508181036000830152613f5c81613f20565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fcc82613538565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fff57613ffe613f92565b5b600182019050919050565b600081905092915050565b50565b600061402560008361400a565b915061403082614015565b600082019050919050565b600061404682614018565b9150819050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006140ac602c83613488565b91506140b782614050565b604082019050919050565b600060208201905081810360008301526140db8161409f565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061413e602983613488565b9150614149826140e2565b604082019050919050565b6000602082019050818103600083015261416d81614131565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006141d0602a83613488565b91506141db82614174565b604082019050919050565b600060208201905081810360008301526141ff816141c3565b9050919050565b600061421182613538565b915061421c83613538565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561425157614250613f92565b5b828201905092915050565b7f55736572206973206e6f742077686974656c6973746564210000000000000000600082015250565b6000614292601883613488565b915061429d8261425c565b602082019050919050565b600060208201905081810360008301526142c181614285565b9050919050565b60006142d382613538565b91506142de83613538565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561431757614316613f92565b5b828202905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614358601983613488565b915061436382614322565b602082019050919050565b600060208201905081810360008301526143878161434b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006143ea602f83613488565b91506143f58261438e565b604082019050919050565b60006020820190508181036000830152614419816143dd565b9050919050565b600081905092915050565b60006144368261347d565b6144408185614420565b9350614450818560208601613499565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461447e81613c57565b6144888186614420565b945060018216600081146144a357600181146144b4576144e7565b60ff198316865281860193506144e7565b6144bd8561445c565b60005b838110156144df578154818901526001820191506020810190506144c0565b838801955050505b50505092915050565b60006144fc828661442b565b9150614508828561442b565b91506145148284614471565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061457d602683613488565b915061458882614521565b604082019050919050565b600060208201905081810360008301526145ac81614570565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061460f602c83613488565b915061461a826145b3565b604082019050919050565b6000602082019050818103600083015261463e81614602565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006146a1602983613488565b91506146ac82614645565b604082019050919050565b600060208201905081810360008301526146d081614694565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614733602483613488565b915061473e826146d7565b604082019050919050565b6000602082019050818103600083015261476281614726565b9050919050565b600061477482613538565b915061477f83613538565b92508282101561479257614791613f92565b5b8282039050929
View raw

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

View raw

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

View raw

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

View raw

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

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