Skip to content

Instantly share code, notes, and snippets.

@AugustDev
Created March 31, 2023 14:33
Show Gist options
  • Save AugustDev/1fa44bd0a3a116aa2e2f99fa193acd9a to your computer and use it in GitHub Desktop.
Save AugustDev/1fa44bd0a3a116aa2e2f99fa193acd9a to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.13+commit.abaa5c0e.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or 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 {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// 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
/// @solidity memory-safe-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
pragma solidity ^0.8.13;
import {OperatorFilterer} from "./OperatorFilterer.sol";
/**
* @title DefaultOperatorFilterer
* @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
*/
abstract contract DefaultOperatorFilterer is OperatorFilterer {
address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);
constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
// 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
pragma solidity 0.8.13;
import "./ERC165.sol";
import "./IERC2981Royalties.sol";
/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
abstract contract ERC2981Base is ERC165, IERC2981Royalties {
struct RoyaltyInfo {
address recipient;
uint24 amount;
}
/// @inheritdoc ERC165
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override
returns (bool)
{
return
interfaceId == type(IERC2981Royalties).interfaceId ||
super.supportsInterface(interfaceId);
}
}
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;
import "./ERC165.sol";
import "./ERC2981Base.sol";
/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
abstract contract ERC2981PerTokenRoyalties is ERC2981Base {
mapping(uint256 => RoyaltyInfo) internal _royalties;
/// @dev Sets token royalties
/// @param tokenId the token id fir which we register the royalties
/// @param recipient recipient of the royalties
/// @param value percentage (using 2 decimals - 10000 = 100, 0 = 0)
function _setTokenRoyalty(
uint256 tokenId,
address recipient,
uint256 value
) internal {
require(value <= 10000, "ERC2981Royalties: Too high");
_royalties[tokenId] = RoyaltyInfo(recipient, uint24(value));
}
/// @inheritdoc IERC2981Royalties
function royaltyInfo(uint256 tokenId, uint256 value)
external
view
override
returns (address receiver, uint256 royaltyAmount)
{
RoyaltyInfo memory royalties = _royalties[tokenId];
receiver = royalties.recipient;
royaltyAmount = (value * royalties.amount) / 10000;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol)
pragma solidity 0.8.13;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./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 public _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) public _owners;
// Mapping owner address to token count
mapping(address => uint256) public _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;
// Mapping from token ID to the IPFS cid
mapping(uint256 => string) public _cids;
// Used as the URI for all token types by relying on ID substitution, e.g.
string public _baseUri;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(
string memory name_,
string memory symbol_,
string memory uri_
) {
_name = name_;
_symbol = symbol_;
_baseUri = uri_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(
bytes4 interfaceId
) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(
address owner
) public view virtual override returns (uint256) {
require(
owner != address(0),
"ERC721: address zero is not a valid owner"
);
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(
uint256 tokenId
) public view virtual override returns (address) {
address owner = _ownerOf(tokenId);
require(owner != address(0), "ERC721: invalid token ID");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(
uint256 tokenId
) public view virtual override returns (string memory) {
_requireMinted(tokenId);
string memory baseURI = _baseUri;
return
bytes(baseURI).length > 0
? string(abi.encodePacked(baseURI, _cids[tokenId]))
: "";
}
/**
* @dev Sets a new URI for all token types, by relying on the token type ID
* substitution mechanism
*/
function _setURI(string memory newuri_) internal virtual {
_baseUri = newuri_;
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not token owner or approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(
uint256 tokenId
) public view virtual override returns (address) {
_requireMinted(tokenId);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(
address operator,
bool approved
) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(
address owner,
address operator
) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"ERC721: caller is not token owner or approved"
);
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory data
) public virtual override {
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"ERC721: caller is not token owner or approved"
);
_safeTransfer(from, to, tokenId, data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_transfer(from, to, tokenId);
require(
_checkOnERC721Received(from, to, tokenId, data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
*/
function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
return _owners[tokenId];
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _ownerOf(tokenId) != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(
address spender,
uint256 tokenId
) internal view virtual returns (bool) {
address owner = ERC721.ownerOf(tokenId);
return (spender == owner ||
isApprovedForAll(owner, spender) ||
getApproved(tokenId) == spender);
}
/**
* @dev 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,
string memory cid
) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId, 1);
// Check that tokenId was not minted by `_beforeTokenTransfer` hook
require(!_exists(tokenId), "ERC721: token already minted");
unchecked {
// Will not overflow unless all 2**256 token ids are minted to the same owner.
// Given that tokens are minted one by one, it is impossible in practice that
// this ever happens. Might change if we allow batch minting.
// The ERC fails to describe this case.
_balances[to] += 1;
}
_owners[tokenId] = to;
_cids[tokenId] = cid;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId, 1);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
* This is an internal function that does not check if the sender is authorized to operate on the token.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId, 1);
// Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
owner = ERC721.ownerOf(tokenId);
// Clear approvals
delete _tokenApprovals[tokenId];
unchecked {
// Cannot overflow, as that would require more tokens to be burned/transferred
// out than the owner initially received through minting and transferring in.
_balances[owner] -= 1;
}
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId, 1);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(
ERC721.ownerOf(tokenId) == from,
"ERC721: transfer from incorrect owner"
);
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId, 1);
// Check that tokenId was not transferred by `_beforeTokenTransfer` hook
require(
ERC721.ownerOf(tokenId) == from,
"ERC721: transfer from incorrect owner"
);
// Clear approvals from the previous owner
delete _tokenApprovals[tokenId];
unchecked {
// `_balances[from]` cannot overflow for the same reason as described in `_burn`:
// `from`'s balance is the number of token held, which is at least one before the current
// transfer.
// `_balances[to]` could overflow in the conditions described in `_mint`. That would require
// all 2**256 token ids to be minted, which in practice is impossible.
_balances[from] -= 1;
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId, 1);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory data
) private returns (bool) {
if (to.isContract()) {
try
IERC721Receiver(to).onERC721Received(
_msgSender(),
from,
tokenId,
data
)
returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert(
"ERC721: transfer to non ERC721Receiver implementer"
);
} else {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
* - When `from` is zero, the tokens will be minted for `to`.
* - When `to` is zero, ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 /* firstTokenId */,
uint256 batchSize
) internal virtual {
if (batchSize > 1) {
if (from != address(0)) {
_balances[from] -= batchSize;
}
if (to != address(0)) {
_balances[to] += batchSize;
}
}
}
/**
* @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
* - When `from` is zero, the tokens were minted for `to`.
* - When `to` is zero, ``from``'s tokens were burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 firstTokenId,
uint256 batchSize
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts 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
pragma solidity 0.8.13;
/// @title IERC2981Royalties
/// @dev Interface for the ERC2981 - Token Royalty standard
interface IERC2981Royalties {
/// @notice Called with the sale price to determine how much royalty
// is owed and to whom.
/// @param _tokenId - the NFT asset queried for royalty information
/// @param _value - the sale price of the NFT asset specified by _tokenId
/// @return _receiver - address of who should be sent the royalty payment
/// @return _royaltyAmount - the royalty payment amount for value sale price
function royaltyInfo(uint256 _tokenId, uint256 _value)
external
view
returns (address _receiver, uint256 _royaltyAmount);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts 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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
interface IOperatorFilterRegistry {
function isOperatorAllowed(address registrant, address operator) external view returns (bool);
function register(address registrant) external;
function registerAndSubscribe(address registrant, address subscription) external;
function registerAndCopyEntries(address registrant, address registrantToCopy) external;
function unregister(address addr) external;
function updateOperator(address registrant, address operator, bool filtered) external;
function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
function subscribe(address registrant, address registrantToSubscribe) external;
function unsubscribe(address registrant, bool copyExistingEntries) external;
function subscriptionOf(address addr) external returns (address registrant);
function subscribers(address registrant) external returns (address[] memory);
function subscriberAt(address registrant, uint256 index) external returns (address);
function copyEntriesOf(address registrant, address registrantToCopy) external;
function isOperatorFiltered(address registrant, address operator) external returns (bool);
function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
function filteredOperators(address addr) external returns (address[] memory);
function filteredCodeHashes(address addr) external returns (bytes32[] memory);
function filteredOperatorAt(address registrant, uint256 index) external returns (address);
function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
function isRegistered(address addr) external returns (bool);
function codeHashOf(address addr) external returns (bytes32);
}
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;
import "./Ownable.sol";
import "./ERC721.sol";
import "./ERC2981PerTokenRoyalties.sol";
import {DefaultOperatorFilterer} from "./DefaultOperatorFilterer.sol";
/// @custom:security-contact contact@verse.works
contract LondonToken is
ERC721,
Ownable,
ERC2981PerTokenRoyalties,
DefaultOperatorFilterer
{
constructor(
string memory uri_,
address minter_,
address gatewayManager_,
string memory contractName_
) ERC721(contractName_, "VERSE", uri_) {
mintingManager = minter_;
gatewayManager = gatewayManager_;
}
uint256 public totalSupply;
/**
* @dev OS Operator filtering
*/
function setApprovalForAll(
address operator,
bool approved
) public override onlyAllowedOperatorApproval(operator) {
super.setApprovalForAll(operator, approved);
}
/**
* @dev OS Operator filtering
*/
function approve(
address operator,
uint256 tokenId
) public override onlyAllowedOperatorApproval(operator) {
super.approve(operator, tokenId);
}
/**
* @dev OS Operator filtering
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public override onlyAllowedOperator(from) {
super.transferFrom(from, to, tokenId);
}
/**
* @dev OS Operator filtering
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public override onlyAllowedOperator(from) {
super.safeTransferFrom(from, to, tokenId);
}
/**
* @dev OS Operator filtering
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory data
) public override onlyAllowedOperator(from) {
super.safeTransferFrom(from, to, tokenId, data);
}
address public mintingManager;
address public gatewayManager;
/**
* @dev Creates a token with `id`, and assigns them to `to`.
* In addition it sets the royalties for `royaltyRecipient` of the value `royaltyValue`.
* Method emits two transfer events.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
*/
function mintWithCreator(
address creator,
address to,
uint256 tokenId,
string memory cid,
address royaltyRecipient,
uint256 royaltyValue
) public onlyMinter {
require(to != address(0), "mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_balances[to] += 1;
totalSupply += 1;
_owners[tokenId] = to;
_cids[tokenId] = cid;
if (royaltyValue > 0) {
_setTokenRoyalty(tokenId, royaltyRecipient, royaltyValue);
}
emit Transfer(address(0), creator, tokenId);
emit Transfer(creator, to, tokenId);
}
/**
* @dev Creates a token with `id`, and assigns them to `to`.
* In addition it sets the royalties for `royaltyRecipient` of the value `royaltyValue`.
* Method emits two transfer events.
*
* Emits a {Transfer} events for intermediate artist.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function batchMintWithCreator(
address[] memory to,
address creator,
uint256[] memory tokenIds,
string[] memory tokenCids,
address royaltyRecipient,
uint256 royaltyValue
) public onlyMinter {
require(
tokenIds.length == to.length && tokenIds.length == tokenCids.length,
"Arrays length mismatch"
);
for (uint256 i = 0; i < tokenIds.length; i++) {
mintWithCreator(
creator,
to[i],
tokenIds[i],
tokenCids[i],
royaltyRecipient,
royaltyValue
);
}
}
modifier onlyMinter() {
require(msg.sender == mintingManager);
_;
}
modifier onlyGatewayManager() {
require(msg.sender == gatewayManager);
_;
}
function tokenURI(
uint256 tokenId
) public view override(ERC721) returns (string memory) {
return super.tokenURI(tokenId);
}
/**
* @dev Checks for supported interface.
*
*/
function supportsInterface(
bytes4 interfaceId
) public view virtual override(ERC721, ERC2981Base) returns (bool) {
return super.supportsInterface(interfaceId);
}
/**
* @dev Sets royalties for `tokenId` and `tokenRecipient` with royalty value `royaltyValue`.
*
*/
function setRoyalties(
uint256 tokenId,
address royaltyRecipient,
uint256 royaltyValue
) public onlyOwner {
_setTokenRoyalty(tokenId, royaltyRecipient, royaltyValue);
}
/**
* @dev Sets new minter for the contract.
*
*/
function setMintingManager(address minter_) public onlyOwner {
mintingManager = minter_;
}
/**
* @dev Sets new gateway manager for the contract.
*
*/
function setGatewayManager(address gatewayManager_) public onlyOwner {
gatewayManager = gatewayManager_;
}
/**
* @dev Sets base URI for metadata.
*
*/
function setURI(string memory newuri) public onlyGatewayManager {
_setURI(newuri);
}
/**
* @dev Sets IPFS cid metadata hash for token id `tokenId`.
*
*/
function setCID(
uint256 tokenId,
string memory cid
) public onlyGatewayManager {
_cids[tokenId] = cid;
}
/**
* @dev Sets IPFS cid metadata hash for token id `tokenId`.
*
*/
function setCIDs(
uint256[] memory tokenIds,
string[] memory cids_
) public onlyGatewayManager {
require(
tokenIds.length == cids_.length,
"ERC1155: Arrays length mismatch"
);
for (uint256 i = 0; i < tokenIds.length; i++) {
_cids[tokenIds[i]] = cids_[i];
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1);
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10**64) {
value /= 10**64;
result += 64;
}
if (value >= 10**32) {
value /= 10**32;
result += 32;
}
if (value >= 10**16) {
value /= 10**16;
result += 16;
}
if (value >= 10**8) {
value /= 10**8;
result += 8;
}
if (value >= 10**4) {
value /= 10**4;
result += 4;
}
if (value >= 10**2) {
value /= 10**2;
result += 2;
}
if (value >= 10**1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
}
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";
/**
* @title OperatorFilterer
* @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
* registrant's entries in the OperatorFilterRegistry.
* @dev This smart contract is meant to be inherited by token contracts so they can use the following:
* - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
* - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
*/
abstract contract OperatorFilterer {
error OperatorNotAllowed(address operator);
IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);
constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
// If an inheriting token contract is deployed to a network without the registry deployed, the modifier
// will not revert, but the contract will need to be registered with the registry once it is deployed in
// order for the modifier to filter addresses.
if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
if (subscribe) {
OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
} else {
if (subscriptionOrRegistrantToCopy != address(0)) {
OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
} else {
OPERATOR_FILTER_REGISTRY.register(address(this));
}
}
}
}
modifier onlyAllowedOperator(address from) virtual {
// Allow spending tokens from addresses with balance
// Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
// from an EOA.
if (from != msg.sender) {
_checkFilterOperator(msg.sender);
}
_;
}
modifier onlyAllowedOperatorApproval(address operator) virtual {
_checkFilterOperator(operator);
_;
}
function _checkFilterOperator(address operator) internal view virtual {
// Check registry code length to facilitate testing in environments without a deployed registry.
if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
revert OperatorNotAllowed(operator);
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "./Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./Math.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @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] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}
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
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_1859": {
"entryPoint": null,
"id": 1859,
"parameterSlots": 4,
"returnSlots": 0
},
"@_3242": {
"entryPoint": null,
"id": 3242,
"parameterSlots": 2,
"returnSlots": 0
},
"@_3325": {
"entryPoint": null,
"id": 3325,
"parameterSlots": 0,
"returnSlots": 0
},
"@_372": {
"entryPoint": null,
"id": 372,
"parameterSlots": 0,
"returnSlots": 0
},
"@_588": {
"entryPoint": null,
"id": 588,
"parameterSlots": 3,
"returnSlots": 0
},
"@_msgSender_341": {
"entryPoint": 887,
"id": 341,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_3413": {
"entryPoint": 895,
"id": 3413,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr_fromMemory": {
"entryPoint": 1556,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address_fromMemory": {
"entryPoint": 1760,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr_fromMemory": {
"entryPoint": 1631,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_addresst_addresst_string_memory_ptr_fromMemory": {
"entryPoint": 1783,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 1959,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 2021,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed": {
"entryPoint": 1976,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1417,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 1269,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1448,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 1714,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1682,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 1502,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 2097,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1363,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 2050,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1316,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 1289,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1294,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 1284,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1279,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 1299,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_address": {
"entryPoint": 1734,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5607:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:18",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:18"
},
"nodeType": "YulFunctionCall",
"src": "67:9:18"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:18"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:18",
"type": ""
}
],
"src": "7:75:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:18"
},
"nodeType": "YulFunctionCall",
"src": "187:12:18"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:18"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:18"
},
"nodeType": "YulFunctionCall",
"src": "310:12:18"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:18"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "423:28:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "433:6:18"
},
"nodeType": "YulFunctionCall",
"src": "433:12:18"
},
"nodeType": "YulExpressionStatement",
"src": "433:12:18"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "334:117:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "546:28:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "563:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "566:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "556:6:18"
},
"nodeType": "YulFunctionCall",
"src": "556:12:18"
},
"nodeType": "YulExpressionStatement",
"src": "556:12:18"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "457:117:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "628:54:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "638:38:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "656:5:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "663:2:18",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "652:3:18"
},
"nodeType": "YulFunctionCall",
"src": "652:14:18"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "672:2:18",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "668:3:18"
},
"nodeType": "YulFunctionCall",
"src": "668:7:18"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "648:3:18"
},
"nodeType": "YulFunctionCall",
"src": "648:28:18"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "638:6:18"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "621:6:18",
"type": ""
}
],
"src": "580:102:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "716:152:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "733:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:77:18",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "726:6:18"
},
"nodeType": "YulFunctionCall",
"src": "726:88:18"
},
"nodeType": "YulExpressionStatement",
"src": "726:88:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "830:1:18",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "833:4:18",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "823:6:18"
},
"nodeType": "YulFunctionCall",
"src": "823:15:18"
},
"nodeType": "YulExpressionStatement",
"src": "823:15:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "854:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:4:18",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "847:6:18"
},
"nodeType": "YulFunctionCall",
"src": "847:15:18"
},
"nodeType": "YulExpressionStatement",
"src": "847:15:18"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "688:180:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "917:238:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "927:58:18",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "949:6:18"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "979:4:18"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "957:21:18"
},
"nodeType": "YulFunctionCall",
"src": "957:27:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "945:3:18"
},
"nodeType": "YulFunctionCall",
"src": "945:40:18"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "931:10:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1096:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1098:16:18"
},
"nodeType": "YulFunctionCall",
"src": "1098:18:18"
},
"nodeType": "YulExpressionStatement",
"src": "1098:18:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1039:10:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1051:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1036:2:18"
},
"nodeType": "YulFunctionCall",
"src": "1036:34:18"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1075:10:18"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1087:6:18"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1072:2:18"
},
"nodeType": "YulFunctionCall",
"src": "1072:22:18"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1033:2:18"
},
"nodeType": "YulFunctionCall",
"src": "1033:62:18"
},
"nodeType": "YulIf",
"src": "1030:88:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1134:2:18",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1138:10:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1127:6:18"
},
"nodeType": "YulFunctionCall",
"src": "1127:22:18"
},
"nodeType": "YulExpressionStatement",
"src": "1127:22:18"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "903:6:18",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "911:4:18",
"type": ""
}
],
"src": "874:281:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1202:88:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1212:30:18",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1222:18:18"
},
"nodeType": "YulFunctionCall",
"src": "1222:20:18"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1212:6:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1271:6:18"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1279:4:18"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1251:19:18"
},
"nodeType": "YulFunctionCall",
"src": "1251:33:18"
},
"nodeType": "YulExpressionStatement",
"src": "1251:33:18"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1186:4:18",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1195:6:18",
"type": ""
}
],
"src": "1161:129:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1363:241:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1468:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1470:16:18"
},
"nodeType": "YulFunctionCall",
"src": "1470:18:18"
},
"nodeType": "YulExpressionStatement",
"src": "1470:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1440:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1448:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1437:2:18"
},
"nodeType": "YulFunctionCall",
"src": "1437:30:18"
},
"nodeType": "YulIf",
"src": "1434:56:18"
},
{
"nodeType": "YulAssignment",
"src": "1500:37:18",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1530:6:18"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1508:21:18"
},
"nodeType": "YulFunctionCall",
"src": "1508:29:18"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1500:4:18"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1574:23:18",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1586:4:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1592:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1582:3:18"
},
"nodeType": "YulFunctionCall",
"src": "1582:15:18"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1574:4:18"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1347:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1358:4:18",
"type": ""
}
],
"src": "1296:308:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1659:258:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1669:10:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1678:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1673:1:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1738:63:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1763:3:18"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1768:1:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1759:3:18"
},
"nodeType": "YulFunctionCall",
"src": "1759:11:18"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1782:3:18"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1787:1:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1778:3:18"
},
"nodeType": "YulFunctionCall",
"src": "1778:11:18"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1772:5:18"
},
"nodeType": "YulFunctionCall",
"src": "1772:18:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1752:6:18"
},
"nodeType": "YulFunctionCall",
"src": "1752:39:18"
},
"nodeType": "YulExpressionStatement",
"src": "1752:39:18"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1699:1:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1702:6:18"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1696:2:18"
},
"nodeType": "YulFunctionCall",
"src": "1696:13:18"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1710:19:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1712:15:18",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1721:1:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1724:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1717:3:18"
},
"nodeType": "YulFunctionCall",
"src": "1717:10:18"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1712:1:18"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1692:3:18",
"statements": []
},
"src": "1688:113:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1835:76:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1885:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1890:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1881:3:18"
},
"nodeType": "YulFunctionCall",
"src": "1881:16:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1899:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1874:6:18"
},
"nodeType": "YulFunctionCall",
"src": "1874:27:18"
},
"nodeType": "YulExpressionStatement",
"src": "1874:27:18"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1816:1:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1819:6:18"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1813:2:18"
},
"nodeType": "YulFunctionCall",
"src": "1813:13:18"
},
"nodeType": "YulIf",
"src": "1810:101:18"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1641:3:18",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1646:3:18",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1651:6:18",
"type": ""
}
],
"src": "1610:307:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2018:326:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2028:75:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2095:6:18"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2053:41:18"
},
"nodeType": "YulFunctionCall",
"src": "2053:49:18"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "2037:15:18"
},
"nodeType": "YulFunctionCall",
"src": "2037:66:18"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2028:5:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2119:5:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2126:6:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2112:6:18"
},
"nodeType": "YulFunctionCall",
"src": "2112:21:18"
},
"nodeType": "YulExpressionStatement",
"src": "2112:21:18"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2142:27:18",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2157:5:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2164:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2153:3:18"
},
"nodeType": "YulFunctionCall",
"src": "2153:16:18"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2146:3:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2207:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "2209:77:18"
},
"nodeType": "YulFunctionCall",
"src": "2209:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "2209:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2188:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2193:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2184:3:18"
},
"nodeType": "YulFunctionCall",
"src": "2184:16:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2202:3:18"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2181:2:18"
},
"nodeType": "YulFunctionCall",
"src": "2181:25:18"
},
"nodeType": "YulIf",
"src": "2178:112:18"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2321:3:18"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2326:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2331:6:18"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2299:21:18"
},
"nodeType": "YulFunctionCall",
"src": "2299:39:18"
},
"nodeType": "YulExpressionStatement",
"src": "2299:39:18"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1991:3:18",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1996:6:18",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2004:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2012:5:18",
"type": ""
}
],
"src": "1923:421:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2437:282:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2486:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2488:77:18"
},
"nodeType": "YulFunctionCall",
"src": "2488:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "2488:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2465:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2473:4:18",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2461:3:18"
},
"nodeType": "YulFunctionCall",
"src": "2461:17:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2480:3:18"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2457:3:18"
},
"nodeType": "YulFunctionCall",
"src": "2457:27:18"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2450:6:18"
},
"nodeType": "YulFunctionCall",
"src": "2450:35:18"
},
"nodeType": "YulIf",
"src": "2447:122:18"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2578:27:18",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2598:6:18"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2592:5:18"
},
"nodeType": "YulFunctionCall",
"src": "2592:13:18"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2582:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2614:99:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2686:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2694:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2682:3:18"
},
"nodeType": "YulFunctionCall",
"src": "2682:17:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2701:6:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2709:3:18"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "2623:58:18"
},
"nodeType": "YulFunctionCall",
"src": "2623:90:18"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2614:5:18"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2415:6:18",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2423:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2431:5:18",
"type": ""
}
],
"src": "2364:355:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2770:81:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2780:65:18",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2795:5:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2802:42:18",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2791:3:18"
},
"nodeType": "YulFunctionCall",
"src": "2791:54:18"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2780:7:18"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2752:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2762:7:18",
"type": ""
}
],
"src": "2725:126:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2902:51:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2912:35:18",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2941:5:18"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "2923:17:18"
},
"nodeType": "YulFunctionCall",
"src": "2923:24:18"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2912:7:18"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2884:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2894:7:18",
"type": ""
}
],
"src": "2857:96:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3002:79:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3059:16:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3068:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3071:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3061:6:18"
},
"nodeType": "YulFunctionCall",
"src": "3061:12:18"
},
"nodeType": "YulExpressionStatement",
"src": "3061:12:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3025:5:18"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3050:5:18"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "3032:17:18"
},
"nodeType": "YulFunctionCall",
"src": "3032:24:18"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3022:2:18"
},
"nodeType": "YulFunctionCall",
"src": "3022:35:18"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3015:6:18"
},
"nodeType": "YulFunctionCall",
"src": "3015:43:18"
},
"nodeType": "YulIf",
"src": "3012:63:18"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2995:5:18",
"type": ""
}
],
"src": "2959:122:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3150:80:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3160:22:18",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3175:6:18"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3169:5:18"
},
"nodeType": "YulFunctionCall",
"src": "3169:13:18"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3160:5:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3218:5:18"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "3191:26:18"
},
"nodeType": "YulFunctionCall",
"src": "3191:33:18"
},
"nodeType": "YulExpressionStatement",
"src": "3191:33:18"
}
]
},
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3128:6:18",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3136:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3144:5:18",
"type": ""
}
],
"src": "3087:143:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3384:1018:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3431:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3433:77:18"
},
"nodeType": "YulFunctionCall",
"src": "3433:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "3433:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3405:7:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3414:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3401:3:18"
},
"nodeType": "YulFunctionCall",
"src": "3401:23:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3426:3:18",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3397:3:18"
},
"nodeType": "YulFunctionCall",
"src": "3397:33:18"
},
"nodeType": "YulIf",
"src": "3394:120:18"
},
{
"nodeType": "YulBlock",
"src": "3524:291:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3539:38:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3563:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3574:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3559:3:18"
},
"nodeType": "YulFunctionCall",
"src": "3559:17:18"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3553:5:18"
},
"nodeType": "YulFunctionCall",
"src": "3553:24:18"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3543:6:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3624:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3626:77:18"
},
"nodeType": "YulFunctionCall",
"src": "3626:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "3626:79:18"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3596:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3604:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3593:2:18"
},
"nodeType": "YulFunctionCall",
"src": "3593:30:18"
},
"nodeType": "YulIf",
"src": "3590:117:18"
},
{
"nodeType": "YulAssignment",
"src": "3721:84:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3777:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3788:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3773:3:18"
},
"nodeType": "YulFunctionCall",
"src": "3773:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3797:7:18"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3731:41:18"
},
"nodeType": "YulFunctionCall",
"src": "3731:74:18"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3721:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3825:129:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3840:16:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3854:2:18",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3844:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3870:74:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3916:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3927:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3912:3:18"
},
"nodeType": "YulFunctionCall",
"src": "3912:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3936:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "3880:31:18"
},
"nodeType": "YulFunctionCall",
"src": "3880:64:18"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3870:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3964:129:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3979:16:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3993:2:18",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3983:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4009:74:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4055:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4066:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4051:3:18"
},
"nodeType": "YulFunctionCall",
"src": "4051:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4075:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "4019:31:18"
},
"nodeType": "YulFunctionCall",
"src": "4019:64:18"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4009:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4103:292:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4118:39:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4142:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4153:2:18",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4138:3:18"
},
"nodeType": "YulFunctionCall",
"src": "4138:18:18"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4132:5:18"
},
"nodeType": "YulFunctionCall",
"src": "4132:25:18"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4122:6:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4204:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "4206:77:18"
},
"nodeType": "YulFunctionCall",
"src": "4206:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "4206:79:18"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4176:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4184:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4173:2:18"
},
"nodeType": "YulFunctionCall",
"src": "4173:30:18"
},
"nodeType": "YulIf",
"src": "4170:117:18"
},
{
"nodeType": "YulAssignment",
"src": "4301:84:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4357:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4368:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4353:3:18"
},
"nodeType": "YulFunctionCall",
"src": "4353:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4377:7:18"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "4311:41:18"
},
"nodeType": "YulFunctionCall",
"src": "4311:74:18"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "4301:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_addresst_addresst_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3330:9:18",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3341:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3353:6:18",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3361:6:18",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3369:6:18",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "3377:6:18",
"type": ""
}
],
"src": "3236:1166:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4473:53:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4490:3:18"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4513:5:18"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "4495:17:18"
},
"nodeType": "YulFunctionCall",
"src": "4495:24:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4483:6:18"
},
"nodeType": "YulFunctionCall",
"src": "4483:37:18"
},
"nodeType": "YulExpressionStatement",
"src": "4483:37:18"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4461:5:18",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4468:3:18",
"type": ""
}
],
"src": "4408:118:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4658:206:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4668:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4680:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4691:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4676:3:18"
},
"nodeType": "YulFunctionCall",
"src": "4676:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4668:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4748:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4761:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4772:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4757:3:18"
},
"nodeType": "YulFunctionCall",
"src": "4757:17:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "4704:43:18"
},
"nodeType": "YulFunctionCall",
"src": "4704:71:18"
},
"nodeType": "YulExpressionStatement",
"src": "4704:71:18"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4829:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4842:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4853:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4838:3:18"
},
"nodeType": "YulFunctionCall",
"src": "4838:18:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "4785:43:18"
},
"nodeType": "YulFunctionCall",
"src": "4785:72:18"
},
"nodeType": "YulExpressionStatement",
"src": "4785:72:18"
}
]
},
"name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4622:9:18",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4634:6:18",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4642:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4653:4:18",
"type": ""
}
],
"src": "4532:332:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4968:124:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4978:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4990:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5001:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4986:3:18"
},
"nodeType": "YulFunctionCall",
"src": "4986:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4978:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5058:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5071:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5082:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5067:3:18"
},
"nodeType": "YulFunctionCall",
"src": "5067:17:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "5014:43:18"
},
"nodeType": "YulFunctionCall",
"src": "5014:71:18"
},
"nodeType": "YulExpressionStatement",
"src": "5014:71:18"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4940:9:18",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4952:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4963:4:18",
"type": ""
}
],
"src": "4870:222:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5126:152:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5143:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5146:77:18",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5136:6:18"
},
"nodeType": "YulFunctionCall",
"src": "5136:88:18"
},
"nodeType": "YulExpressionStatement",
"src": "5136:88:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5240:1:18",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5243:4:18",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5233:6:18"
},
"nodeType": "YulFunctionCall",
"src": "5233:15:18"
},
"nodeType": "YulExpressionStatement",
"src": "5233:15:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5264:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5267:4:18",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5257:6:18"
},
"nodeType": "YulFunctionCall",
"src": "5257:15:18"
},
"nodeType": "YulExpressionStatement",
"src": "5257:15:18"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "5098:180:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5335:269:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5345:22:18",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5359:4:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5365:1:18",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5355:3:18"
},
"nodeType": "YulFunctionCall",
"src": "5355:12:18"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5345:6:18"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5376:38:18",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5406:4:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5412:1:18",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5402:3:18"
},
"nodeType": "YulFunctionCall",
"src": "5402:12:18"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5380:18:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5453:51:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5467:27:18",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5481:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5489:4:18",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5477:3:18"
},
"nodeType": "YulFunctionCall",
"src": "5477:17:18"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5467:6:18"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5433:18:18"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5426:6:18"
},
"nodeType": "YulFunctionCall",
"src": "5426:26:18"
},
"nodeType": "YulIf",
"src": "5423:81:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5556:42:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "5570:16:18"
},
"nodeType": "YulFunctionCall",
"src": "5570:18:18"
},
"nodeType": "YulExpressionStatement",
"src": "5570:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5520:18:18"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5543:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5551:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5540:2:18"
},
"nodeType": "YulFunctionCall",
"src": "5540:14:18"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5517:2:18"
},
"nodeType": "YulFunctionCall",
"src": "5517:38:18"
},
"nodeType": "YulIf",
"src": "5514:84:18"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5319:4:18",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5328:6:18",
"type": ""
}
],
"src": "5284:320:18"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function abi_decode_available_length_t_string_memory_ptr_fromMemory(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_memory_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := mload(offset)\n array := abi_decode_available_length_t_string_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_addresst_addresst_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value3 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\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 }\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 panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n}\n",
"id": 18,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b5060405162004a1238038062004a128339818101604052810190620000379190620006f7565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001826040518060400160405280600581526020017f56455253450000000000000000000000000000000000000000000000000000008152508782600090805190602001906200009e92919062000445565b508160019080519060200190620000b792919062000445565b508060079080519060200190620000d092919062000445565b50505050620000f4620000e86200037760201b60201c565b6200037f60201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002e9578015620001af576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b815260040162000175929190620007b8565b600060405180830381600087803b1580156200019057600080fd5b505af1158015620001a5573d6000803e3d6000fd5b50505050620002e8565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000269576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200022f929190620007b8565b600060405180830381600087803b1580156200024a57600080fd5b505af11580156200025f573d6000803e3d6000fd5b50505050620002e7565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002b29190620007e5565b600060405180830381600087803b158015620002cd57600080fd5b505af1158015620002e2573d6000803e3d6000fd5b505050505b5b5b505082600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000866565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620004539062000831565b90600052602060002090601f016020900481019282620004775760008555620004c3565b82601f106200049257805160ff1916838001178555620004c3565b82800160010185558215620004c3579182015b82811115620004c2578251825591602001919060010190620004a5565b5b509050620004d29190620004d6565b5090565b5b80821115620004f1576000816000905550600101620004d7565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200055e8262000513565b810181811067ffffffffffffffff8211171562000580576200057f62000524565b5b80604052505050565b600062000595620004f5565b9050620005a3828262000553565b919050565b600067ffffffffffffffff821115620005c657620005c562000524565b5b620005d18262000513565b9050602081019050919050565b60005b83811015620005fe578082015181840152602081019050620005e1565b838111156200060e576000848401525b50505050565b60006200062b6200062584620005a8565b62000589565b9050828152602081018484840111156200064a57620006496200050e565b5b62000657848285620005de565b509392505050565b600082601f83011262000677576200067662000509565b5b81516200068984826020860162000614565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006bf8262000692565b9050919050565b620006d181620006b2565b8114620006dd57600080fd5b50565b600081519050620006f181620006c6565b92915050565b60008060008060808587031215620007145762000713620004ff565b5b600085015167ffffffffffffffff81111562000735576200073462000504565b5b62000743878288016200065f565b94505060206200075687828801620006e0565b93505060406200076987828801620006e0565b925050606085015167ffffffffffffffff8111156200078d576200078c62000504565b5b6200079b878288016200065f565b91505092959194509250565b620007b281620006b2565b82525050565b6000604082019050620007cf6000830185620007a7565b620007de6020830184620007a7565b9392505050565b6000602082019050620007fc6000830184620007a7565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200084a57607f821691505b60208210810362000860576200085f62000802565b5b50919050565b61419c80620008766000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806370a082311161011a5780639e426399116100ad578063d0414c9d1161007c578063d0414c9d146105e8578063d28d885214610606578063e2c7f33814610624578063e985e9c514610640578063f2fde38b1461067057610206565b80639e42639914610564578063a22cb46514610580578063b88d4fde1461059c578063c87b56dd146105b857610206565b80638d2bb093116100e95780638d2bb093146104dc5780638da5cb5b146104f857806395d89b4114610516578063992924a61461053457610206565b806370a0823114610456578063715018a6146104865780637d1bbf7b1461049057806382295a2d146104c057610206565b8063337648b21161019d57806342842e0e1161016c57806342842e0e146103a057806358884432146103bc5780636352211e146103da5780636c52c3fb1461040a5780636ebcf6071461042657610206565b8063337648b21461032c5780633a330022146103485780633e63eb2a1461036457806341f434341461038257610206565b8063095ea7b3116101d9578063095ea7b3146102a557806318160ddd146102c157806323b872dd146102df5780632a55205a146102fb57610206565b806301ffc9a71461020b57806302fe53051461023b57806306fdde0314610257578063081812fc14610275575b600080fd5b610225600480360381019061022091906128a9565b61068c565b60405161023291906128f1565b60405180910390f35b61025560048036038101906102509190612a52565b61069e565b005b61025f610704565b60405161026c9190612b23565b60405180910390f35b61028f600480360381019061028a9190612b7b565b610796565b60405161029c9190612be9565b60405180910390f35b6102bf60048036038101906102ba9190612c30565b6107dc565b005b6102c96107f5565b6040516102d69190612c7f565b60405180910390f35b6102f960048036038101906102f49190612c9a565b6107fb565b005b61031560048036038101906103109190612ced565b61084a565b604051610323929190612d2d565b60405180910390f35b61034660048036038101906103419190612eff565b61091b565b005b610362600480360381019061035d9190612f77565b610a39565b005b61036c610a85565b6040516103799190612b23565b60405180910390f35b61038a610b13565b6040516103979190613003565b60405180910390f35b6103ba60048036038101906103b59190612c9a565b610b25565b005b6103c4610b74565b6040516103d19190612be9565b60405180910390f35b6103f460048036038101906103ef9190612b7b565b610b9a565b6040516104019190612be9565b60405180910390f35b610424600480360381019061041f9190612f77565b610c20565b005b610440600480360381019061043b9190612f77565b610c6c565b60405161044d9190612c7f565b60405180910390f35b610470600480360381019061046b9190612f77565b610c84565b60405161047d9190612c7f565b60405180910390f35b61048e610d3b565b005b6104aa60048036038101906104a59190612b7b565b610d4f565b6040516104b79190612b23565b60405180910390f35b6104da60048036038101906104d5919061301e565b610def565b005b6104f660048036038101906104f1919061307a565b610e75565b005b610500611146565b60405161050d9190612be9565b60405180910390f35b61051e611170565b60405161052b9190612b23565b60405180910390f35b61054e60048036038101906105499190612b7b565b611202565b60405161055b9190612be9565b60405180910390f35b61057e600480360381019061057991906131e6565b611235565b005b61059a600480360381019061059591906132f3565b611364565b005b6105b660048036038101906105b191906133d4565b61137d565b005b6105d260048036038101906105cd9190612b7b565b6113ce565b6040516105df9190612b23565b60405180910390f35b6105f06113e0565b6040516105fd9190612be9565b60405180910390f35b61060e611406565b60405161061b9190612b23565b60405180910390f35b61063e60048036038101906106399190613457565b611494565b005b61065a600480360381019061065591906134aa565b6114ac565b60405161066791906128f1565b60405180910390f35b61068a60048036038101906106859190612f77565b611540565b005b6000610697826115c3565b9050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106f857600080fd5b6107018161163d565b50565b60606000805461071390613519565b80601f016020809104026020016040519081016040528092919081815260200182805461073f90613519565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b60006107a182611657565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816107e6816116a2565b6107f0838361179f565b505050565b600a5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461083957610838336116a2565b5b6108448484846118b6565b50505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900462ffffff1662ffffff1662ffffff1681525050905080600001519250612710816020015162ffffff16856109079190613579565b6109119190613602565b9150509250929050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461097557600080fd5b80518251146109b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b09061367f565b60405180910390fd5b60005b8251811015610a34578181815181106109d8576109d761369f565b5b6020026020010151600660008584815181106109f7576109f661369f565b5b602002602001015181526020019081526020016000209080519060200190610a2092919061279a565b508080610a2c906136ce565b9150506109bc565b505050565b610a41611916565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60078054610a9290613519565b80601f0160208091040260200160405190810160405280929190818152602001828054610abe90613519565b8015610b0b5780601f10610ae057610100808354040283529160200191610b0b565b820191906000526020600020905b815481529060010190602001808311610aee57829003601f168201915b505050505081565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b6357610b62336116a2565b5b610b6e848484611994565b50505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610ba6836119b4565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e90613762565b60405180910390fd5b80915050919050565b610c28611916565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60036020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb906137f4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d43611916565b610d4d60006119f1565b565b60066020528060005260406000206000915090508054610d6e90613519565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9a90613519565b8015610de75780601f10610dbc57610100808354040283529160200191610de7565b820191906000526020600020905b815481529060010190602001808311610dca57829003601f168201915b505050505081565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e4957600080fd5b80600660008481526020019081526020016000209080519060200190610e7092919061279a565b505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ecf57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3590613860565b60405180910390fd5b610f4784611ab7565b15610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e906138cc565b60405180910390fd5b6001600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fd791906138ec565b925050819055506001600a6000828254610ff191906138ec565b92505081905550846002600086815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508260066000868152602001908152602001600020908051906020019061107192919061279a565b50600081111561108757611086848383611af8565b5b838673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461117f90613519565b80601f01602080910402602001604051908101604052809291908181526020018280546111ab90613519565b80156111f85780601f106111cd576101008083540402835291602001916111f8565b820191906000526020600020905b8154815290600101906020018083116111db57829003601f168201915b5050505050905090565b60026020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461128f57600080fd5b855184511480156112a1575082518451145b6112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d79061398e565b60405180910390fd5b60005b845181101561135b57611348868883815181106113035761130261369f565b5b602002602001015187848151811061131e5761131d61369f565b5b60200260200101518785815181106113395761133861369f565b5b60200260200101518787610e75565b8080611353906136ce565b9150506112e3565b50505050505050565b8161136e816116a2565b6113788383611bf4565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113bb576113ba336116a2565b5b6113c785858585611c0a565b5050505050565b60606113d982611c6c565b9050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000805461141390613519565b80601f016020809104026020016040519081016040528092919081815260200182805461143f90613519565b801561148c5780601f106114615761010080835404028352916020019161148c565b820191906000526020600020905b81548152906001019060200180831161146f57829003601f168201915b505050505081565b61149c611916565b6114a7838383611af8565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611548611916565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90613a20565b60405180910390fd5b6115c0816119f1565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611636575061163582611d61565b5b9050919050565b806007908051906020019061165392919061279a565b5050565b61166081611ab7565b61169f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169690613762565b60405180910390fd5b50565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561179c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611719929190613a40565b602060405180830381865afa158015611736573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175a9190613a7e565b61179b57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016117929190612be9565b60405180910390fd5b5b50565b60006117aa82610b9a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361181a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181190613b1d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611839611e43565b73ffffffffffffffffffffffffffffffffffffffff161480611868575061186781611862611e43565b6114ac565b5b6118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90613baf565b60405180910390fd5b6118b18383611e4b565b505050565b6118c76118c1611e43565b82611f04565b611906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fd90613c41565b60405180910390fd5b611911838383611f99565b505050565b61191e611e43565b73ffffffffffffffffffffffffffffffffffffffff1661193c611146565b73ffffffffffffffffffffffffffffffffffffffff1614611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990613cad565b60405180910390fd5b565b6119af8383836040518060200160405280600081525061137d565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff16611ad9836119b4565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b612710811115611b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3490613d19565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff1681526020018262ffffff168152506009600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548162ffffff021916908362ffffff160217905550905050505050565b611c06611bff611e43565b8383612292565b5050565b611c1b611c15611e43565b83611f04565b611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190613c41565b60405180910390fd5b611c66848484846123fe565b50505050565b6060611c7782611657565b600060078054611c8690613519565b80601f0160208091040260200160405190810160405280929190818152602001828054611cb290613519565b8015611cff5780601f10611cd457610100808354040283529160200191611cff565b820191906000526020600020905b815481529060010190602001808311611ce257829003601f168201915b505050505090506000815111611d245760405180602001604052806000815250611d59565b8060066000858152602001908152602001600020604051602001611d49929190613e09565b6040516020818303038152906040525b915050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e2c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e3c5750611e3b8261245a565b5b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ebe83610b9a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611f1083610b9a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f525750611f5181856114ac565b5b80611f9057508373ffffffffffffffffffffffffffffffffffffffff16611f7884610796565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fb982610b9a565b73ffffffffffffffffffffffffffffffffffffffff161461200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690613e9f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361207e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207590613f31565b60405180910390fd5b61208b83838360016124c4565b8273ffffffffffffffffffffffffffffffffffffffff166120ab82610b9a565b73ffffffffffffffffffffffffffffffffffffffff1614612101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f890613e9f565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461228d83838360016125ea565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f790613f9d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123f191906128f1565b60405180910390a3505050565b612409848484611f99565b612415848484846125f0565b612454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244b9061402f565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60018111156125e457600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146125585780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612550919061404f565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125e35780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125db91906138ec565b925050819055505b5b50505050565b50505050565b60006126118473ffffffffffffffffffffffffffffffffffffffff16612777565b1561276a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261263a611e43565b8786866040518563ffffffff1660e01b815260040161265c94939291906140d8565b6020604051808303816000875af192505050801561269857506040513d601f19601f820116820180604052508101906126959190614139565b60015b61271a573d80600081146126c8576040519150601f19603f3d011682016040523d82523d6000602084013e6126cd565b606091505b506000815103612712576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127099061402f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061276f565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546127a690613519565b90600052602060002090601f0160209004810192826127c8576000855561280f565b82601f106127e157805160ff191683800117855561280f565b8280016001018555821561280f579182015b8281111561280e5782518255916020019190600101906127f3565b5b50905061281c9190612820565b5090565b5b80821115612839576000816000905550600101612821565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61288681612851565b811461289157600080fd5b50565b6000813590506128a38161287d565b92915050565b6000602082840312156128bf576128be612847565b5b60006128cd84828501612894565b91505092915050565b60008115159050919050565b6128eb816128d6565b82525050565b600060208201905061290660008301846128e2565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61295f82612916565b810181811067ffffffffffffffff8211171561297e5761297d612927565b5b80604052505050565b600061299161283d565b905061299d8282612956565b919050565b600067ffffffffffffffff8211156129bd576129bc612927565b5b6129c682612916565b9050602081019050919050565b82818337600083830152505050565b60006129f56129f0846129a2565b612987565b905082815260208101848484011115612a1157612a10612911565b5b612a1c8482856129d3565b509392505050565b600082601f830112612a3957612a3861290c565b5b8135612a498482602086016129e2565b91505092915050565b600060208284031215612a6857612a67612847565b5b600082013567ffffffffffffffff811115612a8657612a8561284c565b5b612a9284828501612a24565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ad5578082015181840152602081019050612aba565b83811115612ae4576000848401525b50505050565b6000612af582612a9b565b612aff8185612aa6565b9350612b0f818560208601612ab7565b612b1881612916565b840191505092915050565b60006020820190508181036000830152612b3d8184612aea565b905092915050565b6000819050919050565b612b5881612b45565b8114612b6357600080fd5b50565b600081359050612b7581612b4f565b92915050565b600060208284031215612b9157612b90612847565b5b6000612b9f84828501612b66565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bd382612ba8565b9050919050565b612be381612bc8565b82525050565b6000602082019050612bfe6000830184612bda565b92915050565b612c0d81612bc8565b8114612c1857600080fd5b50565b600081359050612c2a81612c04565b92915050565b60008060408385031215612c4757612c46612847565b5b6000612c5585828601612c1b565b9250506020612c6685828601612b66565b9150509250929050565b612c7981612b45565b82525050565b6000602082019050612c946000830184612c70565b92915050565b600080600060608486031215612cb357612cb2612847565b5b6000612cc186828701612c1b565b9350506020612cd286828701612c1b565b9250506040612ce386828701612b66565b9150509250925092565b60008060408385031215612d0457612d03612847565b5b6000612d1285828601612b66565b9250506020612d2385828601612b66565b9150509250929050565b6000604082019050612d426000830185612bda565b612d4f6020830184612c70565b9392505050565b600067ffffffffffffffff821115612d7157612d70612927565b5b602082029050602081019050919050565b600080fd5b6000612d9a612d9584612d56565b612987565b90508083825260208201905060208402830185811115612dbd57612dbc612d82565b5b835b81811015612de65780612dd28882612b66565b845260208401935050602081019050612dbf565b5050509392505050565b600082601f830112612e0557612e0461290c565b5b8135612e15848260208601612d87565b91505092915050565b600067ffffffffffffffff821115612e3957612e38612927565b5b602082029050602081019050919050565b6000612e5d612e5884612e1e565b612987565b90508083825260208201905060208402830185811115612e8057612e7f612d82565b5b835b81811015612ec757803567ffffffffffffffff811115612ea557612ea461290c565b5b808601612eb28982612a24565b85526020850194505050602081019050612e82565b5050509392505050565b600082601f830112612ee657612ee561290c565b5b8135612ef6848260208601612e4a565b91505092915050565b60008060408385031215612f1657612f15612847565b5b600083013567ffffffffffffffff811115612f3457612f3361284c565b5b612f4085828601612df0565b925050602083013567ffffffffffffffff811115612f6157612f6061284c565b5b612f6d85828601612ed1565b9150509250929050565b600060208284031215612f8d57612f8c612847565b5b6000612f9b84828501612c1b565b91505092915050565b6000819050919050565b6000612fc9612fc4612fbf84612ba8565b612fa4565b612ba8565b9050919050565b6000612fdb82612fae565b9050919050565b6000612fed82612fd0565b9050919050565b612ffd81612fe2565b82525050565b60006020820190506130186000830184612ff4565b92915050565b6000806040838503121561303557613034612847565b5b600061304385828601612b66565b925050602083013567ffffffffffffffff8111156130645761306361284c565b5b61307085828601612a24565b9150509250929050565b60008060008060008060c0878903121561309757613096612847565b5b60006130a589828a01612c1b565b96505060206130b689828a01612c1b565b95505060406130c789828a01612b66565b945050606087013567ffffffffffffffff8111156130e8576130e761284c565b5b6130f489828a01612a24565b935050608061310589828a01612c1b565b92505060a061311689828a01612b66565b9150509295509295509295565b600067ffffffffffffffff82111561313e5761313d612927565b5b602082029050602081019050919050565b600061316261315d84613123565b612987565b9050808382526020820190506020840283018581111561318557613184612d82565b5b835b818110156131ae578061319a8882612c1b565b845260208401935050602081019050613187565b5050509392505050565b600082601f8301126131cd576131cc61290c565b5b81356131dd84826020860161314f565b91505092915050565b60008060008060008060c0878903121561320357613202612847565b5b600087013567ffffffffffffffff8111156132215761322061284c565b5b61322d89828a016131b8565b965050602061323e89828a01612c1b565b955050604087013567ffffffffffffffff81111561325f5761325e61284c565b5b61326b89828a01612df0565b945050606087013567ffffffffffffffff81111561328c5761328b61284c565b5b61329889828a01612ed1565b93505060806132a989828a01612c1b565b92505060a06132ba89828a01612b66565b9150509295509295509295565b6132d0816128d6565b81146132db57600080fd5b50565b6000813590506132ed816132c7565b92915050565b6000806040838503121561330a57613309612847565b5b600061331885828601612c1b565b9250506020613329858286016132de565b9150509250929050565b600067ffffffffffffffff82111561334e5761334d612927565b5b61335782612916565b9050602081019050919050565b600061337761337284613333565b612987565b90508281526020810184848401111561339357613392612911565b5b61339e8482856129d3565b509392505050565b600082601f8301126133bb576133ba61290c565b5b81356133cb848260208601613364565b91505092915050565b600080600080608085870312156133ee576133ed612847565b5b60006133fc87828801612c1b565b945050602061340d87828801612c1b565b935050604061341e87828801612b66565b925050606085013567ffffffffffffffff81111561343f5761343e61284c565b5b61344b878288016133a6565b91505092959194509250565b6000806000606084860312156134705761346f612847565b5b600061347e86828701612b66565b935050602061348f86828701612c1b565b92505060406134a086828701612b66565b9150509250925092565b600080604083850312156134c1576134c0612847565b5b60006134cf85828601612c1b565b92505060206134e085828601612c1b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061353157607f821691505b602082108103613544576135436134ea565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061358482612b45565b915061358f83612b45565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135c8576135c761354a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061360d82612b45565b915061361883612b45565b925082613628576136276135d3565b5b828204905092915050565b7f455243313135353a20417272617973206c656e677468206d69736d6174636800600082015250565b6000613669601f83612aa6565b915061367482613633565b602082019050919050565b600060208201905081810360008301526136988161365c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006136d982612b45565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361370b5761370a61354a565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061374c601883612aa6565b915061375782613716565b602082019050919050565b6000602082019050818103600083015261377b8161373f565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006137de602983612aa6565b91506137e982613782565b604082019050919050565b6000602082019050818103600083015261380d816137d1565b9050919050565b7f6d696e7420746f20746865207a65726f20616464726573730000000000000000600082015250565b600061384a601883612aa6565b915061385582613814565b602082019050919050565b600060208201905081810360008301526138798161383d565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006138b6601c83612aa6565b91506138c182613880565b602082019050919050565b600060208201905081810360008301526138e5816138a9565b9050919050565b60006138f782612b45565b915061390283612b45565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139375761393661354a565b5b828201905092915050565b7f417272617973206c656e677468206d69736d6174636800000000000000000000600082015250565b6000613978601683612aa6565b915061398382613942565b602082019050919050565b600060208201905081810360008301526139a78161396b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a0a602683612aa6565b9150613a15826139ae565b604082019050919050565b60006020820190508181036000830152613a39816139fd565b9050919050565b6000604082019050613a556000830185612bda565b613a626020830184612bda565b9392505050565b600081519050613a78816132c7565b92915050565b600060208284031215613a9457613a93612847565b5b6000613aa284828501613a69565b91505092915050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b07602183612aa6565b9150613b1282613aab565b604082019050919050565b60006020820190508181036000830152613b3681613afa565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613b99603d83612aa6565b9150613ba482613b3d565b604082019050919050565b60006020820190508181036000830152613bc881613b8c565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613c2b602d83612aa6565b9150613c3682613bcf565b604082019050919050565b60006020820190508181036000830152613c5a81613c1e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c97602083612aa6565b9150613ca282613c61565b602082019050919050565b60006020820190508181036000830152613cc681613c8a565b9050919050565b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b6000613d03601a83612aa6565b9150613d0e82613ccd565b602082019050919050565b60006020820190508181036000830152613d3281613cf6565b9050919050565b600081905092915050565b6000613d4f82612a9b565b613d598185613d39565b9350613d69818560208601612ab7565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613d9781613519565b613da18186613d39565b94506001821660008114613dbc5760018114613dcd57613e00565b60ff19831686528186019350613e00565b613dd685613d75565b60005b83811015613df857815481890152600182019150602081019050613dd9565b838801955050505b50505092915050565b6000613e158285613d44565b9150613e218284613d8a565b91508190509392505050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613e89602583612aa6565b9150613e9482613e2d565b604082019050919050565b60006020820190508181036000830152613eb881613e7c565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613f1b602483612aa6565b9150613f2682613ebf565b604082019050919050565b60006020820190508181036000830152613f4a81613f0e565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613f87601983612aa6565b9150613f9282613f51565b602082019050919050565b60006020820190508181036000830152613fb681613f7a565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614019603283612aa6565b915061402482613fbd565b604082019050919050565b600060208201905081810360008301526140488161400c565b9050919050565b600061405a82612b45565b915061406583612b45565b9250828210156140785761407761354a565b5b828203905092915050565b600081519050919050565b600082825260208201905092915050565b60006140aa82614083565b6140b4818561408e565b93506140c4818560208601612ab7565b6140cd81612916565b840191505092915050565b60006080820190506140ed6000830187612bda565b6140fa6020830186612bda565b6141076040830185612c70565b8181036060830152614119818461409f565b905095945050505050565b6000815190506141338161287d565b92915050565b60006020828403121561414f5761414e612847565b5b600061415d84828501614124565b9150509291505056fea264697066735822122052fe8f8632f5004eb02668b9088b8eeac85db5edab62dbd21428317e07142b9764736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x4A12 CODESIZE SUB DUP1 PUSH3 0x4A12 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x6F7 JUMP JUMPDEST PUSH20 0x3CC6CDDA760B79BAFA08DF41ECFA224F810DCEB6 PUSH1 0x1 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5645525345000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP8 DUP3 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x9E SWAP3 SWAP2 SWAP1 PUSH3 0x445 JUMP JUMPDEST POP DUP2 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xB7 SWAP3 SWAP2 SWAP1 PUSH3 0x445 JUMP JUMPDEST POP DUP1 PUSH1 0x7 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xD0 SWAP3 SWAP2 SWAP1 PUSH3 0x445 JUMP JUMPDEST POP POP POP POP PUSH3 0xF4 PUSH3 0xE8 PUSH3 0x377 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x37F PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x0 PUSH14 0xAAEB6D7670E522A718067333CD4E PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT ISZERO PUSH3 0x2E9 JUMPI DUP1 ISZERO PUSH3 0x1AF JUMPI PUSH14 0xAAEB6D7670E522A718067333CD4E PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x7D3E3DBE ADDRESS DUP5 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x175 SWAP3 SWAP2 SWAP1 PUSH3 0x7B8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH3 0x190 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH3 0x1A5 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH3 0x2E8 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH3 0x269 JUMPI PUSH14 0xAAEB6D7670E522A718067333CD4E PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA0AF2903 ADDRESS DUP5 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x22F SWAP3 SWAP2 SWAP1 PUSH3 0x7B8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH3 0x24A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH3 0x25F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH3 0x2E7 JUMP JUMPDEST PUSH14 0xAAEB6D7670E522A718067333CD4E PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x4420E486 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x2B2 SWAP2 SWAP1 PUSH3 0x7E5 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH3 0x2CD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH3 0x2E2 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP JUMPDEST JUMPDEST JUMPDEST POP POP DUP3 PUSH1 0xB PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH1 0xC 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 POP POP PUSH3 0x866 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x8 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x453 SWAP1 PUSH3 0x831 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x477 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x4C3 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x492 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x4C3 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x4C3 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x4C2 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x4A5 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x4D2 SWAP2 SWAP1 PUSH3 0x4D6 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x4F1 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x4D7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH3 0x55E DUP3 PUSH3 0x513 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x580 JUMPI PUSH3 0x57F PUSH3 0x524 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x595 PUSH3 0x4F5 JUMP JUMPDEST SWAP1 POP PUSH3 0x5A3 DUP3 DUP3 PUSH3 0x553 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x5C6 JUMPI PUSH3 0x5C5 PUSH3 0x524 JUMP JUMPDEST JUMPDEST PUSH3 0x5D1 DUP3 PUSH3 0x513 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x5FE JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x5E1 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x60E JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x62B PUSH3 0x625 DUP5 PUSH3 0x5A8 JUMP JUMPDEST PUSH3 0x589 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x64A JUMPI PUSH3 0x649 PUSH3 0x50E JUMP JUMPDEST JUMPDEST PUSH3 0x657 DUP5 DUP3 DUP6 PUSH3 0x5DE JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x677 JUMPI PUSH3 0x676 PUSH3 0x509 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x689 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x614 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x6BF DUP3 PUSH3 0x692 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x6D1 DUP2 PUSH3 0x6B2 JUMP JUMPDEST DUP2 EQ PUSH3 0x6DD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x6F1 DUP2 PUSH3 0x6C6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH3 0x714 JUMPI PUSH3 0x713 PUSH3 0x4FF JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP6 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x735 JUMPI PUSH3 0x734 PUSH3 0x504 JUMP JUMPDEST JUMPDEST PUSH3 0x743 DUP8 DUP3 DUP9 ADD PUSH3 0x65F JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH3 0x756 DUP8 DUP3 DUP9 ADD PUSH3 0x6E0 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH3 0x769 DUP8 DUP3 DUP9 ADD PUSH3 0x6E0 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x78D JUMPI PUSH3 0x78C PUSH3 0x504 JUMP JUMPDEST JUMPDEST PUSH3 0x79B DUP8 DUP3 DUP9 ADD PUSH3 0x65F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH3 0x7B2 DUP2 PUSH3 0x6B2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH3 0x7CF PUSH1 0x0 DUP4 ADD DUP6 PUSH3 0x7A7 JUMP JUMPDEST PUSH3 0x7DE PUSH1 0x20 DUP4 ADD DUP5 PUSH3 0x7A7 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x7FC PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x7A7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x84A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x860 JUMPI PUSH3 0x85F PUSH3 0x802 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x419C DUP1 PUSH3 0x876 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 0x206 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x11A JUMPI DUP1 PUSH4 0x9E426399 GT PUSH2 0xAD JUMPI DUP1 PUSH4 0xD0414C9D GT PUSH2 0x7C JUMPI DUP1 PUSH4 0xD0414C9D EQ PUSH2 0x5E8 JUMPI DUP1 PUSH4 0xD28D8852 EQ PUSH2 0x606 JUMPI DUP1 PUSH4 0xE2C7F338 EQ PUSH2 0x624 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x640 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x670 JUMPI PUSH2 0x206 JUMP JUMPDEST DUP1 PUSH4 0x9E426399 EQ PUSH2 0x564 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x580 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x59C JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x5B8 JUMPI PUSH2 0x206 JUMP JUMPDEST DUP1 PUSH4 0x8D2BB093 GT PUSH2 0xE9 JUMPI DUP1 PUSH4 0x8D2BB093 EQ PUSH2 0x4DC JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x4F8 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x516 JUMPI DUP1 PUSH4 0x992924A6 EQ PUSH2 0x534 JUMPI PUSH2 0x206 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x456 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x486 JUMPI DUP1 PUSH4 0x7D1BBF7B EQ PUSH2 0x490 JUMPI DUP1 PUSH4 0x82295A2D EQ PUSH2 0x4C0 JUMPI PUSH2 0x206 JUMP JUMPDEST DUP1 PUSH4 0x337648B2 GT PUSH2 0x19D JUMPI DUP1 PUSH4 0x42842E0E GT PUSH2 0x16C JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x3A0 JUMPI DUP1 PUSH4 0x58884432 EQ PUSH2 0x3BC JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x3DA JUMPI DUP1 PUSH4 0x6C52C3FB EQ PUSH2 0x40A JUMPI DUP1 PUSH4 0x6EBCF607 EQ PUSH2 0x426 JUMPI PUSH2 0x206 JUMP JUMPDEST DUP1 PUSH4 0x337648B2 EQ PUSH2 0x32C JUMPI DUP1 PUSH4 0x3A330022 EQ PUSH2 0x348 JUMPI DUP1 PUSH4 0x3E63EB2A EQ PUSH2 0x364 JUMPI DUP1 PUSH4 0x41F43434 EQ PUSH2 0x382 JUMPI PUSH2 0x206 JUMP JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x1D9 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x2A5 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x2C1 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x2DF JUMPI DUP1 PUSH4 0x2A55205A EQ PUSH2 0x2FB JUMPI PUSH2 0x206 JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x20B JUMPI DUP1 PUSH4 0x2FE5305 EQ PUSH2 0x23B JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x257 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x275 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x225 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x220 SWAP2 SWAP1 PUSH2 0x28A9 JUMP JUMPDEST PUSH2 0x68C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x232 SWAP2 SWAP1 PUSH2 0x28F1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x255 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x250 SWAP2 SWAP1 PUSH2 0x2A52 JUMP JUMPDEST PUSH2 0x69E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x25F PUSH2 0x704 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26C SWAP2 SWAP1 PUSH2 0x2B23 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x28F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28A SWAP2 SWAP1 PUSH2 0x2B7B JUMP JUMPDEST PUSH2 0x796 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x29C SWAP2 SWAP1 PUSH2 0x2BE9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2BF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2BA SWAP2 SWAP1 PUSH2 0x2C30 JUMP JUMPDEST PUSH2 0x7DC JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2C9 PUSH2 0x7F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D6 SWAP2 SWAP1 PUSH2 0x2C7F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2F9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2F4 SWAP2 SWAP1 PUSH2 0x2C9A JUMP JUMPDEST PUSH2 0x7FB JUMP JUMPDEST STOP JUMPDEST PUSH2 0x315 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x310 SWAP2 SWAP1 PUSH2 0x2CED JUMP JUMPDEST PUSH2 0x84A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x323 SWAP3 SWAP2 SWAP1 PUSH2 0x2D2D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x346 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x341 SWAP2 SWAP1 PUSH2 0x2EFF JUMP JUMPDEST PUSH2 0x91B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x362 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x35D SWAP2 SWAP1 PUSH2 0x2F77 JUMP JUMPDEST PUSH2 0xA39 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x36C PUSH2 0xA85 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x379 SWAP2 SWAP1 PUSH2 0x2B23 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x38A PUSH2 0xB13 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x397 SWAP2 SWAP1 PUSH2 0x3003 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3BA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3B5 SWAP2 SWAP1 PUSH2 0x2C9A JUMP JUMPDEST PUSH2 0xB25 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3C4 PUSH2 0xB74 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3D1 SWAP2 SWAP1 PUSH2 0x2BE9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3F4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3EF SWAP2 SWAP1 PUSH2 0x2B7B JUMP JUMPDEST PUSH2 0xB9A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x401 SWAP2 SWAP1 PUSH2 0x2BE9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x424 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x41F SWAP2 SWAP1 PUSH2 0x2F77 JUMP JUMPDEST PUSH2 0xC20 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x440 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x43B SWAP2 SWAP1 PUSH2 0x2F77 JUMP JUMPDEST PUSH2 0xC6C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x44D SWAP2 SWAP1 PUSH2 0x2C7F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x470 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x46B SWAP2 SWAP1 PUSH2 0x2F77 JUMP JUMPDEST PUSH2 0xC84 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x47D SWAP2 SWAP1 PUSH2 0x2C7F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x48E PUSH2 0xD3B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x4AA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4A5 SWAP2 SWAP1 PUSH2 0x2B7B JUMP JUMPDEST PUSH2 0xD4F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4B7 SWAP2 SWAP1 PUSH2 0x2B23 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4DA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4D5 SWAP2 SWAP1 PUSH2 0x301E JUMP JUMPDEST PUSH2 0xDEF JUMP JUMPDEST STOP JUMPDEST PUSH2 0x4F6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4F1 SWAP2 SWAP1 PUSH2 0x307A JUMP JUMPDEST PUSH2 0xE75 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x500 PUSH2 0x1146 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50D SWAP2 SWAP1 PUSH2 0x2BE9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x51E PUSH2 0x1170 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x52B SWAP2 SWAP1 PUSH2 0x2B23 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x54E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x549 SWAP2 SWAP1 PUSH2 0x2B7B JUMP JUMPDEST PUSH2 0x1202 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x55B SWAP2 SWAP1 PUSH2 0x2BE9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x57E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x579 SWAP2 SWAP1 PUSH2 0x31E6 JUMP JUMPDEST PUSH2 0x1235 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x59A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x595 SWAP2 SWAP1 PUSH2 0x32F3 JUMP JUMPDEST PUSH2 0x1364 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x5B6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B1 SWAP2 SWAP1 PUSH2 0x33D4 JUMP JUMPDEST PUSH2 0x137D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x5D2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5CD SWAP2 SWAP1 PUSH2 0x2B7B JUMP JUMPDEST PUSH2 0x13CE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5DF SWAP2 SWAP1 PUSH2 0x2B23 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x5F0 PUSH2 0x13E0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5FD SWAP2 SWAP1 PUSH2 0x2BE9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x60E PUSH2 0x1406 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x61B SWAP2 SWAP1 PUSH2 0x2B23 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x63E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x639 SWAP2 SWAP1 PUSH2 0x3457 JUMP JUMPDEST PUSH2 0x1494 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x65A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x655 SWAP2 SWAP1 PUSH2 0x34AA JUMP JUMPDEST PUSH2 0x14AC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x667 SWAP2 SWAP1 PUSH2 0x28F1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x68A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x685 SWAP2 SWAP1 PUSH2 0x2F77 JUMP JUMPDEST PUSH2 0x1540 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH2 0x697 DUP3 PUSH2 0x15C3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x6F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x701 DUP2 PUSH2 0x163D JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x713 SWAP1 PUSH2 0x3519 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 0x73F SWAP1 PUSH2 0x3519 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x78C JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x761 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x78C 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 0x76F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7A1 DUP3 PUSH2 0x1657 JUMP 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 DUP2 PUSH2 0x7E6 DUP2 PUSH2 0x16A2 JUMP JUMPDEST PUSH2 0x7F0 DUP4 DUP4 PUSH2 0x179F JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0xA SLOAD DUP2 JUMP JUMPDEST DUP3 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x839 JUMPI PUSH2 0x838 CALLER PUSH2 0x16A2 JUMP JUMPDEST JUMPDEST PUSH2 0x844 DUP5 DUP5 DUP5 PUSH2 0x18B6 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x9 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF AND DUP2 MSTORE POP POP SWAP1 POP DUP1 PUSH1 0x0 ADD MLOAD SWAP3 POP PUSH2 0x2710 DUP2 PUSH1 0x20 ADD MLOAD PUSH3 0xFFFFFF AND DUP6 PUSH2 0x907 SWAP2 SWAP1 PUSH2 0x3579 JUMP JUMPDEST PUSH2 0x911 SWAP2 SWAP1 PUSH2 0x3602 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0xC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x975 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD DUP3 MLOAD EQ PUSH2 0x9B9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9B0 SWAP1 PUSH2 0x367F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0xA34 JUMPI DUP2 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x9D8 JUMPI PUSH2 0x9D7 PUSH2 0x369F JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x6 PUSH1 0x0 DUP6 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x9F7 JUMPI PUSH2 0x9F6 PUSH2 0x369F JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0xA20 SWAP3 SWAP2 SWAP1 PUSH2 0x279A JUMP JUMPDEST POP DUP1 DUP1 PUSH2 0xA2C SWAP1 PUSH2 0x36CE JUMP JUMPDEST SWAP2 POP POP PUSH2 0x9BC JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xA41 PUSH2 0x1916 JUMP JUMPDEST DUP1 PUSH1 0xC PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x7 DUP1 SLOAD PUSH2 0xA92 SWAP1 PUSH2 0x3519 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 0xABE SWAP1 PUSH2 0x3519 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xB0B JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xAE0 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xB0B 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 0xAEE JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH14 0xAAEB6D7670E522A718067333CD4E DUP2 JUMP JUMPDEST DUP3 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xB63 JUMPI PUSH2 0xB62 CALLER PUSH2 0x16A2 JUMP JUMPDEST JUMPDEST PUSH2 0xB6E DUP5 DUP5 DUP5 PUSH2 0x1994 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xBA6 DUP4 PUSH2 0x19B4 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xC17 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC0E SWAP1 PUSH2 0x3762 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC28 PUSH2 0x1916 JUMP JUMPDEST DUP1 PUSH1 0xB PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x3 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 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xCF4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCEB SWAP1 PUSH2 0x37F4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xD43 PUSH2 0x1916 JUMP JUMPDEST PUSH2 0xD4D PUSH1 0x0 PUSH2 0x19F1 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x6 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 SLOAD PUSH2 0xD6E SWAP1 PUSH2 0x3519 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 0xD9A SWAP1 PUSH2 0x3519 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xDE7 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xDBC JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xDE7 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 0xDCA JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0xC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xE49 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH1 0x6 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0xE70 SWAP3 SWAP2 SWAP1 PUSH2 0x279A JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xECF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xF3E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF35 SWAP1 PUSH2 0x3860 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xF47 DUP5 PUSH2 0x1AB7 JUMP JUMPDEST ISZERO PUSH2 0xF87 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF7E SWAP1 PUSH2 0x38CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x3 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 DUP3 DUP3 SLOAD PUSH2 0xFD7 SWAP2 SWAP1 PUSH2 0x38EC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0xA PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xFF1 SWAP2 SWAP1 PUSH2 0x38EC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP5 PUSH1 0x2 PUSH1 0x0 DUP7 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 DUP3 PUSH1 0x6 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1071 SWAP3 SWAP2 SWAP1 PUSH2 0x279A JUMP JUMPDEST POP PUSH1 0x0 DUP2 GT ISZERO PUSH2 0x1087 JUMPI PUSH2 0x1086 DUP5 DUP4 DUP4 PUSH2 0x1AF8 JUMP JUMPDEST JUMPDEST DUP4 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 DUP4 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x117F SWAP1 PUSH2 0x3519 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 0x11AB SWAP1 PUSH2 0x3519 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x11F8 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x11CD JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x11F8 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 0x11DB JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x128F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 MLOAD DUP5 MLOAD EQ DUP1 ISZERO PUSH2 0x12A1 JUMPI POP DUP3 MLOAD DUP5 MLOAD EQ JUMPDEST PUSH2 0x12E0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12D7 SWAP1 PUSH2 0x398E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x135B JUMPI PUSH2 0x1348 DUP7 DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1303 JUMPI PUSH2 0x1302 PUSH2 0x369F JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP8 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x131E JUMPI PUSH2 0x131D PUSH2 0x369F JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP8 DUP6 DUP2 MLOAD DUP2 LT PUSH2 0x1339 JUMPI PUSH2 0x1338 PUSH2 0x369F JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP8 DUP8 PUSH2 0xE75 JUMP JUMPDEST DUP1 DUP1 PUSH2 0x1353 SWAP1 PUSH2 0x36CE JUMP JUMPDEST SWAP2 POP POP PUSH2 0x12E3 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH2 0x136E DUP2 PUSH2 0x16A2 JUMP JUMPDEST PUSH2 0x1378 DUP4 DUP4 PUSH2 0x1BF4 JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP4 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x13BB JUMPI PUSH2 0x13BA CALLER PUSH2 0x16A2 JUMP JUMPDEST JUMPDEST PUSH2 0x13C7 DUP6 DUP6 DUP6 DUP6 PUSH2 0x1C0A JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x13D9 DUP3 PUSH2 0x1C6C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH2 0x1413 SWAP1 PUSH2 0x3519 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 0x143F SWAP1 PUSH2 0x3519 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x148C JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1461 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x148C 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 0x146F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH2 0x149C PUSH2 0x1916 JUMP JUMPDEST PUSH2 0x14A7 DUP4 DUP4 DUP4 PUSH2 0x1AF8 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 PUSH2 0x1548 PUSH2 0x1916 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x15B7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15AE SWAP1 PUSH2 0x3A20 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x15C0 DUP2 PUSH2 0x19F1 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x2A55205A00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x1636 JUMPI POP PUSH2 0x1635 DUP3 PUSH2 0x1D61 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 PUSH1 0x7 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1653 SWAP3 SWAP2 SWAP1 PUSH2 0x279A JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x1660 DUP2 PUSH2 0x1AB7 JUMP JUMPDEST PUSH2 0x169F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1696 SWAP1 PUSH2 0x3762 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH14 0xAAEB6D7670E522A718067333CD4E PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT ISZERO PUSH2 0x179C JUMPI PUSH14 0xAAEB6D7670E522A718067333CD4E PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xC6171134 ADDRESS DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1719 SWAP3 SWAP2 SWAP1 PUSH2 0x3A40 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1736 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 0x175A SWAP2 SWAP1 PUSH2 0x3A7E JUMP JUMPDEST PUSH2 0x179B JUMPI DUP1 PUSH1 0x40 MLOAD PUSH32 0xEDE71DCC00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1792 SWAP2 SWAP1 PUSH2 0x2BE9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17AA DUP3 PUSH2 0xB9A JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x181A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1811 SWAP1 PUSH2 0x3B1D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1839 PUSH2 0x1E43 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x1868 JUMPI POP PUSH2 0x1867 DUP2 PUSH2 0x1862 PUSH2 0x1E43 JUMP JUMPDEST PUSH2 0x14AC JUMP JUMPDEST JUMPDEST PUSH2 0x18A7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x189E SWAP1 PUSH2 0x3BAF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x18B1 DUP4 DUP4 PUSH2 0x1E4B JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x18C7 PUSH2 0x18C1 PUSH2 0x1E43 JUMP JUMPDEST DUP3 PUSH2 0x1F04 JUMP JUMPDEST PUSH2 0x1906 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18FD SWAP1 PUSH2 0x3C41 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1911 DUP4 DUP4 DUP4 PUSH2 0x1F99 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x191E PUSH2 0x1E43 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x193C PUSH2 0x1146 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1992 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1989 SWAP1 PUSH2 0x3CAD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x19AF DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x137D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 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 PUSH1 0x8 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x8 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1AD9 DUP4 PUSH2 0x19B4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2710 DUP2 GT ISZERO PUSH2 0x1B3D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B34 SWAP1 PUSH2 0x3D19 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP3 PUSH3 0xFFFFFF AND DUP2 MSTORE POP PUSH1 0x9 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH3 0xFFFFFF MUL NOT AND SWAP1 DUP4 PUSH3 0xFFFFFF AND MUL OR SWAP1 SSTORE POP SWAP1 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1C06 PUSH2 0x1BFF PUSH2 0x1E43 JUMP JUMPDEST DUP4 DUP4 PUSH2 0x2292 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x1C1B PUSH2 0x1C15 PUSH2 0x1E43 JUMP JUMPDEST DUP4 PUSH2 0x1F04 JUMP JUMPDEST PUSH2 0x1C5A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C51 SWAP1 PUSH2 0x3C41 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1C66 DUP5 DUP5 DUP5 DUP5 PUSH2 0x23FE JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1C77 DUP3 PUSH2 0x1657 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x7 DUP1 SLOAD PUSH2 0x1C86 SWAP1 PUSH2 0x3519 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 0x1CB2 SWAP1 PUSH2 0x3519 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1CFF JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1CD4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1CFF 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 0x1CE2 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x1D24 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1D59 JUMP JUMPDEST DUP1 PUSH1 0x6 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1D49 SWAP3 SWAP2 SWAP1 PUSH2 0x3E09 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 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x1E2C JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x1E3C JUMPI POP PUSH2 0x1E3B DUP3 PUSH2 0x245A JUMP JUMPDEST JUMPDEST 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 0x1EBE DUP4 PUSH2 0xB9A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x1F10 DUP4 PUSH2 0xB9A JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x1F52 JUMPI POP PUSH2 0x1F51 DUP2 DUP6 PUSH2 0x14AC JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0x1F90 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1F78 DUP5 PUSH2 0x796 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1FB9 DUP3 PUSH2 0xB9A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x200F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2006 SWAP1 PUSH2 0x3E9F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x207E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2075 SWAP1 PUSH2 0x3F31 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x208B DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x24C4 JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x20AB DUP3 PUSH2 0xB9A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2101 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20F8 SWAP1 PUSH2 0x3E9F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP3 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 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 SUB 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 ADD 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 PUSH2 0x228D DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x25EA JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x2300 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x22F7 SWAP1 PUSH2 0x3F9D 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 0x23F1 SWAP2 SWAP1 PUSH2 0x28F1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x2409 DUP5 DUP5 DUP5 PUSH2 0x1F99 JUMP JUMPDEST PUSH2 0x2415 DUP5 DUP5 DUP5 DUP5 PUSH2 0x25F0 JUMP JUMPDEST PUSH2 0x2454 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x244B SWAP1 PUSH2 0x402F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x25E4 JUMPI PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2558 JUMPI DUP1 PUSH1 0x3 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 DUP3 DUP3 SLOAD PUSH2 0x2550 SWAP2 SWAP1 PUSH2 0x404F JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x25E3 JUMPI DUP1 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 0x25DB SWAP2 SWAP1 PUSH2 0x38EC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2611 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2777 JUMP JUMPDEST ISZERO PUSH2 0x276A JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x263A PUSH2 0x1E43 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x265C SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x40D8 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2698 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 0x2695 SWAP2 SWAP1 PUSH2 0x4139 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x271A JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x26C8 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 0x26CD JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD SUB PUSH2 0x2712 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2709 SWAP1 PUSH2 0x402F 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 0x276F JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x27A6 SWAP1 PUSH2 0x3519 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x27C8 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x280F JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x27E1 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x280F JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x280F JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x280E JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x27F3 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x281C SWAP2 SWAP1 PUSH2 0x2820 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x2839 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x2821 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2886 DUP2 PUSH2 0x2851 JUMP JUMPDEST DUP2 EQ PUSH2 0x2891 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x28A3 DUP2 PUSH2 0x287D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x28BF JUMPI PUSH2 0x28BE PUSH2 0x2847 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x28CD DUP5 DUP3 DUP6 ADD PUSH2 0x2894 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x28EB DUP2 PUSH2 0x28D6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2906 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x28E2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x295F DUP3 PUSH2 0x2916 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x297E JUMPI PUSH2 0x297D PUSH2 0x2927 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2991 PUSH2 0x283D JUMP JUMPDEST SWAP1 POP PUSH2 0x299D DUP3 DUP3 PUSH2 0x2956 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x29BD JUMPI PUSH2 0x29BC PUSH2 0x2927 JUMP JUMPDEST JUMPDEST PUSH2 0x29C6 DUP3 PUSH2 0x2916 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x29F5 PUSH2 0x29F0 DUP5 PUSH2 0x29A2 JUMP JUMPDEST PUSH2 0x2987 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x2A11 JUMPI PUSH2 0x2A10 PUSH2 0x2911 JUMP JUMPDEST JUMPDEST PUSH2 0x2A1C DUP5 DUP3 DUP6 PUSH2 0x29D3 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2A39 JUMPI PUSH2 0x2A38 PUSH2 0x290C JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2A49 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x29E2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2A68 JUMPI PUSH2 0x2A67 PUSH2 0x2847 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2A86 JUMPI PUSH2 0x2A85 PUSH2 0x284C JUMP JUMPDEST JUMPDEST PUSH2 0x2A92 DUP5 DUP3 DUP6 ADD PUSH2 0x2A24 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2AD5 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2ABA JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x2AE4 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2AF5 DUP3 PUSH2 0x2A9B JUMP JUMPDEST PUSH2 0x2AFF DUP2 DUP6 PUSH2 0x2AA6 JUMP JUMPDEST SWAP4 POP PUSH2 0x2B0F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2AB7 JUMP JUMPDEST PUSH2 0x2B18 DUP2 PUSH2 0x2916 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2B3D DUP2 DUP5 PUSH2 0x2AEA JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2B58 DUP2 PUSH2 0x2B45 JUMP JUMPDEST DUP2 EQ PUSH2 0x2B63 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2B75 DUP2 PUSH2 0x2B4F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2B91 JUMPI PUSH2 0x2B90 PUSH2 0x2847 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2B9F DUP5 DUP3 DUP6 ADD PUSH2 0x2B66 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BD3 DUP3 PUSH2 0x2BA8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2BE3 DUP2 PUSH2 0x2BC8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2BFE PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2BDA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2C0D DUP2 PUSH2 0x2BC8 JUMP JUMPDEST DUP2 EQ PUSH2 0x2C18 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2C2A DUP2 PUSH2 0x2C04 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2C47 JUMPI PUSH2 0x2C46 PUSH2 0x2847 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2C55 DUP6 DUP3 DUP7 ADD PUSH2 0x2C1B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2C66 DUP6 DUP3 DUP7 ADD PUSH2 0x2B66 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x2C79 DUP2 PUSH2 0x2B45 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2C94 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2C70 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2CB3 JUMPI PUSH2 0x2CB2 PUSH2 0x2847 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2CC1 DUP7 DUP3 DUP8 ADD PUSH2 0x2C1B JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x2CD2 DUP7 DUP3 DUP8 ADD PUSH2 0x2C1B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x2CE3 DUP7 DUP3 DUP8 ADD PUSH2 0x2B66 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D04 JUMPI PUSH2 0x2D03 PUSH2 0x2847 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2D12 DUP6 DUP3 DUP7 ADD PUSH2 0x2B66 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2D23 DUP6 DUP3 DUP7 ADD PUSH2 0x2B66 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x2D42 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2BDA JUMP JUMPDEST PUSH2 0x2D4F PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2C70 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2D71 JUMPI PUSH2 0x2D70 PUSH2 0x2927 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2D9A PUSH2 0x2D95 DUP5 PUSH2 0x2D56 JUMP JUMPDEST PUSH2 0x2987 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x20 DUP5 MUL DUP4 ADD DUP6 DUP2 GT ISZERO PUSH2 0x2DBD JUMPI PUSH2 0x2DBC PUSH2 0x2D82 JUMP JUMPDEST JUMPDEST DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2DE6 JUMPI DUP1 PUSH2 0x2DD2 DUP9 DUP3 PUSH2 0x2B66 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2DBF JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2E05 JUMPI PUSH2 0x2E04 PUSH2 0x290C JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2E15 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2D87 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2E39 JUMPI PUSH2 0x2E38 PUSH2 0x2927 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E5D PUSH2 0x2E58 DUP5 PUSH2 0x2E1E JUMP JUMPDEST PUSH2 0x2987 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x20 DUP5 MUL DUP4 ADD DUP6 DUP2 GT ISZERO PUSH2 0x2E80 JUMPI PUSH2 0x2E7F PUSH2 0x2D82 JUMP JUMPDEST JUMPDEST DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2EC7 JUMPI DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2EA5 JUMPI PUSH2 0x2EA4 PUSH2 0x290C JUMP JUMPDEST JUMPDEST DUP1 DUP7 ADD PUSH2 0x2EB2 DUP10 DUP3 PUSH2 0x2A24 JUMP JUMPDEST DUP6 MSTORE PUSH1 0x20 DUP6 ADD SWAP5 POP POP POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2E82 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2EE6 JUMPI PUSH2 0x2EE5 PUSH2 0x290C JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2EF6 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2E4A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2F16 JUMPI PUSH2 0x2F15 PUSH2 0x2847 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2F34 JUMPI PUSH2 0x2F33 PUSH2 0x284C JUMP JUMPDEST JUMPDEST PUSH2 0x2F40 DUP6 DUP3 DUP7 ADD PUSH2 0x2DF0 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2F61 JUMPI PUSH2 0x2F60 PUSH2 0x284C JUMP JUMPDEST JUMPDEST PUSH2 0x2F6D DUP6 DUP3 DUP7 ADD PUSH2 0x2ED1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2F8D JUMPI PUSH2 0x2F8C PUSH2 0x2847 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2F9B DUP5 DUP3 DUP6 ADD PUSH2 0x2C1B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FC9 PUSH2 0x2FC4 PUSH2 0x2FBF DUP5 PUSH2 0x2BA8 JUMP JUMPDEST PUSH2 0x2FA4 JUMP JUMPDEST PUSH2 0x2BA8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FDB DUP3 PUSH2 0x2FAE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FED DUP3 PUSH2 0x2FD0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2FFD DUP2 PUSH2 0x2FE2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3018 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2FF4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3035 JUMPI PUSH2 0x3034 PUSH2 0x2847 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3043 DUP6 DUP3 DUP7 ADD PUSH2 0x2B66 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3064 JUMPI PUSH2 0x3063 PUSH2 0x284C JUMP JUMPDEST JUMPDEST PUSH2 0x3070 DUP6 DUP3 DUP7 ADD PUSH2 0x2A24 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x3097 JUMPI PUSH2 0x3096 PUSH2 0x2847 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x30A5 DUP10 DUP3 DUP11 ADD PUSH2 0x2C1B JUMP JUMPDEST SWAP7 POP POP PUSH1 0x20 PUSH2 0x30B6 DUP10 DUP3 DUP11 ADD PUSH2 0x2C1B JUMP JUMPDEST SWAP6 POP POP PUSH1 0x40 PUSH2 0x30C7 DUP10 DUP3 DUP11 ADD PUSH2 0x2B66 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x60 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x30E8 JUMPI PUSH2 0x30E7 PUSH2 0x284C JUMP JUMPDEST JUMPDEST PUSH2 0x30F4 DUP10 DUP3 DUP11 ADD PUSH2 0x2A24 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x80 PUSH2 0x3105 DUP10 DUP3 DUP11 ADD PUSH2 0x2C1B JUMP JUMPDEST SWAP3 POP POP PUSH1 0xA0 PUSH2 0x3116 DUP10 DUP3 DUP11 ADD PUSH2 0x2B66 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x313E JUMPI PUSH2 0x313D PUSH2 0x2927 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3162 PUSH2 0x315D DUP5 PUSH2 0x3123 JUMP JUMPDEST PUSH2 0x2987 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x20 DUP5 MUL DUP4 ADD DUP6 DUP2 GT ISZERO PUSH2 0x3185 JUMPI PUSH2 0x3184 PUSH2 0x2D82 JUMP JUMPDEST JUMPDEST DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x31AE JUMPI DUP1 PUSH2 0x319A DUP9 DUP3 PUSH2 0x2C1B JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x3187 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x31CD JUMPI PUSH2 0x31CC PUSH2 0x290C JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x31DD DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x314F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x3203 JUMPI PUSH2 0x3202 PUSH2 0x2847 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3221 JUMPI PUSH2 0x3220 PUSH2 0x284C JUMP JUMPDEST JUMPDEST PUSH2 0x322D DUP10 DUP3 DUP11 ADD PUSH2 0x31B8 JUMP JUMPDEST SWAP7 POP POP PUSH1 0x20 PUSH2 0x323E DUP10 DUP3 DUP11 ADD PUSH2 0x2C1B JUMP JUMPDEST SWAP6 POP POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x325F JUMPI PUSH2 0x325E PUSH2 0x284C JUMP JUMPDEST JUMPDEST PUSH2 0x326B DUP10 DUP3 DUP11 ADD PUSH2 0x2DF0 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x60 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x328C JUMPI PUSH2 0x328B PUSH2 0x284C JUMP JUMPDEST JUMPDEST PUSH2 0x3298 DUP10 DUP3 DUP11 ADD PUSH2 0x2ED1 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x80 PUSH2 0x32A9 DUP10 DUP3 DUP11 ADD PUSH2 0x2C1B JUMP JUMPDEST SWAP3 POP POP PUSH1 0xA0 PUSH2 0x32BA DUP10 DUP3 DUP11 ADD PUSH2 0x2B66 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH2 0x32D0 DUP2 PUSH2 0x28D6 JUMP JUMPDEST DUP2 EQ PUSH2 0x32DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x32ED DUP2 PUSH2 0x32C7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x330A JUMPI PUSH2 0x3309 PUSH2 0x2847 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3318 DUP6 DUP3 DUP7 ADD PUSH2 0x2C1B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x3329 DUP6 DUP3 DUP7 ADD PUSH2 0x32DE JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x334E JUMPI PUSH2 0x334D PUSH2 0x2927 JUMP JUMPDEST JUMPDEST PUSH2 0x3357 DUP3 PUSH2 0x2916 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3377 PUSH2 0x3372 DUP5 PUSH2 0x3333 JUMP JUMPDEST PUSH2 0x2987 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x3393 JUMPI PUSH2 0x3392 PUSH2 0x2911 JUMP JUMPDEST JUMPDEST PUSH2 0x339E DUP5 DUP3 DUP6 PUSH2 0x29D3 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x33BB JUMPI PUSH2 0x33BA PUSH2 0x290C JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x33CB DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x3364 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x33EE JUMPI PUSH2 0x33ED PUSH2 0x2847 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x33FC DUP8 DUP3 DUP9 ADD PUSH2 0x2C1B JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x340D DUP8 DUP3 DUP9 ADD PUSH2 0x2C1B JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x341E DUP8 DUP3 DUP9 ADD PUSH2 0x2B66 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x343F JUMPI PUSH2 0x343E PUSH2 0x284C JUMP JUMPDEST JUMPDEST PUSH2 0x344B DUP8 DUP3 DUP9 ADD PUSH2 0x33A6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3470 JUMPI PUSH2 0x346F PUSH2 0x2847 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x347E DUP7 DUP3 DUP8 ADD PUSH2 0x2B66 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x348F DUP7 DUP3 DUP8 ADD PUSH2 0x2C1B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x34A0 DUP7 DUP3 DUP8 ADD PUSH2 0x2B66 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x34C1 JUMPI PUSH2 0x34C0 PUSH2 0x2847 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x34CF DUP6 DUP3 DUP7 ADD PUSH2 0x2C1B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x34E0 DUP6 DUP3 DUP7 ADD PUSH2 0x2C1B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x3531 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x3544 JUMPI PUSH2 0x3543 PUSH2 0x34EA JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3584 DUP3 PUSH2 0x2B45 JUMP JUMPDEST SWAP2 POP PUSH2 0x358F DUP4 PUSH2 0x2B45 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x35C8 JUMPI PUSH2 0x35C7 PUSH2 0x354A JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x360D DUP3 PUSH2 0x2B45 JUMP JUMPDEST SWAP2 POP PUSH2 0x3618 DUP4 PUSH2 0x2B45 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3628 JUMPI PUSH2 0x3627 PUSH2 0x35D3 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x455243313135353A20417272617973206C656E677468206D69736D6174636800 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3669 PUSH1 0x1F DUP4 PUSH2 0x2AA6 JUMP JUMPDEST SWAP2 POP PUSH2 0x3674 DUP3 PUSH2 0x3633 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3698 DUP2 PUSH2 0x365C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x36D9 DUP3 PUSH2 0x2B45 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x370B JUMPI PUSH2 0x370A PUSH2 0x354A JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20696E76616C696420746F6B656E2049440000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x374C PUSH1 0x18 DUP4 PUSH2 0x2AA6 JUMP JUMPDEST SWAP2 POP PUSH2 0x3757 DUP3 PUSH2 0x3716 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x377B DUP2 PUSH2 0x373F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A2061646472657373207A65726F206973206E6F742061207661 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6964206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x37DE PUSH1 0x29 DUP4 PUSH2 0x2AA6 JUMP JUMPDEST SWAP2 POP PUSH2 0x37E9 DUP3 PUSH2 0x3782 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x380D DUP2 PUSH2 0x37D1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x6D696E7420746F20746865207A65726F20616464726573730000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x384A PUSH1 0x18 DUP4 PUSH2 0x2AA6 JUMP JUMPDEST SWAP2 POP PUSH2 0x3855 DUP3 PUSH2 0x3814 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3879 DUP2 PUSH2 0x383D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38B6 PUSH1 0x1C DUP4 PUSH2 0x2AA6 JUMP JUMPDEST SWAP2 POP PUSH2 0x38C1 DUP3 PUSH2 0x3880 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x38E5 DUP2 PUSH2 0x38A9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38F7 DUP3 PUSH2 0x2B45 JUMP JUMPDEST SWAP2 POP PUSH2 0x3902 DUP4 PUSH2 0x2B45 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x3937 JUMPI PUSH2 0x3936 PUSH2 0x354A JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x417272617973206C656E677468206D69736D6174636800000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3978 PUSH1 0x16 DUP4 PUSH2 0x2AA6 JUMP JUMPDEST SWAP2 POP PUSH2 0x3983 DUP3 PUSH2 0x3942 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x39A7 DUP2 PUSH2 0x396B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A0A PUSH1 0x26 DUP4 PUSH2 0x2AA6 JUMP JUMPDEST SWAP2 POP PUSH2 0x3A15 DUP3 PUSH2 0x39AE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3A39 DUP2 PUSH2 0x39FD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3A55 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2BDA JUMP JUMPDEST PUSH2 0x3A62 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2BDA JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x3A78 DUP2 PUSH2 0x32C7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3A94 JUMPI PUSH2 0x3A93 PUSH2 0x2847 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3AA2 DUP5 DUP3 DUP6 ADD PUSH2 0x3A69 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B07 PUSH1 0x21 DUP4 PUSH2 0x2AA6 JUMP JUMPDEST SWAP2 POP PUSH2 0x3B12 DUP3 PUSH2 0x3AAB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3B36 DUP2 PUSH2 0x3AFA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F7420746F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6B656E206F776E6572206F7220617070726F76656420666F7220616C6C000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B99 PUSH1 0x3D DUP4 PUSH2 0x2AA6 JUMP JUMPDEST SWAP2 POP PUSH2 0x3BA4 DUP3 PUSH2 0x3B3D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3BC8 DUP2 PUSH2 0x3B8C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A2063616C6C6572206973206E6F7420746F6B656E206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x72206F7220617070726F76656400000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C2B PUSH1 0x2D DUP4 PUSH2 0x2AA6 JUMP JUMPDEST SWAP2 POP PUSH2 0x3C36 DUP3 PUSH2 0x3BCF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3C5A DUP2 PUSH2 0x3C1E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C97 PUSH1 0x20 DUP4 PUSH2 0x2AA6 JUMP JUMPDEST SWAP2 POP PUSH2 0x3CA2 DUP3 PUSH2 0x3C61 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3CC6 DUP2 PUSH2 0x3C8A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332393831526F79616C746965733A20546F6F2068696768000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D03 PUSH1 0x1A DUP4 PUSH2 0x2AA6 JUMP JUMPDEST SWAP2 POP PUSH2 0x3D0E DUP3 PUSH2 0x3CCD JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3D32 DUP2 PUSH2 0x3CF6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D4F DUP3 PUSH2 0x2A9B JUMP JUMPDEST PUSH2 0x3D59 DUP2 DUP6 PUSH2 0x3D39 JUMP JUMPDEST SWAP4 POP PUSH2 0x3D69 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2AB7 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SLOAD PUSH2 0x3D97 DUP2 PUSH2 0x3519 JUMP JUMPDEST PUSH2 0x3DA1 DUP2 DUP7 PUSH2 0x3D39 JUMP JUMPDEST SWAP5 POP PUSH1 0x1 DUP3 AND PUSH1 0x0 DUP2 EQ PUSH2 0x3DBC JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x3DCD JUMPI PUSH2 0x3E00 JUMP JUMPDEST PUSH1 0xFF NOT DUP4 AND DUP7 MSTORE DUP2 DUP7 ADD SWAP4 POP PUSH2 0x3E00 JUMP JUMPDEST PUSH2 0x3DD6 DUP6 PUSH2 0x3D75 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3DF8 JUMPI DUP2 SLOAD DUP2 DUP10 ADD MSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x3DD9 JUMP JUMPDEST DUP4 DUP9 ADD SWAP6 POP POP POP JUMPDEST POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E15 DUP3 DUP6 PUSH2 0x3D44 JUMP JUMPDEST SWAP2 POP PUSH2 0x3E21 DUP3 DUP5 PUSH2 0x3D8A JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E89 PUSH1 0x25 DUP4 PUSH2 0x2AA6 JUMP JUMPDEST SWAP2 POP PUSH2 0x3E94 DUP3 PUSH2 0x3E2D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3EB8 DUP2 PUSH2 0x3E7C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3F1B PUSH1 0x24 DUP4 PUSH2 0x2AA6 JUMP JUMPDEST SWAP2 POP PUSH2 0x3F26 DUP3 PUSH2 0x3EBF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3F4A DUP2 PUSH2 0x3F0E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3F87 PUSH1 0x19 DUP4 PUSH2 0x2AA6 JUMP JUMPDEST SWAP2 POP PUSH2 0x3F92 DUP3 PUSH2 0x3F51 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3FB6 DUP2 PUSH2 0x3F7A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4019 PUSH1 0x32 DUP4 PUSH2 0x2AA6 JUMP JUMPDEST SWAP2 POP PUSH2 0x4024 DUP3 PUSH2 0x3FBD JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x4048 DUP2 PUSH2 0x400C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x405A DUP3 PUSH2 0x2B45 JUMP JUMPDEST SWAP2 POP PUSH2 0x4065 DUP4 PUSH2 0x2B45 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x4078 JUMPI PUSH2 0x4077 PUSH2 0x354A JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x40AA DUP3 PUSH2 0x4083 JUMP JUMPDEST PUSH2 0x40B4 DUP2 DUP6 PUSH2 0x408E JUMP JUMPDEST SWAP4 POP PUSH2 0x40C4 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2AB7 JUMP JUMPDEST PUSH2 0x40CD DUP2 PUSH2 0x2916 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x40ED PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x2BDA JUMP JUMPDEST PUSH2 0x40FA PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x2BDA JUMP JUMPDEST PUSH2 0x4107 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x2C70 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x4119 DUP2 DUP5 PUSH2 0x409F JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x4133 DUP2 PUSH2 0x287D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x414F JUMPI PUSH2 0x414E PUSH2 0x2847 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x415D DUP5 DUP3 DUP6 ADD PUSH2 0x4124 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MSTORE INVALID DUP16 DUP7 ORIGIN CREATE2 STOP 0x4E 0xB0 0x26 PUSH9 0xB9088B8EEAC85DB5ED 0xAB PUSH3 0xDBD214 0x28 BALANCE PUSH31 0x7142B9764736F6C634300080D003300000000000000000000000000000000 ",
"sourceMap": "266:6115:13:-:0;;;379:261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;383:42:2;486:4;527:13:13;1521:188:6;;;;;;;;;;;;;;;;;551:4:13;1645:5:6;1637;:13;;;;;;;;;;;;:::i;:::-;;1670:7;1660;:17;;;;;;;;;;;;:::i;:::-;;1698:4;1687:8;:15;;;;;;;;;;;;:::i;:::-;;1521:188;;;929:32:16;948:12;:10;;;:12;;:::i;:::-;929:18;;;:32;;:::i;:::-;1296:1:15;836:42;1248:45;;;:49;1244:537;;;1317:9;1313:458;;;836:42;1346:45;;;1400:4;1407:30;1346:92;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1313:458;;;1523:1;1481:44;;:30;:44;;;1477:280;;836:42;1549:47;;;1605:4;1612:30;1549:94;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1477:280;;;836:42;1690:33;;;1732:4;1690:48;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1477:280;1313:458;1244:537;886:901;;584:7:13::1;567:14;;:24;;;;;;;;;;;;;;;;;;618:15;601:14;;:32;;;;;;;;;;;;;;;;;;379:261:::0;;;;266:6115;;640:96:1;693:7;719:10;712:17;;640:96;:::o;2426:187:16:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;266:6115:13:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:18:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:307::-;1678:1;1688:113;1702:6;1699:1;1696:13;1688:113;;;1787:1;1782:3;1778:11;1772:18;1768:1;1763:3;1759:11;1752:39;1724:2;1721:1;1717:10;1712:15;;1688:113;;;1819:6;1816:1;1813:13;1810:101;;;1899:1;1890:6;1885:3;1881:16;1874:27;1810:101;1659:258;1610:307;;;:::o;1923:421::-;2012:5;2037:66;2053:49;2095:6;2053:49;:::i;:::-;2037:66;:::i;:::-;2028:75;;2126:6;2119:5;2112:21;2164:4;2157:5;2153:16;2202:3;2193:6;2188:3;2184:16;2181:25;2178:112;;;2209:79;;:::i;:::-;2178:112;2299:39;2331:6;2326:3;2321;2299:39;:::i;:::-;2018:326;1923:421;;;;;:::o;2364:355::-;2431:5;2480:3;2473:4;2465:6;2461:17;2457:27;2447:122;;2488:79;;:::i;:::-;2447:122;2598:6;2592:13;2623:90;2709:3;2701:6;2694:4;2686:6;2682:17;2623:90;:::i;:::-;2614:99;;2437:282;2364:355;;;;:::o;2725:126::-;2762:7;2802:42;2795:5;2791:54;2780:65;;2725:126;;;:::o;2857:96::-;2894:7;2923:24;2941:5;2923:24;:::i;:::-;2912:35;;2857:96;;;:::o;2959:122::-;3032:24;3050:5;3032:24;:::i;:::-;3025:5;3022:35;3012:63;;3071:1;3068;3061:12;3012:63;2959:122;:::o;3087:143::-;3144:5;3175:6;3169:13;3160:22;;3191:33;3218:5;3191:33;:::i;:::-;3087:143;;;;:::o;3236:1166::-;3353:6;3361;3369;3377;3426:3;3414:9;3405:7;3401:23;3397:33;3394:120;;;3433:79;;:::i;:::-;3394:120;3574:1;3563:9;3559:17;3553:24;3604:18;3596:6;3593:30;3590:117;;;3626:79;;:::i;:::-;3590:117;3731:74;3797:7;3788:6;3777:9;3773:22;3731:74;:::i;:::-;3721:84;;3524:291;3854:2;3880:64;3936:7;3927:6;3916:9;3912:22;3880:64;:::i;:::-;3870:74;;3825:129;3993:2;4019:64;4075:7;4066:6;4055:9;4051:22;4019:64;:::i;:::-;4009:74;;3964:129;4153:2;4142:9;4138:18;4132:25;4184:18;4176:6;4173:30;4170:117;;;4206:79;;:::i;:::-;4170:117;4311:74;4377:7;4368:6;4357:9;4353:22;4311:74;:::i;:::-;4301:84;;4103:292;3236:1166;;;;;;;:::o;4408:118::-;4495:24;4513:5;4495:24;:::i;:::-;4490:3;4483:37;4408:118;;:::o;4532:332::-;4653:4;4691:2;4680:9;4676:18;4668:26;;4704:71;4772:1;4761:9;4757:17;4748:6;4704:71;:::i;:::-;4785:72;4853:2;4842:9;4838:18;4829:6;4785:72;:::i;:::-;4532:332;;;;;:::o;4870:222::-;4963:4;5001:2;4990:9;4986:18;4978:26;;5014:71;5082:1;5071:9;5067:17;5058:6;5014:71;:::i;:::-;4870:222;;;;:::o;5098:180::-;5146:77;5143:1;5136:88;5243:4;5240:1;5233:15;5267:4;5264:1;5257:15;5284:320;5328:6;5365:1;5359:4;5355:12;5345:22;;5412:1;5406:4;5402:12;5433:18;5423:81;;5489:4;5481:6;5477:17;5467:27;;5423:81;5551:2;5543:6;5540:14;5520:18;5517:38;5514:84;;5570:18;;:::i;:::-;5514:84;5335:269;5284:320;;;:::o;266:6115:13:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@OPERATOR_FILTER_REGISTRY_3182": {
"entryPoint": 2835,
"id": 3182,
"parameterSlots": 0,
"returnSlots": 0
},
"@_afterTokenTransfer_1434": {
"entryPoint": 9706,
"id": 1434,
"parameterSlots": 4,
"returnSlots": 0
},
"@_approve_1267": {
"entryPoint": 7755,
"id": 1267,
"parameterSlots": 2,
"returnSlots": 0
},
"@_balances_549": {
"entryPoint": 3180,
"id": 549,
"parameterSlots": 0,
"returnSlots": 0
},
"@_baseUri_565": {
"entryPoint": 2693,
"id": 565,
"parameterSlots": 0,
"returnSlots": 0
},
"@_beforeTokenTransfer_1421": {
"entryPoint": 9412,
"id": 1421,
"parameterSlots": 4,
"returnSlots": 0
},
"@_checkFilterOperator_3300": {
"entryPoint": 5794,
"id": 3300,
"parameterSlots": 1,
"returnSlots": 0
},
"@_checkOnERC721Received_1375": {
"entryPoint": 9712,
"id": 1375,
"parameterSlots": 4,
"returnSlots": 1
},
"@_checkOwner_3356": {
"entryPoint": 6422,
"id": 3356,
"parameterSlots": 0,
"returnSlots": 0
},
"@_cids_563": {
"entryPoint": 3407,
"id": 563,
"parameterSlots": 0,
"returnSlots": 0
},
"@_exists_972": {
"entryPoint": 6839,
"id": 972,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_1006": {
"entryPoint": 7940,
"id": 1006,
"parameterSlots": 2,
"returnSlots": 1
},
"@_msgSender_341": {
"entryPoint": 7747,
"id": 341,
"parameterSlots": 0,
"returnSlots": 1
},
"@_name_539": {
"entryPoint": 5126,
"id": 539,
"parameterSlots": 0,
"returnSlots": 0
},
"@_ownerOf_954": {
"entryPoint": 6580,
"id": 954,
"parameterSlots": 1,
"returnSlots": 1
},
"@_owners_545": {
"entryPoint": 4610,
"id": 545,
"parameterSlots": 0,
"returnSlots": 0
},
"@_requireMinted_1313": {
"entryPoint": 5719,
"id": 1313,
"parameterSlots": 1,
"returnSlots": 0
},
"@_safeTransfer_941": {
"entryPoint": 9214,
"id": 941,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setApprovalForAll_1299": {
"entryPoint": 8850,
"id": 1299,
"parameterSlots": 3,
"returnSlots": 0
},
"@_setTokenRoyalty_476": {
"entryPoint": 6904,
"id": 476,
"parameterSlots": 3,
"returnSlots": 0
},
"@_setURI_740": {
"entryPoint": 5693,
"id": 740,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transferOwnership_3413": {
"entryPoint": 6641,
"id": 3413,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_1243": {
"entryPoint": 8089,
"id": 1243,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_1901": {
"entryPoint": 2012,
"id": 1901,
"parameterSlots": 2,
"returnSlots": 0
},
"@approve_783": {
"entryPoint": 6047,
"id": 783,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_643": {
"entryPoint": 3204,
"id": 643,
"parameterSlots": 1,
"returnSlots": 1
},
"@batchMintWithCreator_2127": {
"entryPoint": 4661,
"id": 2127,
"parameterSlots": 6,
"returnSlots": 0
},
"@gatewayManager_1977": {
"entryPoint": 5088,
"id": 1977,
"parameterSlots": 0,
"returnSlots": 0
},
"@getApproved_801": {
"entryPoint": 1942,
"id": 801,
"parameterSlots": 1,
"returnSlots": 1
},
"@isApprovedForAll_836": {
"entryPoint": 5292,
"id": 836,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_17": {
"entryPoint": 10103,
"id": 17,
"parameterSlots": 1,
"returnSlots": 1
},
"@mintWithCreator_2062": {
"entryPoint": 3701,
"id": 2062,
"parameterSlots": 6,
"returnSlots": 0
},
"@mintingManager_1975": {
"entryPoint": 2932,
"id": 1975,
"parameterSlots": 0,
"returnSlots": 0
},
"@name_681": {
"entryPoint": 1796,
"id": 681,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_671": {
"entryPoint": 2970,
"id": 671,
"parameterSlots": 1,
"returnSlots": 1
},
"@owner_3342": {
"entryPoint": 4422,
"id": 3342,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_3370": {
"entryPoint": 3387,
"id": 3370,
"parameterSlots": 0,
"returnSlots": 0
},
"@royaltyInfo_512": {
"entryPoint": 2122,
"id": 512,
"parameterSlots": 2,
"returnSlots": 2
},
"@safeTransferFrom_1947": {
"entryPoint": 2853,
"id": 1947,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_1973": {
"entryPoint": 4989,
"id": 1973,
"parameterSlots": 4,
"returnSlots": 0
},
"@safeTransferFrom_882": {
"entryPoint": 6548,
"id": 882,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_912": {
"entryPoint": 7178,
"id": 912,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_1881": {
"entryPoint": 4964,
"id": 1881,
"parameterSlots": 2,
"returnSlots": 0
},
"@setApprovalForAll_818": {
"entryPoint": 7156,
"id": 818,
"parameterSlots": 2,
"returnSlots": 0
},
"@setCID_2256": {
"entryPoint": 3567,
"id": 2256,
"parameterSlots": 2,
"returnSlots": 0
},
"@setCIDs_2301": {
"entryPoint": 2331,
"id": 2301,
"parameterSlots": 2,
"returnSlots": 0
},
"@setGatewayManager_2226": {
"entryPoint": 2617,
"id": 2226,
"parameterSlots": 1,
"returnSlots": 0
},
"@setMintingManager_2213": {
"entryPoint": 3104,
"id": 2213,
"parameterSlots": 1,
"returnSlots": 0
},
"@setRoyalties_2200": {
"entryPoint": 5268,
"id": 2200,
"parameterSlots": 3,
"returnSlots": 0
},
"@setURI_2239": {
"entryPoint": 1694,
"id": 2239,
"parameterSlots": 1,
"returnSlots": 0
},
"@supportsInterface_2181": {
"entryPoint": 1676,
"id": 2181,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_396": {
"entryPoint": 9306,
"id": 396,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_433": {
"entryPoint": 5571,
"id": 433,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_619": {
"entryPoint": 7521,
"id": 619,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_691": {
"entryPoint": 4464,
"id": 691,
"parameterSlots": 0,
"returnSlots": 1
},
"@tokenURI_2164": {
"entryPoint": 5070,
"id": 2164,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_729": {
"entryPoint": 7276,
"id": 729,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_1861": {
"entryPoint": 2037,
"id": 1861,
"parameterSlots": 0,
"returnSlots": 0
},
"@transferFrom_1924": {
"entryPoint": 2043,
"id": 1924,
"parameterSlots": 3,
"returnSlots": 0
},
"@transferFrom_863": {
"entryPoint": 6326,
"id": 863,
"parameterSlots": 3,
"returnSlots": 0
},
"@transferOwnership_3393": {
"entryPoint": 5440,
"id": 3393,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_array$_t_address_$dyn_memory_ptr": {
"entryPoint": 12623,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_available_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr": {
"entryPoint": 11850,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 11655,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 13156,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 10722,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 11291,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_array$_t_address_$dyn_memory_ptr": {
"entryPoint": 12728,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_array$_t_string_memory_ptr_$dyn_memory_ptr": {
"entryPoint": 11985,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 11760,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 13022,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool_fromMemory": {
"entryPoint": 14953,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 10388,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 16676,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 13222,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 10788,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 11110,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 12151,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 13482,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 11418,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 13268,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_addresst_uint256t_string_memory_ptrt_addresst_uint256": {
"entryPoint": 12410,
"id": null,
"parameterSlots": 2,
"returnSlots": 6
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 13043,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 11312,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_addresst_array$_t_uint256_$dyn_memory_ptrt_array$_t_string_memory_ptr_$dyn_memory_ptrt_addresst_uint256": {
"entryPoint": 12774,
"id": null,
"parameterSlots": 2,
"returnSlots": 6
},
"abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptrt_array$_t_string_memory_ptr_$dyn_memory_ptr": {
"entryPoint": 12031,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bool_fromMemory": {
"entryPoint": 14974,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 10409,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 16697,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 10834,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 11131,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256t_addresst_uint256": {
"entryPoint": 13399,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_uint256t_string_memory_ptr": {
"entryPoint": 12318,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256t_uint256": {
"entryPoint": 11501,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 11226,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 10466,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 16543,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_contract$_IOperatorFilterRegistry_$1818_to_t_address_fromStack": {
"entryPoint": 12276,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10986,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 15684,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 15754,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack": {
"entryPoint": 15390,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1817fede6663b29fbfb5d975944c19cacb2e2baa433eb6b6f868e3e02a2dc6d9_to_t_string_memory_ptr_fromStack": {
"entryPoint": 15606,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 16396,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14845,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack": {
"entryPoint": 15996,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14505,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_32e954493294dea6e4fd5368043015af0154ee8442c75bc6d4bafefd2a37baca_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13916,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 16142,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack": {
"entryPoint": 16250,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_582fd48f3876d7686bfeaaaa0db0589073271dedd50d66094f02fee2a3d2e01c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14699,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14289,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 15498,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14143,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack": {
"entryPoint": 15098,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack": {
"entryPoint": 15244,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_ecc10bfbf0ed45bdf0ad99e2a9e4480a212cc613f2063f1f6de39580ccdfca76_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14397,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 11376,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 15881,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 11241,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed": {
"entryPoint": 14912,
"id": null,
"parameterSlots": 3,
"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": 16600,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
"entryPoint": 11565,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 10481,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_contract$_IOperatorFilterRegistry_$1818__to_t_address__fromStack_reversed": {
"entryPoint": 12291,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11043,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15425,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1817fede6663b29fbfb5d975944c19cacb2e2baa433eb6b6f868e3e02a2dc6d9__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15641,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 16431,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14880,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 16031,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14540,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_32e954493294dea6e4fd5368043015af0154ee8442c75bc6d4bafefd2a37baca__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13951,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 16177,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 16285,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_582fd48f3876d7686bfeaaaa0db0589073271dedd50d66094f02fee2a3d2e01c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14734,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14324,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15533,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14178,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15133,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15279,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_ecc10bfbf0ed45bdf0ad99e2a9e4480a212cc613f2063f1f6de39580ccdfca76__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14432,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 11391,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 10631,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 10301,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_array$_t_address_$dyn_memory_ptr": {
"entryPoint": 12579,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_allocation_size_t_array$_t_string_memory_ptr_$dyn_memory_ptr": {
"entryPoint": 11806,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 11606,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 13107,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 10658,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 15733,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 16515,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 10907,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 16526,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 10918,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 15673,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 14572,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 13826,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 13689,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 16463,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 11208,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 10454,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 10321,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 11176,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 11077,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_contract$_IOperatorFilterRegistry_$1818_to_t_address": {
"entryPoint": 12258,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_address": {
"entryPoint": 12240,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_uint160": {
"entryPoint": 12206,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 10707,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 10935,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 13593,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 10582,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 12196,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 14030,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 13642,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 13779,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 13546,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 13983,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 10535,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 10508,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef": {
"entryPoint": 11650,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 10513,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 10316,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 10311,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 10518,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af": {
"entryPoint": 15311,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1817fede6663b29fbfb5d975944c19cacb2e2baa433eb6b6f868e3e02a2dc6d9": {
"entryPoint": 15565,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e": {
"entryPoint": 16317,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 14766,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48": {
"entryPoint": 15917,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57": {
"entryPoint": 14464,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_32e954493294dea6e4fd5368043015af0154ee8442c75bc6d4bafefd2a37baca": {
"entryPoint": 13875,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4": {
"entryPoint": 16063,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05": {
"entryPoint": 16209,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_582fd48f3876d7686bfeaaaa0db0589073271dedd50d66094f02fee2a3d2e01c": {
"entryPoint": 14658,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159": {
"entryPoint": 14210,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 15457,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f": {
"entryPoint": 14102,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942": {
"entryPoint": 15019,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83": {
"entryPoint": 15165,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_ecc10bfbf0ed45bdf0ad99e2a9e4480a212cc613f2063f1f6de39580ccdfca76": {
"entryPoint": 14356,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 11268,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 12999,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 10365,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 11087,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:46892:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:18",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:18"
},
"nodeType": "YulFunctionCall",
"src": "67:9:18"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:18"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:18",
"type": ""
}
],
"src": "7:75:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:18"
},
"nodeType": "YulFunctionCall",
"src": "187:12:18"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:18"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:18"
},
"nodeType": "YulFunctionCall",
"src": "310:12:18"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:18"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "378:105:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "388:89:18",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "403:5:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "410:66:18",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "399:3:18"
},
"nodeType": "YulFunctionCall",
"src": "399:78:18"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "388:7:18"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "360:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "370:7:18",
"type": ""
}
],
"src": "334:149:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "531:78:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "587:16:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "596:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "599:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "589:6:18"
},
"nodeType": "YulFunctionCall",
"src": "589:12:18"
},
"nodeType": "YulExpressionStatement",
"src": "589:12:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "554:5:18"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "578:5:18"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "561:16:18"
},
"nodeType": "YulFunctionCall",
"src": "561:23:18"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "551:2:18"
},
"nodeType": "YulFunctionCall",
"src": "551:34:18"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "544:6:18"
},
"nodeType": "YulFunctionCall",
"src": "544:42:18"
},
"nodeType": "YulIf",
"src": "541:62:18"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "524:5:18",
"type": ""
}
],
"src": "489:120:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "666:86:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "676:29:18",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "698:6:18"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "685:12:18"
},
"nodeType": "YulFunctionCall",
"src": "685:20:18"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "676:5:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "740:5:18"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "714:25:18"
},
"nodeType": "YulFunctionCall",
"src": "714:32:18"
},
"nodeType": "YulExpressionStatement",
"src": "714:32:18"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "644:6:18",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "652:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "660:5:18",
"type": ""
}
],
"src": "615:137:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "823:262:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "871:77:18"
},
"nodeType": "YulFunctionCall",
"src": "871:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "871:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "844:7:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "853:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "840:3:18"
},
"nodeType": "YulFunctionCall",
"src": "840:23:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "865:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "836:3:18"
},
"nodeType": "YulFunctionCall",
"src": "836:32:18"
},
"nodeType": "YulIf",
"src": "833:119:18"
},
{
"nodeType": "YulBlock",
"src": "962:116:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "977:15:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "991:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "981:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1006:62:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1040:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1051:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1036:3:18"
},
"nodeType": "YulFunctionCall",
"src": "1036:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1060:7:18"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1016:19:18"
},
"nodeType": "YulFunctionCall",
"src": "1016:52:18"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1006:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "793:9:18",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "804:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "816:6:18",
"type": ""
}
],
"src": "758:327:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1133:48:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1143:32:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1168:5:18"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1161:6:18"
},
"nodeType": "YulFunctionCall",
"src": "1161:13:18"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1154:6:18"
},
"nodeType": "YulFunctionCall",
"src": "1154:21:18"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1143:7:18"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1115:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1125:7:18",
"type": ""
}
],
"src": "1091:90:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1246:50:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1263:3:18"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1283:5:18"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "1268:14:18"
},
"nodeType": "YulFunctionCall",
"src": "1268:21:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1256:6:18"
},
"nodeType": "YulFunctionCall",
"src": "1256:34:18"
},
"nodeType": "YulExpressionStatement",
"src": "1256:34:18"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1234:5:18",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1241:3:18",
"type": ""
}
],
"src": "1187:109:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1394:118:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1404:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1416:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1427:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1412:3:18"
},
"nodeType": "YulFunctionCall",
"src": "1412:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1404:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1478:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1491:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1502:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1487:3:18"
},
"nodeType": "YulFunctionCall",
"src": "1487:17:18"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "1440:37:18"
},
"nodeType": "YulFunctionCall",
"src": "1440:65:18"
},
"nodeType": "YulExpressionStatement",
"src": "1440:65:18"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1366:9:18",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1378:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1389:4:18",
"type": ""
}
],
"src": "1302:210:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1607:28:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1624:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1627:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1617:6:18"
},
"nodeType": "YulFunctionCall",
"src": "1617:12:18"
},
"nodeType": "YulExpressionStatement",
"src": "1617:12:18"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "1518:117:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1730:28:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1747:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1750:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1740:6:18"
},
"nodeType": "YulFunctionCall",
"src": "1740:12:18"
},
"nodeType": "YulExpressionStatement",
"src": "1740:12:18"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "1641:117:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1812:54:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1822:38:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1840:5:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1847:2:18",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1836:3:18"
},
"nodeType": "YulFunctionCall",
"src": "1836:14:18"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1856:2:18",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1852:3:18"
},
"nodeType": "YulFunctionCall",
"src": "1852:7:18"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1832:3:18"
},
"nodeType": "YulFunctionCall",
"src": "1832:28:18"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1822:6:18"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1795:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "1805:6:18",
"type": ""
}
],
"src": "1764:102:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1900:152:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1917:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1920:77:18",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1910:6:18"
},
"nodeType": "YulFunctionCall",
"src": "1910:88:18"
},
"nodeType": "YulExpressionStatement",
"src": "1910:88:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2014:1:18",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2017:4:18",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2007:6:18"
},
"nodeType": "YulFunctionCall",
"src": "2007:15:18"
},
"nodeType": "YulExpressionStatement",
"src": "2007:15:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2038:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2041:4:18",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2031:6:18"
},
"nodeType": "YulFunctionCall",
"src": "2031:15:18"
},
"nodeType": "YulExpressionStatement",
"src": "2031:15:18"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "1872:180:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2101:238:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2111:58:18",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2133:6:18"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2163:4:18"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2141:21:18"
},
"nodeType": "YulFunctionCall",
"src": "2141:27:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2129:3:18"
},
"nodeType": "YulFunctionCall",
"src": "2129:40:18"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "2115:10:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2280:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2282:16:18"
},
"nodeType": "YulFunctionCall",
"src": "2282:18:18"
},
"nodeType": "YulExpressionStatement",
"src": "2282:18:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2223:10:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2235:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2220:2:18"
},
"nodeType": "YulFunctionCall",
"src": "2220:34:18"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2259:10:18"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2271:6:18"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2256:2:18"
},
"nodeType": "YulFunctionCall",
"src": "2256:22:18"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "2217:2:18"
},
"nodeType": "YulFunctionCall",
"src": "2217:62:18"
},
"nodeType": "YulIf",
"src": "2214:88:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2318:2:18",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2322:10:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2311:6:18"
},
"nodeType": "YulFunctionCall",
"src": "2311:22:18"
},
"nodeType": "YulExpressionStatement",
"src": "2311:22:18"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2087:6:18",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2095:4:18",
"type": ""
}
],
"src": "2058:281:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2386:88:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2396:30:18",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "2406:18:18"
},
"nodeType": "YulFunctionCall",
"src": "2406:20:18"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2396:6:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2455:6:18"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2463:4:18"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "2435:19:18"
},
"nodeType": "YulFunctionCall",
"src": "2435:33:18"
},
"nodeType": "YulExpressionStatement",
"src": "2435:33:18"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2370:4:18",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2379:6:18",
"type": ""
}
],
"src": "2345:129:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2547:241:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2652:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2654:16:18"
},
"nodeType": "YulFunctionCall",
"src": "2654:18:18"
},
"nodeType": "YulExpressionStatement",
"src": "2654:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2624:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2632:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2621:2:18"
},
"nodeType": "YulFunctionCall",
"src": "2621:30:18"
},
"nodeType": "YulIf",
"src": "2618:56:18"
},
{
"nodeType": "YulAssignment",
"src": "2684:37:18",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2714:6:18"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2692:21:18"
},
"nodeType": "YulFunctionCall",
"src": "2692:29:18"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2684:4:18"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2758:23:18",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2770:4:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2776:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2766:3:18"
},
"nodeType": "YulFunctionCall",
"src": "2766:15:18"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2758:4:18"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2531:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2542:4:18",
"type": ""
}
],
"src": "2480:308:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2845:103:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2868:3:18"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2873:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2878:6:18"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "2855:12:18"
},
"nodeType": "YulFunctionCall",
"src": "2855:30:18"
},
"nodeType": "YulExpressionStatement",
"src": "2855:30:18"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2926:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2931:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2922:3:18"
},
"nodeType": "YulFunctionCall",
"src": "2922:16:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2940:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2915:6:18"
},
"nodeType": "YulFunctionCall",
"src": "2915:27:18"
},
"nodeType": "YulExpressionStatement",
"src": "2915:27:18"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2827:3:18",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2832:3:18",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2837:6:18",
"type": ""
}
],
"src": "2794:154:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3038:328:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3048:75:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3115:6:18"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3073:41:18"
},
"nodeType": "YulFunctionCall",
"src": "3073:49:18"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "3057:15:18"
},
"nodeType": "YulFunctionCall",
"src": "3057:66:18"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "3048:5:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "3139:5:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3146:6:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3132:6:18"
},
"nodeType": "YulFunctionCall",
"src": "3132:21:18"
},
"nodeType": "YulExpressionStatement",
"src": "3132:21:18"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3162:27:18",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "3177:5:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3184:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3173:3:18"
},
"nodeType": "YulFunctionCall",
"src": "3173:16:18"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "3166:3:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3227:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "3229:77:18"
},
"nodeType": "YulFunctionCall",
"src": "3229:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "3229:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3208:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3213:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3204:3:18"
},
"nodeType": "YulFunctionCall",
"src": "3204:16:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3222:3:18"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3201:2:18"
},
"nodeType": "YulFunctionCall",
"src": "3201:25:18"
},
"nodeType": "YulIf",
"src": "3198:112:18"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3343:3:18"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3348:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3353:6:18"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "3319:23:18"
},
"nodeType": "YulFunctionCall",
"src": "3319:41:18"
},
"nodeType": "YulExpressionStatement",
"src": "3319:41:18"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3011:3:18",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3016:6:18",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3024:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "3032:5:18",
"type": ""
}
],
"src": "2954:412:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3448:278:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3497:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "3499:77:18"
},
"nodeType": "YulFunctionCall",
"src": "3499:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "3499:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3476:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3484:4:18",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3472:3:18"
},
"nodeType": "YulFunctionCall",
"src": "3472:17:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3491:3:18"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3468:3:18"
},
"nodeType": "YulFunctionCall",
"src": "3468:27:18"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3461:6:18"
},
"nodeType": "YulFunctionCall",
"src": "3461:35:18"
},
"nodeType": "YulIf",
"src": "3458:122:18"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3589:34:18",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3616:6:18"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3603:12:18"
},
"nodeType": "YulFunctionCall",
"src": "3603:20:18"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3593:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3632:88:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3693:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3701:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3689:3:18"
},
"nodeType": "YulFunctionCall",
"src": "3689:17:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3708:6:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3716:3:18"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3641:47:18"
},
"nodeType": "YulFunctionCall",
"src": "3641:79:18"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "3632:5:18"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3426:6:18",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3434:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "3442:5:18",
"type": ""
}
],
"src": "3386:340:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3808:433:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3854:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3856:77:18"
},
"nodeType": "YulFunctionCall",
"src": "3856:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "3856:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3829:7:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3838:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3825:3:18"
},
"nodeType": "YulFunctionCall",
"src": "3825:23:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3850:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3821:3:18"
},
"nodeType": "YulFunctionCall",
"src": "3821:32:18"
},
"nodeType": "YulIf",
"src": "3818:119:18"
},
{
"nodeType": "YulBlock",
"src": "3947:287:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3962:45:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3993:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4004:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3989:3:18"
},
"nodeType": "YulFunctionCall",
"src": "3989:17:18"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3976:12:18"
},
"nodeType": "YulFunctionCall",
"src": "3976:31:18"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3966:6:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4054:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "4056:77:18"
},
"nodeType": "YulFunctionCall",
"src": "4056:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "4056:79:18"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4026:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4034:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4023:2:18"
},
"nodeType": "YulFunctionCall",
"src": "4023:30:18"
},
"nodeType": "YulIf",
"src": "4020:117:18"
},
{
"nodeType": "YulAssignment",
"src": "4151:73:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4196:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4207:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4192:3:18"
},
"nodeType": "YulFunctionCall",
"src": "4192:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4216:7:18"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4161:30:18"
},
"nodeType": "YulFunctionCall",
"src": "4161:63:18"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4151:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3778:9:18",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3789:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3801:6:18",
"type": ""
}
],
"src": "3732:509:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4306:40:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4317:22:18",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4333:5:18"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4327:5:18"
},
"nodeType": "YulFunctionCall",
"src": "4327:12:18"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4317:6:18"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4289:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4299:6:18",
"type": ""
}
],
"src": "4247:99:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4448:73:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4465:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4470:6:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4458:6:18"
},
"nodeType": "YulFunctionCall",
"src": "4458:19:18"
},
"nodeType": "YulExpressionStatement",
"src": "4458:19:18"
},
{
"nodeType": "YulAssignment",
"src": "4486:29:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4505:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4510:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4501:3:18"
},
"nodeType": "YulFunctionCall",
"src": "4501:14:18"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "4486:11:18"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4420:3:18",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4425:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4436:11:18",
"type": ""
}
],
"src": "4352:169:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4576:258:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4586:10:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4595:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4590:1:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4655:63:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4680:3:18"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4685:1:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4676:3:18"
},
"nodeType": "YulFunctionCall",
"src": "4676:11:18"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4699:3:18"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4704:1:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4695:3:18"
},
"nodeType": "YulFunctionCall",
"src": "4695:11:18"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4689:5:18"
},
"nodeType": "YulFunctionCall",
"src": "4689:18:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4669:6:18"
},
"nodeType": "YulFunctionCall",
"src": "4669:39:18"
},
"nodeType": "YulExpressionStatement",
"src": "4669:39:18"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4616:1:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4619:6:18"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4613:2:18"
},
"nodeType": "YulFunctionCall",
"src": "4613:13:18"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4627:19:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4629:15:18",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4638:1:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4641:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4634:3:18"
},
"nodeType": "YulFunctionCall",
"src": "4634:10:18"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4629:1:18"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4609:3:18",
"statements": []
},
"src": "4605:113:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4752:76:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4802:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4807:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4798:3:18"
},
"nodeType": "YulFunctionCall",
"src": "4798:16:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4816:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4791:6:18"
},
"nodeType": "YulFunctionCall",
"src": "4791:27:18"
},
"nodeType": "YulExpressionStatement",
"src": "4791:27:18"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4733:1:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4736:6:18"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4730:2:18"
},
"nodeType": "YulFunctionCall",
"src": "4730:13:18"
},
"nodeType": "YulIf",
"src": "4727:101:18"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "4558:3:18",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "4563:3:18",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4568:6:18",
"type": ""
}
],
"src": "4527:307:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4932:272:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4942:53:18",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4989:5:18"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4956:32:18"
},
"nodeType": "YulFunctionCall",
"src": "4956:39:18"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4946:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5004:78:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5070:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5075:6:18"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5011:58:18"
},
"nodeType": "YulFunctionCall",
"src": "5011:71:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5004:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5117:5:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5124:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5113:3:18"
},
"nodeType": "YulFunctionCall",
"src": "5113:16:18"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5131:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5136:6:18"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5091:21:18"
},
"nodeType": "YulFunctionCall",
"src": "5091:52:18"
},
"nodeType": "YulExpressionStatement",
"src": "5091:52:18"
},
{
"nodeType": "YulAssignment",
"src": "5152:46:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5163:3:18"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5190:6:18"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5168:21:18"
},
"nodeType": "YulFunctionCall",
"src": "5168:29:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5159:3:18"
},
"nodeType": "YulFunctionCall",
"src": "5159:39:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5152:3:18"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4913:5:18",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4920:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4928:3:18",
"type": ""
}
],
"src": "4840:364:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5328:195:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5338:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5350:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5361:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5346:3:18"
},
"nodeType": "YulFunctionCall",
"src": "5346:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5338:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5385:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5396:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5381:3:18"
},
"nodeType": "YulFunctionCall",
"src": "5381:17:18"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5404:4:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5410:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5400:3:18"
},
"nodeType": "YulFunctionCall",
"src": "5400:20:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5374:6:18"
},
"nodeType": "YulFunctionCall",
"src": "5374:47:18"
},
"nodeType": "YulExpressionStatement",
"src": "5374:47:18"
},
{
"nodeType": "YulAssignment",
"src": "5430:86:18",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5502:6:18"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5511:4:18"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5438:63:18"
},
"nodeType": "YulFunctionCall",
"src": "5438:78:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5430:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5300:9:18",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5312:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5323:4:18",
"type": ""
}
],
"src": "5210:313:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5574:32:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5584:16:18",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5595:5:18"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5584:7:18"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5556:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5566:7:18",
"type": ""
}
],
"src": "5529:77:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5655:79:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5712:16:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5721:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5724:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5714:6:18"
},
"nodeType": "YulFunctionCall",
"src": "5714:12:18"
},
"nodeType": "YulExpressionStatement",
"src": "5714:12:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5678:5:18"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5703:5:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5685:17:18"
},
"nodeType": "YulFunctionCall",
"src": "5685:24:18"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5675:2:18"
},
"nodeType": "YulFunctionCall",
"src": "5675:35:18"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5668:6:18"
},
"nodeType": "YulFunctionCall",
"src": "5668:43:18"
},
"nodeType": "YulIf",
"src": "5665:63:18"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5648:5:18",
"type": ""
}
],
"src": "5612:122:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5792:87:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5802:29:18",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5824:6:18"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5811:12:18"
},
"nodeType": "YulFunctionCall",
"src": "5811:20:18"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5802:5:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5867:5:18"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "5840:26:18"
},
"nodeType": "YulFunctionCall",
"src": "5840:33:18"
},
"nodeType": "YulExpressionStatement",
"src": "5840:33:18"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5770:6:18",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5778:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5786:5:18",
"type": ""
}
],
"src": "5740:139:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5951:263:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5997:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5999:77:18"
},
"nodeType": "YulFunctionCall",
"src": "5999:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "5999:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5972:7:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5981:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5968:3:18"
},
"nodeType": "YulFunctionCall",
"src": "5968:23:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5993:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5964:3:18"
},
"nodeType": "YulFunctionCall",
"src": "5964:32:18"
},
"nodeType": "YulIf",
"src": "5961:119:18"
},
{
"nodeType": "YulBlock",
"src": "6090:117:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6105:15:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6119:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6109:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6134:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6169:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6180:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6165:3:18"
},
"nodeType": "YulFunctionCall",
"src": "6165:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6189:7:18"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "6144:20:18"
},
"nodeType": "YulFunctionCall",
"src": "6144:53:18"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6134:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5921:9:18",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5932:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5944:6:18",
"type": ""
}
],
"src": "5885:329:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6265:81:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6275:65:18",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6290:5:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6297:42:18",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6286:3:18"
},
"nodeType": "YulFunctionCall",
"src": "6286:54:18"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "6275:7:18"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6247:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "6257:7:18",
"type": ""
}
],
"src": "6220:126:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6397:51:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6407:35:18",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6436:5:18"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "6418:17:18"
},
"nodeType": "YulFunctionCall",
"src": "6418:24:18"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "6407:7:18"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6379:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "6389:7:18",
"type": ""
}
],
"src": "6352:96:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6519:53:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6536:3:18"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6559:5:18"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "6541:17:18"
},
"nodeType": "YulFunctionCall",
"src": "6541:24:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6529:6:18"
},
"nodeType": "YulFunctionCall",
"src": "6529:37:18"
},
"nodeType": "YulExpressionStatement",
"src": "6529:37:18"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6507:5:18",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6514:3:18",
"type": ""
}
],
"src": "6454:118:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6676:124:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6686:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6698:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6709:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6694:3:18"
},
"nodeType": "YulFunctionCall",
"src": "6694:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6686:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6766:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6779:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6790:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6775:3:18"
},
"nodeType": "YulFunctionCall",
"src": "6775:17:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "6722:43:18"
},
"nodeType": "YulFunctionCall",
"src": "6722:71:18"
},
"nodeType": "YulExpressionStatement",
"src": "6722:71:18"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6648:9:18",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6660:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6671:4:18",
"type": ""
}
],
"src": "6578:222:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6849:79:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6906:16:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6915:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6918:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6908:6:18"
},
"nodeType": "YulFunctionCall",
"src": "6908:12:18"
},
"nodeType": "YulExpressionStatement",
"src": "6908:12:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6872:5:18"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6897:5:18"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "6879:17:18"
},
"nodeType": "YulFunctionCall",
"src": "6879:24:18"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6869:2:18"
},
"nodeType": "YulFunctionCall",
"src": "6869:35:18"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6862:6:18"
},
"nodeType": "YulFunctionCall",
"src": "6862:43:18"
},
"nodeType": "YulIf",
"src": "6859:63:18"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6842:5:18",
"type": ""
}
],
"src": "6806:122:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6986:87:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6996:29:18",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7018:6:18"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "7005:12:18"
},
"nodeType": "YulFunctionCall",
"src": "7005:20:18"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6996:5:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7061:5:18"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "7034:26:18"
},
"nodeType": "YulFunctionCall",
"src": "7034:33:18"
},
"nodeType": "YulExpressionStatement",
"src": "7034:33:18"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6964:6:18",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6972:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6980:5:18",
"type": ""
}
],
"src": "6934:139:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7162:391:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7208:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "7210:77:18"
},
"nodeType": "YulFunctionCall",
"src": "7210:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "7210:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7183:7:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7192:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7179:3:18"
},
"nodeType": "YulFunctionCall",
"src": "7179:23:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7204:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7175:3:18"
},
"nodeType": "YulFunctionCall",
"src": "7175:32:18"
},
"nodeType": "YulIf",
"src": "7172:119:18"
},
{
"nodeType": "YulBlock",
"src": "7301:117:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7316:15:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7330:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7320:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7345:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7380:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7391:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7376:3:18"
},
"nodeType": "YulFunctionCall",
"src": "7376:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7400:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "7355:20:18"
},
"nodeType": "YulFunctionCall",
"src": "7355:53:18"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7345:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "7428:118:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7443:16:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7457:2:18",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7447:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7473:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7508:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7519:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7504:3:18"
},
"nodeType": "YulFunctionCall",
"src": "7504:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7528:7:18"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "7483:20:18"
},
"nodeType": "YulFunctionCall",
"src": "7483:53:18"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "7473:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7124:9:18",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7135:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7147:6:18",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "7155:6:18",
"type": ""
}
],
"src": "7079:474:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7624:53:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7641:3:18"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7664:5:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7646:17:18"
},
"nodeType": "YulFunctionCall",
"src": "7646:24:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7634:6:18"
},
"nodeType": "YulFunctionCall",
"src": "7634:37:18"
},
"nodeType": "YulExpressionStatement",
"src": "7634:37:18"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7612:5:18",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7619:3:18",
"type": ""
}
],
"src": "7559:118:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7781:124:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7791:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7803:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7814:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7799:3:18"
},
"nodeType": "YulFunctionCall",
"src": "7799:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7791:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7871:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7884:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7895:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7880:3:18"
},
"nodeType": "YulFunctionCall",
"src": "7880:17:18"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "7827:43:18"
},
"nodeType": "YulFunctionCall",
"src": "7827:71:18"
},
"nodeType": "YulExpressionStatement",
"src": "7827:71:18"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7753:9:18",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7765:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7776:4:18",
"type": ""
}
],
"src": "7683:222:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8011:519:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8057:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "8059:77:18"
},
"nodeType": "YulFunctionCall",
"src": "8059:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "8059:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8032:7:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8041:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8028:3:18"
},
"nodeType": "YulFunctionCall",
"src": "8028:23:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8053:2:18",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8024:3:18"
},
"nodeType": "YulFunctionCall",
"src": "8024:32:18"
},
"nodeType": "YulIf",
"src": "8021:119:18"
},
{
"nodeType": "YulBlock",
"src": "8150:117:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8165:15:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8179:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8169:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8194:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8229:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8240:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8225:3:18"
},
"nodeType": "YulFunctionCall",
"src": "8225:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8249:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "8204:20:18"
},
"nodeType": "YulFunctionCall",
"src": "8204:53:18"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8194:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "8277:118:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8292:16:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8306:2:18",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8296:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8322:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8357:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8368:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8353:3:18"
},
"nodeType": "YulFunctionCall",
"src": "8353:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8377:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "8332:20:18"
},
"nodeType": "YulFunctionCall",
"src": "8332:53:18"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "8322:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "8405:118:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8420:16:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8434:2:18",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8424:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8450:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8485:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8496:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8481:3:18"
},
"nodeType": "YulFunctionCall",
"src": "8481:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8505:7:18"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "8460:20:18"
},
"nodeType": "YulFunctionCall",
"src": "8460:53:18"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "8450:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7965:9:18",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7976:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7988:6:18",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "7996:6:18",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "8004:6:18",
"type": ""
}
],
"src": "7911:619:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8619:391:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8665:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "8667:77:18"
},
"nodeType": "YulFunctionCall",
"src": "8667:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "8667:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8640:7:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8649:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8636:3:18"
},
"nodeType": "YulFunctionCall",
"src": "8636:23:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8661:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8632:3:18"
},
"nodeType": "YulFunctionCall",
"src": "8632:32:18"
},
"nodeType": "YulIf",
"src": "8629:119:18"
},
{
"nodeType": "YulBlock",
"src": "8758:117:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8773:15:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8787:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8777:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8802:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8837:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8848:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8833:3:18"
},
"nodeType": "YulFunctionCall",
"src": "8833:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8857:7:18"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "8812:20:18"
},
"nodeType": "YulFunctionCall",
"src": "8812:53:18"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8802:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "8885:118:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8900:16:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8914:2:18",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8904:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8930:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8965:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8976:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8961:3:18"
},
"nodeType": "YulFunctionCall",
"src": "8961:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8985:7:18"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "8940:20:18"
},
"nodeType": "YulFunctionCall",
"src": "8940:53:18"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "8930:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8581:9:18",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "8592:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8604:6:18",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "8612:6:18",
"type": ""
}
],
"src": "8536:474:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9142:206:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9152:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9164:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9175:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9160:3:18"
},
"nodeType": "YulFunctionCall",
"src": "9160:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9152:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9232:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9245:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9256:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9241:3:18"
},
"nodeType": "YulFunctionCall",
"src": "9241:17:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "9188:43:18"
},
"nodeType": "YulFunctionCall",
"src": "9188:71:18"
},
"nodeType": "YulExpressionStatement",
"src": "9188:71:18"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "9313:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9326:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9337:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9322:3:18"
},
"nodeType": "YulFunctionCall",
"src": "9322:18:18"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "9269:43:18"
},
"nodeType": "YulFunctionCall",
"src": "9269:72:18"
},
"nodeType": "YulExpressionStatement",
"src": "9269:72:18"
}
]
},
"name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9106:9:18",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "9118:6:18",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9126:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9137:4:18",
"type": ""
}
],
"src": "9016:332:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9436:229:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9541:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "9543:16:18"
},
"nodeType": "YulFunctionCall",
"src": "9543:18:18"
},
"nodeType": "YulExpressionStatement",
"src": "9543:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9513:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9521:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9510:2:18"
},
"nodeType": "YulFunctionCall",
"src": "9510:30:18"
},
"nodeType": "YulIf",
"src": "9507:56:18"
},
{
"nodeType": "YulAssignment",
"src": "9573:25:18",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9585:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9593:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "9581:3:18"
},
"nodeType": "YulFunctionCall",
"src": "9581:17:18"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "9573:4:18"
}
]
},
{
"nodeType": "YulAssignment",
"src": "9635:23:18",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "9647:4:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9653:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9643:3:18"
},
"nodeType": "YulFunctionCall",
"src": "9643:15:18"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "9635:4:18"
}
]
}
]
},
"name": "array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9420:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "9431:4:18",
"type": ""
}
],
"src": "9354:311:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9760:28:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9777:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9780:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9770:6:18"
},
"nodeType": "YulFunctionCall",
"src": "9770:12:18"
},
"nodeType": "YulExpressionStatement",
"src": "9770:12:18"
}
]
},
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulFunctionDefinition",
"src": "9671:117:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9913:608:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9923:90:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10005:6:18"
}
],
"functionName": {
"name": "array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9948:56:18"
},
"nodeType": "YulFunctionCall",
"src": "9948:64:18"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "9932:15:18"
},
"nodeType": "YulFunctionCall",
"src": "9932:81:18"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "9923:5:18"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10022:16:18",
"value": {
"name": "array",
"nodeType": "YulIdentifier",
"src": "10033:5:18"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "10026:3:18",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "10055:5:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10062:6:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10048:6:18"
},
"nodeType": "YulFunctionCall",
"src": "10048:21:18"
},
"nodeType": "YulExpressionStatement",
"src": "10048:21:18"
},
{
"nodeType": "YulAssignment",
"src": "10078:23:18",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "10089:5:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10096:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10085:3:18"
},
"nodeType": "YulFunctionCall",
"src": "10085:16:18"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10078:3:18"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10111:44:18",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10129:6:18"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10141:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10149:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "10137:3:18"
},
"nodeType": "YulFunctionCall",
"src": "10137:17:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10125:3:18"
},
"nodeType": "YulFunctionCall",
"src": "10125:30:18"
},
"variables": [
{
"name": "srcEnd",
"nodeType": "YulTypedName",
"src": "10115:6:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10183:103:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulIdentifier",
"src": "10197:77:18"
},
"nodeType": "YulFunctionCall",
"src": "10197:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "10197:79:18"
}
]
},
"condition": {
"arguments": [
{
"name": "srcEnd",
"nodeType": "YulIdentifier",
"src": "10170:6:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10178:3:18"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10167:2:18"
},
"nodeType": "YulFunctionCall",
"src": "10167:15:18"
},
"nodeType": "YulIf",
"src": "10164:122:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10371:144:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10386:21:18",
"value": {
"name": "src",
"nodeType": "YulIdentifier",
"src": "10404:3:18"
},
"variables": [
{
"name": "elementPos",
"nodeType": "YulTypedName",
"src": "10390:10:18",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10428:3:18"
},
{
"arguments": [
{
"name": "elementPos",
"nodeType": "YulIdentifier",
"src": "10454:10:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10466:3:18"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "10433:20:18"
},
"nodeType": "YulFunctionCall",
"src": "10433:37:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10421:6:18"
},
"nodeType": "YulFunctionCall",
"src": "10421:50:18"
},
"nodeType": "YulExpressionStatement",
"src": "10421:50:18"
},
{
"nodeType": "YulAssignment",
"src": "10484:21:18",
"value": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10495:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10500:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10491:3:18"
},
"nodeType": "YulFunctionCall",
"src": "10491:14:18"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10484:3:18"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10324:3:18"
},
{
"name": "srcEnd",
"nodeType": "YulIdentifier",
"src": "10329:6:18"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10321:2:18"
},
"nodeType": "YulFunctionCall",
"src": "10321:15:18"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "10337:25:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10339:21:18",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10350:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10355:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10346:3:18"
},
"nodeType": "YulFunctionCall",
"src": "10346:14:18"
},
"variableNames": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10339:3:18"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "10299:21:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10301:17:18",
"value": {
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10312:6:18"
},
"variables": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "10305:3:18",
"type": ""
}
]
}
]
},
"src": "10295:220:18"
}
]
},
"name": "abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9883:6:18",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9891:6:18",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9899:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "9907:5:18",
"type": ""
}
],
"src": "9811:710:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10621:293:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10670:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "10672:77:18"
},
"nodeType": "YulFunctionCall",
"src": "10672:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "10672:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10649:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10657:4:18",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10645:3:18"
},
"nodeType": "YulFunctionCall",
"src": "10645:17:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10664:3:18"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "10641:3:18"
},
"nodeType": "YulFunctionCall",
"src": "10641:27:18"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10634:6:18"
},
"nodeType": "YulFunctionCall",
"src": "10634:35:18"
},
"nodeType": "YulIf",
"src": "10631:122:18"
},
{
"nodeType": "YulVariableDeclaration",
"src": "10762:34:18",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10789:6:18"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "10776:12:18"
},
"nodeType": "YulFunctionCall",
"src": "10776:20:18"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10766:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10805:103:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10881:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10889:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10877:3:18"
},
"nodeType": "YulFunctionCall",
"src": "10877:17:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10896:6:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10904:3:18"
}
],
"functionName": {
"name": "abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10814:62:18"
},
"nodeType": "YulFunctionCall",
"src": "10814:94:18"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "10805:5:18"
}
]
}
]
},
"name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "10599:6:18",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10607:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "10615:5:18",
"type": ""
}
],
"src": "10544:370:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11012:229:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11117:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "11119:16:18"
},
"nodeType": "YulFunctionCall",
"src": "11119:18:18"
},
"nodeType": "YulExpressionStatement",
"src": "11119:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11089:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11097:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "11086:2:18"
},
"nodeType": "YulFunctionCall",
"src": "11086:30:18"
},
"nodeType": "YulIf",
"src": "11083:56:18"
},
{
"nodeType": "YulAssignment",
"src": "11149:25:18",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11161:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11169:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "11157:3:18"
},
"nodeType": "YulFunctionCall",
"src": "11157:17:18"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "11149:4:18"
}
]
},
{
"nodeType": "YulAssignment",
"src": "11211:23:18",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "11223:4:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11229:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11219:3:18"
},
"nodeType": "YulFunctionCall",
"src": "11219:15:18"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "11211:4:18"
}
]
}
]
},
"name": "array_allocation_size_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10996:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "11007:4:18",
"type": ""
}
],
"src": "10920:321:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11375:833:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11385:100:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11477:6:18"
}
],
"functionName": {
"name": "array_allocation_size_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "11410:66:18"
},
"nodeType": "YulFunctionCall",
"src": "11410:74:18"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "11394:15:18"
},
"nodeType": "YulFunctionCall",
"src": "11394:91:18"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "11385:5:18"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "11494:16:18",
"value": {
"name": "array",
"nodeType": "YulIdentifier",
"src": "11505:5:18"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "11498:3:18",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "11527:5:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11534:6:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11520:6:18"
},
"nodeType": "YulFunctionCall",
"src": "11520:21:18"
},
"nodeType": "YulExpressionStatement",
"src": "11520:21:18"
},
{
"nodeType": "YulAssignment",
"src": "11550:23:18",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "11561:5:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11568:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11557:3:18"
},
"nodeType": "YulFunctionCall",
"src": "11557:16:18"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "11550:3:18"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "11583:44:18",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11601:6:18"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11613:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11621:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "11609:3:18"
},
"nodeType": "YulFunctionCall",
"src": "11609:17:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11597:3:18"
},
"nodeType": "YulFunctionCall",
"src": "11597:30:18"
},
"variables": [
{
"name": "srcEnd",
"nodeType": "YulTypedName",
"src": "11587:6:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11655:103:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulIdentifier",
"src": "11669:77:18"
},
"nodeType": "YulFunctionCall",
"src": "11669:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "11669:79:18"
}
]
},
"condition": {
"arguments": [
{
"name": "srcEnd",
"nodeType": "YulIdentifier",
"src": "11642:6:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11650:3:18"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "11639:2:18"
},
"nodeType": "YulFunctionCall",
"src": "11639:15:18"
},
"nodeType": "YulIf",
"src": "11636:122:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11843:359:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11858:36:18",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "11890:3:18"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "11877:12:18"
},
"nodeType": "YulFunctionCall",
"src": "11877:17:18"
},
"variables": [
{
"name": "innerOffset",
"nodeType": "YulTypedName",
"src": "11862:11:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11946:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "11948:77:18"
},
"nodeType": "YulFunctionCall",
"src": "11948:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "11948:79:18"
}
]
},
"condition": {
"arguments": [
{
"name": "innerOffset",
"nodeType": "YulIdentifier",
"src": "11913:11:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11926:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "11910:2:18"
},
"nodeType": "YulFunctionCall",
"src": "11910:35:18"
},
"nodeType": "YulIf",
"src": "11907:122:18"
},
{
"nodeType": "YulVariableDeclaration",
"src": "12042:42:18",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "12064:6:18"
},
{
"name": "innerOffset",
"nodeType": "YulIdentifier",
"src": "12072:11:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12060:3:18"
},
"nodeType": "YulFunctionCall",
"src": "12060:24:18"
},
"variables": [
{
"name": "elementPos",
"nodeType": "YulTypedName",
"src": "12046:10:18",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "12105:3:18"
},
{
"arguments": [
{
"name": "elementPos",
"nodeType": "YulIdentifier",
"src": "12141:10:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12153:3:18"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "12110:30:18"
},
"nodeType": "YulFunctionCall",
"src": "12110:47:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12098:6:18"
},
"nodeType": "YulFunctionCall",
"src": "12098:60:18"
},
"nodeType": "YulExpressionStatement",
"src": "12098:60:18"
},
{
"nodeType": "YulAssignment",
"src": "12171:21:18",
"value": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "12182:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12187:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12178:3:18"
},
"nodeType": "YulFunctionCall",
"src": "12178:14:18"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "12171:3:18"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "11796:3:18"
},
{
"name": "srcEnd",
"nodeType": "YulIdentifier",
"src": "11801:6:18"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "11793:2:18"
},
"nodeType": "YulFunctionCall",
"src": "11793:15:18"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "11809:25:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11811:21:18",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "11822:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11827:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11818:3:18"
},
"nodeType": "YulFunctionCall",
"src": "11818:14:18"
},
"variableNames": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "11811:3:18"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "11771:21:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11773:17:18",
"value": {
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11784:6:18"
},
"variables": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "11777:3:18",
"type": ""
}
]
}
]
},
"src": "11767:435:18"
}
]
},
"name": "abi_decode_available_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11345:6:18",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11353:6:18",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11361:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "11369:5:18",
"type": ""
}
],
"src": "11263:945:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12317:303:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "12366:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "12368:77:18"
},
"nodeType": "YulFunctionCall",
"src": "12368:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "12368:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "12345:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12353:4:18",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12341:3:18"
},
"nodeType": "YulFunctionCall",
"src": "12341:17:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12360:3:18"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "12337:3:18"
},
"nodeType": "YulFunctionCall",
"src": "12337:27:18"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "12330:6:18"
},
"nodeType": "YulFunctionCall",
"src": "12330:35:18"
},
"nodeType": "YulIf",
"src": "12327:122:18"
},
{
"nodeType": "YulVariableDeclaration",
"src": "12458:34:18",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "12485:6:18"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "12472:12:18"
},
"nodeType": "YulFunctionCall",
"src": "12472:20:18"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "12462:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "12501:113:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "12587:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12595:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12583:3:18"
},
"nodeType": "YulFunctionCall",
"src": "12583:17:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12602:6:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12610:3:18"
}
],
"functionName": {
"name": "abi_decode_available_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "12510:72:18"
},
"nodeType": "YulFunctionCall",
"src": "12510:104:18"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "12501:5:18"
}
]
}
]
},
"name": "abi_decode_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "12295:6:18",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12303:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "12311:5:18",
"type": ""
}
],
"src": "12230:390:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12769:771:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "12815:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "12817:77:18"
},
"nodeType": "YulFunctionCall",
"src": "12817:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "12817:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "12790:7:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12799:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12786:3:18"
},
"nodeType": "YulFunctionCall",
"src": "12786:23:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12811:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "12782:3:18"
},
"nodeType": "YulFunctionCall",
"src": "12782:32:18"
},
"nodeType": "YulIf",
"src": "12779:119:18"
},
{
"nodeType": "YulBlock",
"src": "12908:302:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "12923:45:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12954:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12965:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12950:3:18"
},
"nodeType": "YulFunctionCall",
"src": "12950:17:18"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "12937:12:18"
},
"nodeType": "YulFunctionCall",
"src": "12937:31:18"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "12927:6:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "13015:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "13017:77:18"
},
"nodeType": "YulFunctionCall",
"src": "13017:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "13017:79:18"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "12987:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12995:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "12984:2:18"
},
"nodeType": "YulFunctionCall",
"src": "12984:30:18"
},
"nodeType": "YulIf",
"src": "12981:117:18"
},
{
"nodeType": "YulAssignment",
"src": "13112:88:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13172:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "13183:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13168:3:18"
},
"nodeType": "YulFunctionCall",
"src": "13168:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "13192:7:18"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "13122:45:18"
},
"nodeType": "YulFunctionCall",
"src": "13122:78:18"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13112:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "13220:313:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "13235:46:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13266:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13277:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13262:3:18"
},
"nodeType": "YulFunctionCall",
"src": "13262:18:18"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "13249:12:18"
},
"nodeType": "YulFunctionCall",
"src": "13249:32:18"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "13239:6:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "13328:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "13330:77:18"
},
"nodeType": "YulFunctionCall",
"src": "13330:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "13330:79:18"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "13300:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13308:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "13297:2:18"
},
"nodeType": "YulFunctionCall",
"src": "13297:30:18"
},
"nodeType": "YulIf",
"src": "13294:117:18"
},
{
"nodeType": "YulAssignment",
"src": "13425:98:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13495:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "13506:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13491:3:18"
},
"nodeType": "YulFunctionCall",
"src": "13491:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "13515:7:18"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "13435:55:18"
},
"nodeType": "YulFunctionCall",
"src": "13435:88:18"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "13425:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptrt_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12731:9:18",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "12742:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12754:6:18",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "12762:6:18",
"type": ""
}
],
"src": "12626:914:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13612:263:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "13658:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "13660:77:18"
},
"nodeType": "YulFunctionCall",
"src": "13660:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "13660:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "13633:7:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13642:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13629:3:18"
},
"nodeType": "YulFunctionCall",
"src": "13629:23:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13654:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "13625:3:18"
},
"nodeType": "YulFunctionCall",
"src": "13625:32:18"
},
"nodeType": "YulIf",
"src": "13622:119:18"
},
{
"nodeType": "YulBlock",
"src": "13751:117:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "13766:15:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "13780:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "13770:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "13795:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13830:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "13841:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13826:3:18"
},
"nodeType": "YulFunctionCall",
"src": "13826:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "13850:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "13805:20:18"
},
"nodeType": "YulFunctionCall",
"src": "13805:53:18"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13795:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13582:9:18",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "13593:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13605:6:18",
"type": ""
}
],
"src": "13546:329:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13913:28:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13923:12:18",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "13930:5:18"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "13923:3:18"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13899:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "13909:3:18",
"type": ""
}
],
"src": "13881:60:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14007:82:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14017:66:18",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14075:5:18"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "14057:17:18"
},
"nodeType": "YulFunctionCall",
"src": "14057:24:18"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "14048:8:18"
},
"nodeType": "YulFunctionCall",
"src": "14048:34:18"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "14030:17:18"
},
"nodeType": "YulFunctionCall",
"src": "14030:53:18"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "14017:9:18"
}
]
}
]
},
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13987:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "13997:9:18",
"type": ""
}
],
"src": "13947:142:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14155:66:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14165:50:18",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14209:5:18"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulIdentifier",
"src": "14178:30:18"
},
"nodeType": "YulFunctionCall",
"src": "14178:37:18"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "14165:9:18"
}
]
}
]
},
"name": "convert_t_uint160_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14135:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "14145:9:18",
"type": ""
}
],
"src": "14095:126:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14319:66:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14329:50:18",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14373:5:18"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_address",
"nodeType": "YulIdentifier",
"src": "14342:30:18"
},
"nodeType": "YulFunctionCall",
"src": "14342:37:18"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "14329:9:18"
}
]
}
]
},
"name": "convert_t_contract$_IOperatorFilterRegistry_$1818_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14299:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "14309:9:18",
"type": ""
}
],
"src": "14227:158:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14488:98:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14505:3:18"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14573:5:18"
}
],
"functionName": {
"name": "convert_t_contract$_IOperatorFilterRegistry_$1818_to_t_address",
"nodeType": "YulIdentifier",
"src": "14510:62:18"
},
"nodeType": "YulFunctionCall",
"src": "14510:69:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14498:6:18"
},
"nodeType": "YulFunctionCall",
"src": "14498:82:18"
},
"nodeType": "YulExpressionStatement",
"src": "14498:82:18"
}
]
},
"name": "abi_encode_t_contract$_IOperatorFilterRegistry_$1818_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14476:5:18",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14483:3:18",
"type": ""
}
],
"src": "14391:195:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14722:156:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14732:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14744:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14755:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14740:3:18"
},
"nodeType": "YulFunctionCall",
"src": "14740:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14732:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "14844:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14857:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14868:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14853:3:18"
},
"nodeType": "YulFunctionCall",
"src": "14853:17:18"
}
],
"functionName": {
"name": "abi_encode_t_contract$_IOperatorFilterRegistry_$1818_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "14768:75:18"
},
"nodeType": "YulFunctionCall",
"src": "14768:103:18"
},
"nodeType": "YulExpressionStatement",
"src": "14768:103:18"
}
]
},
"name": "abi_encode_tuple_t_contract$_IOperatorFilterRegistry_$1818__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14694:9:18",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "14706:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14717:4:18",
"type": ""
}
],
"src": "14592:286:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14977:561:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "15023:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "15025:77:18"
},
"nodeType": "YulFunctionCall",
"src": "15025:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "15025:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "14998:7:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15007:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14994:3:18"
},
"nodeType": "YulFunctionCall",
"src": "14994:23:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15019:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "14990:3:18"
},
"nodeType": "YulFunctionCall",
"src": "14990:32:18"
},
"nodeType": "YulIf",
"src": "14987:119:18"
},
{
"nodeType": "YulBlock",
"src": "15116:117:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "15131:15:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "15145:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "15135:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "15160:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15195:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "15206:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15191:3:18"
},
"nodeType": "YulFunctionCall",
"src": "15191:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "15215:7:18"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "15170:20:18"
},
"nodeType": "YulFunctionCall",
"src": "15170:53:18"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15160:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "15243:288:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "15258:46:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15289:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15300:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15285:3:18"
},
"nodeType": "YulFunctionCall",
"src": "15285:18:18"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "15272:12:18"
},
"nodeType": "YulFunctionCall",
"src": "15272:32:18"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "15262:6:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "15351:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "15353:77:18"
},
"nodeType": "YulFunctionCall",
"src": "15353:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "15353:79:18"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "15323:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15331:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "15320:2:18"
},
"nodeType": "YulFunctionCall",
"src": "15320:30:18"
},
"nodeType": "YulIf",
"src": "15317:117:18"
},
{
"nodeType": "YulAssignment",
"src": "15448:73:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15493:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "15504:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15489:3:18"
},
"nodeType": "YulFunctionCall",
"src": "15489:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "15513:7:18"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "15458:30:18"
},
"nodeType": "YulFunctionCall",
"src": "15458:63:18"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "15448:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14939:9:18",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "14950:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "14962:6:18",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "14970:6:18",
"type": ""
}
],
"src": "14884:654:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15705:1076:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "15752:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "15754:77:18"
},
"nodeType": "YulFunctionCall",
"src": "15754:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "15754:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "15726:7:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15735:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15722:3:18"
},
"nodeType": "YulFunctionCall",
"src": "15722:23:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15747:3:18",
"type": "",
"value": "192"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "15718:3:18"
},
"nodeType": "YulFunctionCall",
"src": "15718:33:18"
},
"nodeType": "YulIf",
"src": "15715:120:18"
},
{
"nodeType": "YulBlock",
"src": "15845:117:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "15860:15:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "15874:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "15864:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "15889:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15924:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "15935:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15920:3:18"
},
"nodeType": "YulFunctionCall",
"src": "15920:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "15944:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "15899:20:18"
},
"nodeType": "YulFunctionCall",
"src": "15899:53:18"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15889:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "15972:118:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "15987:16:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "16001:2:18",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "15991:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "16017:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16052:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "16063:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16048:3:18"
},
"nodeType": "YulFunctionCall",
"src": "16048:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "16072:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "16027:20:18"
},
"nodeType": "YulFunctionCall",
"src": "16027:53:18"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "16017:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "16100:118:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "16115:16:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "16129:2:18",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "16119:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "16145:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16180:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "16191:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16176:3:18"
},
"nodeType": "YulFunctionCall",
"src": "16176:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "16200:7:18"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "16155:20:18"
},
"nodeType": "YulFunctionCall",
"src": "16155:53:18"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "16145:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "16228:288:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "16243:46:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16274:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16285:2:18",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16270:3:18"
},
"nodeType": "YulFunctionCall",
"src": "16270:18:18"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "16257:12:18"
},
"nodeType": "YulFunctionCall",
"src": "16257:32:18"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "16247:6:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "16336:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "16338:77:18"
},
"nodeType": "YulFunctionCall",
"src": "16338:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "16338:79:18"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "16308:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16316:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "16305:2:18"
},
"nodeType": "YulFunctionCall",
"src": "16305:30:18"
},
"nodeType": "YulIf",
"src": "16302:117:18"
},
{
"nodeType": "YulAssignment",
"src": "16433:73:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16478:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "16489:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16474:3:18"
},
"nodeType": "YulFunctionCall",
"src": "16474:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "16498:7:18"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "16443:30:18"
},
"nodeType": "YulFunctionCall",
"src": "16443:63:18"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "16433:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "16526:119:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "16541:17:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "16555:3:18",
"type": "",
"value": "128"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "16545:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "16572:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16607:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "16618:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16603:3:18"
},
"nodeType": "YulFunctionCall",
"src": "16603:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "16627:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "16582:20:18"
},
"nodeType": "YulFunctionCall",
"src": "16582:53:18"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "16572:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "16655:119:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "16670:17:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "16684:3:18",
"type": "",
"value": "160"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "16674:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "16701:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16736:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "16747:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16732:3:18"
},
"nodeType": "YulFunctionCall",
"src": "16732:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "16756:7:18"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "16711:20:18"
},
"nodeType": "YulFunctionCall",
"src": "16711:53:18"
},
"variableNames": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "16701:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_string_memory_ptrt_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15635:9:18",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "15646:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15658:6:18",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "15666:6:18",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "15674:6:18",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "15682:6:18",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "15690:6:18",
"type": ""
},
{
"name": "value5",
"nodeType": "YulTypedName",
"src": "15698:6:18",
"type": ""
}
],
"src": "15544:1237:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16869:229:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "16974:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "16976:16:18"
},
"nodeType": "YulFunctionCall",
"src": "16976:18:18"
},
"nodeType": "YulExpressionStatement",
"src": "16976:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16946:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16954:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "16943:2:18"
},
"nodeType": "YulFunctionCall",
"src": "16943:30:18"
},
"nodeType": "YulIf",
"src": "16940:56:18"
},
{
"nodeType": "YulAssignment",
"src": "17006:25:18",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17018:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17026:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "17014:3:18"
},
"nodeType": "YulFunctionCall",
"src": "17014:17:18"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "17006:4:18"
}
]
},
{
"nodeType": "YulAssignment",
"src": "17068:23:18",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "17080:4:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17086:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17076:3:18"
},
"nodeType": "YulFunctionCall",
"src": "17076:15:18"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "17068:4:18"
}
]
}
]
},
"name": "array_allocation_size_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "16853:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "16864:4:18",
"type": ""
}
],
"src": "16787:311:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17223:608:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17233:90:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17315:6:18"
}
],
"functionName": {
"name": "array_allocation_size_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "17258:56:18"
},
"nodeType": "YulFunctionCall",
"src": "17258:64:18"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "17242:15:18"
},
"nodeType": "YulFunctionCall",
"src": "17242:81:18"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "17233:5:18"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "17332:16:18",
"value": {
"name": "array",
"nodeType": "YulIdentifier",
"src": "17343:5:18"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "17336:3:18",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "17365:5:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17372:6:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17358:6:18"
},
"nodeType": "YulFunctionCall",
"src": "17358:21:18"
},
"nodeType": "YulExpressionStatement",
"src": "17358:21:18"
},
{
"nodeType": "YulAssignment",
"src": "17388:23:18",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "17399:5:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17406:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17395:3:18"
},
"nodeType": "YulFunctionCall",
"src": "17395:16:18"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "17388:3:18"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "17421:44:18",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "17439:6:18"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17451:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17459:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "17447:3:18"
},
"nodeType": "YulFunctionCall",
"src": "17447:17:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17435:3:18"
},
"nodeType": "YulFunctionCall",
"src": "17435:30:18"
},
"variables": [
{
"name": "srcEnd",
"nodeType": "YulTypedName",
"src": "17425:6:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "17493:103:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulIdentifier",
"src": "17507:77:18"
},
"nodeType": "YulFunctionCall",
"src": "17507:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "17507:79:18"
}
]
},
"condition": {
"arguments": [
{
"name": "srcEnd",
"nodeType": "YulIdentifier",
"src": "17480:6:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17488:3:18"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "17477:2:18"
},
"nodeType": "YulFunctionCall",
"src": "17477:15:18"
},
"nodeType": "YulIf",
"src": "17474:122:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17681:144:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "17696:21:18",
"value": {
"name": "src",
"nodeType": "YulIdentifier",
"src": "17714:3:18"
},
"variables": [
{
"name": "elementPos",
"nodeType": "YulTypedName",
"src": "17700:10:18",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "17738:3:18"
},
{
"arguments": [
{
"name": "elementPos",
"nodeType": "YulIdentifier",
"src": "17764:10:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17776:3:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "17743:20:18"
},
"nodeType": "YulFunctionCall",
"src": "17743:37:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17731:6:18"
},
"nodeType": "YulFunctionCall",
"src": "17731:50:18"
},
"nodeType": "YulExpressionStatement",
"src": "17731:50:18"
},
{
"nodeType": "YulAssignment",
"src": "17794:21:18",
"value": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "17805:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17810:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17801:3:18"
},
"nodeType": "YulFunctionCall",
"src": "17801:14:18"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "17794:3:18"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "17634:3:18"
},
{
"name": "srcEnd",
"nodeType": "YulIdentifier",
"src": "17639:6:18"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "17631:2:18"
},
"nodeType": "YulFunctionCall",
"src": "17631:15:18"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "17647:25:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17649:21:18",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "17660:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17665:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17656:3:18"
},
"nodeType": "YulFunctionCall",
"src": "17656:14:18"
},
"variableNames": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "17649:3:18"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "17609:21:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "17611:17:18",
"value": {
"name": "offset",
"nodeType": "YulIdentifier",
"src": "17622:6:18"
},
"variables": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "17615:3:18",
"type": ""
}
]
}
]
},
"src": "17605:220:18"
}
]
},
"name": "abi_decode_available_length_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "17193:6:18",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "17201:6:18",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17209:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "17217:5:18",
"type": ""
}
],
"src": "17121:710:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17931:293:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "17980:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "17982:77:18"
},
"nodeType": "YulFunctionCall",
"src": "17982:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "17982:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "17959:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17967:4:18",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17955:3:18"
},
"nodeType": "YulFunctionCall",
"src": "17955:17:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17974:3:18"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "17951:3:18"
},
"nodeType": "YulFunctionCall",
"src": "17951:27:18"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "17944:6:18"
},
"nodeType": "YulFunctionCall",
"src": "17944:35:18"
},
"nodeType": "YulIf",
"src": "17941:122:18"
},
{
"nodeType": "YulVariableDeclaration",
"src": "18072:34:18",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "18099:6:18"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "18086:12:18"
},
"nodeType": "YulFunctionCall",
"src": "18086:20:18"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "18076:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "18115:103:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "18191:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18199:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18187:3:18"
},
"nodeType": "YulFunctionCall",
"src": "18187:17:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "18206:6:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "18214:3:18"
}
],
"functionName": {
"name": "abi_decode_available_length_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "18124:62:18"
},
"nodeType": "YulFunctionCall",
"src": "18124:94:18"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "18115:5:18"
}
]
}
]
},
"name": "abi_decode_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "17909:6:18",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17917:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "17925:5:18",
"type": ""
}
],
"src": "17854:370:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18466:1471:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "18513:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "18515:77:18"
},
"nodeType": "YulFunctionCall",
"src": "18515:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "18515:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "18487:7:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18496:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18483:3:18"
},
"nodeType": "YulFunctionCall",
"src": "18483:23:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18508:3:18",
"type": "",
"value": "192"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "18479:3:18"
},
"nodeType": "YulFunctionCall",
"src": "18479:33:18"
},
"nodeType": "YulIf",
"src": "18476:120:18"
},
{
"nodeType": "YulBlock",
"src": "18606:302:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "18621:45:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18652:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18663:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18648:3:18"
},
"nodeType": "YulFunctionCall",
"src": "18648:17:18"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "18635:12:18"
},
"nodeType": "YulFunctionCall",
"src": "18635:31:18"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "18625:6:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "18713:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "18715:77:18"
},
"nodeType": "YulFunctionCall",
"src": "18715:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "18715:79:18"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "18685:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18693:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "18682:2:18"
},
"nodeType": "YulFunctionCall",
"src": "18682:30:18"
},
"nodeType": "YulIf",
"src": "18679:117:18"
},
{
"nodeType": "YulAssignment",
"src": "18810:88:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18870:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "18881:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18866:3:18"
},
"nodeType": "YulFunctionCall",
"src": "18866:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "18890:7:18"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "18820:45:18"
},
"nodeType": "YulFunctionCall",
"src": "18820:78:18"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18810:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "18918:118:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "18933:16:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "18947:2:18",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "18937:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "18963:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18998:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "19009:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18994:3:18"
},
"nodeType": "YulFunctionCall",
"src": "18994:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "19018:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "18973:20:18"
},
"nodeType": "YulFunctionCall",
"src": "18973:53:18"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "18963:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "19046:303:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "19061:46:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19092:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19103:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19088:3:18"
},
"nodeType": "YulFunctionCall",
"src": "19088:18:18"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "19075:12:18"
},
"nodeType": "YulFunctionCall",
"src": "19075:32:18"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "19065:6:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "19154:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "19156:77:18"
},
"nodeType": "YulFunctionCall",
"src": "19156:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "19156:79:18"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "19126:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19134:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "19123:2:18"
},
"nodeType": "YulFunctionCall",
"src": "19123:30:18"
},
"nodeType": "YulIf",
"src": "19120:117:18"
},
{
"nodeType": "YulAssignment",
"src": "19251:88:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19311:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "19322:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19307:3:18"
},
"nodeType": "YulFunctionCall",
"src": "19307:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "19331:7:18"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "19261:45:18"
},
"nodeType": "YulFunctionCall",
"src": "19261:78:18"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "19251:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "19359:313:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "19374:46:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19405:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19416:2:18",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19401:3:18"
},
"nodeType": "YulFunctionCall",
"src": "19401:18:18"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "19388:12:18"
},
"nodeType": "YulFunctionCall",
"src": "19388:32:18"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "19378:6:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "19467:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "19469:77:18"
},
"nodeType": "YulFunctionCall",
"src": "19469:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "19469:79:18"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "19439:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19447:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "19436:2:18"
},
"nodeType": "YulFunctionCall",
"src": "19436:30:18"
},
"nodeType": "YulIf",
"src": "19433:117:18"
},
{
"nodeType": "YulAssignment",
"src": "19564:98:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19634:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "19645:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19630:3:18"
},
"nodeType": "YulFunctionCall",
"src": "19630:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "19654:7:18"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "19574:55:18"
},
"nodeType": "YulFunctionCall",
"src": "19574:88:18"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "19564:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "19682:119:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "19697:17:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "19711:3:18",
"type": "",
"value": "128"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "19701:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "19728:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19763:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "19774:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19759:3:18"
},
"nodeType": "YulFunctionCall",
"src": "19759:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "19783:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "19738:20:18"
},
"nodeType": "YulFunctionCall",
"src": "19738:53:18"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "19728:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "19811:119:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "19826:17:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "19840:3:18",
"type": "",
"value": "160"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "19830:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "19857:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19892:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "19903:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19888:3:18"
},
"nodeType": "YulFunctionCall",
"src": "19888:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "19912:7:18"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "19867:20:18"
},
"nodeType": "YulFunctionCall",
"src": "19867:53:18"
},
"variableNames": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "19857:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_addresst_array$_t_uint256_$dyn_memory_ptrt_array$_t_string_memory_ptr_$dyn_memory_ptrt_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18396:9:18",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "18407:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18419:6:18",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "18427:6:18",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "18435:6:18",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "18443:6:18",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "18451:6:18",
"type": ""
},
{
"name": "value5",
"nodeType": "YulTypedName",
"src": "18459:6:18",
"type": ""
}
],
"src": "18230:1707:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19983:76:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "20037:16:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20046:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20049:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "20039:6:18"
},
"nodeType": "YulFunctionCall",
"src": "20039:12:18"
},
"nodeType": "YulExpressionStatement",
"src": "20039:12:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20006:5:18"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20028:5:18"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "20013:14:18"
},
"nodeType": "YulFunctionCall",
"src": "20013:21:18"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "20003:2:18"
},
"nodeType": "YulFunctionCall",
"src": "20003:32:18"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "19996:6:18"
},
"nodeType": "YulFunctionCall",
"src": "19996:40:18"
},
"nodeType": "YulIf",
"src": "19993:60:18"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "19976:5:18",
"type": ""
}
],
"src": "19943:116:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20114:84:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20124:29:18",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "20146:6:18"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "20133:12:18"
},
"nodeType": "YulFunctionCall",
"src": "20133:20:18"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20124:5:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20186:5:18"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "20162:23:18"
},
"nodeType": "YulFunctionCall",
"src": "20162:30:18"
},
"nodeType": "YulExpressionStatement",
"src": "20162:30:18"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "20092:6:18",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "20100:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20108:5:18",
"type": ""
}
],
"src": "20065:133:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20284:388:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "20330:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "20332:77:18"
},
"nodeType": "YulFunctionCall",
"src": "20332:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "20332:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "20305:7:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20314:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20301:3:18"
},
"nodeType": "YulFunctionCall",
"src": "20301:23:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20326:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "20297:3:18"
},
"nodeType": "YulFunctionCall",
"src": "20297:32:18"
},
"nodeType": "YulIf",
"src": "20294:119:18"
},
{
"nodeType": "YulBlock",
"src": "20423:117:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "20438:15:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "20452:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "20442:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "20467:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20502:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "20513:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20498:3:18"
},
"nodeType": "YulFunctionCall",
"src": "20498:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "20522:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "20477:20:18"
},
"nodeType": "YulFunctionCall",
"src": "20477:53:18"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "20467:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "20550:115:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "20565:16:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "20579:2:18",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "20569:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "20595:60:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20627:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "20638:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20623:3:18"
},
"nodeType": "YulFunctionCall",
"src": "20623:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "20647:7:18"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "20605:17:18"
},
"nodeType": "YulFunctionCall",
"src": "20605:50:18"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "20595:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20246:9:18",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "20257:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "20269:6:18",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "20277:6:18",
"type": ""
}
],
"src": "20204:468:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20744:241:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "20849:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "20851:16:18"
},
"nodeType": "YulFunctionCall",
"src": "20851:18:18"
},
"nodeType": "YulExpressionStatement",
"src": "20851:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20821:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20829:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "20818:2:18"
},
"nodeType": "YulFunctionCall",
"src": "20818:30:18"
},
"nodeType": "YulIf",
"src": "20815:56:18"
},
{
"nodeType": "YulAssignment",
"src": "20881:37:18",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20911:6:18"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "20889:21:18"
},
"nodeType": "YulFunctionCall",
"src": "20889:29:18"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "20881:4:18"
}
]
},
{
"nodeType": "YulAssignment",
"src": "20955:23:18",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "20967:4:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20973:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20963:3:18"
},
"nodeType": "YulFunctionCall",
"src": "20963:15:18"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "20955:4:18"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20728:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "20739:4:18",
"type": ""
}
],
"src": "20678:307:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21074:327:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21084:74:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21150:6:18"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "21109:40:18"
},
"nodeType": "YulFunctionCall",
"src": "21109:48:18"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "21093:15:18"
},
"nodeType": "YulFunctionCall",
"src": "21093:65:18"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "21084:5:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "21174:5:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21181:6:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21167:6:18"
},
"nodeType": "YulFunctionCall",
"src": "21167:21:18"
},
"nodeType": "YulExpressionStatement",
"src": "21167:21:18"
},
{
"nodeType": "YulVariableDeclaration",
"src": "21197:27:18",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "21212:5:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21219:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21208:3:18"
},
"nodeType": "YulFunctionCall",
"src": "21208:16:18"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "21201:3:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "21262:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "21264:77:18"
},
"nodeType": "YulFunctionCall",
"src": "21264:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "21264:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "21243:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21248:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21239:3:18"
},
"nodeType": "YulFunctionCall",
"src": "21239:16:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "21257:3:18"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "21236:2:18"
},
"nodeType": "YulFunctionCall",
"src": "21236:25:18"
},
"nodeType": "YulIf",
"src": "21233:112:18"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "21378:3:18"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "21383:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21388:6:18"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "21354:23:18"
},
"nodeType": "YulFunctionCall",
"src": "21354:41:18"
},
"nodeType": "YulExpressionStatement",
"src": "21354:41:18"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "21047:3:18",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "21052:6:18",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "21060:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "21068:5:18",
"type": ""
}
],
"src": "20991:410:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21481:277:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "21530:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "21532:77:18"
},
"nodeType": "YulFunctionCall",
"src": "21532:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "21532:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "21509:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21517:4:18",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21505:3:18"
},
"nodeType": "YulFunctionCall",
"src": "21505:17:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "21524:3:18"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "21501:3:18"
},
"nodeType": "YulFunctionCall",
"src": "21501:27:18"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21494:6:18"
},
"nodeType": "YulFunctionCall",
"src": "21494:35:18"
},
"nodeType": "YulIf",
"src": "21491:122:18"
},
{
"nodeType": "YulVariableDeclaration",
"src": "21622:34:18",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "21649:6:18"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "21636:12:18"
},
"nodeType": "YulFunctionCall",
"src": "21636:20:18"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "21626:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "21665:87:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "21725:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21733:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21721:3:18"
},
"nodeType": "YulFunctionCall",
"src": "21721:17:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21740:6:18"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "21748:3:18"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "21674:46:18"
},
"nodeType": "YulFunctionCall",
"src": "21674:78:18"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "21665:5:18"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "21459:6:18",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "21467:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "21475:5:18",
"type": ""
}
],
"src": "21420:338:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21890:817:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "21937:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "21939:77:18"
},
"nodeType": "YulFunctionCall",
"src": "21939:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "21939:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "21911:7:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21920:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21907:3:18"
},
"nodeType": "YulFunctionCall",
"src": "21907:23:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21932:3:18",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "21903:3:18"
},
"nodeType": "YulFunctionCall",
"src": "21903:33:18"
},
"nodeType": "YulIf",
"src": "21900:120:18"
},
{
"nodeType": "YulBlock",
"src": "22030:117:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "22045:15:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "22059:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "22049:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "22074:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22109:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "22120:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22105:3:18"
},
"nodeType": "YulFunctionCall",
"src": "22105:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "22129:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "22084:20:18"
},
"nodeType": "YulFunctionCall",
"src": "22084:53:18"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "22074:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "22157:118:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "22172:16:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "22186:2:18",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "22176:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "22202:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22237:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "22248:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22233:3:18"
},
"nodeType": "YulFunctionCall",
"src": "22233:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "22257:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "22212:20:18"
},
"nodeType": "YulFunctionCall",
"src": "22212:53:18"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "22202:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "22285:118:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "22300:16:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "22314:2:18",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "22304:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "22330:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22365:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "22376:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22361:3:18"
},
"nodeType": "YulFunctionCall",
"src": "22361:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "22385:7:18"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "22340:20:18"
},
"nodeType": "YulFunctionCall",
"src": "22340:53:18"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "22330:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "22413:287:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "22428:46:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22459:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22470:2:18",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22455:3:18"
},
"nodeType": "YulFunctionCall",
"src": "22455:18:18"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "22442:12:18"
},
"nodeType": "YulFunctionCall",
"src": "22442:32:18"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "22432:6:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "22521:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "22523:77:18"
},
"nodeType": "YulFunctionCall",
"src": "22523:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "22523:79:18"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "22493:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22501:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "22490:2:18"
},
"nodeType": "YulFunctionCall",
"src": "22490:30:18"
},
"nodeType": "YulIf",
"src": "22487:117:18"
},
{
"nodeType": "YulAssignment",
"src": "22618:72:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22662:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "22673:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22658:3:18"
},
"nodeType": "YulFunctionCall",
"src": "22658:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "22682:7:18"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "22628:29:18"
},
"nodeType": "YulFunctionCall",
"src": "22628:62:18"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "22618:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21836:9:18",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "21847:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "21859:6:18",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "21867:6:18",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "21875:6:18",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "21883:6:18",
"type": ""
}
],
"src": "21764:943:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22813:519:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "22859:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "22861:77:18"
},
"nodeType": "YulFunctionCall",
"src": "22861:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "22861:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "22834:7:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22843:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22830:3:18"
},
"nodeType": "YulFunctionCall",
"src": "22830:23:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22855:2:18",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "22826:3:18"
},
"nodeType": "YulFunctionCall",
"src": "22826:32:18"
},
"nodeType": "YulIf",
"src": "22823:119:18"
},
{
"nodeType": "YulBlock",
"src": "22952:117:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "22967:15:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "22981:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "22971:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "22996:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23031:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "23042:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23027:3:18"
},
"nodeType": "YulFunctionCall",
"src": "23027:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "23051:7:18"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "23006:20:18"
},
"nodeType": "YulFunctionCall",
"src": "23006:53:18"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "22996:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "23079:118:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "23094:16:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "23108:2:18",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "23098:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "23124:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23159:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "23170:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23155:3:18"
},
"nodeType": "YulFunctionCall",
"src": "23155:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "23179:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "23134:20:18"
},
"nodeType": "YulFunctionCall",
"src": "23134:53:18"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "23124:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "23207:118:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "23222:16:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "23236:2:18",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "23226:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "23252:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23287:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "23298:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23283:3:18"
},
"nodeType": "YulFunctionCall",
"src": "23283:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "23307:7:18"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "23262:20:18"
},
"nodeType": "YulFunctionCall",
"src": "23262:53:18"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "23252:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22767:9:18",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "22778:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "22790:6:18",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "22798:6:18",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "22806:6:18",
"type": ""
}
],
"src": "22713:619:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23421:391:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "23467:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "23469:77:18"
},
"nodeType": "YulFunctionCall",
"src": "23469:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "23469:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "23442:7:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23451:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23438:3:18"
},
"nodeType": "YulFunctionCall",
"src": "23438:23:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23463:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "23434:3:18"
},
"nodeType": "YulFunctionCall",
"src": "23434:32:18"
},
"nodeType": "YulIf",
"src": "23431:119:18"
},
{
"nodeType": "YulBlock",
"src": "23560:117:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "23575:15:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "23589:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "23579:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "23604:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23639:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "23650:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23635:3:18"
},
"nodeType": "YulFunctionCall",
"src": "23635:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "23659:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "23614:20:18"
},
"nodeType": "YulFunctionCall",
"src": "23614:53:18"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "23604:6:18"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "23687:118:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "23702:16:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "23716:2:18",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "23706:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "23732:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23767:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "23778:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23763:3:18"
},
"nodeType": "YulFunctionCall",
"src": "23763:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "23787:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "23742:20:18"
},
"nodeType": "YulFunctionCall",
"src": "23742:53:18"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "23732:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23383:9:18",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "23394:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "23406:6:18",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "23414:6:18",
"type": ""
}
],
"src": "23338:474:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23846:152:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23863:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23866:77:18",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23856:6:18"
},
"nodeType": "YulFunctionCall",
"src": "23856:88:18"
},
"nodeType": "YulExpressionStatement",
"src": "23856:88:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23960:1:18",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23963:4:18",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23953:6:18"
},
"nodeType": "YulFunctionCall",
"src": "23953:15:18"
},
"nodeType": "YulExpressionStatement",
"src": "23953:15:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23984:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23987:4:18",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "23977:6:18"
},
"nodeType": "YulFunctionCall",
"src": "23977:15:18"
},
"nodeType": "YulExpressionStatement",
"src": "23977:15:18"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "23818:180:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24055:269:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24065:22:18",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "24079:4:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24085:1:18",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "24075:3:18"
},
"nodeType": "YulFunctionCall",
"src": "24075:12:18"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24065:6:18"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "24096:38:18",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "24126:4:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24132:1:18",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "24122:3:18"
},
"nodeType": "YulFunctionCall",
"src": "24122:12:18"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "24100:18:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "24173:51:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24187:27:18",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24201:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24209:4:18",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "24197:3:18"
},
"nodeType": "YulFunctionCall",
"src": "24197:17:18"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24187:6:18"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "24153:18:18"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "24146:6:18"
},
"nodeType": "YulFunctionCall",
"src": "24146:26:18"
},
"nodeType": "YulIf",
"src": "24143:81:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24276:42:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "24290:16:18"
},
"nodeType": "YulFunctionCall",
"src": "24290:18:18"
},
"nodeType": "YulExpressionStatement",
"src": "24290:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "24240:18:18"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24263:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24271:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "24260:2:18"
},
"nodeType": "YulFunctionCall",
"src": "24260:14:18"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "24237:2:18"
},
"nodeType": "YulFunctionCall",
"src": "24237:38:18"
},
"nodeType": "YulIf",
"src": "24234:84:18"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "24039:4:18",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "24048:6:18",
"type": ""
}
],
"src": "24004:320:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24358:152:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24375:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24378:77:18",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24368:6:18"
},
"nodeType": "YulFunctionCall",
"src": "24368:88:18"
},
"nodeType": "YulExpressionStatement",
"src": "24368:88:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24472:1:18",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24475:4:18",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24465:6:18"
},
"nodeType": "YulFunctionCall",
"src": "24465:15:18"
},
"nodeType": "YulExpressionStatement",
"src": "24465:15:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24496:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24499:4:18",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24489:6:18"
},
"nodeType": "YulFunctionCall",
"src": "24489:15:18"
},
"nodeType": "YulExpressionStatement",
"src": "24489:15:18"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "24330:180:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24564:300:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24574:25:18",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "24597:1:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "24579:17:18"
},
"nodeType": "YulFunctionCall",
"src": "24579:20:18"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "24574:1:18"
}
]
},
{
"nodeType": "YulAssignment",
"src": "24608:25:18",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "24631:1:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "24613:17:18"
},
"nodeType": "YulFunctionCall",
"src": "24613:20:18"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "24608:1:18"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "24806:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "24808:16:18"
},
"nodeType": "YulFunctionCall",
"src": "24808:18:18"
},
"nodeType": "YulExpressionStatement",
"src": "24808:18:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "24718:1:18"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "24711:6:18"
},
"nodeType": "YulFunctionCall",
"src": "24711:9:18"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "24704:6:18"
},
"nodeType": "YulFunctionCall",
"src": "24704:17:18"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "24726:1:18"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24733:66:18",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "24801:1:18"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "24729:3:18"
},
"nodeType": "YulFunctionCall",
"src": "24729:74:18"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "24723:2:18"
},
"nodeType": "YulFunctionCall",
"src": "24723:81:18"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "24700:3:18"
},
"nodeType": "YulFunctionCall",
"src": "24700:105:18"
},
"nodeType": "YulIf",
"src": "24697:131:18"
},
{
"nodeType": "YulAssignment",
"src": "24838:20:18",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "24853:1:18"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "24856:1:18"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "24849:3:18"
},
"nodeType": "YulFunctionCall",
"src": "24849:9:18"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "24838:7:18"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "24547:1:18",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "24550:1:18",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "24556:7:18",
"type": ""
}
],
"src": "24516:348:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24898:152:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24915:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24918:77:18",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24908:6:18"
},
"nodeType": "YulFunctionCall",
"src": "24908:88:18"
},
"nodeType": "YulExpressionStatement",
"src": "24908:88:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25012:1:18",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25015:4:18",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25005:6:18"
},
"nodeType": "YulFunctionCall",
"src": "25005:15:18"
},
"nodeType": "YulExpressionStatement",
"src": "25005:15:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25036:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25039:4:18",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "25029:6:18"
},
"nodeType": "YulFunctionCall",
"src": "25029:15:18"
},
"nodeType": "YulExpressionStatement",
"src": "25029:15:18"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "24870:180:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25098:143:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25108:25:18",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "25131:1:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "25113:17:18"
},
"nodeType": "YulFunctionCall",
"src": "25113:20:18"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "25108:1:18"
}
]
},
{
"nodeType": "YulAssignment",
"src": "25142:25:18",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25165:1:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "25147:17:18"
},
"nodeType": "YulFunctionCall",
"src": "25147:20:18"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25142:1:18"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "25189:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "25191:16:18"
},
"nodeType": "YulFunctionCall",
"src": "25191:18:18"
},
"nodeType": "YulExpressionStatement",
"src": "25191:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25186:1:18"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "25179:6:18"
},
"nodeType": "YulFunctionCall",
"src": "25179:9:18"
},
"nodeType": "YulIf",
"src": "25176:35:18"
},
{
"nodeType": "YulAssignment",
"src": "25221:14:18",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "25230:1:18"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25233:1:18"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "25226:3:18"
},
"nodeType": "YulFunctionCall",
"src": "25226:9:18"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "25221:1:18"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "25087:1:18",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "25090:1:18",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "25096:1:18",
"type": ""
}
],
"src": "25056:185:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25353:75:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25375:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25383:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25371:3:18"
},
"nodeType": "YulFunctionCall",
"src": "25371:14:18"
},
{
"hexValue": "455243313135353a20417272617973206c656e677468206d69736d61746368",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25387:33:18",
"type": "",
"value": "ERC1155: Arrays length mismatch"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25364:6:18"
},
"nodeType": "YulFunctionCall",
"src": "25364:57:18"
},
"nodeType": "YulExpressionStatement",
"src": "25364:57:18"
}
]
},
"name": "store_literal_in_memory_32e954493294dea6e4fd5368043015af0154ee8442c75bc6d4bafefd2a37baca",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25345:6:18",
"type": ""
}
],
"src": "25247:181:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25580:220:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25590:74:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25656:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25661:2:18",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25597:58:18"
},
"nodeType": "YulFunctionCall",
"src": "25597:67:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25590:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25762:3:18"
}
],
"functionName": {
"name": "store_literal_in_memory_32e954493294dea6e4fd5368043015af0154ee8442c75bc6d4bafefd2a37baca",
"nodeType": "YulIdentifier",
"src": "25673:88:18"
},
"nodeType": "YulFunctionCall",
"src": "25673:93:18"
},
"nodeType": "YulExpressionStatement",
"src": "25673:93:18"
},
{
"nodeType": "YulAssignment",
"src": "25775:19:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25786:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25791:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25782:3:18"
},
"nodeType": "YulFunctionCall",
"src": "25782:12:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "25775:3:18"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_32e954493294dea6e4fd5368043015af0154ee8442c75bc6d4bafefd2a37baca_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25568:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "25576:3:18",
"type": ""
}
],
"src": "25434:366:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25977:248:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25987:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25999:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26010:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25995:3:18"
},
"nodeType": "YulFunctionCall",
"src": "25995:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25987:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26034:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26045:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26030:3:18"
},
"nodeType": "YulFunctionCall",
"src": "26030:17:18"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26053:4:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26059:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26049:3:18"
},
"nodeType": "YulFunctionCall",
"src": "26049:20:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26023:6:18"
},
"nodeType": "YulFunctionCall",
"src": "26023:47:18"
},
"nodeType": "YulExpressionStatement",
"src": "26023:47:18"
},
{
"nodeType": "YulAssignment",
"src": "26079:139:18",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26213:4:18"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_32e954493294dea6e4fd5368043015af0154ee8442c75bc6d4bafefd2a37baca_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26087:124:18"
},
"nodeType": "YulFunctionCall",
"src": "26087:131:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26079:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_32e954493294dea6e4fd5368043015af0154ee8442c75bc6d4bafefd2a37baca__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25957:9:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25972:4:18",
"type": ""
}
],
"src": "25806:419:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26259:152:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26276:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26279:77:18",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26269:6:18"
},
"nodeType": "YulFunctionCall",
"src": "26269:88:18"
},
"nodeType": "YulExpressionStatement",
"src": "26269:88:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26373:1:18",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26376:4:18",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26366:6:18"
},
"nodeType": "YulFunctionCall",
"src": "26366:15:18"
},
"nodeType": "YulExpressionStatement",
"src": "26366:15:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26397:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26400:4:18",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "26390:6:18"
},
"nodeType": "YulFunctionCall",
"src": "26390:15:18"
},
"nodeType": "YulExpressionStatement",
"src": "26390:15:18"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "26231:180:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26460:190:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26470:33:18",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26497:5:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26479:17:18"
},
"nodeType": "YulFunctionCall",
"src": "26479:24:18"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26470:5:18"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "26593:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "26595:16:18"
},
"nodeType": "YulFunctionCall",
"src": "26595:18:18"
},
"nodeType": "YulExpressionStatement",
"src": "26595:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26518:5:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26525:66:18",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "26515:2:18"
},
"nodeType": "YulFunctionCall",
"src": "26515:77:18"
},
"nodeType": "YulIf",
"src": "26512:103:18"
},
{
"nodeType": "YulAssignment",
"src": "26624:20:18",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26635:5:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26642:1:18",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26631:3:18"
},
"nodeType": "YulFunctionCall",
"src": "26631:13:18"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "26624:3:18"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26446:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "26456:3:18",
"type": ""
}
],
"src": "26417:233:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26762:68:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26784:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26792:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26780:3:18"
},
"nodeType": "YulFunctionCall",
"src": "26780:14:18"
},
{
"hexValue": "4552433732313a20696e76616c696420746f6b656e204944",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26796:26:18",
"type": "",
"value": "ERC721: invalid token ID"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26773:6:18"
},
"nodeType": "YulFunctionCall",
"src": "26773:50:18"
},
"nodeType": "YulExpressionStatement",
"src": "26773:50:18"
}
]
},
"name": "store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26754:6:18",
"type": ""
}
],
"src": "26656:174:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26982:220:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26992:74:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27058:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27063:2:18",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26999:58:18"
},
"nodeType": "YulFunctionCall",
"src": "26999:67:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26992:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27164:3:18"
}
],
"functionName": {
"name": "store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f",
"nodeType": "YulIdentifier",
"src": "27075:88:18"
},
"nodeType": "YulFunctionCall",
"src": "27075:93:18"
},
"nodeType": "YulExpressionStatement",
"src": "27075:93:18"
},
{
"nodeType": "YulAssignment",
"src": "27177:19:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27188:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27193:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27184:3:18"
},
"nodeType": "YulFunctionCall",
"src": "27184:12:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "27177:3:18"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "26970:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "26978:3:18",
"type": ""
}
],
"src": "26836:366:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27379:248:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27389:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27401:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27412:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27397:3:18"
},
"nodeType": "YulFunctionCall",
"src": "27397:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27389:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27436:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27447:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27432:3:18"
},
"nodeType": "YulFunctionCall",
"src": "27432:17:18"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27455:4:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27461:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "27451:3:18"
},
"nodeType": "YulFunctionCall",
"src": "27451:20:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27425:6:18"
},
"nodeType": "YulFunctionCall",
"src": "27425:47:18"
},
"nodeType": "YulExpressionStatement",
"src": "27425:47:18"
},
{
"nodeType": "YulAssignment",
"src": "27481:139:18",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27615:4:18"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27489:124:18"
},
"nodeType": "YulFunctionCall",
"src": "27489:131:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27481:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "27359:9:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "27374:4:18",
"type": ""
}
],
"src": "27208:419:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27739:122:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27761:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27769:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27757:3:18"
},
"nodeType": "YulFunctionCall",
"src": "27757:14:18"
},
{
"hexValue": "4552433732313a2061646472657373207a65726f206973206e6f742061207661",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27773:34:18",
"type": "",
"value": "ERC721: address zero is not a va"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27750:6:18"
},
"nodeType": "YulFunctionCall",
"src": "27750:58:18"
},
"nodeType": "YulExpressionStatement",
"src": "27750:58:18"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27829:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27837:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27825:3:18"
},
"nodeType": "YulFunctionCall",
"src": "27825:15:18"
},
{
"hexValue": "6c6964206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27842:11:18",
"type": "",
"value": "lid owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27818:6:18"
},
"nodeType": "YulFunctionCall",
"src": "27818:36:18"
},
"nodeType": "YulExpressionStatement",
"src": "27818:36:18"
}
]
},
"name": "store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27731:6:18",
"type": ""
}
],
"src": "27633:228:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28013:220:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28023:74:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28089:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28094:2:18",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28030:58:18"
},
"nodeType": "YulFunctionCall",
"src": "28030:67:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28023:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28195:3:18"
}
],
"functionName": {
"name": "store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159",
"nodeType": "YulIdentifier",
"src": "28106:88:18"
},
"nodeType": "YulFunctionCall",
"src": "28106:93:18"
},
"nodeType": "YulExpressionStatement",
"src": "28106:93:18"
},
{
"nodeType": "YulAssignment",
"src": "28208:19:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28219:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28224:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28215:3:18"
},
"nodeType": "YulFunctionCall",
"src": "28215:12:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "28208:3:18"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "28001:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "28009:3:18",
"type": ""
}
],
"src": "27867:366:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28410:248:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28420:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28432:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28443:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28428:3:18"
},
"nodeType": "YulFunctionCall",
"src": "28428:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28420:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28467:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28478:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28463:3:18"
},
"nodeType": "YulFunctionCall",
"src": "28463:17:18"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28486:4:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28492:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28482:3:18"
},
"nodeType": "YulFunctionCall",
"src": "28482:20:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28456:6:18"
},
"nodeType": "YulFunctionCall",
"src": "28456:47:18"
},
"nodeType": "YulExpressionStatement",
"src": "28456:47:18"
},
{
"nodeType": "YulAssignment",
"src": "28512:139:18",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28646:4:18"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28520:124:18"
},
"nodeType": "YulFunctionCall",
"src": "28520:131:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28512:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "28390:9:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "28405:4:18",
"type": ""
}
],
"src": "28239:419:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28770:68:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "28792:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28800:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28788:3:18"
},
"nodeType": "YulFunctionCall",
"src": "28788:14:18"
},
{
"hexValue": "6d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "28804:26:18",
"type": "",
"value": "mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28781:6:18"
},
"nodeType": "YulFunctionCall",
"src": "28781:50:18"
},
"nodeType": "YulExpressionStatement",
"src": "28781:50:18"
}
]
},
"name": "store_literal_in_memory_ecc10bfbf0ed45bdf0ad99e2a9e4480a212cc613f2063f1f6de39580ccdfca76",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "28762:6:18",
"type": ""
}
],
"src": "28664:174:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28990:220:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29000:74:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29066:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29071:2:18",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29007:58:18"
},
"nodeType": "YulFunctionCall",
"src": "29007:67:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29000:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29172:3:18"
}
],
"functionName": {
"name": "store_literal_in_memory_ecc10bfbf0ed45bdf0ad99e2a9e4480a212cc613f2063f1f6de39580ccdfca76",
"nodeType": "YulIdentifier",
"src": "29083:88:18"
},
"nodeType": "YulFunctionCall",
"src": "29083:93:18"
},
"nodeType": "YulExpressionStatement",
"src": "29083:93:18"
},
{
"nodeType": "YulAssignment",
"src": "29185:19:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29196:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29201:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29192:3:18"
},
"nodeType": "YulFunctionCall",
"src": "29192:12:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "29185:3:18"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_ecc10bfbf0ed45bdf0ad99e2a9e4480a212cc613f2063f1f6de39580ccdfca76_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "28978:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "28986:3:18",
"type": ""
}
],
"src": "28844:366:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29387:248:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29397:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29409:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29420:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29405:3:18"
},
"nodeType": "YulFunctionCall",
"src": "29405:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29397:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29444:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29455:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29440:3:18"
},
"nodeType": "YulFunctionCall",
"src": "29440:17:18"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29463:4:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29469:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "29459:3:18"
},
"nodeType": "YulFunctionCall",
"src": "29459:20:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29433:6:18"
},
"nodeType": "YulFunctionCall",
"src": "29433:47:18"
},
"nodeType": "YulExpressionStatement",
"src": "29433:47:18"
},
{
"nodeType": "YulAssignment",
"src": "29489:139:18",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29623:4:18"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_ecc10bfbf0ed45bdf0ad99e2a9e4480a212cc613f2063f1f6de39580ccdfca76_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29497:124:18"
},
"nodeType": "YulFunctionCall",
"src": "29497:131:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29489:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_ecc10bfbf0ed45bdf0ad99e2a9e4480a212cc613f2063f1f6de39580ccdfca76__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29367:9:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "29382:4:18",
"type": ""
}
],
"src": "29216:419:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29747:72:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29769:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29777:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29765:3:18"
},
"nodeType": "YulFunctionCall",
"src": "29765:14:18"
},
{
"hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29781:30:18",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29758:6:18"
},
"nodeType": "YulFunctionCall",
"src": "29758:54:18"
},
"nodeType": "YulExpressionStatement",
"src": "29758:54:18"
}
]
},
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "29739:6:18",
"type": ""
}
],
"src": "29641:178:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29971:220:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29981:74:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30047:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30052:2:18",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29988:58:18"
},
"nodeType": "YulFunctionCall",
"src": "29988:67:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29981:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30153:3:18"
}
],
"functionName": {
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulIdentifier",
"src": "30064:88:18"
},
"nodeType": "YulFunctionCall",
"src": "30064:93:18"
},
"nodeType": "YulExpressionStatement",
"src": "30064:93:18"
},
{
"nodeType": "YulAssignment",
"src": "30166:19:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30177:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30182:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30173:3:18"
},
"nodeType": "YulFunctionCall",
"src": "30173:12:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "30166:3:18"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "29959:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "29967:3:18",
"type": ""
}
],
"src": "29825:366:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30368:248:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30378:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30390:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30401:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30386:3:18"
},
"nodeType": "YulFunctionCall",
"src": "30386:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30378:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30425:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30436:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30421:3:18"
},
"nodeType": "YulFunctionCall",
"src": "30421:17:18"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30444:4:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30450:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "30440:3:18"
},
"nodeType": "YulFunctionCall",
"src": "30440:20:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30414:6:18"
},
"nodeType": "YulFunctionCall",
"src": "30414:47:18"
},
"nodeType": "YulExpressionStatement",
"src": "30414:47:18"
},
{
"nodeType": "YulAssignment",
"src": "30470:139:18",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30604:4:18"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "30478:124:18"
},
"nodeType": "YulFunctionCall",
"src": "30478:131:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30470:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "30348:9:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "30363:4:18",
"type": ""
}
],
"src": "30197:419:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30666:261:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30676:25:18",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "30699:1:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "30681:17:18"
},
"nodeType": "YulFunctionCall",
"src": "30681:20:18"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "30676:1:18"
}
]
},
{
"nodeType": "YulAssignment",
"src": "30710:25:18",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "30733:1:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "30715:17:18"
},
"nodeType": "YulFunctionCall",
"src": "30715:20:18"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "30710:1:18"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "30873:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "30875:16:18"
},
"nodeType": "YulFunctionCall",
"src": "30875:18:18"
},
"nodeType": "YulExpressionStatement",
"src": "30875:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "30794:1:18"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30801:66:18",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "30869:1:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "30797:3:18"
},
"nodeType": "YulFunctionCall",
"src": "30797:74:18"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "30791:2:18"
},
"nodeType": "YulFunctionCall",
"src": "30791:81:18"
},
"nodeType": "YulIf",
"src": "30788:107:18"
},
{
"nodeType": "YulAssignment",
"src": "30905:16:18",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "30916:1:18"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "30919:1:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30912:3:18"
},
"nodeType": "YulFunctionCall",
"src": "30912:9:18"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "30905:3:18"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "30653:1:18",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "30656:1:18",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "30662:3:18",
"type": ""
}
],
"src": "30622:305:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31039:66:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31061:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31069:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31057:3:18"
},
"nodeType": "YulFunctionCall",
"src": "31057:14:18"
},
{
"hexValue": "417272617973206c656e677468206d69736d61746368",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31073:24:18",
"type": "",
"value": "Arrays length mismatch"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31050:6:18"
},
"nodeType": "YulFunctionCall",
"src": "31050:48:18"
},
"nodeType": "YulExpressionStatement",
"src": "31050:48:18"
}
]
},
"name": "store_literal_in_memory_582fd48f3876d7686bfeaaaa0db0589073271dedd50d66094f02fee2a3d2e01c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31031:6:18",
"type": ""
}
],
"src": "30933:172:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31257:220:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31267:74:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31333:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31338:2:18",
"type": "",
"value": "22"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "31274:58:18"
},
"nodeType": "YulFunctionCall",
"src": "31274:67:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31267:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31439:3:18"
}
],
"functionName": {
"name": "store_literal_in_memory_582fd48f3876d7686bfeaaaa0db0589073271dedd50d66094f02fee2a3d2e01c",
"nodeType": "YulIdentifier",
"src": "31350:88:18"
},
"nodeType": "YulFunctionCall",
"src": "31350:93:18"
},
"nodeType": "YulExpressionStatement",
"src": "31350:93:18"
},
{
"nodeType": "YulAssignment",
"src": "31452:19:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31463:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31468:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31459:3:18"
},
"nodeType": "YulFunctionCall",
"src": "31459:12:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "31452:3:18"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_582fd48f3876d7686bfeaaaa0db0589073271dedd50d66094f02fee2a3d2e01c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "31245:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "31253:3:18",
"type": ""
}
],
"src": "31111:366:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31654:248:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31664:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31676:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31687:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31672:3:18"
},
"nodeType": "YulFunctionCall",
"src": "31672:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31664:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31711:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31722:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31707:3:18"
},
"nodeType": "YulFunctionCall",
"src": "31707:17:18"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31730:4:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31736:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "31726:3:18"
},
"nodeType": "YulFunctionCall",
"src": "31726:20:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31700:6:18"
},
"nodeType": "YulFunctionCall",
"src": "31700:47:18"
},
"nodeType": "YulExpressionStatement",
"src": "31700:47:18"
},
{
"nodeType": "YulAssignment",
"src": "31756:139:18",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31890:4:18"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_582fd48f3876d7686bfeaaaa0db0589073271dedd50d66094f02fee2a3d2e01c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "31764:124:18"
},
"nodeType": "YulFunctionCall",
"src": "31764:131:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31756:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_582fd48f3876d7686bfeaaaa0db0589073271dedd50d66094f02fee2a3d2e01c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "31634:9:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "31649:4:18",
"type": ""
}
],
"src": "31483:419:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32014:119:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "32036:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32044:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32032:3:18"
},
"nodeType": "YulFunctionCall",
"src": "32032:14:18"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "32048:34:18",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32025:6:18"
},
"nodeType": "YulFunctionCall",
"src": "32025:58:18"
},
"nodeType": "YulExpressionStatement",
"src": "32025:58:18"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "32104:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32112:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32100:3:18"
},
"nodeType": "YulFunctionCall",
"src": "32100:15:18"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "32117:8:18",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32093:6:18"
},
"nodeType": "YulFunctionCall",
"src": "32093:33:18"
},
"nodeType": "YulExpressionStatement",
"src": "32093:33:18"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "32006:6:18",
"type": ""
}
],
"src": "31908:225:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32285:220:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32295:74:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32361:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32366:2:18",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "32302:58:18"
},
"nodeType": "YulFunctionCall",
"src": "32302:67:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32295:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32467:3:18"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "32378:88:18"
},
"nodeType": "YulFunctionCall",
"src": "32378:93:18"
},
"nodeType": "YulExpressionStatement",
"src": "32378:93:18"
},
{
"nodeType": "YulAssignment",
"src": "32480:19:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32491:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32496:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32487:3:18"
},
"nodeType": "YulFunctionCall",
"src": "32487:12:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "32480:3:18"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "32273:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "32281:3:18",
"type": ""
}
],
"src": "32139:366:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32682:248:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32692:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32704:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32715:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32700:3:18"
},
"nodeType": "YulFunctionCall",
"src": "32700:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32692:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32739:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32750:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32735:3:18"
},
"nodeType": "YulFunctionCall",
"src": "32735:17:18"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32758:4:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32764:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "32754:3:18"
},
"nodeType": "YulFunctionCall",
"src": "32754:20:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32728:6:18"
},
"nodeType": "YulFunctionCall",
"src": "32728:47:18"
},
"nodeType": "YulExpressionStatement",
"src": "32728:47:18"
},
{
"nodeType": "YulAssignment",
"src": "32784:139:18",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32918:4:18"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "32792:124:18"
},
"nodeType": "YulFunctionCall",
"src": "32792:131:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32784:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "32662:9:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "32677:4:18",
"type": ""
}
],
"src": "32511:419:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33062:206:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33072:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33084:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33095:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33080:3:18"
},
"nodeType": "YulFunctionCall",
"src": "33080:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33072:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "33152:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33165:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33176:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33161:3:18"
},
"nodeType": "YulFunctionCall",
"src": "33161:17:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "33108:43:18"
},
"nodeType": "YulFunctionCall",
"src": "33108:71:18"
},
"nodeType": "YulExpressionStatement",
"src": "33108:71:18"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "33233:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33246:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33257:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33242:3:18"
},
"nodeType": "YulFunctionCall",
"src": "33242:18:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "33189:43:18"
},
"nodeType": "YulFunctionCall",
"src": "33189:72:18"
},
"nodeType": "YulExpressionStatement",
"src": "33189:72:18"
}
]
},
"name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "33026:9:18",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "33038:6:18",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "33046:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "33057:4:18",
"type": ""
}
],
"src": "32936:332:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33334:77:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33344:22:18",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "33359:6:18"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "33353:5:18"
},
"nodeType": "YulFunctionCall",
"src": "33353:13:18"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33344:5:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33399:5:18"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "33375:23:18"
},
"nodeType": "YulFunctionCall",
"src": "33375:30:18"
},
"nodeType": "YulExpressionStatement",
"src": "33375:30:18"
}
]
},
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "33312:6:18",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "33320:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "33328:5:18",
"type": ""
}
],
"src": "33274:137:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33491:271:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "33537:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "33539:77:18"
},
"nodeType": "YulFunctionCall",
"src": "33539:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "33539:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "33512:7:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33521:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "33508:3:18"
},
"nodeType": "YulFunctionCall",
"src": "33508:23:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33533:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "33504:3:18"
},
"nodeType": "YulFunctionCall",
"src": "33504:32:18"
},
"nodeType": "YulIf",
"src": "33501:119:18"
},
{
"nodeType": "YulBlock",
"src": "33630:125:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "33645:15:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "33659:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "33649:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "33674:71:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33717:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "33728:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33713:3:18"
},
"nodeType": "YulFunctionCall",
"src": "33713:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "33737:7:18"
}
],
"functionName": {
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulIdentifier",
"src": "33684:28:18"
},
"nodeType": "YulFunctionCall",
"src": "33684:61:18"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "33674:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "33461:9:18",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "33472:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "33484:6:18",
"type": ""
}
],
"src": "33417:345:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33874:114:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "33896:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33904:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33892:3:18"
},
"nodeType": "YulFunctionCall",
"src": "33892:14:18"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "33908:34:18",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33885:6:18"
},
"nodeType": "YulFunctionCall",
"src": "33885:58:18"
},
"nodeType": "YulExpressionStatement",
"src": "33885:58:18"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "33964:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33972:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33960:3:18"
},
"nodeType": "YulFunctionCall",
"src": "33960:15:18"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "33977:3:18",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33953:6:18"
},
"nodeType": "YulFunctionCall",
"src": "33953:28:18"
},
"nodeType": "YulExpressionStatement",
"src": "33953:28:18"
}
]
},
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "33866:6:18",
"type": ""
}
],
"src": "33768:220:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34140:220:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34150:74:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34216:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34221:2:18",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "34157:58:18"
},
"nodeType": "YulFunctionCall",
"src": "34157:67:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34150:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34322:3:18"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "34233:88:18"
},
"nodeType": "YulFunctionCall",
"src": "34233:93:18"
},
"nodeType": "YulExpressionStatement",
"src": "34233:93:18"
},
{
"nodeType": "YulAssignment",
"src": "34335:19:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34346:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34351:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34342:3:18"
},
"nodeType": "YulFunctionCall",
"src": "34342:12:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "34335:3:18"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "34128:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "34136:3:18",
"type": ""
}
],
"src": "33994:366:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34537:248:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34547:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34559:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34570:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34555:3:18"
},
"nodeType": "YulFunctionCall",
"src": "34555:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34547:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34594:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34605:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34590:3:18"
},
"nodeType": "YulFunctionCall",
"src": "34590:17:18"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34613:4:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34619:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "34609:3:18"
},
"nodeType": "YulFunctionCall",
"src": "34609:20:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34583:6:18"
},
"nodeType": "YulFunctionCall",
"src": "34583:47:18"
},
"nodeType": "YulExpressionStatement",
"src": "34583:47:18"
},
{
"nodeType": "YulAssignment",
"src": "34639:139:18",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34773:4:18"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "34647:124:18"
},
"nodeType": "YulFunctionCall",
"src": "34647:131:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34639:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "34517:9:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "34532:4:18",
"type": ""
}
],
"src": "34366:419:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34897:142:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34919:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34927:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34915:3:18"
},
"nodeType": "YulFunctionCall",
"src": "34915:14:18"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "34931:34:18",
"type": "",
"value": "ERC721: approve caller is not to"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34908:6:18"
},
"nodeType": "YulFunctionCall",
"src": "34908:58:18"
},
"nodeType": "YulExpressionStatement",
"src": "34908:58:18"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34987:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34995:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34983:3:18"
},
"nodeType": "YulFunctionCall",
"src": "34983:15:18"
},
{
"hexValue": "6b656e206f776e6572206f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "35000:31:18",
"type": "",
"value": "ken owner or approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34976:6:18"
},
"nodeType": "YulFunctionCall",
"src": "34976:56:18"
},
"nodeType": "YulExpressionStatement",
"src": "34976:56:18"
}
]
},
"name": "store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "34889:6:18",
"type": ""
}
],
"src": "34791:248:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35191:220:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35201:74:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35267:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35272:2:18",
"type": "",
"value": "61"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "35208:58:18"
},
"nodeType": "YulFunctionCall",
"src": "35208:67:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35201:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35373:3:18"
}
],
"functionName": {
"name": "store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83",
"nodeType": "YulIdentifier",
"src": "35284:88:18"
},
"nodeType": "YulFunctionCall",
"src": "35284:93:18"
},
"nodeType": "YulExpressionStatement",
"src": "35284:93:18"
},
{
"nodeType": "YulAssignment",
"src": "35386:19:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35397:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35402:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35393:3:18"
},
"nodeType": "YulFunctionCall",
"src": "35393:12:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "35386:3:18"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "35179:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "35187:3:18",
"type": ""
}
],
"src": "35045:366:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35588:248:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35598:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35610:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35621:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35606:3:18"
},
"nodeType": "YulFunctionCall",
"src": "35606:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35598:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35645:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35656:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35641:3:18"
},
"nodeType": "YulFunctionCall",
"src": "35641:17:18"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35664:4:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35670:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "35660:3:18"
},
"nodeType": "YulFunctionCall",
"src": "35660:20:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35634:6:18"
},
"nodeType": "YulFunctionCall",
"src": "35634:47:18"
},
"nodeType": "YulExpressionStatement",
"src": "35634:47:18"
},
{
"nodeType": "YulAssignment",
"src": "35690:139:18",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35824:4:18"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "35698:124:18"
},
"nodeType": "YulFunctionCall",
"src": "35698:131:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35690:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "35568:9:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "35583:4:18",
"type": ""
}
],
"src": "35417:419:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35948:126:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "35970:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35978:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35966:3:18"
},
"nodeType": "YulFunctionCall",
"src": "35966:14:18"
},
{
"hexValue": "4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "35982:34:18",
"type": "",
"value": "ERC721: caller is not token owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35959:6:18"
},
"nodeType": "YulFunctionCall",
"src": "35959:58:18"
},
"nodeType": "YulExpressionStatement",
"src": "35959:58:18"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36038:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36046:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36034:3:18"
},
"nodeType": "YulFunctionCall",
"src": "36034:15:18"
},
{
"hexValue": "72206f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "36051:15:18",
"type": "",
"value": "r or approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36027:6:18"
},
"nodeType": "YulFunctionCall",
"src": "36027:40:18"
},
"nodeType": "YulExpressionStatement",
"src": "36027:40:18"
}
]
},
"name": "store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "35940:6:18",
"type": ""
}
],
"src": "35842:232:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36226:220:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36236:74:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36302:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36307:2:18",
"type": "",
"value": "45"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "36243:58:18"
},
"nodeType": "YulFunctionCall",
"src": "36243:67:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36236:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36408:3:18"
}
],
"functionName": {
"name": "store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af",
"nodeType": "YulIdentifier",
"src": "36319:88:18"
},
"nodeType": "YulFunctionCall",
"src": "36319:93:18"
},
"nodeType": "YulExpressionStatement",
"src": "36319:93:18"
},
{
"nodeType": "YulAssignment",
"src": "36421:19:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36432:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36437:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36428:3:18"
},
"nodeType": "YulFunctionCall",
"src": "36428:12:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "36421:3:18"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "36214:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "36222:3:18",
"type": ""
}
],
"src": "36080:366:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36623:248:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36633:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36645:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36656:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36641:3:18"
},
"nodeType": "YulFunctionCall",
"src": "36641:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36633:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36680:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36691:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36676:3:18"
},
"nodeType": "YulFunctionCall",
"src": "36676:17:18"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36699:4:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36705:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "36695:3:18"
},
"nodeType": "YulFunctionCall",
"src": "36695:20:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36669:6:18"
},
"nodeType": "YulFunctionCall",
"src": "36669:47:18"
},
"nodeType": "YulExpressionStatement",
"src": "36669:47:18"
},
{
"nodeType": "YulAssignment",
"src": "36725:139:18",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36859:4:18"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "36733:124:18"
},
"nodeType": "YulFunctionCall",
"src": "36733:131:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36725:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "36603:9:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "36618:4:18",
"type": ""
}
],
"src": "36452:419:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36983:76:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "37005:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37013:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37001:3:18"
},
"nodeType": "YulFunctionCall",
"src": "37001:14:18"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "37017:34:18",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36994:6:18"
},
"nodeType": "YulFunctionCall",
"src": "36994:58:18"
},
"nodeType": "YulExpressionStatement",
"src": "36994:58:18"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "36975:6:18",
"type": ""
}
],
"src": "36877:182:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37211:220:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37221:74:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37287:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37292:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "37228:58:18"
},
"nodeType": "YulFunctionCall",
"src": "37228:67:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37221:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37393:3:18"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "37304:88:18"
},
"nodeType": "YulFunctionCall",
"src": "37304:93:18"
},
"nodeType": "YulExpressionStatement",
"src": "37304:93:18"
},
{
"nodeType": "YulAssignment",
"src": "37406:19:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37417:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37422:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37413:3:18"
},
"nodeType": "YulFunctionCall",
"src": "37413:12:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "37406:3:18"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "37199:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "37207:3:18",
"type": ""
}
],
"src": "37065:366:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37608:248:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37618:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37630:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37641:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37626:3:18"
},
"nodeType": "YulFunctionCall",
"src": "37626:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37618:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37665:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37676:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37661:3:18"
},
"nodeType": "YulFunctionCall",
"src": "37661:17:18"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37684:4:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37690:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "37680:3:18"
},
"nodeType": "YulFunctionCall",
"src": "37680:20:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37654:6:18"
},
"nodeType": "YulFunctionCall",
"src": "37654:47:18"
},
"nodeType": "YulExpressionStatement",
"src": "37654:47:18"
},
{
"nodeType": "YulAssignment",
"src": "37710:139:18",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37844:4:18"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "37718:124:18"
},
"nodeType": "YulFunctionCall",
"src": "37718:131:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37710:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "37588:9:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "37603:4:18",
"type": ""
}
],
"src": "37437:419:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37968:70:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "37990:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37998:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37986:3:18"
},
"nodeType": "YulFunctionCall",
"src": "37986:14:18"
},
{
"hexValue": "45524332393831526f79616c746965733a20546f6f2068696768",
"kind": "string",
"nodeType": "YulLiteral",
"src": "38002:28:18",
"type": "",
"value": "ERC2981Royalties: Too high"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37979:6:18"
},
"nodeType": "YulFunctionCall",
"src": "37979:52:18"
},
"nodeType": "YulExpressionStatement",
"src": "37979:52:18"
}
]
},
"name": "store_literal_in_memory_1817fede6663b29fbfb5d975944c19cacb2e2baa433eb6b6f868e3e02a2dc6d9",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "37960:6:18",
"type": ""
}
],
"src": "37862:176:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38190:220:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38200:74:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "38266:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38271:2:18",
"type": "",
"value": "26"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "38207:58:18"
},
"nodeType": "YulFunctionCall",
"src": "38207:67:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "38200:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "38372:3:18"
}
],
"functionName": {
"name": "store_literal_in_memory_1817fede6663b29fbfb5d975944c19cacb2e2baa433eb6b6f868e3e02a2dc6d9",
"nodeType": "YulIdentifier",
"src": "38283:88:18"
},
"nodeType": "YulFunctionCall",
"src": "38283:93:18"
},
"nodeType": "YulExpressionStatement",
"src": "38283:93:18"
},
{
"nodeType": "YulAssignment",
"src": "38385:19:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "38396:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38401:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38392:3:18"
},
"nodeType": "YulFunctionCall",
"src": "38392:12:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "38385:3:18"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1817fede6663b29fbfb5d975944c19cacb2e2baa433eb6b6f868e3e02a2dc6d9_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "38178:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "38186:3:18",
"type": ""
}
],
"src": "38044:366:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38587:248:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38597:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "38609:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38620:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38605:3:18"
},
"nodeType": "YulFunctionCall",
"src": "38605:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38597:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "38644:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38655:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38640:3:18"
},
"nodeType": "YulFunctionCall",
"src": "38640:17:18"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38663:4:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "38669:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "38659:3:18"
},
"nodeType": "YulFunctionCall",
"src": "38659:20:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38633:6:18"
},
"nodeType": "YulFunctionCall",
"src": "38633:47:18"
},
"nodeType": "YulExpressionStatement",
"src": "38633:47:18"
},
{
"nodeType": "YulAssignment",
"src": "38689:139:18",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38823:4:18"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1817fede6663b29fbfb5d975944c19cacb2e2baa433eb6b6f868e3e02a2dc6d9_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "38697:124:18"
},
"nodeType": "YulFunctionCall",
"src": "38697:131:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38689:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1817fede6663b29fbfb5d975944c19cacb2e2baa433eb6b6f868e3e02a2dc6d9__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "38567:9:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "38582:4:18",
"type": ""
}
],
"src": "38416:419:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38955:34:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38965:18:18",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "38980:3:18"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "38965:11:18"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "38927:3:18",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "38932:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "38943:11:18",
"type": ""
}
],
"src": "38841:148:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39105:267:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "39115:53:18",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "39162:5:18"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "39129:32:18"
},
"nodeType": "YulFunctionCall",
"src": "39129:39:18"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "39119:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "39177:96:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "39261:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "39266:6:18"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "39184:76:18"
},
"nodeType": "YulFunctionCall",
"src": "39184:89:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "39177:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "39308:5:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39315:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39304:3:18"
},
"nodeType": "YulFunctionCall",
"src": "39304:16:18"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "39322:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "39327:6:18"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "39282:21:18"
},
"nodeType": "YulFunctionCall",
"src": "39282:52:18"
},
"nodeType": "YulExpressionStatement",
"src": "39282:52:18"
},
{
"nodeType": "YulAssignment",
"src": "39343:23:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "39354:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "39359:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39350:3:18"
},
"nodeType": "YulFunctionCall",
"src": "39350:16:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "39343:3:18"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "39086:5:18",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "39093:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "39101:3:18",
"type": ""
}
],
"src": "38995:377:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39432:87:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "39442:11:18",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "39450:3:18"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "39442:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39470:1:18",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "39473:3:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39463:6:18"
},
"nodeType": "YulFunctionCall",
"src": "39463:14:18"
},
"nodeType": "YulExpressionStatement",
"src": "39463:14:18"
},
{
"nodeType": "YulAssignment",
"src": "39486:26:18",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39504:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39507:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "39494:9:18"
},
"nodeType": "YulFunctionCall",
"src": "39494:18:18"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "39486:4:18"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "39419:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "39427:4:18",
"type": ""
}
],
"src": "39378:141:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39656:738:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "39666:29:18",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "39689:5:18"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "39683:5:18"
},
"nodeType": "YulFunctionCall",
"src": "39683:12:18"
},
"variables": [
{
"name": "slotValue",
"nodeType": "YulTypedName",
"src": "39670:9:18",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "39704:50:18",
"value": {
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "39744:9:18"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "39718:25:18"
},
"nodeType": "YulFunctionCall",
"src": "39718:36:18"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "39708:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "39763:96:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "39847:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "39852:6:18"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "39770:76:18"
},
"nodeType": "YulFunctionCall",
"src": "39770:89:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "39763:3:18"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "39908:130:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "39961:3:18"
},
{
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "39970:9:18"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39985:4:18",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "39981:3:18"
},
"nodeType": "YulFunctionCall",
"src": "39981:9:18"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "39966:3:18"
},
"nodeType": "YulFunctionCall",
"src": "39966:25:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39954:6:18"
},
"nodeType": "YulFunctionCall",
"src": "39954:38:18"
},
"nodeType": "YulExpressionStatement",
"src": "39954:38:18"
},
{
"nodeType": "YulAssignment",
"src": "40005:23:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "40016:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "40021:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40012:3:18"
},
"nodeType": "YulFunctionCall",
"src": "40012:16:18"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "40005:3:18"
}
]
}
]
},
"nodeType": "YulCase",
"src": "39901:137:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "39906:1:18",
"type": "",
"value": "0"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "40054:334:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "40099:53:18",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "40146:5:18"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "40114:31:18"
},
"nodeType": "YulFunctionCall",
"src": "40114:38:18"
},
"variables": [
{
"name": "dataPos",
"nodeType": "YulTypedName",
"src": "40103:7:18",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "40165:10:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "40174:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "40169:1:18",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "40232:110:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "40261:3:18"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "40266:1:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40257:3:18"
},
"nodeType": "YulFunctionCall",
"src": "40257:11:18"
},
{
"arguments": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "40276:7:18"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "40270:5:18"
},
"nodeType": "YulFunctionCall",
"src": "40270:14:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40250:6:18"
},
"nodeType": "YulFunctionCall",
"src": "40250:35:18"
},
"nodeType": "YulExpressionStatement",
"src": "40250:35:18"
},
{
"nodeType": "YulAssignment",
"src": "40302:26:18",
"value": {
"arguments": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "40317:7:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40326:1:18",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40313:3:18"
},
"nodeType": "YulFunctionCall",
"src": "40313:15:18"
},
"variableNames": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "40302:7:18"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "40199:1:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "40202:6:18"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "40196:2:18"
},
"nodeType": "YulFunctionCall",
"src": "40196:13:18"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "40210:21:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "40212:17:18",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "40221:1:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40224:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40217:3:18"
},
"nodeType": "YulFunctionCall",
"src": "40217:12:18"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "40212:1:18"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "40192:3:18",
"statements": []
},
"src": "40188:154:18"
},
{
"nodeType": "YulAssignment",
"src": "40355:23:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "40366:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "40371:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40362:3:18"
},
"nodeType": "YulFunctionCall",
"src": "40362:16:18"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "40355:3:18"
}
]
}
]
},
"nodeType": "YulCase",
"src": "40047:341:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "40052:1:18",
"type": "",
"value": "1"
}
}
],
"expression": {
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "39879:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39890:1:18",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "39875:3:18"
},
"nodeType": "YulFunctionCall",
"src": "39875:17:18"
},
"nodeType": "YulSwitch",
"src": "39868:520:18"
}
]
},
"name": "abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "39637:5:18",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "39644:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "39652:3:18",
"type": ""
}
],
"src": "39549:845:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40581:248:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "40592:102:18",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "40681:6:18"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "40690:3:18"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "40599:81:18"
},
"nodeType": "YulFunctionCall",
"src": "40599:95:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "40592:3:18"
}
]
},
{
"nodeType": "YulAssignment",
"src": "40704:99:18",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "40790:6:18"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "40799:3:18"
}
],
"functionName": {
"name": "abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "40711:78:18"
},
"nodeType": "YulFunctionCall",
"src": "40711:92:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "40704:3:18"
}
]
},
{
"nodeType": "YulAssignment",
"src": "40813:10:18",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "40820:3:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "40813:3:18"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "40552:3:18",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "40558:6:18",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "40566:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "40577:3:18",
"type": ""
}
],
"src": "40400:429:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40941:118:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "40963:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40971:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40959:3:18"
},
"nodeType": "YulFunctionCall",
"src": "40959:14:18"
},
{
"hexValue": "4552433732313a207472616e736665722066726f6d20696e636f727265637420",
"kind": "string",
"nodeType": "YulLiteral",
"src": "40975:34:18",
"type": "",
"value": "ERC721: transfer from incorrect "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40952:6:18"
},
"nodeType": "YulFunctionCall",
"src": "40952:58:18"
},
"nodeType": "YulExpressionStatement",
"src": "40952:58:18"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "41031:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41039:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41027:3:18"
},
"nodeType": "YulFunctionCall",
"src": "41027:15:18"
},
{
"hexValue": "6f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "41044:7:18",
"type": "",
"value": "owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "41020:6:18"
},
"nodeType": "YulFunctionCall",
"src": "41020:32:18"
},
"nodeType": "YulExpressionStatement",
"src": "41020:32:18"
}
]
},
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40933:6:18",
"type": ""
}
],
"src": "40835:224:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41211:220:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "41221:74:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "41287:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41292:2:18",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "41228:58:18"
},
"nodeType": "YulFunctionCall",
"src": "41228:67:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "41221:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "41393:3:18"
}
],
"functionName": {
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulIdentifier",
"src": "41304:88:18"
},
"nodeType": "YulFunctionCall",
"src": "41304:93:18"
},
"nodeType": "YulExpressionStatement",
"src": "41304:93:18"
},
{
"nodeType": "YulAssignment",
"src": "41406:19:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "41417:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41422:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41413:3:18"
},
"nodeType": "YulFunctionCall",
"src": "41413:12:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "41406:3:18"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "41199:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "41207:3:18",
"type": ""
}
],
"src": "41065:366:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41608:248:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "41618:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "41630:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41641:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41626:3:18"
},
"nodeType": "YulFunctionCall",
"src": "41626:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "41618:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "41665:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41676:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41661:3:18"
},
"nodeType": "YulFunctionCall",
"src": "41661:17:18"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "41684:4:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "41690:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "41680:3:18"
},
"nodeType": "YulFunctionCall",
"src": "41680:20:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "41654:6:18"
},
"nodeType": "YulFunctionCall",
"src": "41654:47:18"
},
"nodeType": "YulExpressionStatement",
"src": "41654:47:18"
},
{
"nodeType": "YulAssignment",
"src": "41710:139:18",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "41844:4:18"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "41718:124:18"
},
"nodeType": "YulFunctionCall",
"src": "41718:131:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "41710:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "41588:9:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "41603:4:18",
"type": ""
}
],
"src": "41437:419:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41968:117:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "41990:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41998:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41986:3:18"
},
"nodeType": "YulFunctionCall",
"src": "41986:14:18"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "42002:34:18",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "41979:6:18"
},
"nodeType": "YulFunctionCall",
"src": "41979:58:18"
},
"nodeType": "YulExpressionStatement",
"src": "41979:58:18"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "42058:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42066:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42054:3:18"
},
"nodeType": "YulFunctionCall",
"src": "42054:15:18"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "42071:6:18",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42047:6:18"
},
"nodeType": "YulFunctionCall",
"src": "42047:31:18"
},
"nodeType": "YulExpressionStatement",
"src": "42047:31:18"
}
]
},
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "41960:6:18",
"type": ""
}
],
"src": "41862:223:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42237:220:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "42247:74:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "42313:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42318:2:18",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "42254:58:18"
},
"nodeType": "YulFunctionCall",
"src": "42254:67:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "42247:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "42419:3:18"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "42330:88:18"
},
"nodeType": "YulFunctionCall",
"src": "42330:93:18"
},
"nodeType": "YulExpressionStatement",
"src": "42330:93:18"
},
{
"nodeType": "YulAssignment",
"src": "42432:19:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "42443:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42448:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42439:3:18"
},
"nodeType": "YulFunctionCall",
"src": "42439:12:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "42432:3:18"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "42225:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "42233:3:18",
"type": ""
}
],
"src": "42091:366:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42634:248:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "42644:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "42656:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42667:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42652:3:18"
},
"nodeType": "YulFunctionCall",
"src": "42652:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "42644:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "42691:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42702:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42687:3:18"
},
"nodeType": "YulFunctionCall",
"src": "42687:17:18"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "42710:4:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "42716:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "42706:3:18"
},
"nodeType": "YulFunctionCall",
"src": "42706:20:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42680:6:18"
},
"nodeType": "YulFunctionCall",
"src": "42680:47:18"
},
"nodeType": "YulExpressionStatement",
"src": "42680:47:18"
},
{
"nodeType": "YulAssignment",
"src": "42736:139:18",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "42870:4:18"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "42744:124:18"
},
"nodeType": "YulFunctionCall",
"src": "42744:131:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "42736:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "42614:9:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "42629:4:18",
"type": ""
}
],
"src": "42463:419:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42994:69:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "43016:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43024:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43012:3:18"
},
"nodeType": "YulFunctionCall",
"src": "43012:14:18"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "43028:27:18",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43005:6:18"
},
"nodeType": "YulFunctionCall",
"src": "43005:51:18"
},
"nodeType": "YulExpressionStatement",
"src": "43005:51:18"
}
]
},
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "42986:6:18",
"type": ""
}
],
"src": "42888:175:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "43215:220:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "43225:74:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "43291:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43296:2:18",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "43232:58:18"
},
"nodeType": "YulFunctionCall",
"src": "43232:67:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "43225:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "43397:3:18"
}
],
"functionName": {
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulIdentifier",
"src": "43308:88:18"
},
"nodeType": "YulFunctionCall",
"src": "43308:93:18"
},
"nodeType": "YulExpressionStatement",
"src": "43308:93:18"
},
{
"nodeType": "YulAssignment",
"src": "43410:19:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "43421:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43426:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43417:3:18"
},
"nodeType": "YulFunctionCall",
"src": "43417:12:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "43410:3:18"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "43203:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "43211:3:18",
"type": ""
}
],
"src": "43069:366:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "43612:248:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "43622:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "43634:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43645:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43630:3:18"
},
"nodeType": "YulFunctionCall",
"src": "43630:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "43622:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "43669:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43680:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43665:3:18"
},
"nodeType": "YulFunctionCall",
"src": "43665:17:18"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "43688:4:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "43694:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "43684:3:18"
},
"nodeType": "YulFunctionCall",
"src": "43684:20:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43658:6:18"
},
"nodeType": "YulFunctionCall",
"src": "43658:47:18"
},
"nodeType": "YulExpressionStatement",
"src": "43658:47:18"
},
{
"nodeType": "YulAssignment",
"src": "43714:139:18",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "43848:4:18"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "43722:124:18"
},
"nodeType": "YulFunctionCall",
"src": "43722:131:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "43714:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "43592:9:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "43607:4:18",
"type": ""
}
],
"src": "43441:419:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "43972:131:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "43994:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44002:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43990:3:18"
},
"nodeType": "YulFunctionCall",
"src": "43990:14:18"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "44006:34:18",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43983:6:18"
},
"nodeType": "YulFunctionCall",
"src": "43983:58:18"
},
"nodeType": "YulExpressionStatement",
"src": "43983:58:18"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "44062:6:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44070:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "44058:3:18"
},
"nodeType": "YulFunctionCall",
"src": "44058:15:18"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "44075:20:18",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "44051:6:18"
},
"nodeType": "YulFunctionCall",
"src": "44051:45:18"
},
"nodeType": "YulExpressionStatement",
"src": "44051:45:18"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "43964:6:18",
"type": ""
}
],
"src": "43866:237:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "44255:220:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "44265:74:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "44331:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44336:2:18",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "44272:58:18"
},
"nodeType": "YulFunctionCall",
"src": "44272:67:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "44265:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "44437:3:18"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "44348:88:18"
},
"nodeType": "YulFunctionCall",
"src": "44348:93:18"
},
"nodeType": "YulExpressionStatement",
"src": "44348:93:18"
},
{
"nodeType": "YulAssignment",
"src": "44450:19:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "44461:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44466:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "44457:3:18"
},
"nodeType": "YulFunctionCall",
"src": "44457:12:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "44450:3:18"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "44243:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "44251:3:18",
"type": ""
}
],
"src": "44109:366:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "44652:248:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "44662:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "44674:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44685:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "44670:3:18"
},
"nodeType": "YulFunctionCall",
"src": "44670:18:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "44662:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "44709:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44720:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "44705:3:18"
},
"nodeType": "YulFunctionCall",
"src": "44705:17:18"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "44728:4:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "44734:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "44724:3:18"
},
"nodeType": "YulFunctionCall",
"src": "44724:20:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "44698:6:18"
},
"nodeType": "YulFunctionCall",
"src": "44698:47:18"
},
"nodeType": "YulExpressionStatement",
"src": "44698:47:18"
},
{
"nodeType": "YulAssignment",
"src": "44754:139:18",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "44888:4:18"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "44762:124:18"
},
"nodeType": "YulFunctionCall",
"src": "44762:131:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "44754:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "44632:9:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "44647:4:18",
"type": ""
}
],
"src": "44481:419:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "44951:146:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "44961:25:18",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "44984:1:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "44966:17:18"
},
"nodeType": "YulFunctionCall",
"src": "44966:20:18"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "44961:1:18"
}
]
},
{
"nodeType": "YulAssignment",
"src": "44995:25:18",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "45018:1:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "45000:17:18"
},
"nodeType": "YulFunctionCall",
"src": "45000:20:18"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "44995:1:18"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "45042:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "45044:16:18"
},
"nodeType": "YulFunctionCall",
"src": "45044:18:18"
},
"nodeType": "YulExpressionStatement",
"src": "45044:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "45036:1:18"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "45039:1:18"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "45033:2:18"
},
"nodeType": "YulFunctionCall",
"src": "45033:8:18"
},
"nodeType": "YulIf",
"src": "45030:34:18"
},
{
"nodeType": "YulAssignment",
"src": "45074:17:18",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "45086:1:18"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "45089:1:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "45082:3:18"
},
"nodeType": "YulFunctionCall",
"src": "45082:9:18"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "45074:4:18"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "44937:1:18",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "44940:1:18",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "44946:4:18",
"type": ""
}
],
"src": "44906:191:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "45161:40:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "45172:22:18",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "45188:5:18"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "45182:5:18"
},
"nodeType": "YulFunctionCall",
"src": "45182:12:18"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "45172:6:18"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "45144:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "45154:6:18",
"type": ""
}
],
"src": "45103:98:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "45302:73:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "45319:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "45324:6:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "45312:6:18"
},
"nodeType": "YulFunctionCall",
"src": "45312:19:18"
},
"nodeType": "YulExpressionStatement",
"src": "45312:19:18"
},
{
"nodeType": "YulAssignment",
"src": "45340:29:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "45359:3:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45364:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "45355:3:18"
},
"nodeType": "YulFunctionCall",
"src": "45355:14:18"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "45340:11:18"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "45274:3:18",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "45279:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "45290:11:18",
"type": ""
}
],
"src": "45207:168:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "45471:270:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "45481:52:18",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "45527:5:18"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "45495:31:18"
},
"nodeType": "YulFunctionCall",
"src": "45495:38:18"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "45485:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "45542:77:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "45607:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "45612:6:18"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "45549:57:18"
},
"nodeType": "YulFunctionCall",
"src": "45549:70:18"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "45542:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "45654:5:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45661:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "45650:3:18"
},
"nodeType": "YulFunctionCall",
"src": "45650:16:18"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "45668:3:18"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "45673:6:18"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "45628:21:18"
},
"nodeType": "YulFunctionCall",
"src": "45628:52:18"
},
"nodeType": "YulExpressionStatement",
"src": "45628:52:18"
},
{
"nodeType": "YulAssignment",
"src": "45689:46:18",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "45700:3:18"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "45727:6:18"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "45705:21:18"
},
"nodeType": "YulFunctionCall",
"src": "45705:29:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "45696:3:18"
},
"nodeType": "YulFunctionCall",
"src": "45696:39:18"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "45689:3:18"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "45452:5:18",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "45459:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45467:3:18",
"type": ""
}
],
"src": "45381:360:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "45947:440:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "45957:27:18",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "45969:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45980:3:18",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "45965:3:18"
},
"nodeType": "YulFunctionCall",
"src": "45965:19:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "45957:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "46038:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "46051:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "46062:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "46047:3:18"
},
"nodeType": "YulFunctionCall",
"src": "46047:17:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "45994:43:18"
},
"nodeType": "YulFunctionCall",
"src": "45994:71:18"
},
"nodeType": "YulExpressionStatement",
"src": "45994:71:18"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "46119:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "46132:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "46143:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "46128:3:18"
},
"nodeType": "YulFunctionCall",
"src": "46128:18:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "46075:43:18"
},
"nodeType": "YulFunctionCall",
"src": "46075:72:18"
},
"nodeType": "YulExpressionStatement",
"src": "46075:72:18"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "46201:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "46214:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "46225:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "46210:3:18"
},
"nodeType": "YulFunctionCall",
"src": "46210:18:18"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "46157:43:18"
},
"nodeType": "YulFunctionCall",
"src": "46157:72:18"
},
"nodeType": "YulExpressionStatement",
"src": "46157:72:18"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "46250:9:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "46261:2:18",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "46246:3:18"
},
"nodeType": "YulFunctionCall",
"src": "46246:18:18"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "46270:4:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "46276:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "46266:3:18"
},
"nodeType": "YulFunctionCall",
"src": "46266:20:18"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "46239:6:18"
},
"nodeType": "YulFunctionCall",
"src": "46239:48:18"
},
"nodeType": "YulExpressionStatement",
"src": "46239:48:18"
},
{
"nodeType": "YulAssignment",
"src": "46296:84:18",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "46366:6:18"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "46375:4:18"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "46304:61:18"
},
"nodeType": "YulFunctionCall",
"src": "46304:76:18"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "46296:4:18"
}
]
}
]
},
"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": "45895:9:18",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "45907:6:18",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "45915:6:18",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "45923:6:18",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "45931:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "45942:4:18",
"type": ""
}
],
"src": "45747:640:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "46455:79:18",
"statements": [
{
"nodeType": "YulAssignment",
"src": "46465:22:18",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "46480:6:18"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "46474:5:18"
},
"nodeType": "YulFunctionCall",
"src": "46474:13:18"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "46465:5:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "46522:5:18"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "46496:25:18"
},
"nodeType": "YulFunctionCall",
"src": "46496:32:18"
},
"nodeType": "YulExpressionStatement",
"src": "46496:32:18"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "46433:6:18",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "46441:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "46449:5:18",
"type": ""
}
],
"src": "46393:141:18"
},
{
"body": {
"nodeType": "YulBlock",
"src": "46616:273:18",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "46662:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "46664:77:18"
},
"nodeType": "YulFunctionCall",
"src": "46664:79:18"
},
"nodeType": "YulExpressionStatement",
"src": "46664:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "46637:7:18"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "46646:9:18"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "46633:3:18"
},
"nodeType": "YulFunctionCall",
"src": "46633:23:18"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "46658:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "46629:3:18"
},
"nodeType": "YulFunctionCall",
"src": "46629:32:18"
},
"nodeType": "YulIf",
"src": "46626:119:18"
},
{
"nodeType": "YulBlock",
"src": "46755:127:18",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "46770:15:18",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "46784:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "46774:6:18",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "46799:73:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "46844:9:18"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "46855:6:18"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "46840:3:18"
},
"nodeType": "YulFunctionCall",
"src": "46840:22:18"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "46864:7:18"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "46809:30:18"
},
"nodeType": "YulFunctionCall",
"src": "46809:63:18"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "46799:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "46586:9:18",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "46597:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "46609:6:18",
"type": ""
}
],
"src": "46540:349:18"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n msto
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