Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save skyfly200/299d7f3a4ccb5e28da461865c9357026 to your computer and use it in GitHub Desktop.
Save skyfly200/299d7f3a4ccb5e28da461865c9357026 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.12+commit.f00d7308.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: 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 {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: 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);
_afterTokenTransfer(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);
_afterTokenTransfer(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 from incorrect owner");
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);
_afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev 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 {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
/**
* @dev ERC721 token with storage based token URI management.
*/
abstract contract ERC721URIStorage is ERC721 {
using Strings for uint256;
// Optional mapping for token URIs
mapping(uint256 => string) private _tokenURIs;
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");
string memory _tokenURI = _tokenURIs[tokenId];
string memory base = _baseURI();
// If there is no base URI, return the token URI.
if (bytes(base).length == 0) {
return _tokenURI;
}
// If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
if (bytes(_tokenURI).length > 0) {
return string(abi.encodePacked(base, _tokenURI));
}
return super.tokenURI(tokenId);
}
/**
* @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
_tokenURIs[tokenId] = _tokenURI;
}
/**
* @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 override {
super._burn(tokenId);
if (bytes(_tokenURIs[tokenId]).length != 0) {
delete _tokenURIs[tokenId];
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, 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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @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
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 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
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
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
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
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
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
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
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
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);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/AccessControl.sol)
pragma solidity ^0.8.0;
import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms. This is a lightweight version that doesn't allow enumerating role
* members except through off-chain means by accessing the contract event logs. Some
* applications may benefit from on-chain enumerability, for those cases see
* {AccessControlEnumerable}.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```
* function foo() public {
* require(hasRole(MY_ROLE, msg.sender));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
* grant and revoke this role. Extra precautions should be taken to secure
* accounts that have been granted it.
*/
abstract contract AccessControl is Context, IAccessControl, ERC165 {
struct RoleData {
mapping(address => bool) members;
bytes32 adminRole;
}
mapping(bytes32 => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Modifier that checks that an account has a specific role. Reverts
* with a standardized message including the required role.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
*
* _Available since v4.1._
*/
modifier onlyRole(bytes32 role) {
_checkRole(role, _msgSender());
_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view override returns (bool) {
return _roles[role].members[account];
}
/**
* @dev Revert with a standard message if `account` is missing `role`.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
*/
function _checkRole(bytes32 role, address account) internal view {
if (!hasRole(role, account)) {
revert(
string(
abi.encodePacked(
"AccessControl: account ",
Strings.toHexString(uint160(account), 20),
" is missing role ",
Strings.toHexString(uint256(role), 32)
)
)
);
}
}
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
_revokeRole(role, account);
}
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been revoked `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) public virtual override {
require(account == _msgSender(), "AccessControl: can only renounce roles for self");
_revokeRole(role, account);
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event. Note that unlike {grantRole}, this function doesn't perform any
* checks on the calling account.
*
* [WARNING]
* ====
* This function should only be called from the constructor when setting
* up the initial roles for the system.
*
* Using this function in any other way is effectively circumventing the admin
* system imposed by {AccessControl}.
* ====
*
* NOTE: This function is deprecated in favor of {_grantRole}.
*/
function _setupRole(bytes32 role, address account) internal virtual {
_grantRole(role, account);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*
* Emits a {RoleAdminChanged} event.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
bytes32 previousAdminRole = getRoleAdmin(role);
_roles[role].adminRole = adminRole;
emit RoleAdminChanged(role, previousAdminRole, adminRole);
}
/**
* @dev Grants `role` to `account`.
*
* Internal function without access restriction.
*/
function _grantRole(bytes32 role, address account) internal virtual {
if (!hasRole(role, account)) {
_roles[role].members[account] = true;
emit RoleGranted(role, account, _msgSender());
}
}
/**
* @dev Revokes `role` from `account`.
*
* Internal function without access restriction.
*/
function _revokeRole(bytes32 role, address account) internal virtual {
if (hasRole(role, account)) {
_roles[role].members[account] = false;
emit RoleRevoked(role, account, _msgSender());
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)
pragma solidity ^0.8.0;
/**
* @dev External interface of AccessControl declared to support ERC165 detection.
*/
interface IAccessControl {
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*
* _Available since v3.1._
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {AccessControl-_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) external view returns (bool);
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {AccessControl-_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) external view returns (bytes32);
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) external;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: 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 {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: 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 Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev 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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "../../../utils/Context.sol";
/**
* @title ERC721 Burnable Token
* @dev ERC721 Token that can be irreversibly burned (destroyed).
*/
abstract contract ERC721Burnable is Context, ERC721 {
/**
* @dev Burns `tokenId`. See {ERC721-_burn}.
*
* Requirements:
*
* - The caller must own `tokenId` or be an approved operator.
*/
function burn(uint256 tokenId) public virtual {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
_burn(tokenId);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)
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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)
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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, 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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
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
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
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
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
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
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
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
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
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);
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library TestsAccounts {
function getAccount(uint index) pure public returns (address) {
address[15] memory accounts;
accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4;
accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2;
accounts[2] = 0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db;
accounts[3] = 0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB;
accounts[4] = 0x617F2E2fD72FD9D5503197092aC168c91465E7f2;
accounts[5] = 0x17F6AD8Ef982297579C203069C1DbfFE4348c372;
accounts[6] = 0x5c6B0f7Bf3E7ce046039Bd8FABdfD3f9F5021678;
accounts[7] = 0x03C6FcED478cBbC9a4FAB34eF9f40767739D1Ff7;
accounts[8] = 0x1aE0EA34a72D944a8C7603FfB3eC30a6669E454C;
accounts[9] = 0x0A098Eda01Ce92ff4A4CCb7A4fFFb5A43EBC70DC;
accounts[10] = 0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c;
accounts[11] = 0x14723A09ACff6D2A60DcdF7aA4AFf308FDDC160C;
accounts[12] = 0x4B0897b0513fdC7C541B6d9D7E929C4e5364D2dB;
accounts[13] = 0x583031D1113aD414F02576BD6afaBfb302140225;
accounts[14] = 0xdD870fA1b7C4700F2BD7f44238821C26f7392148;
return accounts[index];
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library Assert {
event AssertionEvent(
bool passed,
string message,
string methodName
);
event AssertionEventUint(
bool passed,
string message,
string methodName,
uint256 returned,
uint256 expected
);
event AssertionEventInt(
bool passed,
string message,
string methodName,
int256 returned,
int256 expected
);
event AssertionEventBool(
bool passed,
string message,
string methodName,
bool returned,
bool expected
);
event AssertionEventAddress(
bool passed,
string message,
string methodName,
address returned,
address expected
);
event AssertionEventBytes32(
bool passed,
string message,
string methodName,
bytes32 returned,
bytes32 expected
);
event AssertionEventString(
bool passed,
string message,
string methodName,
string returned,
string expected
);
event AssertionEventUintInt(
bool passed,
string message,
string methodName,
uint256 returned,
int256 expected
);
event AssertionEventIntUint(
bool passed,
string message,
string methodName,
int256 returned,
uint256 expected
);
function ok(bool a, string memory message) public returns (bool result) {
result = a;
emit AssertionEvent(result, message, "ok");
}
function equal(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventUint(result, message, "equal", a, b);
}
function equal(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventInt(result, message, "equal", a, b);
}
function equal(bool a, bool b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBool(result, message, "equal", a, b);
}
// TODO: only for certain versions of solc
//function equal(fixed a, fixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function equal(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
function equal(address a, address b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventAddress(result, message, "equal", a, b);
}
function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBytes32(result, message, "equal", a, b);
}
function equal(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "equal", a, b);
}
function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventUint(result, message, "notEqual", a, b);
}
function notEqual(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventInt(result, message, "notEqual", a, b);
}
function notEqual(bool a, bool b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBool(result, message, "notEqual", a, b);
}
// TODO: only for certain versions of solc
//function notEqual(fixed a, fixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function notEqual(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
function notEqual(address a, address b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventAddress(result, message, "notEqual", a, b);
}
function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBytes32(result, message, "notEqual", a, b);
}
function notEqual(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "notEqual", a, b);
}
/*----------------- Greater than --------------------*/
function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventUint(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventInt(result, message, "greaterThan", a, b);
}
// TODO: safely compare between uint and int
function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative uint "a" always greater
result = true;
} else {
result = (a > uint(b));
}
emit AssertionEventUintInt(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative uint "b" always greater
result = false;
} else {
result = (uint(a) > b);
}
emit AssertionEventIntUint(result, message, "greaterThan", a, b);
}
/*----------------- Lesser than --------------------*/
function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventUint(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventInt(result, message, "lesserThan", a, b);
}
// TODO: safely compare between uint and int
function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative int "b" always lesser
result = false;
} else {
result = (a < uint(b));
}
emit AssertionEventUintInt(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative int "a" always lesser
result = true;
} else {
result = (uint(a) < b);
}
emit AssertionEventIntUint(result, message, "lesserThan", a, b);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts@4.4.2/access/AccessControl.sol";
import "@openzeppelin/contracts@4.4.2/utils/Counters.sol";
//import "./libraries/Random.sol";
interface RandomizerInt {
function returnValue() external view returns (bytes32);
}
/// @custom:security-contact skyfly200@gmail.com
contract FineCore is AccessControl {
using Counters for Counters.Counter;
//using Random for bytes32[];
RandomizerInt entropySource;
Counters.Counter private _projectCounter;
mapping(uint => address) public projects;
mapping(address => bool) public allowlist;
constructor(address entropySourceAddress) {
_grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
entropySource = RandomizerInt(entropySourceAddress);
}
// Project Mgmt Functions
/**
* @dev add a project
*/
function addProject(address project) external onlyRole(DEFAULT_ADMIN_ROLE) {
uint id = _projectCounter.current();
_projectCounter.increment();
projects[id] = project;
allowlist[project] = true;
}
/**
* @dev rollback last project add
*/
function rollbackLastProject() external onlyRole(DEFAULT_ADMIN_ROLE) {
_projectCounter.decrement();
uint id = _projectCounter.current();
projects[id] = project;
allowlist[project] = false;
}
/**
* @dev remove a project from the allowlist
*/
function removeProject(uint id) external onlyRole(DEFAULT_ADMIN_ROLE) {
address project = projects[id];
allowlist[project] = false;
}
/**
* @dev remove a project from the allowlist
*/
function removeProject(address project) external onlyRole(DEFAULT_ADMIN_ROLE) {
allowlist[project] = false;
}
// Randomizer
/**
* @dev set Randomizer
*/
function setRandom(address rand) external onlyRole(DEFAULT_ADMIN_ROLE) {
entropySource = RandomizerInt(rand);
}
/**
* @dev test Randomizer
*/
function testRandom() external view onlyRole(DEFAULT_ADMIN_ROLE) returns (bytes32) {
return entropySource.returnValue();
}
/**
* @dev Call the Randomizer and get some randomness
*/
function getRandomness(uint256 id, uint256 seed)
external view returns (uint256 randomnesss)
{
require(true); // TODO: check caller address is true in NFT contract allowlist
uint256 randomness = uint256(keccak256(abi.encodePacked(
entropySource.returnValue(),
id,
seed
)));
return randomness;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts@4.4.2/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts@4.4.2/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts@4.4.2/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts@4.4.2/access/AccessControl.sol";
import "@openzeppelin/contracts@4.4.2/utils/Counters.sol";
interface FineCore {
function getRandomness(uint256 id, uint256 seed) external view returns (uint256 randomnesss);
}
/// @custom:security-contact skyfly200@gmail.com
contract FineNFT is ERC721, ERC721Enumerable, ERC721Burnable, AccessControl {
using Counters for Counters.Counter;
bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
FineCore coreContract;
Counters.Counter private _tokenIdCounter;
mapping(uint => uint) public hashes;
string baseURI = "https://api.fine.digital/metadata/";
constructor(address coreAddress) ERC721("FINE Digital", "FINE") {
_grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
_grantRole(MINTER_ROLE, msg.sender);
coreContract = FineCore(coreAddress);
}
function _baseURI() internal view override returns (string memory) {
return baseURI;
}
/**
* @dev Update the base URI field
* @param _uri base for all tokens
* @dev Only the admin can call this
*/
function setBaseURI(string calldata _uri) onlyRole(DEFAULT_ADMIN_ROLE) external {
baseURI = _uri;
}
function safeMint(address to) public onlyRole(MINTER_ROLE) {
uint256 tokenId = _tokenIdCounter.current();
_tokenIdCounter.increment();
_safeMint(to, tokenId);
uint256 seed = 0; // TODO: use better seed
hashes[tokenId] = coreContract.getRandomness(tokenId, seed);
}
// The following functions are overrides required by Solidity.
function _beforeTokenTransfer(address from, address to, uint256 tokenId)
internal
override(ERC721, ERC721Enumerable)
{
super._beforeTokenTransfer(from, to, tokenId);
}
function supportsInterface(bytes4 interfaceId)
public
view
override(ERC721, ERC721Enumerable, AccessControl)
returns (bool)
{
return super.supportsInterface(interfaceId);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts@4.4.2/access/AccessControl.sol";
/// @custom:security-contact skyfly200@gmail.com
contract FineShop is AccessControl {
constructor(address entropySourceAddress) {
_grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
}
// Shop Functions
/**
* @dev handle the payment for tokens
*/
function handlePayment(uint256 referalID, address recipient) internal {
// check for suficient payment
require(msg.value >= price, "insuficient payment");
// give the buyer change
if (msg.value > price) msg.sender.transfer(msg.value.sub(price));
// lookup the referer by the referal token id owner
address payable referer = _exists(referalID) ? payable(ownerOf(referalID)) : tx.origin;
// give a higher percent for refering a new user
uint256 percent = (balanceOf(tx.origin) == 0) ? referalNewPercent : referalPercent;
// referer can't be sender or reciever - no self referals
uint256 referal = (referer != msg.sender && referer != tx.origin && referer != recipient) ?
price.mul(percent).div(100) : 0;
// pay referal percentage
if (referal > 0) referer.transfer(referal);
// split remaining payment
_splitFunds(price.sub(referal));
}
/**
* @dev purchase tokens
*/
function purchase(uint projectID) external payable returns (uint256) {
return 0;
}
}
// approval
// enteries?
// drawing and transfer
// query result?
import "@openzeppelin/contracts@4.4.2/access/AccessControl.sol";
import "@openzeppelin/contracts@4.4.2/utils/Counters.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
//import "./libraries/Random.sol";
interface NFTContract {
function safeTransferFrom() external;
}
contract Giveaway is AccessControl {
using Counters for Counters.Counter;
using EnumerableSet for EnumerableSet.AddressSet;
//using Random for bytes32[];
bytes32 public constant CURATOR_ROLE = keccak256("CURATOR_ROLE");
Counters.Counter private _giveawayIdCounter;
mapping(uint => uint) public giveaways; // TODO: use struct w token contract address and ID(s)
// nested enumerable mapping of entries in each giveaway
EnumerableSet.AddressSet private mySet;
constructor(address entropySourceAddress) {
_grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
_grantRole(CURATOR_ROLE, msg.sender);
}
function create() external onlyRole(CURATOR_ROLE) returns (uint) {
uint256 giveawayId = _tokenIdCounter.current();
NFTContract();
_tokenIdCounter.increment();
return giveawayId;
}
function enter() external returns (string memory) {
return baseURI;
}
function complete() external returns (string memory) {
uint256 seed = 0; // TODO: use better seed
hashes[tokenId] = getRandomness(tokenId, seed);
address payable winner;
safeTransferFrom();
return winner;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract RandomStub {
// stub the core RNG service function
function returnValue() external view returns (bytes32){
return keccak256(abi.encodePacked(
block.number,
block.coinbase,
block.timestamp,
blockhash(block.number - 1),
tx.origin
));
}
}
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.)

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": {
"@_2476": {
"entryPoint": null,
"id": 2476,
"parameterSlots": 1,
"returnSlots": 0
},
"@_444": {
"entryPoint": null,
"id": 444,
"parameterSlots": 2,
"returnSlots": 0
},
"@_grantRole_276": {
"entryPoint": 408,
"id": 276,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_2081": {
"entryPoint": 757,
"id": 2081,
"parameterSlots": 0,
"returnSlots": 1
},
"@hasRole_81": {
"entryPoint": 650,
"id": 81,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address_fromMemory": {
"entryPoint": 941,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address_fromMemory": {
"entryPoint": 964,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 1014,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1034,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1066,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 1120,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1167,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 1172,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1711:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "70:80:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "80:22:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "95:6:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "89:5:16"
},
"nodeType": "YulFunctionCall",
"src": "89:13:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "80:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "138:5:16"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "111:26:16"
},
"nodeType": "YulFunctionCall",
"src": "111:33:16"
},
"nodeType": "YulExpressionStatement",
"src": "111:33:16"
}
]
},
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "48:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "56:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "64:5:16",
"type": ""
}
],
"src": "7:143:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "233:274:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "279:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "281:77:16"
},
"nodeType": "YulFunctionCall",
"src": "281:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "281:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "254:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "263:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "250:3:16"
},
"nodeType": "YulFunctionCall",
"src": "250:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "275:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "246:3:16"
},
"nodeType": "YulFunctionCall",
"src": "246:32:16"
},
"nodeType": "YulIf",
"src": "243:119:16"
},
{
"nodeType": "YulBlock",
"src": "372:128:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "387:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "401:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "391:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "416:74:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "462:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "473:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "458:3:16"
},
"nodeType": "YulFunctionCall",
"src": "458:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "482:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "426:31:16"
},
"nodeType": "YulFunctionCall",
"src": "426:64:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "416:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "203:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "214:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "226:6:16",
"type": ""
}
],
"src": "156:351:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "553:35:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "563:19:16",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "579:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "573:5:16"
},
"nodeType": "YulFunctionCall",
"src": "573:9:16"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "563:6:16"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "546:6:16",
"type": ""
}
],
"src": "513:75:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "639:51:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "649:35:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "678:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "660:17:16"
},
"nodeType": "YulFunctionCall",
"src": "660:24:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "649:7:16"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "621:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "631:7:16",
"type": ""
}
],
"src": "594:96:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "741:81:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "751:65:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "766:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "773:42:16",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "762:3:16"
},
"nodeType": "YulFunctionCall",
"src": "762:54:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "751:7:16"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "723:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "733:7:16",
"type": ""
}
],
"src": "696:126:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "879:269:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "889:22:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "903:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "909:1:16",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "899:3:16"
},
"nodeType": "YulFunctionCall",
"src": "899:12:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "889:6:16"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "920:38:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "950:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "956:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "946:3:16"
},
"nodeType": "YulFunctionCall",
"src": "946:12:16"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "924:18:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "997:51:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1011:27:16",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1025:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1033:4:16",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1021:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1021:17:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1011:6:16"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "977:18:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "970:6:16"
},
"nodeType": "YulFunctionCall",
"src": "970:26:16"
},
"nodeType": "YulIf",
"src": "967:81:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1100:42:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "1114:16:16"
},
"nodeType": "YulFunctionCall",
"src": "1114:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "1114:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1064:18:16"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1087:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1095:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1084:2:16"
},
"nodeType": "YulFunctionCall",
"src": "1084:14:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1061:2:16"
},
"nodeType": "YulFunctionCall",
"src": "1061:38:16"
},
"nodeType": "YulIf",
"src": "1058:84:16"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "863:4:16",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "872:6:16",
"type": ""
}
],
"src": "828:320:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1182:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1199:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1202:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1192:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1192:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "1192:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1296:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1299:4:16",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1289:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1289:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "1289:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1320:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1323:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1313:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1313:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "1313:15:16"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "1154:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1429:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1446:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1449:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1439:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1439:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "1439:12:16"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "1340:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1552:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1569:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1572:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1562:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1562:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "1562:12:16"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "1463:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1629:79:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1686:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1695:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1698:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1688:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1688:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "1688:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1652:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1677:5:16"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1659:17:16"
},
"nodeType": "YulFunctionCall",
"src": "1659:24:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1649:2:16"
},
"nodeType": "YulFunctionCall",
"src": "1649:35:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1642:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1642:43:16"
},
"nodeType": "YulIf",
"src": "1639:63:16"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1622:5:16",
"type": ""
}
],
"src": "1586:122:16"
}
]
},
"contents": "{\n\n function abi_decode_t_address_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_address_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_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\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 panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 16,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040526040518060600160405280602281526020016200472860229139600d908051906020019062000035929190620002fd565b503480156200004357600080fd5b506040516200474a3803806200474a8339818101604052810190620000699190620003c4565b6040518060400160405280600c81526020017f46494e45204469676974616c00000000000000000000000000000000000000008152506040518060400160405280600481526020017f46494e45000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ed929190620002fd565b50806001908051906020019062000106929190620002fd565b5050506200011e6000801b336200019860201b60201c565b620001507f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336200019860201b60201c565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620004ae565b620001aa82826200028a60201b60201c565b62000286576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200022b620002f560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b8280546200030b906200042a565b90600052602060002090601f0160209004810192826200032f57600085556200037b565b82601f106200034a57805160ff19168380011785556200037b565b828001600101855582156200037b579182015b828111156200037a5782518255916020019190600101906200035d565b5b5090506200038a91906200038e565b5090565b5b80821115620003a95760008160009055506001016200038f565b5090565b600081519050620003be8162000494565b92915050565b600060208284031215620003dd57620003dc6200048f565b5b6000620003ed84828501620003ad565b91505092915050565b600062000403826200040a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200044357607f821691505b602082108114156200045a576200045962000460565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6200049f81620003f6565b8114620004ab57600080fd5b50565b61426a80620004be6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063501895ae11610104578063a22cb465116100a2578063d539139311610071578063d539139314610560578063d547741f1461057e578063e985e9c51461059a578063fbddd14b146105ca576101cf565b8063a22cb465146104dc578063b88d4fde146104f8578063c87b56dd14610514578063ca9c0bad14610544576101cf565b806370a08231116100de57806370a082311461044057806391d148541461047057806395d89b41146104a0578063a217fddf146104be576101cf565b8063501895ae146103c457806355f804b3146103f45780636352211e14610410576101cf565b80632f2ff15d1161017157806340d097c31161014b57806340d097c31461034057806342842e0e1461035c57806342966c68146103785780634f6ccce714610394576101cf565b80632f2ff15d146102d85780632f745c59146102f457806336568abe14610324576101cf565b8063095ea7b3116101ad578063095ea7b31461025257806318160ddd1461026e57806323b872dd1461028c578063248a9ca3146102a8576101cf565b806301ffc9a7146101d457806306fdde0314610204578063081812fc14610222575b600080fd5b6101ee60048036038101906101e99190612ec3565b6105e8565b6040516101fb9190613485565b60405180910390f35b61020c6105fa565b60405161021991906134bb565b60405180910390f35b61023c60048036038101906102379190612f6a565b61068c565b604051610249919061341e565b60405180910390f35b61026c60048036038101906102679190612de9565b610711565b005b610276610829565b604051610283919061373d565b60405180910390f35b6102a660048036038101906102a19190612cd3565b610836565b005b6102c260048036038101906102bd9190612e29565b610896565b6040516102cf91906134a0565b60405180910390f35b6102f260048036038101906102ed9190612e83565b6108b6565b005b61030e60048036038101906103099190612de9565b6108df565b60405161031b919061373d565b60405180910390f35b61033e60048036038101906103399190612e83565b610984565b005b61035a60048036038101906103559190612c66565b610a07565b005b61037660048036038101906103719190612cd3565b610a84565b005b610392600480360381019061038d9190612f6a565b610aa4565b005b6103ae60048036038101906103a99190612f6a565b610b00565b6040516103bb919061373d565b60405180910390f35b6103de60048036038101906103d99190612f6a565b610b71565b6040516103eb919061373d565b60405180910390f35b61040e60048036038101906104099190612f1d565b610b89565b005b61042a60048036038101906104259190612f6a565b610bb5565b604051610437919061341e565b60405180910390f35b61045a60048036038101906104559190612c66565b610c67565b604051610467919061373d565b60405180910390f35b61048a60048036038101906104859190612e83565b610d1f565b6040516104979190613485565b60405180910390f35b6104a8610d8a565b6040516104b591906134bb565b60405180910390f35b6104c6610e1c565b6040516104d391906134a0565b60405180910390f35b6104f660048036038101906104f19190612da9565b610e23565b005b610512600480360381019061050d9190612d26565b610e39565b005b61052e60048036038101906105299190612f6a565b610e9b565b60405161053b91906134bb565b60405180910390f35b61055e60048036038101906105599190612c66565b610f42565b005b610568610f9c565b60405161057591906134a0565b60405180910390f35b61059860048036038101906105939190612e83565b610fc0565b005b6105b460048036038101906105af9190612c93565b610fe9565b6040516105c19190613485565b60405180910390f35b6105d261107d565b6040516105df91906134a0565b60405180910390f35b60006105f38261113a565b9050919050565b606060008054610609906139f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610635906139f0565b80156106825780601f1061065757610100808354040283529160200191610682565b820191906000526020600020905b81548152906001019060200180831161066557829003601f168201915b5050505050905090565b6000610697826111b4565b6106d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cd9061363d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061071c82610bb5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561078d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107849061369d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107ac611220565b73ffffffffffffffffffffffffffffffffffffffff1614806107db57506107da816107d5611220565b610fe9565b5b61081a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610811906135bd565b60405180910390fd5b6108248383611228565b505050565b6000600880549050905090565b610847610841611220565b826112e1565b610886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087d906136bd565b60405180910390fd5b6108918383836113bf565b505050565b6000600a6000838152602001908152602001600020600101549050919050565b6108bf82610896565b6108d0816108cb611220565b61161b565b6108da83836116b8565b505050565b60006108ea83610c67565b821061092b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610922906134fd565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61098c611220565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f09061371d565b60405180910390fd5b610a038282611799565b5050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610a3981610a34611220565b61161b565b6000610a45600b61187b565b9050610a51600b611889565b610a5b838261189f565b6000610a6782826118bd565b600c60008481526020019081526020016000208190555050505050565b610a9f83838360405180602001604052806000815250610e39565b505050565b610ab5610aaf611220565b826112e1565b610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb906136fd565b60405180910390fd5b610afd81611999565b50565b6000610b0a610829565b8210610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b42906136dd565b60405180910390fd5b60088281548110610b5f57610b5e613b9d565b5b90600052602060002001549050919050565b600c6020528060005260406000206000915090505481565b6000801b610b9e81610b99611220565b61161b565b8282600d9190610baf929190612a6a565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c55906135fd565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf906135dd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610d99906139f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc5906139f0565b8015610e125780601f10610de757610100808354040283529160200191610e12565b820191906000526020600020905b815481529060010190602001808311610df557829003601f168201915b5050505050905090565b6000801b81565b610e35610e2e611220565b8383611aaa565b5050565b610e4a610e44611220565b836112e1565b610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e80906136bd565b60405180910390fd5b610e9584848484611c17565b50505050565b6060610ea6826111b4565b610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc9061367d565b60405180910390fd5b6000610eef611c73565b90506000815111610f0f5760405180602001604052806000815250610f3a565b80610f1984611d05565b604051602001610f2a9291906133c0565b6040516020818303038152906040525b915050919050565b6000801b610f5781610f52611220565b61161b565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610fc982610896565b610fda81610fd5611220565b61161b565b610fe48383611799565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008060001b6110948161108f611220565b61161b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663990c8f796040518163ffffffff1660e01b815260040160206040518083038186803b1580156110fc57600080fd5b505afa158015611110573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111349190612e56565b91505090565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806111ad57506111ac82611e66565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661129b83610bb5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006112ec826111b4565b61132b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113229061359d565b60405180910390fd5b600061133683610bb5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113a557508373ffffffffffffffffffffffffffffffffffffffff1661138d8461068c565b73ffffffffffffffffffffffffffffffffffffffff16145b806113b657506113b58185610fe9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166113df82610bb5565b73ffffffffffffffffffffffffffffffffffffffff1614611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c9061365d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149c9061355d565b60405180910390fd5b6114b0838383611ee0565b6114bb600082611228565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150b91906138d2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461156291906137f1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6116258282610d1f565b6116b45761164a8173ffffffffffffffffffffffffffffffffffffffff166014611ef0565b6116588360001c6020611ef0565b6040516020016116699291906133e4565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ab91906134bb565b60405180910390fd5b5050565b6116c28282610d1f565b611795576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061173a611220565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6117a38282610d1f565b15611877576000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061181c611220565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6118b982826040518060200160405280600081525061212c565b5050565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663990c8f796040518163ffffffff1660e01b815260040160206040518083038186803b15801561192857600080fd5b505afa15801561193c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119609190612e56565b848460405160200161197493929190613383565b6040516020818303038152906040528051906020012060001c90508091505092915050565b60006119a482610bb5565b90506119b281600084611ee0565b6119bd600083611228565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a0d91906138d2565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b109061357d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c0a9190613485565b60405180910390a3505050565b611c228484846113bf565b611c2e84848484612187565b611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c649061351d565b60405180910390fd5b50505050565b6060600d8054611c82906139f0565b80601f0160208091040260200160405190810160405280929190818152602001828054611cae906139f0565b8015611cfb5780601f10611cd057610100808354040283529160200191611cfb565b820191906000526020600020905b815481529060010190602001808311611cde57829003601f168201915b5050505050905090565b60606000821415611d4d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e61565b600082905060005b60008214611d7f578080611d6890613a53565b915050600a82611d789190613847565b9150611d55565b60008167ffffffffffffffff811115611d9b57611d9a613bcc565b5b6040519080825280601f01601f191660200182016040528015611dcd5781602001600182028036833780820191505090505b5090505b60008514611e5a57600182611de691906138d2565b9150600a85611df59190613ab0565b6030611e0191906137f1565b60f81b818381518110611e1757611e16613b9d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e539190613847565b9450611dd1565b8093505050505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ed95750611ed88261231e565b5b9050919050565b611eeb838383612400565b505050565b606060006002836002611f039190613878565b611f0d91906137f1565b67ffffffffffffffff811115611f2657611f25613bcc565b5b6040519080825280601f01601f191660200182016040528015611f585781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611f9057611f8f613b9d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611ff457611ff3613b9d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026120349190613878565b61203e91906137f1565b90505b60018111156120de577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106120805761207f613b9d565b5b1a60f81b82828151811061209757612096613b9d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806120d7906139c6565b9050612041565b5060008414612122576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612119906134dd565b60405180910390fd5b8091505092915050565b6121368383612514565b6121436000848484612187565b612182576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121799061351d565b60405180910390fd5b505050565b60006121a88473ffffffffffffffffffffffffffffffffffffffff166126e2565b15612311578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121d1611220565b8786866040518563ffffffff1660e01b81526004016121f39493929190613439565b602060405180830381600087803b15801561220d57600080fd5b505af192505050801561223e57506040513d601f19601f8201168201806040525081019061223b9190612ef0565b60015b6122c1573d806000811461226e576040519150601f19603f3d011682016040523d82523d6000602084013e612273565b606091505b506000815114156122b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b09061351d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612316565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123e957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123f957506123f8826126f5565b5b9050919050565b61240b83838361275f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561244e5761244981612764565b61248d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461248c5761248b83826127ad565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124d0576124cb8161291a565b61250f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461250e5761250d82826129eb565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257b9061361d565b60405180910390fd5b61258d816111b4565b156125cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c49061353d565b60405180910390fd5b6125d960008383611ee0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461262991906137f1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016127ba84610c67565b6127c491906138d2565b90506000600760008481526020019081526020016000205490508181146128a9576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061292e91906138d2565b905060006009600084815260200190815260200160002054905060006008838154811061295e5761295d613b9d565b5b9060005260206000200154905080600883815481106129805761297f613b9d565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806129cf576129ce613b6e565b5b6001900381819060005260206000200160009055905550505050565b60006129f683610c67565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612a76906139f0565b90600052602060002090601f016020900481019282612a985760008555612adf565b82601f10612ab157803560ff1916838001178555612adf565b82800160010185558215612adf579182015b82811115612ade578235825591602001919060010190612ac3565b5b509050612aec9190612af0565b5090565b5b80821115612b09576000816000905550600101612af1565b5090565b6000612b20612b1b8461377d565b613758565b905082815260208101848484011115612b3c57612b3b613c0a565b5b612b47848285613984565b509392505050565b600081359050612b5e816141c1565b92915050565b600081359050612b73816141d8565b92915050565b600081359050612b88816141ef565b92915050565b600081519050612b9d816141ef565b92915050565b600081359050612bb281614206565b92915050565b600081519050612bc781614206565b92915050565b600082601f830112612be257612be1613c00565b5b8135612bf2848260208601612b0d565b91505092915050565b60008083601f840112612c1157612c10613c00565b5b8235905067ffffffffffffffff811115612c2e57612c2d613bfb565b5b602083019150836001820283011115612c4a57612c49613c05565b5b9250929050565b600081359050612c608161421d565b92915050565b600060208284031215612c7c57612c7b613c14565b5b6000612c8a84828501612b4f565b91505092915050565b60008060408385031215612caa57612ca9613c14565b5b6000612cb885828601612b4f565b9250506020612cc985828601612b4f565b9150509250929050565b600080600060608486031215612cec57612ceb613c14565b5b6000612cfa86828701612b4f565b9350506020612d0b86828701612b4f565b9250506040612d1c86828701612c51565b9150509250925092565b60008060008060808587031215612d4057612d3f613c14565b5b6000612d4e87828801612b4f565b9450506020612d5f87828801612b4f565b9350506040612d7087828801612c51565b925050606085013567ffffffffffffffff811115612d9157612d90613c0f565b5b612d9d87828801612bcd565b91505092959194509250565b60008060408385031215612dc057612dbf613c14565b5b6000612dce85828601612b4f565b9250506020612ddf85828601612b64565b9150509250929050565b60008060408385031215612e0057612dff613c14565b5b6000612e0e85828601612b4f565b9250506020612e1f85828601612c51565b9150509250929050565b600060208284031215612e3f57612e3e613c14565b5b6000612e4d84828501612b79565b91505092915050565b600060208284031215612e6c57612e6b613c14565b5b6000612e7a84828501612b8e565b91505092915050565b60008060408385031215612e9a57612e99613c14565b5b6000612ea885828601612b79565b9250506020612eb985828601612b4f565b9150509250929050565b600060208284031215612ed957612ed8613c14565b5b6000612ee784828501612ba3565b91505092915050565b600060208284031215612f0657612f05613c14565b5b6000612f1484828501612bb8565b91505092915050565b60008060208385031215612f3457612f33613c14565b5b600083013567ffffffffffffffff811115612f5257612f51613c0f565b5b612f5e85828601612bfb565b92509250509250929050565b600060208284031215612f8057612f7f613c14565b5b6000612f8e84828501612c51565b91505092915050565b612fa081613906565b82525050565b612faf81613918565b82525050565b612fbe81613924565b82525050565b612fd5612fd082613924565b613a9c565b82525050565b6000612fe6826137ae565b612ff081856137c4565b9350613000818560208601613993565b61300981613c19565b840191505092915050565b600061301f826137b9565b61302981856137d5565b9350613039818560208601613993565b61304281613c19565b840191505092915050565b6000613058826137b9565b61306281856137e6565b9350613072818560208601613993565b80840191505092915050565b600061308b6020836137d5565b915061309682613c2a565b602082019050919050565b60006130ae602b836137d5565b91506130b982613c53565b604082019050919050565b60006130d16032836137d5565b91506130dc82613ca2565b604082019050919050565b60006130f4601c836137d5565b91506130ff82613cf1565b602082019050919050565b60006131176024836137d5565b915061312282613d1a565b604082019050919050565b600061313a6019836137d5565b915061314582613d69565b602082019050919050565b600061315d602c836137d5565b915061316882613d92565b604082019050919050565b60006131806038836137d5565b915061318b82613de1565b604082019050919050565b60006131a3602a836137d5565b91506131ae82613e30565b604082019050919050565b60006131c66029836137d5565b91506131d182613e7f565b604082019050919050565b60006131e96020836137d5565b91506131f482613ece565b602082019050919050565b600061320c602c836137d5565b915061321782613ef7565b604082019050919050565b600061322f6029836137d5565b915061323a82613f46565b604082019050919050565b6000613252602f836137d5565b915061325d82613f95565b604082019050919050565b60006132756021836137d5565b915061328082613fe4565b604082019050919050565b60006132986031836137d5565b91506132a382614033565b604082019050919050565b60006132bb602c836137d5565b91506132c682614082565b604082019050919050565b60006132de6017836137e6565b91506132e9826140d1565b601782019050919050565b60006133016030836137d5565b915061330c826140fa565b604082019050919050565b60006133246011836137e6565b915061332f82614149565b601182019050919050565b6000613347602f836137d5565b915061335282614172565b604082019050919050565b6133668161397a565b82525050565b61337d6133788261397a565b613aa6565b82525050565b600061338f8286612fc4565b60208201915061339f828561336c565b6020820191506133af828461336c565b602082019150819050949350505050565b60006133cc828561304d565b91506133d8828461304d565b91508190509392505050565b60006133ef826132d1565b91506133fb828561304d565b915061340682613317565b9150613412828461304d565b91508190509392505050565b60006020820190506134336000830184612f97565b92915050565b600060808201905061344e6000830187612f97565b61345b6020830186612f97565b613468604083018561335d565b818103606083015261347a8184612fdb565b905095945050505050565b600060208201905061349a6000830184612fa6565b92915050565b60006020820190506134b56000830184612fb5565b92915050565b600060208201905081810360008301526134d58184613014565b905092915050565b600060208201905081810360008301526134f68161307e565b9050919050565b60006020820190508181036000830152613516816130a1565b9050919050565b60006020820190508181036000830152613536816130c4565b9050919050565b60006020820190508181036000830152613556816130e7565b9050919050565b600060208201905081810360008301526135768161310a565b9050919050565b600060208201905081810360008301526135968161312d565b9050919050565b600060208201905081810360008301526135b681613150565b9050919050565b600060208201905081810360008301526135d681613173565b9050919050565b600060208201905081810360008301526135f681613196565b9050919050565b60006020820190508181036000830152613616816131b9565b9050919050565b60006020820190508181036000830152613636816131dc565b9050919050565b60006020820190508181036000830152613656816131ff565b9050919050565b6000602082019050818103600083015261367681613222565b9050919050565b6000602082019050818103600083015261369681613245565b9050919050565b600060208201905081810360008301526136b681613268565b9050919050565b600060208201905081810360008301526136d68161328b565b9050919050565b600060208201905081810360008301526136f6816132ae565b9050919050565b60006020820190508181036000830152613716816132f4565b9050919050565b600060208201905081810360008301526137368161333a565b9050919050565b6000602082019050613752600083018461335d565b92915050565b6000613762613773565b905061376e8282613a22565b919050565b6000604051905090565b600067ffffffffffffffff82111561379857613797613bcc565b5b6137a182613c19565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006137fc8261397a565b91506138078361397a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561383c5761383b613ae1565b5b828201905092915050565b60006138528261397a565b915061385d8361397a565b92508261386d5761386c613b10565b5b828204905092915050565b60006138838261397a565b915061388e8361397a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138c7576138c6613ae1565b5b828202905092915050565b60006138dd8261397a565b91506138e88361397a565b9250828210156138fb576138fa613ae1565b5b828203905092915050565b60006139118261395a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139b1578082015181840152602081019050613996565b838111156139c0576000848401525b50505050565b60006139d18261397a565b915060008214156139e5576139e4613ae1565b5b600182039050919050565b60006002820490506001821680613a0857607f821691505b60208210811415613a1c57613a1b613b3f565b5b50919050565b613a2b82613c19565b810181811067ffffffffffffffff82111715613a4a57613a49613bcc565b5b80604052505050565b6000613a5e8261397a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a9157613a90613ae1565b5b600182019050919050565b6000819050919050565b6000819050919050565b6000613abb8261397a565b9150613ac68361397a565b925082613ad657613ad5613b10565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6141ca81613906565b81146141d557600080fd5b50565b6141e181613918565b81146141ec57600080fd5b50565b6141f881613924565b811461420357600080fd5b50565b61420f8161392e565b811461421a57600080fd5b50565b6142268161397a565b811461423157600080fd5b5056fea2646970667358221220dbeaecc7c5db9fe6a36bc08c685a61c1e1ca0111a1a3a19392137d584ee4c28f64736f6c6343000807003368747470733a2f2f6170692e66696e652e6469676974616c2f6d657461646174612f",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x22 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x4728 PUSH1 0x22 SWAP2 CODECOPY PUSH1 0xD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x35 SWAP3 SWAP2 SWAP1 PUSH3 0x2FD JUMP JUMPDEST POP CALLVALUE DUP1 ISZERO PUSH3 0x43 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x474A CODESIZE SUB DUP1 PUSH3 0x474A DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x69 SWAP2 SWAP1 PUSH3 0x3C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xC DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x46494E45204469676974616C0000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x46494E4500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xED SWAP3 SWAP2 SWAP1 PUSH3 0x2FD JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x106 SWAP3 SWAP2 SWAP1 PUSH3 0x2FD JUMP JUMPDEST POP POP POP PUSH3 0x11E PUSH1 0x0 DUP1 SHL CALLER PUSH3 0x198 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x150 PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 CALLER PUSH3 0x198 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0xE PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP PUSH3 0x4AE JUMP JUMPDEST PUSH3 0x1AA DUP3 DUP3 PUSH3 0x28A PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x286 JUMPI PUSH1 0x1 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD 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 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH3 0x22B PUSH3 0x2F5 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x30B SWAP1 PUSH3 0x42A JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x32F JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x37B JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x34A JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x37B JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x37B JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x37A JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x35D JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x38A SWAP2 SWAP1 PUSH3 0x38E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x3A9 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x38F JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x3BE DUP2 PUSH3 0x494 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x3DD JUMPI PUSH3 0x3DC PUSH3 0x48F JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x3ED DUP5 DUP3 DUP6 ADD PUSH3 0x3AD JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x403 DUP3 PUSH3 0x40A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x443 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x45A JUMPI PUSH3 0x459 PUSH3 0x460 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x49F DUP2 PUSH3 0x3F6 JUMP JUMPDEST DUP2 EQ PUSH3 0x4AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x426A DUP1 PUSH3 0x4BE PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1CF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x501895AE GT PUSH2 0x104 JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xD5391393 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xD5391393 EQ PUSH2 0x560 JUMPI DUP1 PUSH4 0xD547741F EQ PUSH2 0x57E JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x59A JUMPI DUP1 PUSH4 0xFBDDD14B EQ PUSH2 0x5CA JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x4DC JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x4F8 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x514 JUMPI DUP1 PUSH4 0xCA9C0BAD EQ PUSH2 0x544 JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x70A08231 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x440 JUMPI DUP1 PUSH4 0x91D14854 EQ PUSH2 0x470 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x4A0 JUMPI DUP1 PUSH4 0xA217FDDF EQ PUSH2 0x4BE JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x501895AE EQ PUSH2 0x3C4 JUMPI DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x3F4 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x410 JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x2F2FF15D GT PUSH2 0x171 JUMPI DUP1 PUSH4 0x40D097C3 GT PUSH2 0x14B JUMPI DUP1 PUSH4 0x40D097C3 EQ PUSH2 0x340 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x35C JUMPI DUP1 PUSH4 0x42966C68 EQ PUSH2 0x378 JUMPI DUP1 PUSH4 0x4F6CCCE7 EQ PUSH2 0x394 JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x2F2FF15D EQ PUSH2 0x2D8 JUMPI DUP1 PUSH4 0x2F745C59 EQ PUSH2 0x2F4 JUMPI DUP1 PUSH4 0x36568ABE EQ PUSH2 0x324 JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x1AD JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x252 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x26E JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x28C JUMPI DUP1 PUSH4 0x248A9CA3 EQ PUSH2 0x2A8 JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x1D4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x204 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x222 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1EE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1E9 SWAP2 SWAP1 PUSH2 0x2EC3 JUMP JUMPDEST PUSH2 0x5E8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FB SWAP2 SWAP1 PUSH2 0x3485 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20C PUSH2 0x5FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x219 SWAP2 SWAP1 PUSH2 0x34BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x237 SWAP2 SWAP1 PUSH2 0x2F6A JUMP JUMPDEST PUSH2 0x68C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x249 SWAP2 SWAP1 PUSH2 0x341E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x267 SWAP2 SWAP1 PUSH2 0x2DE9 JUMP JUMPDEST PUSH2 0x711 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x276 PUSH2 0x829 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x283 SWAP2 SWAP1 PUSH2 0x373D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A1 SWAP2 SWAP1 PUSH2 0x2CD3 JUMP JUMPDEST PUSH2 0x836 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2C2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2BD SWAP2 SWAP1 PUSH2 0x2E29 JUMP JUMPDEST PUSH2 0x896 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2CF SWAP2 SWAP1 PUSH2 0x34A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2F2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2ED SWAP2 SWAP1 PUSH2 0x2E83 JUMP JUMPDEST PUSH2 0x8B6 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x30E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x309 SWAP2 SWAP1 PUSH2 0x2DE9 JUMP JUMPDEST PUSH2 0x8DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x31B SWAP2 SWAP1 PUSH2 0x373D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x33E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x339 SWAP2 SWAP1 PUSH2 0x2E83 JUMP JUMPDEST PUSH2 0x984 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x35A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x355 SWAP2 SWAP1 PUSH2 0x2C66 JUMP JUMPDEST PUSH2 0xA07 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x376 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x371 SWAP2 SWAP1 PUSH2 0x2CD3 JUMP JUMPDEST PUSH2 0xA84 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x392 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x38D SWAP2 SWAP1 PUSH2 0x2F6A JUMP JUMPDEST PUSH2 0xAA4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3AE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3A9 SWAP2 SWAP1 PUSH2 0x2F6A JUMP JUMPDEST PUSH2 0xB00 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3BB SWAP2 SWAP1 PUSH2 0x373D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3DE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3D9 SWAP2 SWAP1 PUSH2 0x2F6A JUMP JUMPDEST PUSH2 0xB71 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3EB SWAP2 SWAP1 PUSH2 0x373D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x40E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x409 SWAP2 SWAP1 PUSH2 0x2F1D JUMP JUMPDEST PUSH2 0xB89 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x42A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x425 SWAP2 SWAP1 PUSH2 0x2F6A JUMP JUMPDEST PUSH2 0xBB5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x437 SWAP2 SWAP1 PUSH2 0x341E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x45A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x455 SWAP2 SWAP1 PUSH2 0x2C66 JUMP JUMPDEST PUSH2 0xC67 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x467 SWAP2 SWAP1 PUSH2 0x373D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x48A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x485 SWAP2 SWAP1 PUSH2 0x2E83 JUMP JUMPDEST PUSH2 0xD1F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x497 SWAP2 SWAP1 PUSH2 0x3485 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4A8 PUSH2 0xD8A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4B5 SWAP2 SWAP1 PUSH2 0x34BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4C6 PUSH2 0xE1C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4D3 SWAP2 SWAP1 PUSH2 0x34A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4F6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4F1 SWAP2 SWAP1 PUSH2 0x2DA9 JUMP JUMPDEST PUSH2 0xE23 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x512 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x50D SWAP2 SWAP1 PUSH2 0x2D26 JUMP JUMPDEST PUSH2 0xE39 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x52E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x529 SWAP2 SWAP1 PUSH2 0x2F6A JUMP JUMPDEST PUSH2 0xE9B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x53B SWAP2 SWAP1 PUSH2 0x34BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x55E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x559 SWAP2 SWAP1 PUSH2 0x2C66 JUMP JUMPDEST PUSH2 0xF42 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x568 PUSH2 0xF9C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x575 SWAP2 SWAP1 PUSH2 0x34A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x598 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x593 SWAP2 SWAP1 PUSH2 0x2E83 JUMP JUMPDEST PUSH2 0xFC0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x5B4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5AF SWAP2 SWAP1 PUSH2 0x2C93 JUMP JUMPDEST PUSH2 0xFE9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5C1 SWAP2 SWAP1 PUSH2 0x3485 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x5D2 PUSH2 0x107D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5DF SWAP2 SWAP1 PUSH2 0x34A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH2 0x5F3 DUP3 PUSH2 0x113A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x609 SWAP1 PUSH2 0x39F0 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 0x635 SWAP1 PUSH2 0x39F0 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x682 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x657 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x682 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 0x665 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x697 DUP3 PUSH2 0x11B4 JUMP JUMPDEST PUSH2 0x6D6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6CD SWAP1 PUSH2 0x363D 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 0x0 PUSH2 0x71C DUP3 PUSH2 0xBB5 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x78D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x784 SWAP1 PUSH2 0x369D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x7AC PUSH2 0x1220 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x7DB JUMPI POP PUSH2 0x7DA DUP2 PUSH2 0x7D5 PUSH2 0x1220 JUMP JUMPDEST PUSH2 0xFE9 JUMP JUMPDEST JUMPDEST PUSH2 0x81A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x811 SWAP1 PUSH2 0x35BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x824 DUP4 DUP4 PUSH2 0x1228 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP1 SLOAD SWAP1 POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x847 PUSH2 0x841 PUSH2 0x1220 JUMP JUMPDEST DUP3 PUSH2 0x12E1 JUMP JUMPDEST PUSH2 0x886 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x87D SWAP1 PUSH2 0x36BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x891 DUP4 DUP4 DUP4 PUSH2 0x13BF JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x8BF DUP3 PUSH2 0x896 JUMP JUMPDEST PUSH2 0x8D0 DUP2 PUSH2 0x8CB PUSH2 0x1220 JUMP JUMPDEST PUSH2 0x161B JUMP JUMPDEST PUSH2 0x8DA DUP4 DUP4 PUSH2 0x16B8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8EA DUP4 PUSH2 0xC67 JUMP JUMPDEST DUP3 LT PUSH2 0x92B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x922 SWAP1 PUSH2 0x34FD 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 PUSH2 0x98C PUSH2 0x1220 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9F9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9F0 SWAP1 PUSH2 0x371D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA03 DUP3 DUP3 PUSH2 0x1799 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 PUSH2 0xA39 DUP2 PUSH2 0xA34 PUSH2 0x1220 JUMP JUMPDEST PUSH2 0x161B JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA45 PUSH1 0xB PUSH2 0x187B JUMP JUMPDEST SWAP1 POP PUSH2 0xA51 PUSH1 0xB PUSH2 0x1889 JUMP JUMPDEST PUSH2 0xA5B DUP4 DUP3 PUSH2 0x189F JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA67 DUP3 DUP3 PUSH2 0x18BD JUMP JUMPDEST PUSH1 0xC PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP POP JUMP JUMPDEST PUSH2 0xA9F DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xE39 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xAB5 PUSH2 0xAAF PUSH2 0x1220 JUMP JUMPDEST DUP3 PUSH2 0x12E1 JUMP JUMPDEST PUSH2 0xAF4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAEB SWAP1 PUSH2 0x36FD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xAFD DUP2 PUSH2 0x1999 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB0A PUSH2 0x829 JUMP JUMPDEST DUP3 LT PUSH2 0xB4B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB42 SWAP1 PUSH2 0x36DD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x8 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xB5F JUMPI PUSH2 0xB5E PUSH2 0x3B9D JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xC PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SHL PUSH2 0xB9E DUP2 PUSH2 0xB99 PUSH2 0x1220 JUMP JUMPDEST PUSH2 0x161B JUMP JUMPDEST DUP3 DUP3 PUSH1 0xD SWAP2 SWAP1 PUSH2 0xBAF SWAP3 SWAP2 SWAP1 PUSH2 0x2A6A JUMP JUMPDEST POP POP POP POP 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 0xC5E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC55 SWAP1 PUSH2 0x35FD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xCD8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCCF SWAP1 PUSH2 0x35DD 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 PUSH1 0x0 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0xD99 SWAP1 PUSH2 0x39F0 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 0xDC5 SWAP1 PUSH2 0x39F0 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xE12 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xDE7 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xE12 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 0xDF5 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 SHL DUP2 JUMP JUMPDEST PUSH2 0xE35 PUSH2 0xE2E PUSH2 0x1220 JUMP JUMPDEST DUP4 DUP4 PUSH2 0x1AAA JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0xE4A PUSH2 0xE44 PUSH2 0x1220 JUMP JUMPDEST DUP4 PUSH2 0x12E1 JUMP JUMPDEST PUSH2 0xE89 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE80 SWAP1 PUSH2 0x36BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE95 DUP5 DUP5 DUP5 DUP5 PUSH2 0x1C17 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xEA6 DUP3 PUSH2 0x11B4 JUMP JUMPDEST PUSH2 0xEE5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEDC SWAP1 PUSH2 0x367D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xEEF PUSH2 0x1C73 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0xF0F JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xF3A JUMP JUMPDEST DUP1 PUSH2 0xF19 DUP5 PUSH2 0x1D05 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xF2A SWAP3 SWAP2 SWAP1 PUSH2 0x33C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SHL PUSH2 0xF57 DUP2 PUSH2 0xF52 PUSH2 0x1220 JUMP JUMPDEST PUSH2 0x161B JUMP JUMPDEST DUP2 PUSH1 0xE PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 DUP2 JUMP JUMPDEST PUSH2 0xFC9 DUP3 PUSH2 0x896 JUMP JUMPDEST PUSH2 0xFDA DUP2 PUSH2 0xFD5 PUSH2 0x1220 JUMP JUMPDEST PUSH2 0x161B JUMP JUMPDEST PUSH2 0xFE4 DUP4 DUP4 PUSH2 0x1799 JUMP JUMPDEST POP 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 PUSH1 0x0 DUP1 PUSH1 0x0 SHL PUSH2 0x1094 DUP2 PUSH2 0x108F PUSH2 0x1220 JUMP JUMPDEST PUSH2 0x161B JUMP JUMPDEST PUSH1 0xE PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x990C8F79 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x10FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1110 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1134 SWAP2 SWAP1 PUSH2 0x2E56 JUMP JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x7965DB0B00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x11AD JUMPI POP PUSH2 0x11AC DUP3 PUSH2 0x1E66 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP 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 PUSH1 0x0 CALLER SWAP1 POP SWAP1 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 0x129B DUP4 PUSH2 0xBB5 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 0x12EC DUP3 PUSH2 0x11B4 JUMP JUMPDEST PUSH2 0x132B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1322 SWAP1 PUSH2 0x359D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1336 DUP4 PUSH2 0xBB5 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x13A5 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x138D DUP5 PUSH2 0x68C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH2 0x13B6 JUMPI POP PUSH2 0x13B5 DUP2 DUP6 PUSH2 0xFE9 JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x13DF DUP3 PUSH2 0xBB5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1435 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x142C SWAP1 PUSH2 0x365D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x14A5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x149C SWAP1 PUSH2 0x355D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x14B0 DUP4 DUP4 DUP4 PUSH2 0x1EE0 JUMP JUMPDEST PUSH2 0x14BB PUSH1 0x0 DUP3 PUSH2 0x1228 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 0x150B SWAP2 SWAP1 PUSH2 0x38D2 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 0x1562 SWAP2 SWAP1 PUSH2 0x37F1 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 PUSH2 0x1625 DUP3 DUP3 PUSH2 0xD1F JUMP JUMPDEST PUSH2 0x16B4 JUMPI PUSH2 0x164A DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x14 PUSH2 0x1EF0 JUMP JUMPDEST PUSH2 0x1658 DUP4 PUSH1 0x0 SHR PUSH1 0x20 PUSH2 0x1EF0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1669 SWAP3 SWAP2 SWAP1 PUSH2 0x33E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16AB SWAP2 SWAP1 PUSH2 0x34BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x16C2 DUP3 DUP3 PUSH2 0xD1F JUMP JUMPDEST PUSH2 0x1795 JUMPI PUSH1 0x1 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD 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 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x173A PUSH2 0x1220 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x17A3 DUP3 DUP3 PUSH2 0xD1F JUMP JUMPDEST ISZERO PUSH2 0x1877 JUMPI PUSH1 0x0 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD 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 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x181C PUSH2 0x1220 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x18B9 DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x212C JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0xE PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x990C8F79 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1928 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x193C JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1960 SWAP2 SWAP1 PUSH2 0x2E56 JUMP JUMPDEST DUP5 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1974 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3383 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x0 SHR SWAP1 POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19A4 DUP3 PUSH2 0xBB5 JUMP JUMPDEST SWAP1 POP PUSH2 0x19B2 DUP2 PUSH1 0x0 DUP5 PUSH2 0x1EE0 JUMP JUMPDEST PUSH2 0x19BD PUSH1 0x0 DUP4 PUSH2 0x1228 JUMP JUMPDEST PUSH1 0x1 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 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1A0D SWAP2 SWAP1 PUSH2 0x38D2 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP 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 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE DUP2 PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1B19 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B10 SWAP1 PUSH2 0x357D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 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 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 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1C0A SWAP2 SWAP1 PUSH2 0x3485 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x1C22 DUP5 DUP5 DUP5 PUSH2 0x13BF JUMP JUMPDEST PUSH2 0x1C2E DUP5 DUP5 DUP5 DUP5 PUSH2 0x2187 JUMP JUMPDEST PUSH2 0x1C6D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C64 SWAP1 PUSH2 0x351D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0xD DUP1 SLOAD PUSH2 0x1C82 SWAP1 PUSH2 0x39F0 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 0x1CAE SWAP1 PUSH2 0x39F0 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1CFB JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1CD0 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1CFB 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 0x1CDE 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 0x1D4D 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 0x1E61 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x1D7F JUMPI DUP1 DUP1 PUSH2 0x1D68 SWAP1 PUSH2 0x3A53 JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x1D78 SWAP2 SWAP1 PUSH2 0x3847 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D55 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1D9B JUMPI PUSH2 0x1D9A PUSH2 0x3BCC 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 0x1DCD 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 0x1E5A JUMPI PUSH1 0x1 DUP3 PUSH2 0x1DE6 SWAP2 SWAP1 PUSH2 0x38D2 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x1DF5 SWAP2 SWAP1 PUSH2 0x3AB0 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x1E01 SWAP2 SWAP1 PUSH2 0x37F1 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1E17 JUMPI PUSH2 0x1E16 PUSH2 0x3B9D JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x1E53 SWAP2 SWAP1 PUSH2 0x3847 JUMP JUMPDEST SWAP5 POP PUSH2 0x1DD1 JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x780E9D6300000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x1ED9 JUMPI POP PUSH2 0x1ED8 DUP3 PUSH2 0x231E JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1EEB DUP4 DUP4 DUP4 PUSH2 0x2400 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x2 DUP4 PUSH1 0x2 PUSH2 0x1F03 SWAP2 SWAP1 PUSH2 0x3878 JUMP JUMPDEST PUSH2 0x1F0D SWAP2 SWAP1 PUSH2 0x37F1 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1F26 JUMPI PUSH2 0x1F25 PUSH2 0x3BCC 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 0x1F58 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 PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1F90 JUMPI PUSH2 0x1F8F PUSH2 0x3B9D JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH32 0x7800000000000000000000000000000000000000000000000000000000000000 DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x1FF4 JUMPI PUSH2 0x1FF3 PUSH2 0x3B9D JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0x0 PUSH1 0x1 DUP5 PUSH1 0x2 PUSH2 0x2034 SWAP2 SWAP1 PUSH2 0x3878 JUMP JUMPDEST PUSH2 0x203E SWAP2 SWAP1 PUSH2 0x37F1 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x20DE JUMPI PUSH32 0x3031323334353637383961626364656600000000000000000000000000000000 PUSH1 0xF DUP7 AND PUSH1 0x10 DUP2 LT PUSH2 0x2080 JUMPI PUSH2 0x207F PUSH2 0x3B9D JUMP JUMPDEST JUMPDEST BYTE PUSH1 0xF8 SHL DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x2097 JUMPI PUSH2 0x2096 PUSH2 0x3B9D JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0x4 DUP6 SWAP1 SHR SWAP5 POP DUP1 PUSH2 0x20D7 SWAP1 PUSH2 0x39C6 JUMP JUMPDEST SWAP1 POP PUSH2 0x2041 JUMP JUMPDEST POP PUSH1 0x0 DUP5 EQ PUSH2 0x2122 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2119 SWAP1 PUSH2 0x34DD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2136 DUP4 DUP4 PUSH2 0x2514 JUMP JUMPDEST PUSH2 0x2143 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x2187 JUMP JUMPDEST PUSH2 0x2182 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2179 SWAP1 PUSH2 0x351D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x21A8 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x26E2 JUMP JUMPDEST ISZERO PUSH2 0x2311 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x21D1 PUSH2 0x1220 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x21F3 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3439 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x220D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x223E 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 0x223B SWAP2 SWAP1 PUSH2 0x2EF0 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x22C1 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x226E 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 0x2273 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x22B9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x22B0 SWAP1 PUSH2 0x351D 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 0x2316 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x23E9 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x23F9 JUMPI POP PUSH2 0x23F8 DUP3 PUSH2 0x26F5 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x240B DUP4 DUP4 DUP4 PUSH2 0x275F JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x244E JUMPI PUSH2 0x2449 DUP2 PUSH2 0x2764 JUMP JUMPDEST PUSH2 0x248D JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x248C JUMPI PUSH2 0x248B DUP4 DUP3 PUSH2 0x27AD JUMP JUMPDEST JUMPDEST JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x24D0 JUMPI PUSH2 0x24CB DUP2 PUSH2 0x291A JUMP JUMPDEST PUSH2 0x250F JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x250E JUMPI PUSH2 0x250D DUP3 DUP3 PUSH2 0x29EB JUMP JUMPDEST JUMPDEST JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2584 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x257B SWAP1 PUSH2 0x361D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x258D DUP2 PUSH2 0x11B4 JUMP JUMPDEST ISZERO PUSH2 0x25CD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x25C4 SWAP1 PUSH2 0x353D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x25D9 PUSH1 0x0 DUP4 DUP4 PUSH2 0x1EE0 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 0x2629 SWAP2 SWAP1 PUSH2 0x37F1 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 PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 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 0x27BA DUP5 PUSH2 0xC67 JUMP JUMPDEST PUSH2 0x27C4 SWAP2 SWAP1 PUSH2 0x38D2 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 0x28A9 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 0x292E SWAP2 SWAP1 PUSH2 0x38D2 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 0x295E JUMPI PUSH2 0x295D PUSH2 0x3B9D 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 0x2980 JUMPI PUSH2 0x297F PUSH2 0x3B9D 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 0x29CF JUMPI PUSH2 0x29CE PUSH2 0x3B6E 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 0x29F6 DUP4 PUSH2 0xC67 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 DUP3 DUP1 SLOAD PUSH2 0x2A76 SWAP1 PUSH2 0x39F0 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2A98 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x2ADF JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2AB1 JUMPI DUP1 CALLDATALOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x2ADF JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x2ADF JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x2ADE JUMPI DUP3 CALLDATALOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2AC3 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x2AEC SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x2B09 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x2AF1 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B20 PUSH2 0x2B1B DUP5 PUSH2 0x377D JUMP JUMPDEST PUSH2 0x3758 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x2B3C JUMPI PUSH2 0x2B3B PUSH2 0x3C0A JUMP JUMPDEST JUMPDEST PUSH2 0x2B47 DUP5 DUP3 DUP6 PUSH2 0x3984 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2B5E DUP2 PUSH2 0x41C1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2B73 DUP2 PUSH2 0x41D8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2B88 DUP2 PUSH2 0x41EF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x2B9D DUP2 PUSH2 0x41EF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2BB2 DUP2 PUSH2 0x4206 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x2BC7 DUP2 PUSH2 0x4206 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2BE2 JUMPI PUSH2 0x2BE1 PUSH2 0x3C00 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2BF2 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2B0D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2C11 JUMPI PUSH2 0x2C10 PUSH2 0x3C00 JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2C2E JUMPI PUSH2 0x2C2D PUSH2 0x3BFB JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x2C4A JUMPI PUSH2 0x2C49 PUSH2 0x3C05 JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2C60 DUP2 PUSH2 0x421D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2C7C JUMPI PUSH2 0x2C7B PUSH2 0x3C14 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2C8A DUP5 DUP3 DUP6 ADD PUSH2 0x2B4F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2CAA JUMPI PUSH2 0x2CA9 PUSH2 0x3C14 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2CB8 DUP6 DUP3 DUP7 ADD PUSH2 0x2B4F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2CC9 DUP6 DUP3 DUP7 ADD PUSH2 0x2B4F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2CEC JUMPI PUSH2 0x2CEB PUSH2 0x3C14 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2CFA DUP7 DUP3 DUP8 ADD PUSH2 0x2B4F JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x2D0B DUP7 DUP3 DUP8 ADD PUSH2 0x2B4F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x2D1C DUP7 DUP3 DUP8 ADD PUSH2 0x2C51 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2D40 JUMPI PUSH2 0x2D3F PUSH2 0x3C14 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2D4E DUP8 DUP3 DUP9 ADD PUSH2 0x2B4F JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x2D5F DUP8 DUP3 DUP9 ADD PUSH2 0x2B4F JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x2D70 DUP8 DUP3 DUP9 ADD PUSH2 0x2C51 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2D91 JUMPI PUSH2 0x2D90 PUSH2 0x3C0F JUMP JUMPDEST JUMPDEST PUSH2 0x2D9D DUP8 DUP3 DUP9 ADD PUSH2 0x2BCD 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 0x2DC0 JUMPI PUSH2 0x2DBF PUSH2 0x3C14 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2DCE DUP6 DUP3 DUP7 ADD PUSH2 0x2B4F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2DDF DUP6 DUP3 DUP7 ADD PUSH2 0x2B64 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2E00 JUMPI PUSH2 0x2DFF PUSH2 0x3C14 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2E0E DUP6 DUP3 DUP7 ADD PUSH2 0x2B4F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2E1F DUP6 DUP3 DUP7 ADD PUSH2 0x2C51 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2E3F JUMPI PUSH2 0x2E3E PUSH2 0x3C14 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2E4D DUP5 DUP3 DUP6 ADD PUSH2 0x2B79 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2E6C JUMPI PUSH2 0x2E6B PUSH2 0x3C14 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2E7A DUP5 DUP3 DUP6 ADD PUSH2 0x2B8E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2E9A JUMPI PUSH2 0x2E99 PUSH2 0x3C14 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2EA8 DUP6 DUP3 DUP7 ADD PUSH2 0x2B79 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2EB9 DUP6 DUP3 DUP7 ADD PUSH2 0x2B4F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2ED9 JUMPI PUSH2 0x2ED8 PUSH2 0x3C14 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2EE7 DUP5 DUP3 DUP6 ADD PUSH2 0x2BA3 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2F06 JUMPI PUSH2 0x2F05 PUSH2 0x3C14 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2F14 DUP5 DUP3 DUP6 ADD PUSH2 0x2BB8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2F34 JUMPI PUSH2 0x2F33 PUSH2 0x3C14 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2F52 JUMPI PUSH2 0x2F51 PUSH2 0x3C0F JUMP JUMPDEST JUMPDEST PUSH2 0x2F5E DUP6 DUP3 DUP7 ADD PUSH2 0x2BFB JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2F80 JUMPI PUSH2 0x2F7F PUSH2 0x3C14 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2F8E DUP5 DUP3 DUP6 ADD PUSH2 0x2C51 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2FA0 DUP2 PUSH2 0x3906 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2FAF DUP2 PUSH2 0x3918 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2FBE DUP2 PUSH2 0x3924 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2FD5 PUSH2 0x2FD0 DUP3 PUSH2 0x3924 JUMP JUMPDEST PUSH2 0x3A9C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FE6 DUP3 PUSH2 0x37AE JUMP JUMPDEST PUSH2 0x2FF0 DUP2 DUP6 PUSH2 0x37C4 JUMP JUMPDEST SWAP4 POP PUSH2 0x3000 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3993 JUMP JUMPDEST PUSH2 0x3009 DUP2 PUSH2 0x3C19 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x301F DUP3 PUSH2 0x37B9 JUMP JUMPDEST PUSH2 0x3029 DUP2 DUP6 PUSH2 0x37D5 JUMP JUMPDEST SWAP4 POP PUSH2 0x3039 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3993 JUMP JUMPDEST PUSH2 0x3042 DUP2 PUSH2 0x3C19 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3058 DUP3 PUSH2 0x37B9 JUMP JUMPDEST PUSH2 0x3062 DUP2 DUP6 PUSH2 0x37E6 JUMP JUMPDEST SWAP4 POP PUSH2 0x3072 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3993 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x308B PUSH1 0x20 DUP4 PUSH2 0x37D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x3096 DUP3 PUSH2 0x3C2A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30AE PUSH1 0x2B DUP4 PUSH2 0x37D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x30B9 DUP3 PUSH2 0x3C53 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30D1 PUSH1 0x32 DUP4 PUSH2 0x37D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x30DC DUP3 PUSH2 0x3CA2 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30F4 PUSH1 0x1C DUP4 PUSH2 0x37D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x30FF DUP3 PUSH2 0x3CF1 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3117 PUSH1 0x24 DUP4 PUSH2 0x37D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x3122 DUP3 PUSH2 0x3D1A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x313A PUSH1 0x19 DUP4 PUSH2 0x37D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x3145 DUP3 PUSH2 0x3D69 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x315D PUSH1 0x2C DUP4 PUSH2 0x37D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x3168 DUP3 PUSH2 0x3D92 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3180 PUSH1 0x38 DUP4 PUSH2 0x37D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x318B DUP3 PUSH2 0x3DE1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x31A3 PUSH1 0x2A DUP4 PUSH2 0x37D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x31AE DUP3 PUSH2 0x3E30 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x31C6 PUSH1 0x29 DUP4 PUSH2 0x37D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x31D1 DUP3 PUSH2 0x3E7F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x31E9 PUSH1 0x20 DUP4 PUSH2 0x37D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x31F4 DUP3 PUSH2 0x3ECE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x320C PUSH1 0x2C DUP4 PUSH2 0x37D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x3217 DUP3 PUSH2 0x3EF7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x322F PUSH1 0x29 DUP4 PUSH2 0x37D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x323A DUP3 PUSH2 0x3F46 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3252 PUSH1 0x2F DUP4 PUSH2 0x37D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x325D DUP3 PUSH2 0x3F95 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3275 PUSH1 0x21 DUP4 PUSH2 0x37D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x3280 DUP3 PUSH2 0x3FE4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3298 PUSH1 0x31 DUP4 PUSH2 0x37D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x32A3 DUP3 PUSH2 0x4033 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32BB PUSH1 0x2C DUP4 PUSH2 0x37D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x32C6 DUP3 PUSH2 0x4082 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32DE PUSH1 0x17 DUP4 PUSH2 0x37E6 JUMP JUMPDEST SWAP2 POP PUSH2 0x32E9 DUP3 PUSH2 0x40D1 JUMP JUMPDEST PUSH1 0x17 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3301 PUSH1 0x30 DUP4 PUSH2 0x37D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x330C DUP3 PUSH2 0x40FA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3324 PUSH1 0x11 DUP4 PUSH2 0x37E6 JUMP JUMPDEST SWAP2 POP PUSH2 0x332F DUP3 PUSH2 0x4149 JUMP JUMPDEST PUSH1 0x11 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3347 PUSH1 0x2F DUP4 PUSH2 0x37D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x3352 DUP3 PUSH2 0x4172 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3366 DUP2 PUSH2 0x397A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x337D PUSH2 0x3378 DUP3 PUSH2 0x397A JUMP JUMPDEST PUSH2 0x3AA6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x338F DUP3 DUP7 PUSH2 0x2FC4 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x339F DUP3 DUP6 PUSH2 0x336C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x33AF DUP3 DUP5 PUSH2 0x336C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP DUP2 SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33CC DUP3 DUP6 PUSH2 0x304D JUMP JUMPDEST SWAP2 POP PUSH2 0x33D8 DUP3 DUP5 PUSH2 0x304D JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33EF DUP3 PUSH2 0x32D1 JUMP JUMPDEST SWAP2 POP PUSH2 0x33FB DUP3 DUP6 PUSH2 0x304D JUMP JUMPDEST SWAP2 POP PUSH2 0x3406 DUP3 PUSH2 0x3317 JUMP JUMPDEST SWAP2 POP PUSH2 0x3412 DUP3 DUP5 PUSH2 0x304D JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3433 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2F97 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x344E PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x2F97 JUMP JUMPDEST PUSH2 0x345B PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x2F97 JUMP JUMPDEST PUSH2 0x3468 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x335D JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x347A DUP2 DUP5 PUSH2 0x2FDB JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x349A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2FA6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x34B5 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2FB5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x34D5 DUP2 DUP5 PUSH2 0x3014 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x34F6 DUP2 PUSH2 0x307E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3516 DUP2 PUSH2 0x30A1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3536 DUP2 PUSH2 0x30C4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3556 DUP2 PUSH2 0x30E7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3576 DUP2 PUSH2 0x310A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3596 DUP2 PUSH2 0x312D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x35B6 DUP2 PUSH2 0x3150 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x35D6 DUP2 PUSH2 0x3173 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x35F6 DUP2 PUSH2 0x3196 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3616 DUP2 PUSH2 0x31B9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3636 DUP2 PUSH2 0x31DC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3656 DUP2 PUSH2 0x31FF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3676 DUP2 PUSH2 0x3222 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3696 DUP2 PUSH2 0x3245 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x36B6 DUP2 PUSH2 0x3268 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x36D6 DUP2 PUSH2 0x328B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x36F6 DUP2 PUSH2 0x32AE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3716 DUP2 PUSH2 0x32F4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3736 DUP2 PUSH2 0x333A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3752 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x335D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3762 PUSH2 0x3773 JUMP JUMPDEST SWAP1 POP PUSH2 0x376E DUP3 DUP3 PUSH2 0x3A22 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x3798 JUMPI PUSH2 0x3797 PUSH2 0x3BCC JUMP JUMPDEST JUMPDEST PUSH2 0x37A1 DUP3 PUSH2 0x3C19 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 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 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x37FC DUP3 PUSH2 0x397A JUMP JUMPDEST SWAP2 POP PUSH2 0x3807 DUP4 PUSH2 0x397A JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x383C JUMPI PUSH2 0x383B PUSH2 0x3AE1 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3852 DUP3 PUSH2 0x397A JUMP JUMPDEST SWAP2 POP PUSH2 0x385D DUP4 PUSH2 0x397A JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x386D JUMPI PUSH2 0x386C PUSH2 0x3B10 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3883 DUP3 PUSH2 0x397A JUMP JUMPDEST SWAP2 POP PUSH2 0x388E DUP4 PUSH2 0x397A JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x38C7 JUMPI PUSH2 0x38C6 PUSH2 0x3AE1 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38DD DUP3 PUSH2 0x397A JUMP JUMPDEST SWAP2 POP PUSH2 0x38E8 DUP4 PUSH2 0x397A JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x38FB JUMPI PUSH2 0x38FA PUSH2 0x3AE1 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3911 DUP3 PUSH2 0x395A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x39B1 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x3996 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x39C0 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39D1 DUP3 PUSH2 0x397A JUMP JUMPDEST SWAP2 POP PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x39E5 JUMPI PUSH2 0x39E4 PUSH2 0x3AE1 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 SUB SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x3A08 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x3A1C JUMPI PUSH2 0x3A1B PUSH2 0x3B3F JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3A2B DUP3 PUSH2 0x3C19 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x3A4A JUMPI PUSH2 0x3A49 PUSH2 0x3BCC JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A5E DUP3 PUSH2 0x397A JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x3A91 JUMPI PUSH2 0x3A90 PUSH2 0x3AE1 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3ABB DUP3 PUSH2 0x397A JUMP JUMPDEST SWAP2 POP PUSH2 0x3AC6 DUP4 PUSH2 0x397A JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3AD6 JUMPI PUSH2 0x3AD5 PUSH2 0x3B10 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT 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 0x537472696E67733A20686578206C656E67746820696E73756666696369656E74 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243373231456E756D657261626C653A206F776E657220696E646578206F75 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x74206F6620626F756E6473000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x73206E6F74206F776E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243373231456E756D657261626C653A20676C6F62616C20696E646578206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7574206F6620626F756E64730000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x416363657373436F6E74726F6C3A206163636F756E7420000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732314275726E61626C653A2063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656400000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x206973206D697373696E6720726F6C6520000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x416363657373436F6E74726F6C3A2063616E206F6E6C792072656E6F756E6365 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x20726F6C657320666F722073656C660000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x41CA DUP2 PUSH2 0x3906 JUMP JUMPDEST DUP2 EQ PUSH2 0x41D5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x41E1 DUP2 PUSH2 0x3918 JUMP JUMPDEST DUP2 EQ PUSH2 0x41EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x41F8 DUP2 PUSH2 0x3924 JUMP JUMPDEST DUP2 EQ PUSH2 0x4203 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x420F DUP2 PUSH2 0x392E JUMP JUMPDEST DUP2 EQ PUSH2 0x421A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x4226 DUP2 PUSH2 0x397A JUMP JUMPDEST DUP2 EQ PUSH2 0x4231 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDB 0xEA 0xEC 0xC7 0xC5 0xDB SWAP16 0xE6 LOG3 PUSH12 0xC08C685A61C1E1CA0111A1A3 LOG1 SWAP4 SWAP3 SGT PUSH30 0x584EE4C28F64736F6C6343000807003368747470733A2F2F6170692E6669 PUSH15 0x652E6469676974616C2F6D65746164 PUSH2 0x7461 0x2F ",
"sourceMap": "588:2565:15:-:0;;;905:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1003:238;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1375:113:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1449:5;1441;:13;;;;;;;;;;;;:::i;:::-;;1474:7;1464;:17;;;;;;;;;;;;:::i;:::-;;1375:113;;1086:42:15::1;2057:4:0;1097:18:15::0;::::1;1117:10;1086;;;:42;;:::i;:::-;1138:35;788:24;1162:10;1138;;;:35;;:::i;:::-;1213:20;1183:13;;:51;;;;;;;;;;;;;;;;;;1003:238:::0;588:2565;;6822:233:0;6905:22;6913:4;6919:7;6905;;;:22;;:::i;:::-;6900:149;;6975:4;6943:6;:12;6950:4;6943:12;;;;;;;;;;;:20;;:29;6964:7;6943:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;7025:12;:10;;;:12;;:::i;:::-;6998:40;;7016:7;6998:40;;7010:4;6998:40;;;;;;;;;;6900:149;6822:233;;:::o;2894:137::-;2972:4;2995:6;:12;3002:4;2995:12;;;;;;;;;;;:20;;:29;3016:7;2995:29;;;;;;;;;;;;;;;;;;;;;;;;;2988:36;;2894:137;;;;:::o;640:96:10:-;693:7;719:10;712:17;;640:96;:::o;588:2565:15:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:143:16:-;64:5;95:6;89:13;80:22;;111:33;138:5;111:33;:::i;:::-;7:143;;;;:::o;156:351::-;226:6;275:2;263:9;254:7;250:23;246:32;243:119;;;281:79;;:::i;:::-;243:119;401:1;426:64;482:7;473:6;462:9;458:22;426:64;:::i;:::-;416:74;;372:128;156:351;;;;:::o;594:96::-;631:7;660:24;678:5;660:24;:::i;:::-;649:35;;594:96;;;:::o;696:126::-;733:7;773:42;766:5;762:54;751:65;;696:126;;;:::o;828:320::-;872:6;909:1;903:4;899:12;889:22;;956:1;950:4;946:12;977:18;967:81;;1033:4;1025:6;1021:17;1011:27;;967:81;1095:2;1087:6;1084:14;1064:18;1061:38;1058:84;;;1114:18;;:::i;:::-;1058:84;879:269;828:320;;;:::o;1154:180::-;1202:77;1199:1;1192:88;1299:4;1296:1;1289:15;1323:4;1320:1;1313:15;1463:117;1572:1;1569;1562:12;1586:122;1659:24;1677:5;1659:24;:::i;:::-;1652:5;1649:35;1639:63;;1698:1;1695;1688:12;1639:63;1586:122;:::o;588:2565:15:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@DEFAULT_ADMIN_ROLE_27": {
"entryPoint": 3612,
"id": 27,
"parameterSlots": 0,
"returnSlots": 0
},
"@MINTER_ROLE_2435": {
"entryPoint": 3996,
"id": 2435,
"parameterSlots": 0,
"returnSlots": 0
},
"@_addTokenToAllTokensEnumeration_1602": {
"entryPoint": 10084,
"id": 1602,
"parameterSlots": 1,
"returnSlots": 0
},
"@_addTokenToOwnerEnumeration_1582": {
"entryPoint": 10731,
"id": 1582,
"parameterSlots": 2,
"returnSlots": 0
},
"@_approve_1106": {
"entryPoint": 4648,
"id": 1106,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_2485": {
"entryPoint": 7283,
"id": 2485,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_1211": {
"entryPoint": 10079,
"id": 1211,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_1552": {
"entryPoint": 9216,
"id": 1552,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_2617": {
"entryPoint": 7904,
"id": 2617,
"parameterSlots": 3,
"returnSlots": 0
},
"@_burn_1013": {
"entryPoint": 6553,
"id": 1013,
"parameterSlots": 1,
"returnSlots": 0
},
"@_checkOnERC721Received_1200": {
"entryPoint": 8583,
"id": 1200,
"parameterSlots": 4,
"returnSlots": 1
},
"@_checkRole_124": {
"entryPoint": 5659,
"id": 124,
"parameterSlots": 2,
"returnSlots": 0
},
"@_exists_820": {
"entryPoint": 4532,
"id": 820,
"parameterSlots": 1,
"returnSlots": 1
},
"@_grantRole_276": {
"entryPoint": 5816,
"id": 276,
"parameterSlots": 2,
"returnSlots": 0
},
"@_isApprovedOrOwner_861": {
"entryPoint": 4833,
"id": 861,
"parameterSlots": 2,
"returnSlots": 1
},
"@_mint_962": {
"entryPoint": 9492,
"id": 962,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_2081": {
"entryPoint": 4640,
"id": 2081,
"parameterSlots": 0,
"returnSlots": 1
},
"@_removeTokenFromAllTokensEnumeration_1713": {
"entryPoint": 10522,
"id": 1713,
"parameterSlots": 1,
"returnSlots": 0
},
"@_removeTokenFromOwnerEnumeration_1665": {
"entryPoint": 10157,
"id": 1665,
"parameterSlots": 2,
"returnSlots": 0
},
"@_revokeRole_307": {
"entryPoint": 6041,
"id": 307,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_876": {
"entryPoint": 6303,
"id": 876,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_905": {
"entryPoint": 8492,
"id": 905,
"parameterSlots": 3,
"returnSlots": 0
},
"@_safeTransfer_802": {
"entryPoint": 7191,
"id": 802,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setApprovalForAll_1138": {
"entryPoint": 6826,
"id": 1138,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transfer_1082": {
"entryPoint": 5055,
"id": 1082,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_641": {
"entryPoint": 1809,
"id": 641,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_499": {
"entryPoint": 3175,
"id": 499,
"parameterSlots": 1,
"returnSlots": 1
},
"@burn_1375": {
"entryPoint": 2724,
"id": 1375,
"parameterSlots": 1,
"returnSlots": 0
},
"@current_2109": {
"entryPoint": 6267,
"id": 2109,
"parameterSlots": 1,
"returnSlots": 1
},
"@getApproved_662": {
"entryPoint": 1676,
"id": 662,
"parameterSlots": 1,
"returnSlots": 1
},
"@getRandomness_2596": {
"entryPoint": 6333,
"id": 2596,
"parameterSlots": 2,
"returnSlots": 1
},
"@getRoleAdmin_139": {
"entryPoint": 2198,
"id": 139,
"parameterSlots": 1,
"returnSlots": 1
},
"@grantRole_159": {
"entryPoint": 2230,
"id": 159,
"parameterSlots": 2,
"returnSlots": 0
},
"@hasRole_81": {
"entryPoint": 3359,
"id": 81,
"parameterSlots": 2,
"returnSlots": 1
},
"@hashes_2442": {
"entryPoint": 2929,
"id": 2442,
"parameterSlots": 0,
"returnSlots": 0
},
"@increment_2123": {
"entryPoint": 6281,
"id": 2123,
"parameterSlots": 1,
"returnSlots": 0
},
"@isApprovedForAll_697": {
"entryPoint": 4073,
"id": 697,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1792": {
"entryPoint": 9954,
"id": 1792,
"parameterSlots": 1,
"returnSlots": 1
},
"@name_537": {
"entryPoint": 1530,
"id": 537,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_527": {
"entryPoint": 2997,
"id": 527,
"parameterSlots": 1,
"returnSlots": 1
},
"@renounceRole_202": {
"entryPoint": 2436,
"id": 202,
"parameterSlots": 2,
"returnSlots": 0
},
"@revokeRole_179": {
"entryPoint": 4032,
"id": 179,
"parameterSlots": 2,
"returnSlots": 0
},
"@safeMint_2523": {
"entryPoint": 2567,
"id": 2523,
"parameterSlots": 1,
"returnSlots": 0
},
"@safeTransferFrom_743": {
"entryPoint": 2692,
"id": 743,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_773": {
"entryPoint": 3641,
"id": 773,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_679": {
"entryPoint": 3619,
"id": 679,
"parameterSlots": 2,
"returnSlots": 0
},
"@setBaseURI_2537": {
"entryPoint": 2953,
"id": 2537,
"parameterSlots": 2,
"returnSlots": 0
},
"@setRandom_2553": {
"entryPoint": 3906,
"id": 2553,
"parameterSlots": 1,
"returnSlots": 0
},
"@supportsInterface_1426": {
"entryPoint": 7782,
"id": 1426,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_2391": {
"entryPoint": 9973,
"id": 2391,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_2634": {
"entryPoint": 1512,
"id": 2634,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_475": {
"entryPoint": 8990,
"id": 475,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_62": {
"entryPoint": 4410,
"id": 62,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_547": {
"entryPoint": 3466,
"id": 547,
"parameterSlots": 0,
"returnSlots": 1
},
"@testRandom_2567": {
"entryPoint": 4221,
"id": 2567,
"parameterSlots": 0,
"returnSlots": 1
},
"@toHexString_2367": {
"entryPoint": 7920,
"id": 2367,
"parameterSlots": 2,
"returnSlots": 1
},
"@toString_2250": {
"entryPoint": 7429,
"id": 2250,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenByIndex_1488": {
"entryPoint": 2816,
"id": 1488,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenOfOwnerByIndex_1454": {
"entryPoint": 2271,
"id": 1454,
"parameterSlots": 2,
"returnSlots": 1
},
"@tokenURI_589": {
"entryPoint": 3739,
"id": 589,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_1465": {
"entryPoint": 2089,
"id": 1465,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_724": {
"entryPoint": 2102,
"id": 724,
"parameterSlots": 3,
"returnSlots": 0
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 11021,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 11087,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 11108,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes32": {
"entryPoint": 11129,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes32_fromMemory": {
"entryPoint": 11150,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 11171,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 11192,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 11213,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_calldata_ptr": {
"entryPoint": 11259,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_t_uint256": {
"entryPoint": 11345,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 11366,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 11411,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 11475,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 11558,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 11689,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 11753,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes32": {
"entryPoint": 11817,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes32_fromMemory": {
"entryPoint": 11862,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes32t_address": {
"entryPoint": 11907,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 11971,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 12016,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_calldata_ptr": {
"entryPoint": 12061,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 12138,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 12183,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 12198,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes32_to_t_bytes32_fromStack": {
"entryPoint": 12213,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack": {
"entryPoint": 12228,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 12251,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12308,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 12365,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12414,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12449,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12484,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12519,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12554,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12589,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12624,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12659,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12694,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12729,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12764,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12799,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12834,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12869,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12904,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12939,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12974,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 13009,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13044,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 13079,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13114,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 13149,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack": {
"entryPoint": 13164,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_bytes32_t_uint256_t_uint256__to_t_bytes32_t_uint256_t_uint256__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 13187,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 13248,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_t_string_memory_ptr_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 13284,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 13342,
"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": 13369,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 13445,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed": {
"entryPoint": 13472,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13499,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13533,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13565,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13597,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13629,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13661,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13693,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13725,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13757,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13789,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13821,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13853,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13885,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13917,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13949,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13981,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14013,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14045,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14077,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14109,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 14141,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 14168,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 14195,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 14205,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 14254,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 14265,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 14276,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 14293,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 14310,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 14321,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 14407,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 14456,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 14546,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 14598,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 14616,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes32": {
"entryPoint": 14628,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 14638,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 14682,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 14714,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 14724,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 14739,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"decrement_t_uint256": {
"entryPoint": 14790,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 14832,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 14882,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"increment_t_uint256": {
"entryPoint": 14931,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"leftAlign_t_bytes32": {
"entryPoint": 15004,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"leftAlign_t_uint256": {
"entryPoint": 15014,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 15024,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 15073,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 15120,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 15167,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x31": {
"entryPoint": 15214,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 15261,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 15308,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490": {
"entryPoint": 15355,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 15360,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef": {
"entryPoint": 15365,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 15370,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 15375,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 15380,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 15385,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2": {
"entryPoint": 15402,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c": {
"entryPoint": 15443,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e": {
"entryPoint": 15522,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57": {
"entryPoint": 15601,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4": {
"entryPoint": 15642,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05": {
"entryPoint": 15721,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c": {
"entryPoint": 15762,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d": {
"entryPoint": 15841,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba": {
"entryPoint": 15920,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397": {
"entryPoint": 15999,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6": {
"entryPoint": 16078,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d": {
"entryPoint": 16119,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950": {
"entryPoint": 16198,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb": {
"entryPoint": 16277,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942": {
"entryPoint": 16356,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2": {
"entryPoint": 16435,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc": {
"entryPoint": 16514,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874": {
"entryPoint": 16593,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1": {
"entryPoint": 16634,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69": {
"entryPoint": 16713,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b": {
"entryPoint": 16754,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 16833,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 16856,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes32": {
"entryPoint": 16879,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 16902,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 16925,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:42196:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "90:327:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "100:74:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "166:6:16"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "125:40:16"
},
"nodeType": "YulFunctionCall",
"src": "125:48:16"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "109:15:16"
},
"nodeType": "YulFunctionCall",
"src": "109:65:16"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "100:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "190:5:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "197:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "183:6:16"
},
"nodeType": "YulFunctionCall",
"src": "183:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "183:21:16"
},
{
"nodeType": "YulVariableDeclaration",
"src": "213:27:16",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "228:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "235:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "224:3:16"
},
"nodeType": "YulFunctionCall",
"src": "224:16:16"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "217:3:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "278:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "280:77:16"
},
"nodeType": "YulFunctionCall",
"src": "280:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "280:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "259:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "264:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "255:3:16"
},
"nodeType": "YulFunctionCall",
"src": "255:16:16"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "273:3:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "252:2:16"
},
"nodeType": "YulFunctionCall",
"src": "252:25:16"
},
"nodeType": "YulIf",
"src": "249:112:16"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "394:3:16"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "399:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "404:6:16"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "370:23:16"
},
"nodeType": "YulFunctionCall",
"src": "370:41:16"
},
"nodeType": "YulExpressionStatement",
"src": "370:41:16"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "63:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "68:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "76:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "84:5:16",
"type": ""
}
],
"src": "7:410:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "475:87:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "485:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "507:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "494:12:16"
},
"nodeType": "YulFunctionCall",
"src": "494:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "485:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "550:5:16"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "523:26:16"
},
"nodeType": "YulFunctionCall",
"src": "523:33:16"
},
"nodeType": "YulExpressionStatement",
"src": "523:33:16"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "453:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "461:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "469:5:16",
"type": ""
}
],
"src": "423:139:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "617:84:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "627:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "649:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "636:12:16"
},
"nodeType": "YulFunctionCall",
"src": "636:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "627:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "689:5:16"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "665:23:16"
},
"nodeType": "YulFunctionCall",
"src": "665:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "665:30:16"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "595:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "603:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:16",
"type": ""
}
],
"src": "568:133:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "759:87:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "769:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "791:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "778:12:16"
},
"nodeType": "YulFunctionCall",
"src": "778:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "769:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "834:5:16"
}
],
"functionName": {
"name": "validator_revert_t_bytes32",
"nodeType": "YulIdentifier",
"src": "807:26:16"
},
"nodeType": "YulFunctionCall",
"src": "807:33:16"
},
"nodeType": "YulExpressionStatement",
"src": "807:33:16"
}
]
},
"name": "abi_decode_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "737:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "745:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "753:5:16",
"type": ""
}
],
"src": "707:139:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "915:80:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "925:22:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "940:6:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "934:5:16"
},
"nodeType": "YulFunctionCall",
"src": "934:13:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "925:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "983:5:16"
}
],
"functionName": {
"name": "validator_revert_t_bytes32",
"nodeType": "YulIdentifier",
"src": "956:26:16"
},
"nodeType": "YulFunctionCall",
"src": "956:33:16"
},
"nodeType": "YulExpressionStatement",
"src": "956:33:16"
}
]
},
"name": "abi_decode_t_bytes32_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "893:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "901:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "909:5:16",
"type": ""
}
],
"src": "852:143:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1052:86:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1062:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1084:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1071:12:16"
},
"nodeType": "YulFunctionCall",
"src": "1071:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1062:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1126:5:16"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1100:25:16"
},
"nodeType": "YulFunctionCall",
"src": "1100:32:16"
},
"nodeType": "YulExpressionStatement",
"src": "1100:32:16"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1030:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1038:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1046:5:16",
"type": ""
}
],
"src": "1001:137:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1206:79:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1216:22:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1231:6:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1225:5:16"
},
"nodeType": "YulFunctionCall",
"src": "1225:13:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1216:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1273:5:16"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1247:25:16"
},
"nodeType": "YulFunctionCall",
"src": "1247:32:16"
},
"nodeType": "YulExpressionStatement",
"src": "1247:32:16"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1184:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1192:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1200:5:16",
"type": ""
}
],
"src": "1144:141:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1365:277:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1414:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "1416:77:16"
},
"nodeType": "YulFunctionCall",
"src": "1416:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "1416:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1393:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1401:4:16",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1389:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1389:17:16"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1408:3:16"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1385:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1385:27:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1378:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1378:35:16"
},
"nodeType": "YulIf",
"src": "1375:122:16"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1506:34:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1533:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1520:12:16"
},
"nodeType": "YulFunctionCall",
"src": "1520:20:16"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1510:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1549:87:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1609:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1617:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1605:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1605:17:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1624:6:16"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1632:3:16"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1558:46:16"
},
"nodeType": "YulFunctionCall",
"src": "1558:78:16"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1549:5:16"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1343:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1351:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1359:5:16",
"type": ""
}
],
"src": "1304:338:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1737:478:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1786:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "1788:77:16"
},
"nodeType": "YulFunctionCall",
"src": "1788:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "1788:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1765:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1773:4:16",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1761:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1761:17:16"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1780:3:16"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1757:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1757:27:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1750:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1750:35:16"
},
"nodeType": "YulIf",
"src": "1747:122:16"
},
{
"nodeType": "YulAssignment",
"src": "1878:30:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1901:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1888:12:16"
},
"nodeType": "YulFunctionCall",
"src": "1888:20:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1878:6:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1951:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490",
"nodeType": "YulIdentifier",
"src": "1953:77:16"
},
"nodeType": "YulFunctionCall",
"src": "1953:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "1953:79:16"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1923:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1931:18:16",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1920:2:16"
},
"nodeType": "YulFunctionCall",
"src": "1920:30:16"
},
"nodeType": "YulIf",
"src": "1917:117:16"
},
{
"nodeType": "YulAssignment",
"src": "2043:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2059:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2067:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2055:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2055:17:16"
},
"variableNames": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "2043:8:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2126:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulIdentifier",
"src": "2128:77:16"
},
"nodeType": "YulFunctionCall",
"src": "2128:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "2128:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "2091:8:16"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2105:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2113:4:16",
"type": "",
"value": "0x01"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "2101:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2101:17:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2087:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2087:32:16"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2121:3:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2084:2:16"
},
"nodeType": "YulFunctionCall",
"src": "2084:41:16"
},
"nodeType": "YulIf",
"src": "2081:128:16"
}
]
},
"name": "abi_decode_t_string_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1704:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1712:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "arrayPos",
"nodeType": "YulTypedName",
"src": "1720:8:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1730:6:16",
"type": ""
}
],
"src": "1662:553:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2273:87:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2283:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2305:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2292:12:16"
},
"nodeType": "YulFunctionCall",
"src": "2292:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2283:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2348:5:16"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2321:26:16"
},
"nodeType": "YulFunctionCall",
"src": "2321:33:16"
},
"nodeType": "YulExpressionStatement",
"src": "2321:33:16"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2251:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2259:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2267:5:16",
"type": ""
}
],
"src": "2221:139:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2432:263:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2478:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2480:77:16"
},
"nodeType": "YulFunctionCall",
"src": "2480:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "2480:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2453:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2462:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2449:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2449:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2474:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2445:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2445:32:16"
},
"nodeType": "YulIf",
"src": "2442:119:16"
},
{
"nodeType": "YulBlock",
"src": "2571:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2586:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2600:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2590:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2615:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2650:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2661:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2646:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2646:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2670:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2625:20:16"
},
"nodeType": "YulFunctionCall",
"src": "2625:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2615:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2402:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2413:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2425:6:16",
"type": ""
}
],
"src": "2366:329:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2784:391:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2830:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2832:77:16"
},
"nodeType": "YulFunctionCall",
"src": "2832:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "2832:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2805:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2814:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2801:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2801:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2826:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2797:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2797:32:16"
},
"nodeType": "YulIf",
"src": "2794:119:16"
},
{
"nodeType": "YulBlock",
"src": "2923:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2938:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2952:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2942:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2967:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3002:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3013:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2998:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2998:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3022:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2977:20:16"
},
"nodeType": "YulFunctionCall",
"src": "2977:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2967:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3050:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3065:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3079:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3069:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3095:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3130:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3141:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3126:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3126:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3150:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3105:20:16"
},
"nodeType": "YulFunctionCall",
"src": "3105:53:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3095:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2746:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2757:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2769:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2777:6:16",
"type": ""
}
],
"src": "2701:474:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3281:519:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3327:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3329:77:16"
},
"nodeType": "YulFunctionCall",
"src": "3329:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "3329:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3302:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3311:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3298:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3298:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3323:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3294:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3294:32:16"
},
"nodeType": "YulIf",
"src": "3291:119:16"
},
{
"nodeType": "YulBlock",
"src": "3420:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3435:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3449:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3439:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3464:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3499:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3510:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3495:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3495:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3519:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3474:20:16"
},
"nodeType": "YulFunctionCall",
"src": "3474:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3464:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3547:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3562:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3576:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3566:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3592:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3627:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3638:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3623:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3623:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3647:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3602:20:16"
},
"nodeType": "YulFunctionCall",
"src": "3602:53:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3592:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3675:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3690:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3704:2:16",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3694:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3720:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3755:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3766:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3751:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3751:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3775:7:16"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3730:20:16"
},
"nodeType": "YulFunctionCall",
"src": "3730:53:16"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3720:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3235:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3246:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3258:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3266:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3274:6:16",
"type": ""
}
],
"src": "3181:619:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3932:817:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3979:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3981:77:16"
},
"nodeType": "YulFunctionCall",
"src": "3981:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "3981:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3953:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3962:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3949:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3949:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3974:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3945:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3945:33:16"
},
"nodeType": "YulIf",
"src": "3942:120:16"
},
{
"nodeType": "YulBlock",
"src": "4072:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4087:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4101:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4091:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4116:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4151:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4162:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4147:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4147:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4171:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4126:20:16"
},
"nodeType": "YulFunctionCall",
"src": "4126:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4116:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4199:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4214:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4228:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4218:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4244:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4279:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4290:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4275:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4275:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4299:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4254:20:16"
},
"nodeType": "YulFunctionCall",
"src": "4254:53:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4244:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4327:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4342:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4356:2:16",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4346:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4372:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4407:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4418:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4403:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4403:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4427:7:16"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4382:20:16"
},
"nodeType": "YulFunctionCall",
"src": "4382:53:16"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4372:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4455:287:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4470:46:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4501:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4512:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4497:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4497:18:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4484:12:16"
},
"nodeType": "YulFunctionCall",
"src": "4484:32:16"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4474:6:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4563:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "4565:77:16"
},
"nodeType": "YulFunctionCall",
"src": "4565:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "4565:79:16"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4535:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4543:18:16",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4532:2:16"
},
"nodeType": "YulFunctionCall",
"src": "4532:30:16"
},
"nodeType": "YulIf",
"src": "4529:117:16"
},
{
"nodeType": "YulAssignment",
"src": "4660:72:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4704:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4715:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4700:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4700:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4724:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4670:29:16"
},
"nodeType": "YulFunctionCall",
"src": "4670:62:16"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "4660:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3878:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3889:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3901:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3909:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3917:6:16",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "3925:6:16",
"type": ""
}
],
"src": "3806:943:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4835:388:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4881:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4883:77:16"
},
"nodeType": "YulFunctionCall",
"src": "4883:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "4883:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4856:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4865:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4852:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4852:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4877:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4848:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4848:32:16"
},
"nodeType": "YulIf",
"src": "4845:119:16"
},
{
"nodeType": "YulBlock",
"src": "4974:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4989:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5003:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4993:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5018:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5053:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5064:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5049:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5049:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5073:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5028:20:16"
},
"nodeType": "YulFunctionCall",
"src": "5028:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5018:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5101:115:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5116:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5130:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5120:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5146:60:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5178:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5189:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5174:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5174:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5198:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "5156:17:16"
},
"nodeType": "YulFunctionCall",
"src": "5156:50:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5146:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4797:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4808:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4820:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4828:6:16",
"type": ""
}
],
"src": "4755:468:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5312:391:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5358:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5360:77:16"
},
"nodeType": "YulFunctionCall",
"src": "5360:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "5360:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5333:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5342:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5329:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5329:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5354:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5325:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5325:32:16"
},
"nodeType": "YulIf",
"src": "5322:119:16"
},
{
"nodeType": "YulBlock",
"src": "5451:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5466:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5480:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5470:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5495:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5530:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5541:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5526:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5526:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5550:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5505:20:16"
},
"nodeType": "YulFunctionCall",
"src": "5505:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5495:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5578:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5593:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5607:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5597:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5623:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5658:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5669:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5654:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5654:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5678:7:16"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5633:20:16"
},
"nodeType": "YulFunctionCall",
"src": "5633:53:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5623:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5274:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5285:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5297:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5305:6:16",
"type": ""
}
],
"src": "5229:474:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5775:263:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5821:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5823:77:16"
},
"nodeType": "YulFunctionCall",
"src": "5823:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "5823:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5796:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5805:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5792:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5792:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5817:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5788:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5788:32:16"
},
"nodeType": "YulIf",
"src": "5785:119:16"
},
{
"nodeType": "YulBlock",
"src": "5914:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5929:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5943:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5933:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5958:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5993:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6004:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5989:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5989:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6013:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bytes32",
"nodeType": "YulIdentifier",
"src": "5968:20:16"
},
"nodeType": "YulFunctionCall",
"src": "5968:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5958:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5745:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5756:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5768:6:16",
"type": ""
}
],
"src": "5709:329:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6121:274:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6167:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6169:77:16"
},
"nodeType": "YulFunctionCall",
"src": "6169:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "6169:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6142:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6151:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6138:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6138:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6163:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6134:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6134:32:16"
},
"nodeType": "YulIf",
"src": "6131:119:16"
},
{
"nodeType": "YulBlock",
"src": "6260:128:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6275:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6289:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6279:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6304:74:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6350:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6361:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6346:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6346:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6370:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bytes32_fromMemory",
"nodeType": "YulIdentifier",
"src": "6314:31:16"
},
"nodeType": "YulFunctionCall",
"src": "6314:64:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6304:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes32_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6091:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6102:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6114:6:16",
"type": ""
}
],
"src": "6044:351:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6484:391:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6530:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6532:77:16"
},
"nodeType": "YulFunctionCall",
"src": "6532:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "6532:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6505:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6514:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6501:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6501:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6526:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6497:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6497:32:16"
},
"nodeType": "YulIf",
"src": "6494:119:16"
},
{
"nodeType": "YulBlock",
"src": "6623:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6638:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6652:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6642:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6667:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6702:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6713:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6698:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6698:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6722:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bytes32",
"nodeType": "YulIdentifier",
"src": "6677:20:16"
},
"nodeType": "YulFunctionCall",
"src": "6677:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6667:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6750:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6765:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6779:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6769:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6795:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6830:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6841:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6826:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6826:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6850:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6805:20:16"
},
"nodeType": "YulFunctionCall",
"src": "6805:53:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6795:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes32t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6446:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6457:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6469:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6477:6:16",
"type": ""
}
],
"src": "6401:474:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6946:262:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6992:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6994:77:16"
},
"nodeType": "YulFunctionCall",
"src": "6994:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "6994:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6967:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6976:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6963:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6963:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6988:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6959:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6959:32:16"
},
"nodeType": "YulIf",
"src": "6956:119:16"
},
{
"nodeType": "YulBlock",
"src": "7085:116:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7100:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7114:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7104:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7129:62:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7163:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7174:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7159:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7159:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7183:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "7139:19:16"
},
"nodeType": "YulFunctionCall",
"src": "7139:52:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7129:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6916:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6927:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6939:6:16",
"type": ""
}
],
"src": "6881:327:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7290:273:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7336:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "7338:77:16"
},
"nodeType": "YulFunctionCall",
"src": "7338:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "7338:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7311:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7320:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7307:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7307:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7332:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7303:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7303:32:16"
},
"nodeType": "YulIf",
"src": "7300:119:16"
},
{
"nodeType": "YulBlock",
"src": "7429:127:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7444:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7458:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7448:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7473:73:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7518:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7529:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7514:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7514:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7538:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "7483:30:16"
},
"nodeType": "YulFunctionCall",
"src": "7483:63:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7473:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7260:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7271:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7283:6:16",
"type": ""
}
],
"src": "7214:349:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7655:443:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7701:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "7703:77:16"
},
"nodeType": "YulFunctionCall",
"src": "7703:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "7703:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7676:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7685:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7672:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7672:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7697:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7668:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7668:32:16"
},
"nodeType": "YulIf",
"src": "7665:119:16"
},
{
"nodeType": "YulBlock",
"src": "7794:297:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7809:45:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7840:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7851:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7836:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7836:17:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "7823:12:16"
},
"nodeType": "YulFunctionCall",
"src": "7823:31:16"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7813:6:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7901:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "7903:77:16"
},
"nodeType": "YulFunctionCall",
"src": "7903:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "7903:79:16"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7873:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7881:18:16",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7870:2:16"
},
"nodeType": "YulFunctionCall",
"src": "7870:30:16"
},
"nodeType": "YulIf",
"src": "7867:117:16"
},
{
"nodeType": "YulAssignment",
"src": "7998:83:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8053:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8064:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8049:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8049:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8073:7:16"
}
],
"functionName": {
"name": "abi_decode_t_string_calldata_ptr",
"nodeType": "YulIdentifier",
"src": "8016:32:16"
},
"nodeType": "YulFunctionCall",
"src": "8016:65:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7998:6:16"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "8006:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7617:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7628:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7640:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "7648:6:16",
"type": ""
}
],
"src": "7569:529:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8170:263:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8216:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "8218:77:16"
},
"nodeType": "YulFunctionCall",
"src": "8218:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "8218:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8191:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8200:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8187:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8187:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8212:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8183:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8183:32:16"
},
"nodeType": "YulIf",
"src": "8180:119:16"
},
{
"nodeType": "YulBlock",
"src": "8309:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8324:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8338:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8328:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8353:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8388:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8399:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8384:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8384:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8408:7:16"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "8363:20:16"
},
"nodeType": "YulFunctionCall",
"src": "8363:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8353:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8140:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "8151:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8163:6:16",
"type": ""
}
],
"src": "8104:329:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8504:53:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8521:3:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8544:5:16"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "8526:17:16"
},
"nodeType": "YulFunctionCall",
"src": "8526:24:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8514:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8514:37:16"
},
"nodeType": "YulExpressionStatement",
"src": "8514:37:16"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8492:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8499:3:16",
"type": ""
}
],
"src": "8439:118:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8622:50:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8639:3:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8659:5:16"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "8644:14:16"
},
"nodeType": "YulFunctionCall",
"src": "8644:21:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8632:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8632:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "8632:34:16"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8610:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8617:3:16",
"type": ""
}
],
"src": "8563:109:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8743:53:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8760:3:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8783:5:16"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "8765:17:16"
},
"nodeType": "YulFunctionCall",
"src": "8765:24:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8753:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8753:37:16"
},
"nodeType": "YulExpressionStatement",
"src": "8753:37:16"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8731:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8738:3:16",
"type": ""
}
],
"src": "8678:118:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8885:74:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8902:3:16"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8945:5:16"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "8927:17:16"
},
"nodeType": "YulFunctionCall",
"src": "8927:24:16"
}
],
"functionName": {
"name": "leftAlign_t_bytes32",
"nodeType": "YulIdentifier",
"src": "8907:19:16"
},
"nodeType": "YulFunctionCall",
"src": "8907:45:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8895:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8895:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "8895:58:16"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8873:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8880:3:16",
"type": ""
}
],
"src": "8802:157:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9055:270:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9065:52:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9111:5:16"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9079:31:16"
},
"nodeType": "YulFunctionCall",
"src": "9079:38:16"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9069:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9126:77:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9191:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9196:6:16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9133:57:16"
},
"nodeType": "YulFunctionCall",
"src": "9133:70:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9126:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9238:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9245:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9234:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9234:16:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9252:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9257:6:16"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "9212:21:16"
},
"nodeType": "YulFunctionCall",
"src": "9212:52:16"
},
"nodeType": "YulExpressionStatement",
"src": "9212:52:16"
},
{
"nodeType": "YulAssignment",
"src": "9273:46:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9284:3:16"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9311:6:16"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "9289:21:16"
},
"nodeType": "YulFunctionCall",
"src": "9289:29:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9280:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9280:39:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9273:3:16"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9036:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9043:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9051:3:16",
"type": ""
}
],
"src": "8965:360:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9423:272:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9433:53:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9480:5:16"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9447:32:16"
},
"nodeType": "YulFunctionCall",
"src": "9447:39:16"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9437:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9495:78:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9561:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9566:6:16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9502:58:16"
},
"nodeType": "YulFunctionCall",
"src": "9502:71:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9495:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9608:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9615:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9604:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9604:16:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9622:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9627:6:16"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "9582:21:16"
},
"nodeType": "YulFunctionCall",
"src": "9582:52:16"
},
"nodeType": "YulExpressionStatement",
"src": "9582:52:16"
},
{
"nodeType": "YulAssignment",
"src": "9643:46:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9654:3:16"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9681:6:16"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "9659:21:16"
},
"nodeType": "YulFunctionCall",
"src": "9659:29:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9650:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9650:39:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9643:3:16"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9404:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9411:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9419:3:16",
"type": ""
}
],
"src": "9331:364:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9811:267:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9821:53:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9868:5:16"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9835:32:16"
},
"nodeType": "YulFunctionCall",
"src": "9835:39:16"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9825:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9883:96:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9967:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9972:6:16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "9890:76:16"
},
"nodeType": "YulFunctionCall",
"src": "9890:89:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9883:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10014:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10021:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10010:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10010:16:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10028:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10033:6:16"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "9988:21:16"
},
"nodeType": "YulFunctionCall",
"src": "9988:52:16"
},
"nodeType": "YulExpressionStatement",
"src": "9988:52:16"
},
{
"nodeType": "YulAssignment",
"src": "10049:23:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10060:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10065:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10056:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10056:16:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10049:3:16"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9792:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9799:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9807:3:16",
"type": ""
}
],
"src": "9701:377:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10230:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10240:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10306:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10311:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10247:58:16"
},
"nodeType": "YulFunctionCall",
"src": "10247:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10240:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10412:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2",
"nodeType": "YulIdentifier",
"src": "10323:88:16"
},
"nodeType": "YulFunctionCall",
"src": "10323:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "10323:93:16"
},
{
"nodeType": "YulAssignment",
"src": "10425:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10436:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10441:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10432:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10432:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10425:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10218:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10226:3:16",
"type": ""
}
],
"src": "10084:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10602:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10612:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10678:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10683:2:16",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10619:58:16"
},
"nodeType": "YulFunctionCall",
"src": "10619:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10612:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10784:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c",
"nodeType": "YulIdentifier",
"src": "10695:88:16"
},
"nodeType": "YulFunctionCall",
"src": "10695:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "10695:93:16"
},
{
"nodeType": "YulAssignment",
"src": "10797:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10808:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10813:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10804:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10804:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10797:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10590:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10598:3:16",
"type": ""
}
],
"src": "10456:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10974:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10984:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11050:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11055:2:16",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10991:58:16"
},
"nodeType": "YulFunctionCall",
"src": "10991:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10984:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11156:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "11067:88:16"
},
"nodeType": "YulFunctionCall",
"src": "11067:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "11067:93:16"
},
{
"nodeType": "YulAssignment",
"src": "11169:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11180:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11185:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11176:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11176:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11169:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10962:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10970:3:16",
"type": ""
}
],
"src": "10828:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11346:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11356:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11422:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11427:2:16",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11363:58:16"
},
"nodeType": "YulFunctionCall",
"src": "11363:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11356:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11528:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulIdentifier",
"src": "11439:88:16"
},
"nodeType": "YulFunctionCall",
"src": "11439:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "11439:93:16"
},
{
"nodeType": "YulAssignment",
"src": "11541:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11552:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11557:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11548:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11548:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11541:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11334:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11342:3:16",
"type": ""
}
],
"src": "11200:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11718:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11728:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11794:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11799:2:16",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11735:58:16"
},
"nodeType": "YulFunctionCall",
"src": "11735:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11728:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11900:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "11811:88:16"
},
"nodeType": "YulFunctionCall",
"src": "11811:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "11811:93:16"
},
{
"nodeType": "YulAssignment",
"src": "11913:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11924:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11929:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11920:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11920:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11913:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11706:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11714:3:16",
"type": ""
}
],
"src": "11572:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12090:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12100:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12166:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12171:2:16",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12107:58:16"
},
"nodeType": "YulFunctionCall",
"src": "12107:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12100:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12272:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulIdentifier",
"src": "12183:88:16"
},
"nodeType": "YulFunctionCall",
"src": "12183:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "12183:93:16"
},
{
"nodeType": "YulAssignment",
"src": "12285:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12296:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12301:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12292:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12292:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12285:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12078:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12086:3:16",
"type": ""
}
],
"src": "11944:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12462:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12472:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12538:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12543:2:16",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12479:58:16"
},
"nodeType": "YulFunctionCall",
"src": "12479:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12472:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12644:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulIdentifier",
"src": "12555:88:16"
},
"nodeType": "YulFunctionCall",
"src": "12555:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "12555:93:16"
},
{
"nodeType": "YulAssignment",
"src": "12657:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12668:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12673:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12664:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12664:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12657:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12450:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12458:3:16",
"type": ""
}
],
"src": "12316:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12834:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12844:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12910:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12915:2:16",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12851:58:16"
},
"nodeType": "YulFunctionCall",
"src": "12851:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12844:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13016:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulIdentifier",
"src": "12927:88:16"
},
"nodeType": "YulFunctionCall",
"src": "12927:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "12927:93:16"
},
{
"nodeType": "YulAssignment",
"src": "13029:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13040:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13045:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13036:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13036:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13029:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12822:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12830:3:16",
"type": ""
}
],
"src": "12688:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13206:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13216:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13282:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13287:2:16",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13223:58:16"
},
"nodeType": "YulFunctionCall",
"src": "13223:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13216:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13388:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulIdentifier",
"src": "13299:88:16"
},
"nodeType": "YulFunctionCall",
"src": "13299:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "13299:93:16"
},
{
"nodeType": "YulAssignment",
"src": "13401:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13412:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13417:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13408:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13408:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13401:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13194:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13202:3:16",
"type": ""
}
],
"src": "13060:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13578:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13588:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13654:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13659:2:16",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13595:58:16"
},
"nodeType": "YulFunctionCall",
"src": "13595:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13588:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13760:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulIdentifier",
"src": "13671:88:16"
},
"nodeType": "YulFunctionCall",
"src": "13671:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "13671:93:16"
},
{
"nodeType": "YulAssignment",
"src": "13773:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13784:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13789:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13780:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13780:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13773:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13566:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13574:3:16",
"type": ""
}
],
"src": "13432:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13950:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13960:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14026:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14031:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13967:58:16"
},
"nodeType": "YulFunctionCall",
"src": "13967:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13960:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14132:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulIdentifier",
"src": "14043:88:16"
},
"nodeType": "YulFunctionCall",
"src": "14043:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "14043:93:16"
},
{
"nodeType": "YulAssignment",
"src": "14145:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14156:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14161:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14152:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14152:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14145:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13938:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13946:3:16",
"type": ""
}
],
"src": "13804:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14322:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14332:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14398:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14403:2:16",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14339:58:16"
},
"nodeType": "YulFunctionCall",
"src": "14339:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14332:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14504:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulIdentifier",
"src": "14415:88:16"
},
"nodeType": "YulFunctionCall",
"src": "14415:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "14415:93:16"
},
{
"nodeType": "YulAssignment",
"src": "14517:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14528:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14533:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14524:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14524:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14517:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14310:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14318:3:16",
"type": ""
}
],
"src": "14176:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14694:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14704:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14770:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14775:2:16",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14711:58:16"
},
"nodeType": "YulFunctionCall",
"src": "14711:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14704:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14876:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950",
"nodeType": "YulIdentifier",
"src": "14787:88:16"
},
"nodeType": "YulFunctionCall",
"src": "14787:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "14787:93:16"
},
{
"nodeType": "YulAssignment",
"src": "14889:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14900:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14905:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14896:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14896:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14889:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14682:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14690:3:16",
"type": ""
}
],
"src": "14548:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15066:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15076:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15142:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15147:2:16",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15083:58:16"
},
"nodeType": "YulFunctionCall",
"src": "15083:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15076:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15248:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulIdentifier",
"src": "15159:88:16"
},
"nodeType": "YulFunctionCall",
"src": "15159:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "15159:93:16"
},
{
"nodeType": "YulAssignment",
"src": "15261:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15272:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15277:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15268:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15268:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15261:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15054:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15062:3:16",
"type": ""
}
],
"src": "14920:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15438:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15448:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15514:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15519:2:16",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15455:58:16"
},
"nodeType": "YulFunctionCall",
"src": "15455:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15448:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15620:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "15531:88:16"
},
"nodeType": "YulFunctionCall",
"src": "15531:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "15531:93:16"
},
{
"nodeType": "YulAssignment",
"src": "15633:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15644:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15649:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15640:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15640:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15633:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15426:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15434:3:16",
"type": ""
}
],
"src": "15292:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15810:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15820:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15886:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15891:2:16",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15827:58:16"
},
"nodeType": "YulFunctionCall",
"src": "15827:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15820:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15992:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulIdentifier",
"src": "15903:88:16"
},
"nodeType": "YulFunctionCall",
"src": "15903:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "15903:93:16"
},
{
"nodeType": "YulAssignment",
"src": "16005:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16016:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16021:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16012:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16012:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16005:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15798:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15806:3:16",
"type": ""
}
],
"src": "15664:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16182:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16192:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16258:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16263:2:16",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16199:58:16"
},
"nodeType": "YulFunctionCall",
"src": "16199:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16192:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16364:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc",
"nodeType": "YulIdentifier",
"src": "16275:88:16"
},
"nodeType": "YulFunctionCall",
"src": "16275:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "16275:93:16"
},
{
"nodeType": "YulAssignment",
"src": "16377:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16388:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16393:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16384:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16384:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16377:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16170:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16178:3:16",
"type": ""
}
],
"src": "16036:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16572:238:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16582:92:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16666:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16671:2:16",
"type": "",
"value": "23"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "16589:76:16"
},
"nodeType": "YulFunctionCall",
"src": "16589:85:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16582:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16772:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874",
"nodeType": "YulIdentifier",
"src": "16683:88:16"
},
"nodeType": "YulFunctionCall",
"src": "16683:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "16683:93:16"
},
{
"nodeType": "YulAssignment",
"src": "16785:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16796:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16801:2:16",
"type": "",
"value": "23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16792:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16792:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16785:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16560:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16568:3:16",
"type": ""
}
],
"src": "16408:402:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16962:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16972:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17038:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17043:2:16",
"type": "",
"value": "48"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16979:58:16"
},
"nodeType": "YulFunctionCall",
"src": "16979:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16972:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17144:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1",
"nodeType": "YulIdentifier",
"src": "17055:88:16"
},
"nodeType": "YulFunctionCall",
"src": "17055:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "17055:93:16"
},
{
"nodeType": "YulAssignment",
"src": "17157:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17168:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17173:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17164:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17164:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17157:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16950:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16958:3:16",
"type": ""
}
],
"src": "16816:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17352:238:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17362:92:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17446:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17451:2:16",
"type": "",
"value": "17"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "17369:76:16"
},
"nodeType": "YulFunctionCall",
"src": "17369:85:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17362:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17552:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69",
"nodeType": "YulIdentifier",
"src": "17463:88:16"
},
"nodeType": "YulFunctionCall",
"src": "17463:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "17463:93:16"
},
{
"nodeType": "YulAssignment",
"src": "17565:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17576:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17581:2:16",
"type": "",
"value": "17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17572:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17572:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17565:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17340:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17348:3:16",
"type": ""
}
],
"src": "17188:402:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17742:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17752:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17818:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17823:2:16",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17759:58:16"
},
"nodeType": "YulFunctionCall",
"src": "17759:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17752:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17924:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b",
"nodeType": "YulIdentifier",
"src": "17835:88:16"
},
"nodeType": "YulFunctionCall",
"src": "17835:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "17835:93:16"
},
{
"nodeType": "YulAssignment",
"src": "17937:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17948:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17953:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17944:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17944:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17937:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17730:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17738:3:16",
"type": ""
}
],
"src": "17596:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18033:53:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18050:3:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18073:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "18055:17:16"
},
"nodeType": "YulFunctionCall",
"src": "18055:24:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18043:6:16"
},
"nodeType": "YulFunctionCall",
"src": "18043:37:16"
},
"nodeType": "YulExpressionStatement",
"src": "18043:37:16"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "18021:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18028:3:16",
"type": ""
}
],
"src": "17968:118:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18175:74:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18192:3:16"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18235:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "18217:17:16"
},
"nodeType": "YulFunctionCall",
"src": "18217:24:16"
}
],
"functionName": {
"name": "leftAlign_t_uint256",
"nodeType": "YulIdentifier",
"src": "18197:19:16"
},
"nodeType": "YulFunctionCall",
"src": "18197:45:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18185:6:16"
},
"nodeType": "YulFunctionCall",
"src": "18185:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "18185:58:16"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "18163:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18170:3:16",
"type": ""
}
],
"src": "18092:157:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18427:366:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18500:6:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18509:3:16"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "18438:61:16"
},
"nodeType": "YulFunctionCall",
"src": "18438:75:16"
},
"nodeType": "YulExpressionStatement",
"src": "18438:75:16"
},
{
"nodeType": "YulAssignment",
"src": "18522:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18533:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18538:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18529:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18529:12:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18522:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "18613:6:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18622:3:16"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "18551:61:16"
},
"nodeType": "YulFunctionCall",
"src": "18551:75:16"
},
"nodeType": "YulExpressionStatement",
"src": "18551:75:16"
},
{
"nodeType": "YulAssignment",
"src": "18635:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18646:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18651:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18642:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18642:12:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18635:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "18726:6:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18735:3:16"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "18664:61:16"
},
"nodeType": "YulFunctionCall",
"src": "18664:75:16"
},
"nodeType": "YulExpressionStatement",
"src": "18664:75:16"
},
{
"nodeType": "YulAssignment",
"src": "18748:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18759:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18764:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18755:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18755:12:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18748:3:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "18777:10:16",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18784:3:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "18777:3:16"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_bytes32_t_uint256_t_uint256__to_t_bytes32_t_uint256_t_uint256__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18390:3:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "18396:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "18404:6:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18412:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "18423:3:16",
"type": ""
}
],
"src": "18255:538:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18983:251:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18994:102:16",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "19083:6:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19092:3:16"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "19001:81:16"
},
"nodeType": "YulFunctionCall",
"src": "19001:95:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18994:3:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "19106:102:16",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "19195:6:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19204:3:16"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "19113:81:16"
},
"nodeType": "YulFunctionCall",
"src": "19113:95:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19106:3:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "19218:10:16",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19225:3:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "19218:3:16"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18954:3:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "18960:6:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18968:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "18979:3:16",
"type": ""
}
],
"src": "18799:435:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19626:581:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19637:155:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19788:3:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "19644:142:16"
},
"nodeType": "YulFunctionCall",
"src": "19644:148:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19637:3:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "19802:102:16",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "19891:6:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19900:3:16"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "19809:81:16"
},
"nodeType": "YulFunctionCall",
"src": "19809:95:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19802:3:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "19914:155:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20065:3:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "19921:142:16"
},
"nodeType": "YulFunctionCall",
"src": "19921:148:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19914:3:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "20079:102:16",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "20168:6:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20177:3:16"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "20086:81:16"
},
"nodeType": "YulFunctionCall",
"src": "20086:95:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20079:3:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "20191:10:16",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20198:3:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "20191:3:16"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_t_string_memory_ptr_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19597:3:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "19603:6:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "19611:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "19622:3:16",
"type": ""
}
],
"src": "19240:967:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20311:124:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20321:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20333:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20344:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20329:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20329:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20321:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "20401:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20414:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20425:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20410:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20410:17:16"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "20357:43:16"
},
"nodeType": "YulFunctionCall",
"src": "20357:71:16"
},
"nodeType": "YulExpressionStatement",
"src": "20357:71:16"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20283:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "20295:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20306:4:16",
"type": ""
}
],
"src": "20213:222:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20641:440:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20651:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20663:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20674:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20659:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20659:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20651:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "20732:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20745:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20756:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20741:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20741:17:16"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "20688:43:16"
},
"nodeType": "YulFunctionCall",
"src": "20688:71:16"
},
"nodeType": "YulExpressionStatement",
"src": "20688:71:16"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "20813:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20826:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20837:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20822:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20822:18:16"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "20769:43:16"
},
"nodeType": "YulFunctionCall",
"src": "20769:72:16"
},
"nodeType": "YulExpressionStatement",
"src": "20769:72:16"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "20895:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20908:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20919:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20904:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20904:18:16"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "20851:43:16"
},
"nodeType": "YulFunctionCall",
"src": "20851:72:16"
},
"nodeType": "YulExpressionStatement",
"src": "20851:72:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20944:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20955:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20940:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20940:18:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20964:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20970:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20960:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20960:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20933:6:16"
},
"nodeType": "YulFunctionCall",
"src": "20933:48:16"
},
"nodeType": "YulExpressionStatement",
"src": "20933:48:16"
},
{
"nodeType": "YulAssignment",
"src": "20990:84:16",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "21060:6:16"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21069:4:16"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20998:61:16"
},
"nodeType": "YulFunctionCall",
"src": "20998:76:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20990:4:16"
}
]
}
]
},
"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": "20589:9:16",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "20601:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "20609:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "20617:6:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "20625:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20636:4:16",
"type": ""
}
],
"src": "20441:640:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21179:118:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21189:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21201:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21212:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21197:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21197:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21189:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "21263:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21276:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21287:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21272:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21272:17:16"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "21225:37:16"
},
"nodeType": "YulFunctionCall",
"src": "21225:65:16"
},
"nodeType": "YulExpressionStatement",
"src": "21225:65:16"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21151:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "21163:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21174:4:16",
"type": ""
}
],
"src": "21087:210:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21401:124:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21411:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21423:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21434:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21419:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21419:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21411:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "21491:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21504:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21515:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21500:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21500:17:16"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "21447:43:16"
},
"nodeType": "YulFunctionCall",
"src": "21447:71:16"
},
"nodeType": "YulExpressionStatement",
"src": "21447:71:16"
}
]
},
"name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21373:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "21385:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21396:4:16",
"type": ""
}
],
"src": "21303:222:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21649:195:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21659:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21671:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21682:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21667:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21667:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21659:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21706:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21717:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21702:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21702:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21725:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21731:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21721:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21721:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21695:6:16"
},
"nodeType": "YulFunctionCall",
"src": "21695:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "21695:47:16"
},
{
"nodeType": "YulAssignment",
"src": "21751:86:16",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "21823:6:16"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21832:4:16"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21759:63:16"
},
"nodeType": "YulFunctionCall",
"src": "21759:78:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21751:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21621:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "21633:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21644:4:16",
"type": ""
}
],
"src": "21531:313:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22021:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22031:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22043:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22054:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22039:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22039:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22031:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22078:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22089:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22074:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22074:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22097:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22103:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22093:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22093:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22067:6:16"
},
"nodeType": "YulFunctionCall",
"src": "22067:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "22067:47:16"
},
{
"nodeType": "YulAssignment",
"src": "22123:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22257:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22131:124:16"
},
"nodeType": "YulFunctionCall",
"src": "22131:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22123:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22001:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22016:4:16",
"type": ""
}
],
"src": "21850:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22446:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22456:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22468:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22479:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22464:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22464:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22456:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22503:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22514:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22499:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22499:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22522:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22528:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22518:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22518:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22492:6:16"
},
"nodeType": "YulFunctionCall",
"src": "22492:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "22492:47:16"
},
{
"nodeType": "YulAssignment",
"src": "22548:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22682:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22556:124:16"
},
"nodeType": "YulFunctionCall",
"src": "22556:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22548:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22426:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22441:4:16",
"type": ""
}
],
"src": "22275:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22871:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22881:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22893:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22904:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22889:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22889:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22881:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22928:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22939:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22924:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22924:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22947:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22953:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22943:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22943:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22917:6:16"
},
"nodeType": "YulFunctionCall",
"src": "22917:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "22917:47:16"
},
{
"nodeType": "YulAssignment",
"src": "22973:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23107:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22981:124:16"
},
"nodeType": "YulFunctionCall",
"src": "22981:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22973:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22851:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22866:4:16",
"type": ""
}
],
"src": "22700:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23296:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23306:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23318:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23329:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23314:3:16"
},
"nodeType": "YulFunctionCall",
"src": "23314:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23306:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23353:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23364:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23349:3:16"
},
"nodeType": "YulFunctionCall",
"src": "23349:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23372:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23378:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23368:3:16"
},
"nodeType": "YulFunctionCall",
"src": "23368:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23342:6:16"
},
"nodeType": "YulFunctionCall",
"src": "23342:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "23342:47:16"
},
{
"nodeType": "YulAssignment",
"src": "23398:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23532:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23406:124:16"
},
"nodeType": "YulFunctionCall",
"src": "23406:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23398:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23276:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23291:4:16",
"type": ""
}
],
"src": "23125:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23721:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23731:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23743:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23754:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23739:3:16"
},
"nodeType": "YulFunctionCall",
"src": "23739:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23731:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23778:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23789:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23774:3:16"
},
"nodeType": "YulFunctionCall",
"src": "23774:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23797:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23803:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23793:3:16"
},
"nodeType": "YulFunctionCall",
"src": "23793:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23767:6:16"
},
"nodeType": "YulFunctionCall",
"src": "23767:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "23767:47:16"
},
{
"nodeType": "YulAssignment",
"src": "23823:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23957:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23831:124:16"
},
"nodeType": "YulFunctionCall",
"src": "23831:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23823:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23701:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23716:4:16",
"type": ""
}
],
"src": "23550:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24146:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24156:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24168:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24179:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24164:3:16"
},
"nodeType": "YulFunctionCall",
"src": "24164:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24156:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24203:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24214:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24199:3:16"
},
"nodeType": "YulFunctionCall",
"src": "24199:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24222:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24228:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24218:3:16"
},
"nodeType": "YulFunctionCall",
"src": "24218:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24192:6:16"
},
"nodeType": "YulFunctionCall",
"src": "24192:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "24192:47:16"
},
{
"nodeType": "YulAssignment",
"src": "24248:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24382:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24256:124:16"
},
"nodeType": "YulFunctionCall",
"src": "24256:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24248:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24126:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24141:4:16",
"type": ""
}
],
"src": "23975:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24571:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24581:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24593:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24604:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24589:3:16"
},
"nodeType": "YulFunctionCall",
"src": "24589:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24581:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24628:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24639:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24624:3:16"
},
"nodeType": "YulFunctionCall",
"src": "24624:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24647:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24653:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24643:3:16"
},
"nodeType": "YulFunctionCall",
"src": "24643:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24617:6:16"
},
"nodeType": "YulFunctionCall",
"src": "24617:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "24617:47:16"
},
{
"nodeType": "YulAssignment",
"src": "24673:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24807:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24681:124:16"
},
"nodeType": "YulFunctionCall",
"src": "24681:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24673:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24551:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24566:4:16",
"type": ""
}
],
"src": "24400:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24996:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25006:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25018:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25029:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25014:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25014:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25006:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25053:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25064:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25049:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25049:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25072:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25078:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25068:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25068:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25042:6:16"
},
"nodeType": "YulFunctionCall",
"src": "25042:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "25042:47:16"
},
{
"nodeType": "YulAssignment",
"src": "25098:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25232:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25106:124:16"
},
"nodeType": "YulFunctionCall",
"src": "25106:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25098:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24976:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24991:4:16",
"type": ""
}
],
"src": "24825:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25421:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25431:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25443:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25454:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25439:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25439:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25431:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25478:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25489:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25474:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25474:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25497:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25503:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25493:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25493:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25467:6:16"
},
"nodeType": "YulFunctionCall",
"src": "25467:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "25467:47:16"
},
{
"nodeType": "YulAssignment",
"src": "25523:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25657:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25531:124:16"
},
"nodeType": "YulFunctionCall",
"src": "25531:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25523:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25401:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25416:4:16",
"type": ""
}
],
"src": "25250:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25846:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25856:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25868:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25879:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25864:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25864:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25856:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25903:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25914:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25899:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25899:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25922:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25928:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25918:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25918:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25892:6:16"
},
"nodeType": "YulFunctionCall",
"src": "25892:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "25892:47:16"
},
{
"nodeType": "YulAssignment",
"src": "25948:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26082:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25956:124:16"
},
"nodeType": "YulFunctionCall",
"src": "25956:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25948:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25826:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25841:4:16",
"type": ""
}
],
"src": "25675:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26271:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26281:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26293:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26304:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26289:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26289:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26281:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26328:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26339:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26324:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26324:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26347:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26353:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26343:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26343:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26317:6:16"
},
"nodeType": "YulFunctionCall",
"src": "26317:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "26317:47:16"
},
{
"nodeType": "YulAssignment",
"src": "26373:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26507:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26381:124:16"
},
"nodeType": "YulFunctionCall",
"src": "26381:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26373:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "26251:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "26266:4:16",
"type": ""
}
],
"src": "26100:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26696:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26706:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26718:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26729:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26714:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26714:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26706:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26753:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26764:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26749:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26749:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26772:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26778:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26768:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26768:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26742:6:16"
},
"nodeType": "YulFunctionCall",
"src": "26742:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "26742:47:16"
},
{
"nodeType": "YulAssignment",
"src": "26798:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26932:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26806:124:16"
},
"nodeType": "YulFunctionCall",
"src": "26806:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26798:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "26676:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "26691:4:16",
"type": ""
}
],
"src": "26525:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27121:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27131:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27143:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27154:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27139:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27139:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27131:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27178:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27189:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27174:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27174:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27197:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27203:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "27193:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27193:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27167:6:16"
},
"nodeType": "YulFunctionCall",
"src": "27167:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "27167:47:16"
},
{
"nodeType": "YulAssignment",
"src": "27223:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27357:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27231:124:16"
},
"nodeType": "YulFunctionCall",
"src": "27231:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27223:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "27101:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "27116:4:16",
"type": ""
}
],
"src": "26950:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27546:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27556:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27568:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27579:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27564:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27564:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27556:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27603:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27614:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27599:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27599:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27622:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27628:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "27618:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27618:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27592:6:16"
},
"nodeType": "YulFunctionCall",
"src": "27592:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "27592:47:16"
},
{
"nodeType": "YulAssignment",
"src": "27648:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27782:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27656:124:16"
},
"nodeType": "YulFunctionCall",
"src": "27656:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27648:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "27526:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "27541:4:16",
"type": ""
}
],
"src": "27375:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27971:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27981:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27993:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28004:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27989:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27989:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27981:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28028:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28039:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28024:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28024:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28047:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28053:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28043:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28043:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28017:6:16"
},
"nodeType": "YulFunctionCall",
"src": "28017:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "28017:47:16"
},
{
"nodeType": "YulAssignment",
"src": "28073:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28207:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28081:124:16"
},
"nodeType": "YulFunctionCall",
"src": "28081:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28073:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "27951:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "27966:4:16",
"type": ""
}
],
"src": "27800:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28396:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28406:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28418:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28429:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28414:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28414:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28406:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28453:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28464:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28449:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28449:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28472:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28478:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28468:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28468:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28442:6:16"
},
"nodeType": "YulFunctionCall",
"src": "28442:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "28442:47:16"
},
{
"nodeType": "YulAssignment",
"src": "28498:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28632:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28506:124:16"
},
"nodeType": "YulFunctionCall",
"src": "28506:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28498:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "28376:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "28391:4:16",
"type": ""
}
],
"src": "28225:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28821:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28831:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28843:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28854:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28839:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28839:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28831:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28878:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28889:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28874:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28874:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28897:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28903:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28893:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28893:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28867:6:16"
},
"nodeType": "YulFunctionCall",
"src": "28867:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "28867:47:16"
},
{
"nodeType": "YulAssignment",
"src": "28923:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29057:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28931:124:16"
},
"nodeType": "YulFunctionCall",
"src": "28931:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28923:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "28801:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "28816:4:16",
"type": ""
}
],
"src": "28650:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29246:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29256:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29268:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29279:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29264:3:16"
},
"nodeType": "YulFunctionCall",
"src": "29264:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29256:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29303:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29314:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29299:3:16"
},
"nodeType": "YulFunctionCall",
"src": "29299:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29322:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29328:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "29318:3:16"
},
"nodeType": "YulFunctionCall",
"src": "29318:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29292:6:16"
},
"nodeType": "YulFunctionCall",
"src": "29292:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "29292:47:16"
},
{
"nodeType": "YulAssignment",
"src": "29348:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29482:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29356:124:16"
},
"nodeType": "YulFunctionCall",
"src": "29356:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29348:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29226:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "29241:4:16",
"type": ""
}
],
"src": "29075:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29671:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29681:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29693:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29704:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29689:3:16"
},
"nodeType": "YulFunctionCall",
"src": "29689:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29681:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29728:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29739:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29724:3:16"
},
"nodeType": "YulFunctionCall",
"src": "29724:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29747:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29753:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "29743:3:16"
},
"nodeType": "YulFunctionCall",
"src": "29743:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29717:6:16"
},
"nodeType": "YulFunctionCall",
"src": "29717:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "29717:47:16"
},
{
"nodeType": "YulAssignment",
"src": "29773:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29907:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29781:124:16"
},
"nodeType": "YulFunctionCall",
"src": "29781:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29773:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29651:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "29666:4:16",
"type": ""
}
],
"src": "29500:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30023:124:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30033:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30045:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30056:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30041:3:16"
},
"nodeType": "YulFunctionCall",
"src": "30041:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30033:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "30113:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30126:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30137:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30122:3:16"
},
"nodeType": "YulFunctionCall",
"src": "30122:17:16"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "30069:43:16"
},
"nodeType": "YulFunctionCall",
"src": "30069:71:16"
},
"nodeType": "YulExpressionStatement",
"src": "30069:71:16"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29995:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "30007:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "30018:4:16",
"type": ""
}
],
"src": "29925:222:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30194:88:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30204:30:16",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "30214:18:16"
},
"nodeType": "YulFunctionCall",
"src": "30214:20:16"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30204:6:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30263:6:16"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "30271:4:16"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "30243:19:16"
},
"nodeType": "YulFunctionCall",
"src": "30243:33:16"
},
"nodeType": "YulExpressionStatement",
"src": "30243:33:16"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "30178:4:16",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "30187:6:16",
"type": ""
}
],
"src": "30153:129:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30328:35:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30338:19:16",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30354:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "30348:5:16"
},
"nodeType": "YulFunctionCall",
"src": "30348:9:16"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30338:6:16"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "30321:6:16",
"type": ""
}
],
"src": "30288:75:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30435:241:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "30540:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "30542:16:16"
},
"nodeType": "YulFunctionCall",
"src": "30542:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "30542:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "30512:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30520:18:16",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "30509:2:16"
},
"nodeType": "YulFunctionCall",
"src": "30509:30:16"
},
"nodeType": "YulIf",
"src": "30506:56:16"
},
{
"nodeType": "YulAssignment",
"src": "30572:37:16",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "30602:6:16"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "30580:21:16"
},
"nodeType": "YulFunctionCall",
"src": "30580:29:16"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "30572:4:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "30646:23:16",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "30658:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30664:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30654:3:16"
},
"nodeType": "YulFunctionCall",
"src": "30654:15:16"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "30646:4:16"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "30419:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "30430:4:16",
"type": ""
}
],
"src": "30369:307:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30740:40:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30751:22:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "30767:5:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "30761:5:16"
},
"nodeType": "YulFunctionCall",
"src": "30761:12:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "30751:6:16"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "30723:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "30733:6:16",
"type": ""
}
],
"src": "30682:98:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30845:40:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30856:22:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "30872:5:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "30866:5:16"
},
"nodeType": "YulFunctionCall",
"src": "30866:12:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "30856:6:16"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "30828:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "30838:6:16",
"type": ""
}
],
"src": "30786:99:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30986:73:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31003:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "31008:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30996:6:16"
},
"nodeType": "YulFunctionCall",
"src": "30996:19:16"
},
"nodeType": "YulExpressionStatement",
"src": "30996:19:16"
},
{
"nodeType": "YulAssignment",
"src": "31024:29:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31043:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31048:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31039:3:16"
},
"nodeType": "YulFunctionCall",
"src": "31039:14:16"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "31024:11:16"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "30958:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "30963:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "30974:11:16",
"type": ""
}
],
"src": "30891:168:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31161:73:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31178:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "31183:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31171:6:16"
},
"nodeType": "YulFunctionCall",
"src": "31171:19:16"
},
"nodeType": "YulExpressionStatement",
"src": "31171:19:16"
},
{
"nodeType": "YulAssignment",
"src": "31199:29:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31218:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31223:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31214:3:16"
},
"nodeType": "YulFunctionCall",
"src": "31214:14:16"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "31199:11:16"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "31133:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "31138:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "31149:11:16",
"type": ""
}
],
"src": "31065:169:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31354:34:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31364:18:16",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31379:3:16"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "31364:11:16"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "31326:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "31331:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "31342:11:16",
"type": ""
}
],
"src": "31240:148:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31438:261:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31448:25:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "31471:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "31453:17:16"
},
"nodeType": "YulFunctionCall",
"src": "31453:20:16"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "31448:1:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "31482:25:16",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "31505:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "31487:17:16"
},
"nodeType": "YulFunctionCall",
"src": "31487:20:16"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "31482:1:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "31645:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "31647:16:16"
},
"nodeType": "YulFunctionCall",
"src": "31647:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "31647:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "31566:1:16"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31573:66:16",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "31641:1:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "31569:3:16"
},
"nodeType": "YulFunctionCall",
"src": "31569:74:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "31563:2:16"
},
"nodeType": "YulFunctionCall",
"src": "31563:81:16"
},
"nodeType": "YulIf",
"src": "31560:107:16"
},
{
"nodeType": "YulAssignment",
"src": "31677:16:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "31688:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "31691:1:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31684:3:16"
},
"nodeType": "YulFunctionCall",
"src": "31684:9:16"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "31677:3:16"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "31425:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "31428:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "31434:3:16",
"type": ""
}
],
"src": "31394:305:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31747:143:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31757:25:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "31780:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "31762:17:16"
},
"nodeType": "YulFunctionCall",
"src": "31762:20:16"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "31757:1:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "31791:25:16",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "31814:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "31796:17:16"
},
"nodeType": "YulFunctionCall",
"src": "31796:20:16"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "31791:1:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "31838:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "31840:16:16"
},
"nodeType": "YulFunctionCall",
"src": "31840:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "31840:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "31835:1:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "31828:6:16"
},
"nodeType": "YulFunctionCall",
"src": "31828:9:16"
},
"nodeType": "YulIf",
"src": "31825:35:16"
},
{
"nodeType": "YulAssignment",
"src": "31870:14:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "31879:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "31882:1:16"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "31875:3:16"
},
"nodeType": "YulFunctionCall",
"src": "31875:9:16"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "31870:1:16"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "31736:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "31739:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "31745:1:16",
"type": ""
}
],
"src": "31705:185:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31944:300:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31954:25:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "31977:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "31959:17:16"
},
"nodeType": "YulFunctionCall",
"src": "31959:20:16"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "31954:1:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "31988:25:16",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32011:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "31993:17:16"
},
"nodeType": "YulFunctionCall",
"src": "31993:20:16"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "31988:1:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "32186:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "32188:16:16"
},
"nodeType": "YulFunctionCall",
"src": "32188:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "32188:18:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32098:1:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "32091:6:16"
},
"nodeType": "YulFunctionCall",
"src": "32091:9:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "32084:6:16"
},
"nodeType": "YulFunctionCall",
"src": "32084:17:16"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32106:1:16"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32113:66:16",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32181:1:16"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "32109:3:16"
},
"nodeType": "YulFunctionCall",
"src": "32109:74:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "32103:2:16"
},
"nodeType": "YulFunctionCall",
"src": "32103:81:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "32080:3:16"
},
"nodeType": "YulFunctionCall",
"src": "32080:105:16"
},
"nodeType": "YulIf",
"src": "32077:131:16"
},
{
"nodeType": "YulAssignment",
"src": "32218:20:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32233:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32236:1:16"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "32229:3:16"
},
"nodeType": "YulFunctionCall",
"src": "32229:9:16"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "32218:7:16"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "31927:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "31930:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "31936:7:16",
"type": ""
}
],
"src": "31896:348:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32295:146:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32305:25:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32328:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "32310:17:16"
},
"nodeType": "YulFunctionCall",
"src": "32310:20:16"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32305:1:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "32339:25:16",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32362:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "32344:17:16"
},
"nodeType": "YulFunctionCall",
"src": "32344:20:16"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32339:1:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "32386:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "32388:16:16"
},
"nodeType": "YulFunctionCall",
"src": "32388:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "32388:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32380:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32383:1:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "32377:2:16"
},
"nodeType": "YulFunctionCall",
"src": "32377:8:16"
},
"nodeType": "YulIf",
"src": "32374:34:16"
},
{
"nodeType": "YulAssignment",
"src": "32418:17:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32430:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32433:1:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "32426:3:16"
},
"nodeType": "YulFunctionCall",
"src": "32426:9:16"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "32418:4:16"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "32281:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "32284:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "32290:4:16",
"type": ""
}
],
"src": "32250:191:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32492:51:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32502:35:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32531:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "32513:17:16"
},
"nodeType": "YulFunctionCall",
"src": "32513:24:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "32502:7:16"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "32474:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "32484:7:16",
"type": ""
}
],
"src": "32447:96:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32591:48:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32601:32:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32626:5:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "32619:6:16"
},
"nodeType": "YulFunctionCall",
"src": "32619:13:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "32612:6:16"
},
"nodeType": "YulFunctionCall",
"src": "32612:21:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "32601:7:16"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "32573:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "32583:7:16",
"type": ""
}
],
"src": "32549:90:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32690:32:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32700:16:16",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "32711:5:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "32700:7:16"
}
]
}
]
},
"name": "cleanup_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "32672:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "32682:7:16",
"type": ""
}
],
"src": "32645:77:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32772:105:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32782:89:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32797:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32804:66:16",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "32793:3:16"
},
"nodeType": "YulFunctionCall",
"src": "32793:78:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "32782:7:16"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "32754:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "32764:7:16",
"type": ""
}
],
"src": "32728:149:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32928:81:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32938:65:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32953:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32960:42:16",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "32949:3:16"
},
"nodeType": "YulFunctionCall",
"src": "32949:54:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "32938:7:16"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "32910:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "32920:7:16",
"type": ""
}
],
"src": "32883:126:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33060:32:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33070:16:16",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "33081:5:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "33070:7:16"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "33042:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "33052:7:16",
"type": ""
}
],
"src": "33015:77:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33149:103:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "33172:3:16"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "33177:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "33182:6:16"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "33159:12:16"
},
"nodeType": "YulFunctionCall",
"src": "33159:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "33159:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "33230:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "33235:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33226:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33226:16:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33244:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33219:6:16"
},
"nodeType": "YulFunctionCall",
"src": "33219:27:16"
},
"nodeType": "YulExpressionStatement",
"src": "33219:27:16"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "33131:3:16",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "33136:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "33141:6:16",
"type": ""
}
],
"src": "33098:154:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33307:258:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "33317:10:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "33326:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "33321:1:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "33386:63:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "33411:3:16"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "33416:1:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33407:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33407:11:16"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "33430:3:16"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "33435:1:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33426:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33426:11:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "33420:5:16"
},
"nodeType": "YulFunctionCall",
"src": "33420:18:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33400:6:16"
},
"nodeType": "YulFunctionCall",
"src": "33400:39:16"
},
"nodeType": "YulExpressionStatement",
"src": "33400:39:16"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "33347:1:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "33350:6:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "33344:2:16"
},
"nodeType": "YulFunctionCall",
"src": "33344:13:16"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "33358:19:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33360:15:16",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "33369:1:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33372:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33365:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33365:10:16"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "33360:1:16"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "33340:3:16",
"statements": []
},
"src": "33336:113:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33483:76:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "33533:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "33538:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33529:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33529:16:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33547:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33522:6:16"
},
"nodeType": "YulFunctionCall",
"src": "33522:27:16"
},
"nodeType": "YulExpressionStatement",
"src": "33522:27:16"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "33464:1:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "33467:6:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "33461:2:16"
},
"nodeType": "YulFunctionCall",
"src": "33461:13:16"
},
"nodeType": "YulIf",
"src": "33458:101:16"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "33289:3:16",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "33294:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "33299:6:16",
"type": ""
}
],
"src": "33258:307:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33614:128:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33624:33:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33651:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "33633:17:16"
},
"nodeType": "YulFunctionCall",
"src": "33633:24:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33624:5:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "33685:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "33687:16:16"
},
"nodeType": "YulFunctionCall",
"src": "33687:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "33687:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33672:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33679:4:16",
"type": "",
"value": "0x00"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "33669:2:16"
},
"nodeType": "YulFunctionCall",
"src": "33669:15:16"
},
"nodeType": "YulIf",
"src": "33666:41:16"
},
{
"nodeType": "YulAssignment",
"src": "33716:20:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33727:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33734:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "33723:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33723:13:16"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "33716:3:16"
}
]
}
]
},
"name": "decrement_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "33600:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "33610:3:16",
"type": ""
}
],
"src": "33571:171:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33799:269:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33809:22:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "33823:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33829:1:16",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "33819:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33819:12:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "33809:6:16"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "33840:38:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "33870:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33876:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "33866:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33866:12:16"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "33844:18:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "33917:51:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33931:27:16",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "33945:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33953:4:16",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "33941:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33941:17:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "33931:6:16"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "33897:18:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "33890:6:16"
},
"nodeType": "YulFunctionCall",
"src": "33890:26:16"
},
"nodeType": "YulIf",
"src": "33887:81:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34020:42:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "34034:16:16"
},
"nodeType": "YulFunctionCall",
"src": "34034:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "34034:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "33984:18:16"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "34007:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34015:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "34004:2:16"
},
"nodeType": "YulFunctionCall",
"src": "34004:14:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "33981:2:16"
},
"nodeType": "YulFunctionCall",
"src": "33981:38:16"
},
"nodeType": "YulIf",
"src": "33978:84:16"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "33783:4:16",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "33792:6:16",
"type": ""
}
],
"src": "33748:320:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34117:238:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "34127:58:16",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34149:6:16"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "34179:4:16"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "34157:21:16"
},
"nodeType": "YulFunctionCall",
"src": "34157:27:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34145:3:16"
},
"nodeType": "YulFunctionCall",
"src": "34145:40:16"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "34131:10:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "34296:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "34298:16:16"
},
"nodeType": "YulFunctionCall",
"src": "34298:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "34298:18:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "34239:10:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34251:18:16",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "34236:2:16"
},
"nodeType": "YulFunctionCall",
"src": "34236:34:16"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "34275:10:16"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34287:6:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "34272:2:16"
},
"nodeType": "YulFunctionCall",
"src": "34272:22:16"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "34233:2:16"
},
"nodeType": "YulFunctionCall",
"src": "34233:62:16"
},
"nodeType": "YulIf",
"src": "34230:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34334:2:16",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "34338:10:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34327:6:16"
},
"nodeType": "YulFunctionCall",
"src": "34327:22:16"
},
"nodeType": "YulExpressionStatement",
"src": "34327:22:16"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "34103:6:16",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "34111:4:16",
"type": ""
}
],
"src": "34074:281:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34404:190:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34414:33:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "34441:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "34423:17:16"
},
"nodeType": "YulFunctionCall",
"src": "34423:24:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "34414:5:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "34537:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "34539:16:16"
},
"nodeType": "YulFunctionCall",
"src": "34539:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "34539:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "34462:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34469:66:16",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "34459:2:16"
},
"nodeType": "YulFunctionCall",
"src": "34459:77:16"
},
"nodeType": "YulIf",
"src": "34456:103:16"
},
{
"nodeType": "YulAssignment",
"src": "34568:20:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "34579:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34586:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34575:3:16"
},
"nodeType": "YulFunctionCall",
"src": "34575:13:16"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "34568:3:16"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34390:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "34400:3:16",
"type": ""
}
],
"src": "34361:233:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34647:32:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34657:16:16",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "34668:5:16"
},
"variableNames": [
{
"name": "aligned",
"nodeType": "YulIdentifier",
"src": "34657:7:16"
}
]
}
]
},
"name": "leftAlign_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34629:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "aligned",
"nodeType": "YulTypedName",
"src": "34639:7:16",
"type": ""
}
],
"src": "34600:79:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34732:32:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34742:16:16",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "34753:5:16"
},
"variableNames": [
{
"name": "aligned",
"nodeType": "YulIdentifier",
"src": "34742:7:16"
}
]
}
]
},
"name": "leftAlign_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34714:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "aligned",
"nodeType": "YulTypedName",
"src": "34724:7:16",
"type": ""
}
],
"src": "34685:79:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34804:142:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34814:25:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "34837:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "34819:17:16"
},
"nodeType": "YulFunctionCall",
"src": "34819:20:16"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "34814:1:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "34848:25:16",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "34871:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "34853:17:16"
},
"nodeType": "YulFunctionCall",
"src": "34853:20:16"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "34848:1:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "34895:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "34897:16:16"
},
"nodeType": "YulFunctionCall",
"src": "34897:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "34897:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "34892:1:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "34885:6:16"
},
"nodeType": "YulFunctionCall",
"src": "34885:9:16"
},
"nodeType": "YulIf",
"src": "34882:35:16"
},
{
"nodeType": "YulAssignment",
"src": "34926:14:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "34935:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "34938:1:16"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "34931:3:16"
},
"nodeType": "YulFunctionCall",
"src": "34931:9:16"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "34926:1:16"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "34793:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "34796:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "34802:1:16",
"type": ""
}
],
"src": "34770:176:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34980:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34997:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35000:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34990:6:16"
},
"nodeType": "YulFunctionCall",
"src": "34990:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "34990:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35094:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35097:4:16",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35087:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35087:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "35087:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35118:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35121:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "35111:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35111:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "35111:15:16"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "34952:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35166:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35183:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35186:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35176:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35176:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "35176:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35280:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35283:4:16",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35273:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35273:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "35273:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35304:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35307:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "35297:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35297:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "35297:15:16"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "35138:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35352:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35369:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35372:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35362:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35362:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "35362:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35466:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35469:4:16",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35459:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35459:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "35459:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35490:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35493:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "35483:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35483:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "35483:15:16"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "35324:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35538:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35555:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35558:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35548:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35548:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "35548:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35652:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35655:4:16",
"type": "",
"value": "0x31"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35645:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35645:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "35645:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35676:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35679:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "35669:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35669:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "35669:15:16"
}
]
},
"name": "panic_error_0x31",
"nodeType": "YulFunctionDefinition",
"src": "35510:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35724:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35741:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35744:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35734:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35734:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "35734:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35838:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35841:4:16",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35831:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35831:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "35831:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35862:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35865:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "35855:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35855:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "35855:15:16"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "35696:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35910:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35927:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35930:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35920:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35920:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "35920:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36024:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36027:4:16",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36017:6:16"
},
"nodeType": "YulFunctionCall",
"src": "36017:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "36017:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36048:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36051:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "36041:6:16"
},
"nodeType": "YulFunctionCall",
"src": "36041:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "36041:15:16"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "35882:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36157:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36174:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36177:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "36167:6:16"
},
"nodeType": "YulFunctionCall",
"src": "36167:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "36167:12:16"
}
]
},
"name": "revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490",
"nodeType": "YulFunctionDefinition",
"src": "36068:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36280:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36297:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36300:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "36290:6:16"
},
"nodeType": "YulFunctionCall",
"src": "36290:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "36290:12:16"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "36191:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36403:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36420:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36423:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "36413:6:16"
},
"nodeType": "YulFunctionCall",
"src": "36413:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "36413:12:16"
}
]
},
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulFunctionDefinition",
"src": "36314:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36526:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36543:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36546:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "36536:6:16"
},
"nodeType": "YulFunctionCall",
"src": "36536:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "36536:12:16"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "36437:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36649:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36666:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36669:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "36659:6:16"
},
"nodeType": "YulFunctionCall",
"src": "36659:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "36659:12:16"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "36560:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36772:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36789:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36792:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "36782:6:16"
},
"nodeType": "YulFunctionCall",
"src": "36782:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "36782:12:16"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "36683:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36854:54:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36864:38:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "36882:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36889:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36878:3:16"
},
"nodeType": "YulFunctionCall",
"src": "36878:14:16"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36898:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "36894:3:16"
},
"nodeType": "YulFunctionCall",
"src": "36894:7:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "36874:3:16"
},
"nodeType": "YulFunctionCall",
"src": "36874:28:16"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "36864:6:16"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "36837:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "36847:6:16",
"type": ""
}
],
"src": "36806:102:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37020:76:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "37042:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37050:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37038:3:16"
},
"nodeType": "YulFunctionCall",
"src": "37038:14:16"
},
{
"hexValue": "537472696e67733a20686578206c656e67746820696e73756666696369656e74",
"kind": "string",
"nodeType": "YulLiteral",
"src": "37054:34:16",
"type": "",
"value": "Strings: hex length insufficient"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37031:6:16"
},
"nodeType": "YulFunctionCall",
"src": "37031:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "37031:58:16"
}
]
},
"name": "store_literal_in_memory_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "37012:6:16",
"type": ""
}
],
"src": "36914:182:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37208:124:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "37230:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37238:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37226:3:16"
},
"nodeType": "YulFunctionCall",
"src": "37226:14:16"
},
{
"hexValue": "455243373231456e756d657261626c653a206f776e657220696e646578206f75",
"kind": "string",
"nodeType": "YulLiteral",
"src": "37242:34:16",
"type": "",
"value": "ERC721Enumerable: owner index ou"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37219:6:16"
},
"nodeType": "YulFunctionCall",
"src": "37219:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "37219:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "37298:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37306:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37294:3:16"
},
"nodeType": "YulFunctionCall",
"src": "37294:15:16"
},
{
"hexValue": "74206f6620626f756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "37311:13:16",
"type": "",
"value": "t of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37287:6:16"
},
"nodeType": "YulFunctionCall",
"src": "37287:38:16"
},
"nodeType": "YulExpressionStatement",
"src": "37287:38:16"
}
]
},
"name": "store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "37200:6:16",
"type": ""
}
],
"src": "37102:230:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37444:131:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "37466:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37474:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37462:3:16"
},
"nodeType": "YulFunctionCall",
"src": "37462:14:16"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "37478:34:16",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37455:6:16"
},
"nodeType": "YulFunctionCall",
"src": "37455:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "37455:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "37534:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37542:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37530:3:16"
},
"nodeType": "YulFunctionCall",
"src": "37530:15:16"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "37547:20:16",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37523:6:16"
},
"nodeType": "YulFunctionCall",
"src": "37523:45:16"
},
"nodeType": "YulExpressionStatement",
"src": "37523:45:16"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "37436:6:16",
"type": ""
}
],
"src": "37338:237:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37687:72:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "37709:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37717:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37705:3:16"
},
"nodeType": "YulFunctionCall",
"src": "37705:14:16"
},
{
"hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "37721:30:16",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37698:6:16"
},
"nodeType": "YulFunctionCall",
"src": "37698:54:16"
},
"nodeType": "YulExpressionStatement",
"src": "37698:54:16"
}
]
},
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "37679:6:16",
"type": ""
}
],
"src": "37581:178:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37871:117:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "37893:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37901:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37889:3:16"
},
"nodeType": "YulFunctionCall",
"src": "37889:14:16"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "37905:34:16",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37882:6:16"
},
"nodeType": "YulFunctionCall",
"src": "37882:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "37882:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "37961:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37969:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37957:3:16"
},
"nodeType": "YulFunctionCall",
"src": "37957:15:16"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "37974:6:16",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37950:6:16"
},
"nodeType": "YulFunctionCall",
"src": "37950:31:16"
},
"nodeType": "YulExpressionStatement",
"src": "37950:31:16"
}
]
},
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "37863:6:16",
"type": ""
}
],
"src": "37765:223:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38100:69:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "38122:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38130:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38118:3:16"
},
"nodeType": "YulFunctionCall",
"src": "38118:14:16"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "38134:27:16",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38111:6:16"
},
"nodeType": "YulFunctionCall",
"src": "38111:51:16"
},
"nodeType": "YulExpressionStatement",
"src": "38111:51:16"
}
]
},
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "38092:6:16",
"type": ""
}
],
"src": "37994:175:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38281:125:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "38303:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38311:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38299:3:16"
},
"nodeType": "YulFunctionCall",
"src": "38299:14:16"
},
{
"hexValue": "4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "38315:34:16",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38292:6:16"
},
"nodeType": "YulFunctionCall",
"src": "38292:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "38292:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "38371:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38379:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38367:3:16"
},
"nodeType": "YulFunctionCall",
"src": "38367:15:16"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "38384:14:16",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38360:6:16"
},
"nodeType": "YulFunctionCall",
"src": "38360:39:16"
},
"nodeType": "YulExpressionStatement",
"src": "38360:39:16"
}
]
},
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "38273:6:16",
"type": ""
}
],
"src": "38175:231:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38518:137:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "38540:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38548:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38536:3:16"
},
"nodeType": "YulFunctionCall",
"src": "38536:14:16"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f74206f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "38552:34:16",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38529:6:16"
},
"nodeType": "YulFunctionCall",
"src": "38529:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "38529:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "38608:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38616:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38604:3:16"
},
"nodeType": "YulFunctionCall",
"src": "38604:15:16"
},
{
"hexValue": "6e6572206e6f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "38621:26:16",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38597:6:16"
},
"nodeType": "YulFunctionCall",
"src": "38597:51:16"
},
"nodeType": "YulExpressionStatement",
"src": "38597:51:16"
}
]
},
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "38510:6:16",
"type": ""
}
],
"src": "38412:243:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38767:123:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "38789:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38797:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38785:3:16"
},
"nodeType": "YulFunctionCall",
"src": "38785:14:16"
},
{
"hexValue": "4552433732313a2062616c616e636520717565727920666f7220746865207a65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "38801:34:16",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38778:6:16"
},
"nodeType": "YulFunctionCall",
"src": "38778:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "38778:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "38857:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38865:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38853:3:16"
},
"nodeType": "YulFunctionCall",
"src": "38853:15:16"
},
{
"hexValue": "726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "38870:12:16",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38846:6:16"
},
"nodeType": "YulFunctionCall",
"src": "38846:37:16"
},
"nodeType": "YulExpressionStatement",
"src": "38846:37:16"
}
]
},
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "38759:6:16",
"type": ""
}
],
"src": "38661:229:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39002:122:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "39024:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39032:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39020:3:16"
},
"nodeType": "YulFunctionCall",
"src": "39020:14:16"
},
{
"hexValue": "4552433732313a206f776e657220717565727920666f72206e6f6e6578697374",
"kind": "string",
"nodeType": "YulLiteral",
"src": "39036:34:16",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39013:6:16"
},
"nodeType": "YulFunctionCall",
"src": "39013:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "39013:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "39092:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39100:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39088:3:16"
},
"nodeType": "YulFunctionCall",
"src": "39088:15:16"
},
{
"hexValue": "656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "39105:11:16",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39081:6:16"
},
"nodeType": "YulFunctionCall",
"src": "39081:36:16"
},
"nodeType": "YulExpressionStatement",
"src": "39081:36:16"
}
]
},
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "38994:6:16",
"type": ""
}
],
"src": "38896:228:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39236:76:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "39258:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39266:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39254:3:16"
},
"nodeType": "YulFunctionCall",
"src": "39254:14:16"
},
{
"hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "39270:34:16",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39247:6:16"
},
"nodeType": "YulFunctionCall",
"src": "39247:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "39247:58:16"
}
]
},
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "39228:6:16",
"type": ""
}
],
"src": "39130:182:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39424:125:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "39446:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39454:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39442:3:16"
},
"nodeType": "YulFunctionCall",
"src": "39442:14:16"
},
{
"hexValue": "4552433732313a20617070726f76656420717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "39458:34:16",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39435:6:16"
},
"nodeType": "YulFunctionCall",
"src": "39435:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "39435:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "39514:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39522:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39510:3:16"
},
"nodeType": "YulFunctionCall",
"src": "39510:15:16"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "39527:14:16",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39503:6:16"
},
"nodeType": "YulFunctionCall",
"src": "39503:39:16"
},
"nodeType": "YulExpressionStatement",
"src": "39503:39:16"
}
]
},
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "39416:6:16",
"type": ""
}
],
"src": "39318:231:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39661:122:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "39683:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39691:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39679:3:16"
},
"nodeType": "YulFunctionCall",
"src": "39679:14:16"
},
{
"hexValue": "4552433732313a207472616e73666572206f6620746f6b656e20746861742069",
"kind": "string",
"nodeType": "YulLiteral",
"src": "39695:34:16",
"type": "",
"value": "ERC721: transfer of token that i"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39672:6:16"
},
"nodeType": "YulFunctionCall",
"src": "39672:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "39672:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "39751:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39759:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39747:3:16"
},
"nodeType": "YulFunctionCall",
"src": "39747:15:16"
},
{
"hexValue": "73206e6f74206f776e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "39764:11:16",
"type": "",
"value": "s not own"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39740:6:16"
},
"nodeType": "YulFunctionCall",
"src": "39740:36:16"
},
"nodeType": "YulExpressionStatement",
"src": "39740:36:16"
}
]
},
"name": "store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "39653:6:16",
"type": ""
}
],
"src": "39555:228:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39895:128:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "39917:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39925:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39913:3:16"
},
"nodeType": "YulFunctionCall",
"src": "39913:14:16"
},
{
"hexValue": "4552433732314d657461646174613a2055524920717565727920666f72206e6f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "39929:34:16",
"type": "",
"value": "ERC721Metadata: URI query for no"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39906:6:16"
},
"nodeType": "YulFunctionCall",
"src": "39906:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "39906:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "39985:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39993:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39981:3:16"
},
"nodeType": "YulFunctionCall",
"src": "39981:15:16"
},
{
"hexValue": "6e6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "39998:17:16",
"type": "",
"value": "nexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39974:6:16"
},
"nodeType": "YulFunctionCall",
"src": "39974:42:16"
},
"nodeType": "YulExpressionStatement",
"src": "39974:42:16"
}
]
},
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "39887:6:16",
"type": ""
}
],
"src": "39789:234:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40135:114:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "40157:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40165:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40153:3:16"
},
"nodeType": "YulFunctionCall",
"src": "40153:14:16"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "40169:34:16",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40146:6:16"
},
"nodeType": "YulFunctionCall",
"src": "40146:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "40146:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "40225:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40233:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40221:3:16"
},
"nodeType": "YulFunctionCall",
"src": "40221:15:16"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "40238:3:16",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40214:6:16"
},
"nodeType": "YulFunctionCall",
"src": "40214:28:16"
},
"nodeType": "YulExpressionStatement",
"src": "40214:28:16"
}
]
},
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40127:6:16",
"type": ""
}
],
"src": "40029:220:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40361:130:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "40383:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40391:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40379:3:16"
},
"nodeType": "YulFunctionCall",
"src": "40379:14:16"
},
{
"hexValue": "4552433732313a207472616e736665722063616c6c6572206973206e6f74206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "40395:34:16",
"type": "",
"value": "ERC721: transfer caller is not o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40372:6:16"
},
"nodeType": "YulFunctionCall",
"src": "40372:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "40372:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "40451:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40459:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40447:3:16"
},
"nodeType": "YulFunctionCall",
"src": "40447:15:16"
},
{
"hexValue": "776e6572206e6f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "40464:19:16",
"type": "",
"value": "wner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40440:6:16"
},
"nodeType": "YulFunctionCall",
"src": "40440:44:16"
},
"nodeType": "YulExpressionStatement",
"src": "40440:44:16"
}
]
},
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40353:6:16",
"type": ""
}
],
"src": "40255:236:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40603:125:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "40625:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40633:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40621:3:16"
},
"nodeType": "YulFunctionCall",
"src": "40621:14:16"
},
{
"hexValue": "455243373231456e756d657261626c653a20676c6f62616c20696e646578206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "40637:34:16",
"type": "",
"value": "ERC721Enumerable: global index o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40614:6:16"
},
"nodeType": "YulFunctionCall",
"src": "40614:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "40614:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "40693:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40701:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40689:3:16"
},
"nodeType": "YulFunctionCall",
"src": "40689:15:16"
},
{
"hexValue": "7574206f6620626f756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "40706:14:16",
"type": "",
"value": "ut of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40682:6:16"
},
"nodeType": "YulFunctionCall",
"src": "40682:39:16"
},
"nodeType": "YulExpressionStatement",
"src": "40682:39:16"
}
]
},
"name": "store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40595:6:16",
"type": ""
}
],
"src": "40497:231:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40840:67:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "40862:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40870:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40858:3:16"
},
"nodeType": "YulFunctionCall",
"src": "40858:14:16"
},
{
"hexValue": "416363657373436f6e74726f6c3a206163636f756e7420",
"kind": "string",
"nodeType": "YulLiteral",
"src": "40874:25:16",
"type": "",
"value": "AccessControl: account "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40851:6:16"
},
"nodeType": "YulFunctionCall",
"src": "40851:49:16"
},
"nodeType": "YulExpressionStatement",
"src": "40851:49:16"
}
]
},
"name": "store_literal_in_memory_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40832:6:16",
"type": ""
}
],
"src": "40734:173:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41019:129:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "41041:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41049:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41037:3:16"
},
"nodeType": "YulFunctionCall",
"src": "41037:14:16"
},
{
"hexValue": "4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "41053:34:16",
"type": "",
"value": "ERC721Burnable: caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "41030:6:16"
},
"nodeType": "YulFunctionCall",
"src": "41030:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "41030:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "41109:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41117:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41105:3:16"
},
"nodeType": "YulFunctionCall",
"src": "41105:15:16"
},
{
"hexValue": "6e6572206e6f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "41122:18:16",
"type": "",
"value": "ner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "41098:6:16"
},
"nodeType": "YulFunctionCall",
"src": "41098:43:16"
},
"nodeType": "YulExpressionStatement",
"src": "41098:43:16"
}
]
},
"name": "store_literal_in_memory_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "41011:6:16",
"type": ""
}
],
"src": "40913:235:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41260:61:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "41282:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41290:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41278:3:16"
},
"nodeType": "YulFunctionCall",
"src": "41278:14:16"
},
{
"hexValue": "206973206d697373696e6720726f6c6520",
"kind": "string",
"nodeType": "YulLiteral",
"src": "41294:19:16",
"type": "",
"value": " is missing role "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "41271:6:16"
},
"nodeType": "YulFunctionCall",
"src": "41271:43:16"
},
"nodeType": "YulExpressionStatement",
"src": "41271:43:16"
}
]
},
"name": "store_literal_in_memory_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "41252:6:16",
"type": ""
}
],
"src": "41154:167:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41433:128:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "41455:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41463:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41451:3:16"
},
"nodeType": "YulFunctionCall",
"src": "41451:14:16"
},
{
"hexValue": "416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "41467:34:16",
"type": "",
"value": "AccessControl: can only renounce"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "41444:6:16"
},
"nodeType": "YulFunctionCall",
"src": "41444:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "41444:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "41523:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41531:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41519:3:16"
},
"nodeType": "YulFunctionCall",
"src": "41519:15:16"
},
{
"hexValue": "20726f6c657320666f722073656c66",
"kind": "string",
"nodeType": "YulLiteral",
"src": "41536:17:16",
"type": "",
"value": " roles for self"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "41512:6:16"
},
"nodeType": "YulFunctionCall",
"src": "41512:42:16"
},
"nodeType": "YulExpressionStatement",
"src": "41512:42:16"
}
]
},
"name": "store_literal_in_memory_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "41425:6:16",
"type": ""
}
],
"src": "41327:234:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41610:79:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "41667:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41676:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41679:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "41669:6:16"
},
"nodeType": "YulFunctionCall",
"src": "41669:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "41669:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "41633:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "41658:5:16"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "41640:17:16"
},
"nodeType": "YulFunctionCall",
"src": "41640:24:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "41630:2:16"
},
"nodeType": "YulFunctionCall",
"src": "41630:35:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "41623:6:16"
},
"nodeType": "YulFunctionCall",
"src": "41623:43:16"
},
"nodeType": "YulIf",
"src": "41620:63:16"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "41603:5:16",
"type": ""
}
],
"src": "41567:122:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41735:76:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "41789:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41798:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41801:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "41791:6:16"
},
"nodeType": "YulFunctionCall",
"src": "41791:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "41791:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "41758:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "41780:5:16"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "41765:14:16"
},
"nodeType": "YulFunctionCall",
"src": "41765:21:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "41755:2:16"
},
"nodeType": "YulFunctionCall",
"src": "41755:32:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "41748:6:16"
},
"nodeType": "YulFunctionCall",
"src": "41748:40:16"
},
"nodeType": "YulIf",
"src": "41745:60:16"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "41728:5:16",
"type": ""
}
],
"src": "41695:116:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41860:79:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "41917:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41926:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41929:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "41919:6:16"
},
"nodeType": "YulFunctionCall",
"src": "41919:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "41919:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "41883:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "41908:5:16"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "41890:17:16"
},
"nodeType": "YulFunctionCall",
"src": "41890:24:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "41880:2:16"
},
"nodeType": "YulFunctionCall",
"src": "41880:35:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "41873:6:16"
},
"nodeType": "YulFunctionCall",
"src": "41873:43:16"
},
"nodeType": "YulIf",
"src": "41870:63:16"
}
]
},
"name": "validator_revert_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "41853:5:16",
"type": ""
}
],
"src": "41817:122:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41987:78:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "42043:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42052:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42055:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "42045:6:16"
},
"nodeType": "YulFunctionCall",
"src": "42045:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "42045:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "42010:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "42034:5:16"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "42017:16:16"
},
"nodeType": "YulFunctionCall",
"src": "42017:23:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "42007:2:16"
},
"nodeType": "YulFunctionCall",
"src": "42007:34:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "42000:6:16"
},
"nodeType": "YulFunctionCall",
"src": "42000:42:16"
},
"nodeType": "YulIf",
"src": "41997:62:16"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "41980:5:16",
"type": ""
}
],
"src": "41945:120:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42114:79:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "42171:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42180:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42183:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "42173:6:16"
},
"nodeType": "YulFunctionCall",
"src": "42173:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "42173:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "42137:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "42162:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "42144:17:16"
},
"nodeType": "YulFunctionCall",
"src": "42144:24:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "42134:2:16"
},
"nodeType": "YulFunctionCall",
"src": "42134:35:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "42127:6:16"
},
"nodeType": "YulFunctionCall",
"src": "42127:43:16"
},
"nodeType": "YulIf",
"src": "42124:63:16"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "42107:5:16",
"type": ""
}
],
"src": "42071:122:16"
}
]
},
"contents": "{\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 function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\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_t_bytes32(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes32(value)\n }\n\n function abi_decode_t_bytes32_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes32(value)\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_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\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 // string\n function abi_decode_t_string_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, 0x01)), end) { revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() }\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_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 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 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_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_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 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_decode_tuple_t_bytes32(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_bytes32(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes32_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_bytes32_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes32t_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_bytes32(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 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 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 abi_decode_tuple_t_string_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_string_calldata_ptr(add(headStart, offset), dataEnd)\n }\n\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 abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(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_t_bytes32_to_t_bytes32_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes32(value))\n }\n\n function abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack(value, pos) {\n mstore(pos, leftAlign_t_bytes32(cleanup_t_bytes32(value)))\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_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_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2(pos)\n end := add(pos, 32)\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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 23)\n store_literal_in_memory_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874(pos)\n end := add(pos, 23)\n }\n\n function abi_encode_t_stringliteral_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 48)\n store_literal_in_memory_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 17)\n store_literal_in_memory_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69(pos)\n end := add(pos, 17)\n }\n\n function abi_encode_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 47)\n store_literal_in_memory_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b(pos)\n end := add(pos, 64)\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_t_uint256_to_t_uint256_nonPadded_inplace_fromStack(value, pos) {\n mstore(pos, leftAlign_t_uint256(cleanup_t_uint256(value)))\n }\n\n function abi_encode_tuple_packed_t_bytes32_t_uint256_t_uint256__to_t_bytes32_t_uint256_t_uint256__nonPadded_inplace_fromStack_reversed(pos , value2, value1, value0) -> end {\n\n abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack(value0, pos)\n pos := add(pos, 32)\n\n abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack(value1, pos)\n pos := add(pos, 32)\n\n abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack(value2, pos)\n pos := add(pos, 32)\n\n end := pos\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value1, pos)\n\n end := pos\n }\n\n function abi_encode_tuple_packed_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_t_string_memory_ptr_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n pos := abi_encode_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\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_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value1, pos)\n\n end := pos\n }\n\n function 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 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_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 abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\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 abi_encode_tuple_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2__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_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2_to_t_string_memory_ptr_fromStack( tail)\n\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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 abi_encode_tuple_t_stringliteral_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1__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_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b__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_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b_to_t_string_memory_ptr_fromStack( tail)\n\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 allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\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 array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\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_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\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 array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\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 checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_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 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 cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\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 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 decrement_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0x00) { panic_error_0x11() }\n ret := sub(value, 1)\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 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 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 leftAlign_t_bytes32(value) -> aligned {\n aligned := value\n }\n\n function leftAlign_t_uint256(value) -> aligned {\n aligned := value\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 panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x31() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x31)\n revert(0, 0x24)\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_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\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 store_literal_in_memory_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2(memPtr) {\n\n mstore(add(memPtr, 0), \"Strings: hex length insufficient\")\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 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 store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: token already minted\")\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 store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve to caller\")\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 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 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 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 store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: mint to the zero address\")\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 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 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 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 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 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 store_literal_in_memory_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874(memPtr) {\n\n mstore(add(memPtr, 0), \"AccessControl: account \")\n\n }\n\n function store_literal_in_memory_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Burnable: caller is not ow\")\n\n mstore(add(memPtr, 32), \"ner nor approved\")\n\n }\n\n function store_literal_in_memory_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69(memPtr) {\n\n mstore(add(memPtr, 0), \" is missing role \")\n\n }\n\n function store_literal_in_memory_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b(memPtr) {\n\n mstore(add(memPtr, 0), \"AccessControl: can only renounce\")\n\n mstore(add(memPtr, 32), \" roles for self\")\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 validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bytes32(value) {\n if iszero(eq(value, cleanup_t_bytes32(value))) { revert(0, 0) }\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 validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 16,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063501895ae11610104578063a22cb465116100a2578063d539139311610071578063d539139314610560578063d547741f1461057e578063e985e9c51461059a578063fbddd14b146105ca576101cf565b8063a22cb465146104dc578063b88d4fde146104f8578063c87b56dd14610514578063ca9c0bad14610544576101cf565b806370a08231116100de57806370a082311461044057806391d148541461047057806395d89b41146104a0578063a217fddf146104be576101cf565b8063501895ae146103c457806355f804b3146103f45780636352211e14610410576101cf565b80632f2ff15d1161017157806340d097c31161014b57806340d097c31461034057806342842e0e1461035c57806342966c68146103785780634f6ccce714610394576101cf565b80632f2ff15d146102d85780632f745c59146102f457806336568abe14610324576101cf565b8063095ea7b3116101ad578063095ea7b31461025257806318160ddd1461026e57806323b872dd1461028c578063248a9ca3146102a8576101cf565b806301ffc9a7146101d457806306fdde0314610204578063081812fc14610222575b600080fd5b6101ee60048036038101906101e99190612ec3565b6105e8565b6040516101fb9190613485565b60405180910390f35b61020c6105fa565b60405161021991906134bb565b60405180910390f35b61023c60048036038101906102379190612f6a565b61068c565b604051610249919061341e565b60405180910390f35b61026c60048036038101906102679190612de9565b610711565b005b610276610829565b604051610283919061373d565b60405180910390f35b6102a660048036038101906102a19190612cd3565b610836565b005b6102c260048036038101906102bd9190612e29565b610896565b6040516102cf91906134a0565b60405180910390f35b6102f260048036038101906102ed9190612e83565b6108b6565b005b61030e60048036038101906103099190612de9565b6108df565b60405161031b919061373d565b60405180910390f35b61033e60048036038101906103399190612e83565b610984565b005b61035a60048036038101906103559190612c66565b610a07565b005b61037660048036038101906103719190612cd3565b610a84565b005b610392600480360381019061038d9190612f6a565b610aa4565b005b6103ae60048036038101906103a99190612f6a565b610b00565b6040516103bb919061373d565b60405180910390f35b6103de60048036038101906103d99190612f6a565b610b71565b6040516103eb919061373d565b60405180910390f35b61040e60048036038101906104099190612f1d565b610b89565b005b61042a60048036038101906104259190612f6a565b610bb5565b604051610437919061341e565b60405180910390f35b61045a60048036038101906104559190612c66565b610c67565b604051610467919061373d565b60405180910390f35b61048a60048036038101906104859190612e83565b610d1f565b6040516104979190613485565b60405180910390f35b6104a8610d8a565b6040516104b591906134bb565b60405180910390f35b6104c6610e1c565b6040516104d391906134a0565b60405180910390f35b6104f660048036038101906104f19190612da9565b610e23565b005b610512600480360381019061050d9190612d26565b610e39565b005b61052e60048036038101906105299190612f6a565b610e9b565b60405161053b91906134bb565b60405180910390f35b61055e60048036038101906105599190612c66565b610f42565b005b610568610f9c565b60405161057591906134a0565b60405180910390f35b61059860048036038101906105939190612e83565b610fc0565b005b6105b460048036038101906105af9190612c93565b610fe9565b6040516105c19190613485565b60405180910390f35b6105d261107d565b6040516105df91906134a0565b60405180910390f35b60006105f38261113a565b9050919050565b606060008054610609906139f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610635906139f0565b80156106825780601f1061065757610100808354040283529160200191610682565b820191906000526020600020905b81548152906001019060200180831161066557829003601f168201915b5050505050905090565b6000610697826111b4565b6106d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cd9061363d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061071c82610bb5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561078d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107849061369d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107ac611220565b73ffffffffffffffffffffffffffffffffffffffff1614806107db57506107da816107d5611220565b610fe9565b5b61081a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610811906135bd565b60405180910390fd5b6108248383611228565b505050565b6000600880549050905090565b610847610841611220565b826112e1565b610886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087d906136bd565b60405180910390fd5b6108918383836113bf565b505050565b6000600a6000838152602001908152602001600020600101549050919050565b6108bf82610896565b6108d0816108cb611220565b61161b565b6108da83836116b8565b505050565b60006108ea83610c67565b821061092b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610922906134fd565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61098c611220565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f09061371d565b60405180910390fd5b610a038282611799565b5050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610a3981610a34611220565b61161b565b6000610a45600b61187b565b9050610a51600b611889565b610a5b838261189f565b6000610a6782826118bd565b600c60008481526020019081526020016000208190555050505050565b610a9f83838360405180602001604052806000815250610e39565b505050565b610ab5610aaf611220565b826112e1565b610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb906136fd565b60405180910390fd5b610afd81611999565b50565b6000610b0a610829565b8210610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b42906136dd565b60405180910390fd5b60088281548110610b5f57610b5e613b9d565b5b90600052602060002001549050919050565b600c6020528060005260406000206000915090505481565b6000801b610b9e81610b99611220565b61161b565b8282600d9190610baf929190612a6a565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c55906135fd565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf906135dd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610d99906139f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc5906139f0565b8015610e125780601f10610de757610100808354040283529160200191610e12565b820191906000526020600020905b815481529060010190602001808311610df557829003601f168201915b5050505050905090565b6000801b81565b610e35610e2e611220565b8383611aaa565b5050565b610e4a610e44611220565b836112e1565b610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e80906136bd565b60405180910390fd5b610e9584848484611c17565b50505050565b6060610ea6826111b4565b610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc9061367d565b60405180910390fd5b6000610eef611c73565b90506000815111610f0f5760405180602001604052806000815250610f3a565b80610f1984611d05565b604051602001610f2a9291906133c0565b6040516020818303038152906040525b915050919050565b6000801b610f5781610f52611220565b61161b565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610fc982610896565b610fda81610fd5611220565b61161b565b610fe48383611799565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008060001b6110948161108f611220565b61161b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663990c8f796040518163ffffffff1660e01b815260040160206040518083038186803b1580156110fc57600080fd5b505afa158015611110573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111349190612e56565b91505090565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806111ad57506111ac82611e66565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661129b83610bb5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006112ec826111b4565b61132b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113229061359d565b60405180910390fd5b600061133683610bb5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113a557508373ffffffffffffffffffffffffffffffffffffffff1661138d8461068c565b73ffffffffffffffffffffffffffffffffffffffff16145b806113b657506113b58185610fe9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166113df82610bb5565b73ffffffffffffffffffffffffffffffffffffffff1614611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c9061365d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149c9061355d565b60405180910390fd5b6114b0838383611ee0565b6114bb600082611228565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150b91906138d2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461156291906137f1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6116258282610d1f565b6116b45761164a8173ffffffffffffffffffffffffffffffffffffffff166014611ef0565b6116588360001c6020611ef0565b6040516020016116699291906133e4565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ab91906134bb565b60405180910390fd5b5050565b6116c28282610d1f565b611795576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061173a611220565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6117a38282610d1f565b15611877576000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061181c611220565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6118b982826040518060200160405280600081525061212c565b5050565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663990c8f796040518163ffffffff1660e01b815260040160206040518083038186803b15801561192857600080fd5b505afa15801561193c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119609190612e56565b848460405160200161197493929190613383565b6040516020818303038152906040528051906020012060001c90508091505092915050565b60006119a482610bb5565b90506119b281600084611ee0565b6119bd600083611228565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a0d91906138d2565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b109061357d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c0a9190613485565b60405180910390a3505050565b611c228484846113bf565b611c2e84848484612187565b611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c649061351d565b60405180910390fd5b50505050565b6060600d8054611c82906139f0565b80601f0160208091040260200160405190810160405280929190818152602001828054611cae906139f0565b8015611cfb5780601f10611cd057610100808354040283529160200191611cfb565b820191906000526020600020905b815481529060010190602001808311611cde57829003601f168201915b5050505050905090565b60606000821415611d4d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e61565b600082905060005b60008214611d7f578080611d6890613a53565b915050600a82611d789190613847565b9150611d55565b60008167ffffffffffffffff811115611d9b57611d9a613bcc565b5b6040519080825280601f01601f191660200182016040528015611dcd5781602001600182028036833780820191505090505b5090505b60008514611e5a57600182611de691906138d2565b9150600a85611df59190613ab0565b6030611e0191906137f1565b60f81b818381518110611e1757611e16613b9d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e539190613847565b9450611dd1565b8093505050505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ed95750611ed88261231e565b5b9050919050565b611eeb838383612400565b505050565b606060006002836002611f039190613878565b611f0d91906137f1565b67ffffffffffffffff811115611f2657611f25613bcc565b5b6040519080825280601f01601f191660200182016040528015611f585781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611f9057611f8f613b9d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611ff457611ff3613b9d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026120349190613878565b61203e91906137f1565b90505b60018111156120de577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106120805761207f613b9d565b5b1a60f81b82828151811061209757612096613b9d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806120d7906139c6565b9050612041565b5060008414612122576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612119906134dd565b60405180910390fd5b8091505092915050565b6121368383612514565b6121436000848484612187565b612182576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121799061351d565b60405180910390fd5b505050565b60006121a88473ffffffffffffffffffffffffffffffffffffffff166126e2565b15612311578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121d1611220565b8786866040518563ffffffff1660e01b81526004016121f39493929190613439565b602060405180830381600087803b15801561220d57600080fd5b505af192505050801561223e57506040513d601f19601f8201168201806040525081019061223b9190612ef0565b60015b6122c1573d806000811461226e576040519150601f19603f3d011682016040523d82523d6000602084013e612273565b606091505b506000815114156122b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b09061351d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612316565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123e957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123f957506123f8826126f5565b5b9050919050565b61240b83838361275f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561244e5761244981612764565b61248d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461248c5761248b83826127ad565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124d0576124cb8161291a565b61250f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461250e5761250d82826129eb565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257b9061361d565b60405180910390fd5b61258d816111b4565b156125cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c49061353d565b60405180910390fd5b6125d960008383611ee0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461262991906137f1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016127ba84610c67565b6127c491906138d2565b90506000600760008481526020019081526020016000205490508181146128a9576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061292e91906138d2565b905060006009600084815260200190815260200160002054905060006008838154811061295e5761295d613b9d565b5b9060005260206000200154905080600883815481106129805761297f613b9d565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806129cf576129ce613b6e565b5b6001900381819060005260206000200160009055905550505050565b60006129f683610c67565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612a76906139f0565b90600052602060002090601f016020900481019282612a985760008555612adf565b82601f10612ab157803560ff1916838001178555612adf565b82800160010185558215612adf579182015b82811115612ade578235825591602001919060010190612ac3565b5b509050612aec9190612af0565b5090565b5b80821115612b09576000816000905550600101612af1565b5090565b6000612b20612b1b8461377d565b613758565b905082815260208101848484011115612b3c57612b3b613c0a565b5b612b47848285613984565b509392505050565b600081359050612b5e816141c1565b92915050565b600081359050612b73816141d8565b92915050565b600081359050612b88816141ef565b92915050565b600081519050612b9d816141ef565b92915050565b600081359050612bb281614206565b92915050565b600081519050612bc781614206565b92915050565b600082601f830112612be257612be1613c00565b5b8135612bf2848260208601612b0d565b91505092915050565b60008083601f840112612c1157612c10613c00565b5b8235905067ffffffffffffffff811115612c2e57612c2d613bfb565b5b602083019150836001820283011115612c4a57612c49613c05565b5b9250929050565b600081359050612c608161421d565b92915050565b600060208284031215612c7c57612c7b613c14565b5b6000612c8a84828501612b4f565b91505092915050565b60008060408385031215612caa57612ca9613c14565b5b6000612cb885828601612b4f565b9250506020612cc985828601612b4f565b9150509250929050565b600080600060608486031215612cec57612ceb613c14565b5b6000612cfa86828701612b4f565b9350506020612d0b86828701612b4f565b9250506040612d1c86828701612c51565b9150509250925092565b60008060008060808587031215612d4057612d3f613c14565b5b6000612d4e87828801612b4f565b9450506020612d5f87828801612b4f565b9350506040612d7087828801612c51565b925050606085013567ffffffffffffffff811115612d9157612d90613c0f565b5b612d9d87828801612bcd565b91505092959194509250565b60008060408385031215612dc057612dbf613c14565b5b6000612dce85828601612b4f565b9250506020612ddf85828601612b64565b9150509250929050565b60008060408385031215612e0057612dff613c14565b5b6000612e0e85828601612b4f565b9250506020612e1f85828601612c51565b9150509250929050565b600060208284031215612e3f57612e3e613c14565b5b6000612e4d84828501612b79565b91505092915050565b600060208284031215612e6c57612e6b613c14565b5b6000612e7a84828501612b8e565b91505092915050565b60008060408385031215612e9a57612e99613c14565b5b6000612ea885828601612b79565b9250506020612eb985828601612b4f565b9150509250929050565b600060208284031215612ed957612ed8613c14565b5b6000612ee784828501612ba3565b91505092915050565b600060208284031215612f0657612f05613c14565b5b6000612f1484828501612bb8565b91505092915050565b60008060208385031215612f3457612f33613c14565b5b600083013567ffffffffffffffff811115612f5257612f51613c0f565b5b612f5e85828601612bfb565b92509250509250929050565b600060208284031215612f8057612f7f613c14565b5b6000612f8e84828501612c51565b91505092915050565b612fa081613906565b82525050565b612faf81613918565b82525050565b612fbe81613924565b82525050565b612fd5612fd082613924565b613a9c565b82525050565b6000612fe6826137ae565b612ff081856137c4565b9350613000818560208601613993565b61300981613c19565b840191505092915050565b600061301f826137b9565b61302981856137d5565b9350613039818560208601613993565b61304281613c19565b840191505092915050565b6000613058826137b9565b61306281856137e6565b9350613072818560208601613993565b80840191505092915050565b600061308b6020836137d5565b915061309682613c2a565b602082019050919050565b60006130ae602b836137d5565b91506130b982613c53565b604082019050919050565b60006130d16032836137d5565b91506130dc82613ca2565b604082019050919050565b60006130f4601c836137d5565b91506130ff82613cf1565b602082019050919050565b60006131176024836137d5565b915061312282613d1a565b604082019050919050565b600061313a6019836137d5565b915061314582613d69565b602082019050919050565b600061315d602c836137d5565b915061316882613d92565b604082019050919050565b60006131806038836137d5565b915061318b82613de1565b604082019050919050565b60006131a3602a836137d5565b91506131ae82613e30565b604082019050919050565b60006131c66029836137d5565b91506131d182613e7f565b604082019050919050565b60006131e96020836137d5565b91506131f482613ece565b602082019050919050565b600061320c602c836137d5565b915061321782613ef7565b604082019050919050565b600061322f6029836137d5565b915061323a82613f46565b604082019050919050565b6000613252602f836137d5565b915061325d82613f95565b604082019050919050565b60006132756021836137d5565b915061328082613fe4565b604082019050919050565b60006132986031836137d5565b91506132a382614033565b604082019050919050565b60006132bb602c836137d5565b91506132c682614082565b604082019050919050565b60006132de6017836137e6565b91506132e9826140d1565b601782019050919050565b60006133016030836137d5565b915061330c826140fa565b604082019050919050565b60006133246011836137e6565b915061332f82614149565b601182019050919050565b6000613347602f836137d5565b915061335282614172565b604082019050919050565b6133668161397a565b82525050565b61337d6133788261397a565b613aa6565b82525050565b600061338f8286612fc4565b60208201915061339f828561336c565b6020820191506133af828461336c565b602082019150819050949350505050565b60006133cc828561304d565b91506133d8828461304d565b91508190509392505050565b60006133ef826132d1565b91506133fb828561304d565b915061340682613317565b9150613412828461304d565b91508190509392505050565b60006020820190506134336000830184612f97565b92915050565b600060808201905061344e6000830187612f97565b61345b6020830186612f97565b613468604083018561335d565b818103606083015261347a8184612fdb565b905095945050505050565b600060208201905061349a6000830184612fa6565b92915050565b60006020820190506134b56000830184612fb5565b92915050565b600060208201905081810360008301526134d58184613014565b905092915050565b600060208201905081810360008301526134f68161307e565b9050919050565b60006020820190508181036000830152613516816130a1565b9050919050565b60006020820190508181036000830152613536816130c4565b9050919050565b60006020820190508181036000830152613556816130e7565b9050919050565b600060208201905081810360008301526135768161310a565b9050919050565b600060208201905081810360008301526135968161312d565b9050919050565b600060208201905081810360008301526135b681613150565b9050919050565b600060208201905081810360008301526135d681613173565b9050919050565b600060208201905081810360008301526135f681613196565b9050919050565b60006020820190508181036000830152613616816131b9565b9050919050565b60006020820190508181036000830152613636816131dc565b9050919050565b60006020820190508181036000830152613656816131ff565b9050919050565b6000602082019050818103600083015261367681613222565b9050919050565b6000602082019050818103600083015261369681613245565b9050919050565b600060208201905081810360008301526136b681613268565b9050919050565b600060208201905081810360008301526136d68161328b565b9050919050565b600060208201905081810360008301526136f6816132ae565b9050919050565b60006020820190508181036000830152613716816132f4565b9050919050565b600060208201905081810360008301526137368161333a565b9050919050565b6000602082019050613752600083018461335d565b92915050565b6000613762613773565b905061376e8282613a22565b919050565b6000604051905090565b600067ffffffffffffffff82111561379857613797613bcc565b5b6137a182613c19565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006137fc8261397a565b91506138078361397a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561383c5761383b613ae1565b5b828201905092915050565b60006138528261397a565b915061385d8361397a565b92508261386d5761386c613b10565b5b828204905092915050565b60006138838261397a565b915061388e8361397a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138c7576138c6613ae1565b5b828202905092915050565b60006138dd8261397a565b91506138e88361397a565b9250828210156138fb576138fa613ae1565b5b828203905092915050565b60006139118261395a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139b1578082015181840152602081019050613996565b838111156139c0576000848401525b50505050565b60006139d18261397a565b915060008214156139e5576139e4613ae1565b5b600182039050919050565b60006002820490506001821680613a0857607f821691505b60208210811415613a1c57613a1b613b3f565b5b50919050565b613a2b82613c19565b810181811067ffffffffffffffff82111715613a4a57613a49613bcc565b5b80604052505050565b6000613a5e8261397a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a9157613a90613ae1565b5b600182019050919050565b6000819050919050565b6000819050919050565b6000613abb8261397a565b9150613ac68361397a565b925082613ad657613ad5613b10565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6141ca81613906565b81146141d557600080fd5b50565b6141e181613918565b81146141ec57600080fd5b50565b6141f881613924565b811461420357600080fd5b50565b61420f8161392e565b811461421a57600080fd5b50565b6142268161397a565b811461423157600080fd5b5056fea2646970667358221220dbeaecc7c5db9fe6a36bc08c685a61c1e1ca0111a1a3a19392137d584ee4c28f64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1CF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x501895AE GT PUSH2 0x104 JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xD5391393 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xD5391393 EQ PUSH2 0x560 JUMPI DUP1 PUSH4 0xD547741F EQ PUSH2 0x57E JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x59A JUMPI DUP1 PUSH4 0xFBDDD14B EQ PUSH2 0x5CA JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x4DC JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x4F8 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x514 JUMPI DUP1 PUSH4 0xCA9C0BAD EQ PUSH2 0x544 JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x70A08231 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x440 JUMPI DUP1 PUSH4 0x91D14854 EQ PUSH2 0x470 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x4A0 JUMPI DUP1 PUSH4 0xA217FDDF EQ PUSH2 0x4BE JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x501895AE EQ PUSH2 0x3C4 JUMPI DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x3F4 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x410 JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x2F2FF15D GT PUSH2 0x171 JUMPI DUP1 PUSH4 0x40D097C3 GT PUSH2 0x14B JUMPI DUP1 PUSH4 0x40D097C3 EQ PUSH2 0x340 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x35C JUMPI DUP1 PUSH4 0x42966C68 EQ PUSH2 0x378 JUMPI DUP1 PUSH4 0x4F6CCCE7 EQ PUSH2 0x394 JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x2F2FF15D EQ PUSH2 0x2D8 JUMPI DUP1 PUSH4 0x2F745C59 EQ PUSH2 0x2F4 JUMPI DUP1 PUSH4 0x36568ABE EQ PUSH2 0x324 JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x1AD JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x252 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x26E JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x28C JUMPI DUP1 PUSH4 0x248A9CA3 EQ PUSH2 0x2A8 JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x1D4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x204 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x222 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1EE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1E9 SWAP2 SWAP1 PUSH2 0x2EC3 JUMP JUMPDEST PUSH2 0x5E8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FB SWAP2 SWAP1 PUSH2 0x3485 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20C PUSH2 0x5FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x219 SWAP2 SWAP1 PUSH2 0x34BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x237 SWAP2 SWAP1 PUSH2 0x2F6A JUMP JUMPDEST PUSH2 0x68C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x249 SWAP2 SWAP1 PUSH2 0x341E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x267 SWAP2 SWAP1 PUSH2 0x2DE9 JUMP JUMPDEST PUSH2 0x711 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x276 PUSH2 0x829 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x283 SWAP2 SWAP1 PUSH2 0x373D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A1 SWAP2 SWAP1 PUSH2 0x2CD3 JUMP JUMPDEST PUSH2 0x836 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2C2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2BD SWAP2 SWAP1 PUSH2 0x2E29 JUMP JUMPDEST PUSH2 0x896 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2CF SWAP2 SWAP1 PUSH2 0x34A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2F2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2ED SWAP2 SWAP1 PUSH2 0x2E83 JUMP JUMPDEST PUSH2 0x8B6 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x30E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x309 SWAP2 SWAP1 PUSH2 0x2DE9 JUMP JUMPDEST PUSH2 0x8DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x31B SWAP2 SWAP1 PUSH2 0x373D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x33E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x339 SWAP2 SWAP1 PUSH2 0x2E83 JUMP JUMPDEST PUSH2 0x984 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x35A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x355 SWAP2 SWAP1 PUSH2 0x2C66 JUMP JUMPDEST PUSH2 0xA07 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x376 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x371 SWAP2 SWAP1 PUSH2 0x2CD3 JUMP JUMPDEST PUSH2 0xA84 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x392 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x38D SWAP2 SWAP1 PUSH2 0x2F6A JUMP JUMPDEST PUSH2 0xAA4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3AE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3A9 SWAP2 SWAP1 PUSH2 0x2F6A JUMP JUMPDEST PUSH2 0xB00 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3BB SWAP2 SWAP1 PUSH2 0x373D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3DE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3D9 SWAP2 SWAP1 PUSH2 0x2F6A JUMP JUMPDEST PUSH2 0xB71 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3EB SWAP2 SWAP1 PUSH2 0x373D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x40E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x409 SWAP2 SWAP1 PUSH2 0x2F1D JUMP JUMPDEST PUSH2 0xB89 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x42A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x425 SWAP2 SWAP1 PUSH2 0x2F6A JUMP JUMPDEST PUSH2 0xBB5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x437 SWAP2 SWAP1 PUSH2 0x341E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x45A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x455 SWAP2 SWAP1 PUSH2 0x2C66 JUMP JUMPDEST PUSH2 0xC67 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x467 SWAP2 SWAP1 PUSH2 0x373D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x48A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x485 SWAP2 SWAP1 PUSH2 0x2E83 JUMP JUMPDEST PUSH2 0xD1F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x497 SWAP2 SWAP1 PUSH2 0x3485 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4A8 PUSH2 0xD8A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4B5 SWAP2 SWAP1 PUSH2 0x34BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4C6 PUSH2 0xE1C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4D3 SWAP2 SWAP1 PUSH2 0x34A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4F6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4F1 SWAP2 SWAP1 PUSH2 0x2DA9 JUMP JUMPDEST PUSH2 0xE23 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x512 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x50D SWAP2 SWAP1 PUSH2 0x2D26 JUMP JUMPDEST PUSH2 0xE39 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x52E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x529 SWAP2 SWAP1 PUSH2 0x2F6A JUMP JUMPDEST PUSH2 0xE9B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x53B SWAP2 SWAP1 PUSH2 0x34BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x55E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x559 SWAP2 SWAP1 PUSH2 0x2C66 JUMP JUMPDEST PUSH2 0xF42 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x568 PUSH2 0xF9C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x575 SWAP2 SWAP1 PUSH2 0x34A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x598 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x593 SWAP2 SWAP1 PUSH2 0x2E83 JUMP JUMPDEST PUSH2 0xFC0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x5B4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5AF SWAP2 SWAP1 PUSH2 0x2C93 JUMP JUMPDEST PUSH2 0xFE9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5C1 SWAP2 SWAP1 PUSH2 0x3485 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x5D2 PUSH2 0x107D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5DF SWAP2 SWAP1 PUSH2 0x34A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH2 0x5F3 DUP3 PUSH2 0x113A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x609 SWAP1 PUSH2 0x39F0 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 0x635 SWAP1 PUSH2 0x39F0 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x682 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x657 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x682 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 0x665 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x697 DUP3 PUSH2 0x11B4 JUMP JUMPDEST PUSH2 0x6D6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6CD SWAP1 PUSH2 0x363D 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 0x0 PUSH2 0x71C DUP3 PUSH2 0xBB5 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x78D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x784 SWAP1 PUSH2 0x369D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x7AC PUSH2 0x1220 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x7DB JUMPI POP PUSH2 0x7DA DUP2 PUSH2 0x7D5 PUSH2 0x1220 JUMP JUMPDEST PUSH2 0xFE9 JUMP JUMPDEST JUMPDEST PUSH2 0x81A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x811 SWAP1 PUSH2 0x35BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x824 DUP4 DUP4 PUSH2 0x1228 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP1 SLOAD SWAP1 POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x847 PUSH2 0x841 PUSH2 0x1220 JUMP JUMPDEST DUP3 PUSH2 0x12E1 JUMP JUMPDEST PUSH2 0x886 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x87D SWAP1 PUSH2 0x36BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x891 DUP4 DUP4 DUP4 PUSH2 0x13BF JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x8BF DUP3 PUSH2 0x896 JUMP JUMPDEST PUSH2 0x8D0 DUP2 PUSH2 0x8CB PUSH2 0x1220 JUMP JUMPDEST PUSH2 0x161B JUMP JUMPDEST PUSH2 0x8DA DUP4 DUP4 PUSH2 0x16B8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8EA DUP4 PUSH2 0xC67 JUMP JUMPDEST DUP3 LT PUSH2 0x92B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x922 SWAP1 PUSH2 0x34FD 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 PUSH2 0x98C PUSH2 0x1220 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9F9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9F0 SWAP1 PUSH2 0x371D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA03 DUP3 DUP3 PUSH2 0x1799 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 PUSH2 0xA39 DUP2 PUSH2 0xA34 PUSH2 0x1220 JUMP JUMPDEST PUSH2 0x161B JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA45 PUSH1 0xB PUSH2 0x187B JUMP JUMPDEST SWAP1 POP PUSH2 0xA51 PUSH1 0xB PUSH2 0x1889 JUMP JUMPDEST PUSH2 0xA5B DUP4 DUP3 PUSH2 0x189F JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA67 DUP3 DUP3 PUSH2 0x18BD JUMP JUMPDEST PUSH1 0xC PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP POP JUMP JUMPDEST PUSH2 0xA9F DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xE39 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xAB5 PUSH2 0xAAF PUSH2 0x1220 JUMP JUMPDEST DUP3 PUSH2 0x12E1 JUMP JUMPDEST PUSH2 0xAF4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAEB SWAP1 PUSH2 0x36FD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xAFD DUP2 PUSH2 0x1999 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB0A PUSH2 0x829 JUMP JUMPDEST DUP3 LT PUSH2 0xB4B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB42 SWAP1 PUSH2 0x36DD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x8 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xB5F JUMPI PUSH2 0xB5E PUSH2 0x3B9D JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xC PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SHL PUSH2 0xB9E DUP2 PUSH2 0xB99 PUSH2 0x1220 JUMP JUMPDEST PUSH2 0x161B JUMP JUMPDEST DUP3 DUP3 PUSH1 0xD SWAP2 SWAP1 PUSH2 0xBAF SWAP3 SWAP2 SWAP1 PUSH2 0x2A6A JUMP JUMPDEST POP POP POP POP 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 0xC5E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC55 SWAP1 PUSH2 0x35FD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xCD8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCCF SWAP1 PUSH2 0x35DD 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 PUSH1 0x0 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0xD99 SWAP1 PUSH2 0x39F0 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 0xDC5 SWAP1 PUSH2 0x39F0 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xE12 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xDE7 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xE12 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 0xDF5 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 SHL DUP2 JUMP JUMPDEST PUSH2 0xE35 PUSH2 0xE2E PUSH2 0x1220 JUMP JUMPDEST DUP4 DUP4 PUSH2 0x1AAA JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0xE4A PUSH2 0xE44 PUSH2 0x1220 JUMP JUMPDEST DUP4 PUSH2 0x12E1 JUMP JUMPDEST PUSH2 0xE89 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE80 SWAP1 PUSH2 0x36BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE95 DUP5 DUP5 DUP5 DUP5 PUSH2 0x1C17 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xEA6 DUP3 PUSH2 0x11B4 JUMP JUMPDEST PUSH2 0xEE5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEDC SWAP1 PUSH2 0x367D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xEEF PUSH2 0x1C73 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0xF0F JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xF3A JUMP JUMPDEST DUP1 PUSH2 0xF19 DUP5 PUSH2 0x1D05 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xF2A SWAP3 SWAP2 SWAP1 PUSH2 0x33C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SHL PUSH2 0xF57 DUP2 PUSH2 0xF52 PUSH2 0x1220 JUMP JUMPDEST PUSH2 0x161B JUMP JUMPDEST DUP2 PUSH1 0xE PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 DUP2 JUMP JUMPDEST PUSH2 0xFC9 DUP3 PUSH2 0x896 JUMP JUMPDEST PUSH2 0xFDA DUP2 PUSH2 0xFD5 PUSH2 0x1220 JUMP JUMPDEST PUSH2 0x161B JUMP JUMPDEST PUSH2 0xFE4 DUP4 DUP4 PUSH2 0x1799 JUMP JUMPDEST POP 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 PUSH1 0x0 DUP1 PUSH1 0x0 SHL PUSH2 0x1094 DUP2 PUSH2 0x108F PUSH2 0x1220 JUMP JUMPDEST PUSH2 0x161B JUMP JUMPDEST PUSH1 0xE PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x990C8F79 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x10FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1110 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1134 SWAP2 SWAP1 PUSH2 0x2E56 JUMP JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x7965DB0B00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x11AD JUMPI POP PUSH2 0x11AC DUP3 PUSH2 0x1E66 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP 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 PUSH1 0x0 CALLER SWAP1 POP SWAP1 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 0x129B DUP4 PUSH2 0xBB5 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 0x12EC DUP3 PUSH2 0x11B4 JUMP JUMPDEST PUSH2 0x132B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1322 SWAP1 PUSH2 0x359D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1336 DUP4 PUSH2 0xBB5 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x13A5 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x138D DUP5 PUSH2 0x68C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH2 0x13B6 JUMPI POP PUSH2 0x13B5 DUP2 DUP6 PUSH2 0xFE9 JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x13DF DUP3 PUSH2 0xBB5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1435 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x142C SWAP1 PUSH2 0x365D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x14A5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x149C SWAP1 PUSH2 0x355D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x14B0 DUP4 DUP4 DUP4 PUSH2 0x1EE0 JUMP JUMPDEST PUSH2 0x14BB PUSH1 0x0 DUP3 PUSH2 0x1228 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 0x150B SWAP2 SWAP1 PUSH2 0x38D2 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 0x1562 SWAP2 SWAP1 PUSH2 0x37F1 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 PUSH2 0x1625 DUP3 DUP3 PUSH2 0xD1F JUMP JUMPDEST PUSH2 0x16B4 JUMPI PUSH2 0x164A DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x14 PUSH2 0x1EF0 JUMP JUMPDEST PUSH2 0x1658 DUP4 PUSH1 0x0 SHR PUSH1 0x20 PUSH2 0x1EF0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1669 SWAP3 SWAP2 SWAP1 PUSH2 0x33E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16AB SWAP2 SWAP1 PUSH2 0x34BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x16C2 DUP3 DUP3 PUSH2 0xD1F JUMP JUMPDEST PUSH2 0x1795 JUMPI PUSH1 0x1 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD 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 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x173A PUSH2 0x1220 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x17A3 DUP3 DUP3 PUSH2 0xD1F JUMP JUMPDEST ISZERO PUSH2 0x1877 JUMPI PUSH1 0x0 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD 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 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x181C PUSH2 0x1220 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x18B9 DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x212C JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0xE PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x990C8F79 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1928 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x193C JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1960 SWAP2 SWAP1 PUSH2 0x2E56 JUMP JUMPDEST DUP5 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1974 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3383 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x0 SHR SWAP1 POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19A4 DUP3 PUSH2 0xBB5 JUMP JUMPDEST SWAP1 POP PUSH2 0x19B2 DUP2 PUSH1 0x0 DUP5 PUSH2 0x1EE0 JUMP JUMPDEST PUSH2 0x19BD PUSH1 0x0 DUP4 PUSH2 0x1228 JUMP JUMPDEST PUSH1 0x1 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 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1A0D SWAP2 SWAP1 PUSH2 0x38D2 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP 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 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE DUP2 PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1B19 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B10 SWAP1 PUSH2 0x357D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 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 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 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1C0A SWAP2 SWAP1 PUSH2 0x3485 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x1C22 DUP5 DUP5 DUP5 PUSH2 0x13BF JUMP JUMPDEST PUSH2 0x1C2E DUP5 DUP5 DUP5 DUP5 PUSH2 0x2187 JUMP JUMPDEST PUSH2 0x1C6D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C64 SWAP1 PUSH2 0x351D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0xD DUP1 SLOAD PUSH2 0x1C82 SWAP1 PUSH2 0x39F0 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 0x1CAE SWAP1 PUSH2 0x39F0 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1CFB JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1CD0 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1CFB 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 0x1CDE 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 0x1D4D 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 0x1E61 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x1D7F JUMPI DUP1 DUP1 PUSH2 0x1D68 SWAP1 PUSH2 0x3A53 JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x1D78 SWAP2 SWAP1 PUSH2 0x3847 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D55 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1D9B JUMPI PUSH2 0x1D9A PUSH2 0x3BCC 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 0x1DCD 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 0x1E5A JUMPI PUSH1 0x1 DUP3 PUSH2 0x1DE6 SWAP2 SWAP1 PUSH2 0x38D2 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x1DF5 SWAP2 SWAP1 PUSH2 0x3AB0 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x1E01 SWAP2 SWAP1 PUSH2 0x37F1 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1E17 JUMPI PUSH2 0x1E16 PUSH2 0x3B9D JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x1E53 SWAP2 SWAP1 PUSH2 0x3847 JUMP JUMPDEST SWAP5 POP PUSH2 0x1DD1 JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x780E9D6300000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x1ED9 JUMPI POP PUSH2 0x1ED8 DUP3 PUSH2 0x231E JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1EEB DUP4 DUP4 DUP4 PUSH2 0x2400 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x2 DUP4 PUSH1 0x2 PUSH2 0x1F03 SWAP2 SWAP1 PUSH2 0x3878 JUMP JUMPDEST PUSH2 0x1F0D SWAP2 SWAP1 PUSH2 0x37F1 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1F26 JUMPI PUSH2 0x1F25 PUSH2 0x3BCC 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 0x1F58 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 PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1F90 JUMPI PUSH2 0x1F8F PUSH2 0x3B9D JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH32 0x7800000000000000000000000000000000000000000000000000000000000000 DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x1FF4 JUMPI PUSH2 0x1FF3 PUSH2 0x3B9D JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0x0 PUSH1 0x1 DUP5 PUSH1 0x2 PUSH2 0x2034 SWAP2 SWAP1 PUSH2 0x3878 JUMP JUMPDEST PUSH2 0x203E SWAP2 SWAP1 PUSH2 0x37F1 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x20DE JUMPI PUSH32 0x3031323334353637383961626364656600000000000000000000000000000000 PUSH1 0xF DUP7 AND PUSH1 0x10 DUP2 LT PUSH2 0x2080 JUMPI PUSH2 0x207F PUSH2 0x3B9D JUMP JUMPDEST JUMPDEST BYTE PUSH1 0xF8 SHL DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x2097 JUMPI PUSH2 0x2096 PUSH2 0x3B9D JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0x4 DUP6 SWAP1 SHR SWAP5 POP DUP1 PUSH2 0x20D7 SWAP1 PUSH2 0x39C6 JUMP JUMPDEST SWAP1 POP PUSH2 0x2041 JUMP JUMPDEST POP PUSH1 0x0 DUP5 EQ PUSH2 0x2122 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2119 SWAP1 PUSH2 0x34DD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2136 DUP4 DUP4 PUSH2 0x2514 JUMP JUMPDEST PUSH2 0x2143 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x2187 JUMP JUMPDEST PUSH2 0x2182 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2179 SWAP1 PUSH2 0x351D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x21A8 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x26E2 JUMP JUMPDEST ISZERO PUSH2 0x2311 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x21D1 PUSH2 0x1220 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x21F3 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3439 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x220D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x223E 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 0x223B SWAP2 SWAP1 PUSH2 0x2EF0 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x22C1 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x226E 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 0x2273 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x22B9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x22B0 SWAP1 PUSH2 0x351D 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 0x2316 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x23E9 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x23F9 JUMPI POP PUSH2 0x23F8 DUP3 PUSH2 0x26F5 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x240B DUP4 DUP4 DUP4 PUSH2 0x275F JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x244E JUMPI PUSH2 0x2449 DUP2 PUSH2 0x2764 JUMP JUMPDEST PUSH2 0x248D JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x248C JUMPI PUSH2 0x248B DUP4 DUP3 PUSH2 0x27AD JUMP JUMPDEST JUMPDEST JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x24D0 JUMPI PUSH2 0x24CB DUP2 PUSH2 0x291A JUMP JUMPDEST PUSH2 0x250F JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x250E JUMPI PUSH2 0x250D DUP3 DUP3 PUSH2 0x29EB JUMP JUMPDEST JUMPDEST JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2584 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x257B SWAP1 PUSH2 0x361D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x258D DUP2 PUSH2 0x11B4 JUMP JUMPDEST ISZERO PUSH2 0x25CD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x25C4 SWAP1 PUSH2 0x353D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x25D9 PUSH1 0x0 DUP4 DUP4 PUSH2 0x1EE0 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 0x2629 SWAP2 SWAP1 PUSH2 0x37F1 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 PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 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 0x27BA DUP5 PUSH2 0xC67 JUMP JUMPDEST PUSH2 0x27C4 SWAP2 SWAP1 PUSH2 0x38D2 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 0x28A9 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 0x292E SWAP2 SWAP1 PUSH2 0x38D2 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 0x295E JUMPI PUSH2 0x295D PUSH2 0x3B9D 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 0x2980 JUMPI PUSH2 0x297F PUSH2 0x3B9D 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 0x29CF JUMPI PUSH2 0x29CE PUSH2 0x3B6E 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 0x29F6 DUP4 PUSH2 0xC67 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 DUP3 DUP1 SLOAD PUSH2 0x2A76 SWAP1 PUSH2 0x39F0 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2A98 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x2ADF JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2AB1 JUMPI DUP1 CALLDATALOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x2ADF JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x2ADF JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x2ADE JUMPI DUP3 CALLDATALOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2AC3 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x2AEC SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x2B09 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x2AF1 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B20 PUSH2 0x2B1B DUP5 PUSH2 0x377D JUMP JUMPDEST PUSH2 0x3758 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x2B3C JUMPI PUSH2 0x2B3B PUSH2 0x3C0A JUMP JUMPDEST JUMPDEST PUSH2 0x2B47 DUP5 DUP3 DUP6 PUSH2 0x3984 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2B5E DUP2 PUSH2 0x41C1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2B73 DUP2 PUSH2 0x41D8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2B88 DUP2 PUSH2 0x41EF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x2B9D DUP2 PUSH2 0x41EF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2BB2 DUP2 PUSH2 0x4206 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x2BC7 DUP2 PUSH2 0x4206 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2BE2 JUMPI PUSH2 0x2BE1 PUSH2 0x3C00 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2BF2 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2B0D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2C11 JUMPI PUSH2 0x2C10 PUSH2 0x3C00 JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2C2E JUMPI PUSH2 0x2C2D PUSH2 0x3BFB JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x2C4A JUMPI PUSH2 0x2C49 PUSH2 0x3C05 JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2C60 DUP2 PUSH2 0x421D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2C7C JUMPI PUSH2 0x2C7B PUSH2 0x3C14 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2C8A DUP5 DUP3 DUP6 ADD PUSH2 0x2B4F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2CAA JUMPI PUSH2 0x2CA9 PUSH2 0x3C14 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2CB8 DUP6 DUP3 DUP7 ADD PUSH2 0x2B4F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2CC9 DUP6 DUP3 DUP7 ADD PUSH2 0x2B4F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2CEC JUMPI PUSH2 0x2CEB PUSH2 0x3C14 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2CFA DUP7 DUP3 DUP8 ADD PUSH2 0x2B4F JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x2D0B DUP7 DUP3 DUP8 ADD PUSH2 0x2B4F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x2D1C DUP7 DUP3 DUP8 ADD PUSH2 0x2C51 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2D40 JUMPI PUS
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

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