Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save madeinfree/efd2cc9784a22f5d10cfdb4753f9c36d to your computer and use it in GitHub Desktop.
Save madeinfree/efd2cc9784a22f5d10cfdb4753f9c36d 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.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
}
_balances[to] += amount;
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/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/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* 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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev 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 (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
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
REMIX DEFAULT WORKSPACE
Remix default workspace is present when:
i. Remix loads for the very first time
ii. A new workspace is created
iii. There are no files existing in the File Explorer
This workspace contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
3. 'tests': Contains one Solidity test file for 'Ballot' contract & one JS test file for 'Storage' contract
SCRIPTS
The 'scripts' folder contains two example async/await scripts for deploying the 'Storage' contract.
For the deployment of any other contract, 'contractName' and 'constructorArgs' should be updated (along with other code if required).
Also, there is a script containing some unit tests for Storage contract inside tests directory.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
Please note, 'require' statement is supported in a limited manner for Remix supported modules.
For now, modules supported by Remix are ethers, web3, swarmgw, chai, remix and hardhat only for hardhat.ethers object/plugin.
For unsupported modules, an error like this will be thrown: '<module_name> module require is not supported by Remix IDE will be shown.'
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
* @custom:dev-run-script ./scripts/deploy_with_ethers.ts
*/
contract Storage {
uint256 number;
/**
* @dev Store value in variable
* @param num value to store
*/
function store(uint256 num) public {
number = num;
}
/**
* @dev Return value
* @return value of 'number'
*/
function retrieve() public view returns (uint256){
return number;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "hardhat/console.sol";
/**
* @title Owner
* @dev Set & change owner
*/
contract Owner {
address private owner;
// event for EVM logging
event OwnerSet(address indexed oldOwner, address indexed newOwner);
// modifier to check if caller is owner
modifier isOwner() {
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
require(msg.sender == owner, "Caller is not owner");
_;
}
/**
* @dev Set contract deployer as owner
*/
constructor() {
console.log("Owner contract deployed by:", msg.sender);
owner = msg.sender; // 'msg.sender' is sender of current call, contract deployer for a constructor
emit OwnerSet(address(0), owner);
}
/**
* @dev Change owner
* @param newOwner address of new owner
*/
function changeOwner(address newOwner) public isOwner {
emit OwnerSet(owner, newOwner);
owner = newOwner;
}
/**
* @dev Return owner address
* @return address of owner
*/
function getOwner() external view returns (address) {
return owner;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Ballot
* @dev Implements voting process along with vote delegation
*/
contract Ballot {
struct Voter {
uint weight; // weight is accumulated by delegation
bool voted; // if true, that person already voted
address delegate; // person delegated to
uint vote; // index of the voted proposal
}
struct Proposal {
// If you can limit the length to a certain number of bytes,
// always use one of bytes1 to bytes32 because they are much cheaper
bytes32 name; // short name (up to 32 bytes)
uint voteCount; // number of accumulated votes
}
address public chairperson;
mapping(address => Voter) public voters;
Proposal[] public proposals;
/**
* @dev Create a new ballot to choose one of 'proposalNames'.
* @param proposalNames names of proposals
*/
constructor(bytes32[] memory proposalNames) {
chairperson = msg.sender;
voters[chairperson].weight = 1;
for (uint i = 0; i < proposalNames.length; i++) {
// 'Proposal({...})' creates a temporary
// Proposal object and 'proposals.push(...)'
// appends it to the end of 'proposals'.
proposals.push(Proposal({
name: proposalNames[i],
voteCount: 0
}));
}
}
/**
* @dev Give 'voter' the right to vote on this ballot. May only be called by 'chairperson'.
* @param voter address of voter
*/
function giveRightToVote(address voter) public {
require(
msg.sender == chairperson,
"Only chairperson can give right to vote."
);
require(
!voters[voter].voted,
"The voter already voted."
);
require(voters[voter].weight == 0);
voters[voter].weight = 1;
}
/**
* @dev Delegate your vote to the voter 'to'.
* @param to address to which vote is delegated
*/
function delegate(address to) public {
Voter storage sender = voters[msg.sender];
require(!sender.voted, "You already voted.");
require(to != msg.sender, "Self-delegation is disallowed.");
while (voters[to].delegate != address(0)) {
to = voters[to].delegate;
// We found a loop in the delegation, not allowed.
require(to != msg.sender, "Found loop in delegation.");
}
sender.voted = true;
sender.delegate = to;
Voter storage delegate_ = voters[to];
if (delegate_.voted) {
// If the delegate already voted,
// directly add to the number of votes
proposals[delegate_.vote].voteCount += sender.weight;
} else {
// If the delegate did not vote yet,
// add to her weight.
delegate_.weight += sender.weight;
}
}
/**
* @dev Give your vote (including votes delegated to you) to proposal 'proposals[proposal].name'.
* @param proposal index of proposal in the proposals array
*/
function vote(uint proposal) public {
Voter storage sender = voters[msg.sender];
require(sender.weight != 0, "Has no right to vote");
require(!sender.voted, "Already voted.");
sender.voted = true;
sender.vote = proposal;
// If 'proposal' is out of the range of the array,
// this will throw automatically and revert all
// changes.
proposals[proposal].voteCount += sender.weight;
}
/**
* @dev Computes the winning proposal taking all previous votes into account.
* @return winningProposal_ index of winning proposal in the proposals array
*/
function winningProposal() public view
returns (uint winningProposal_)
{
uint winningVoteCount = 0;
for (uint p = 0; p < proposals.length; p++) {
if (proposals[p].voteCount > winningVoteCount) {
winningVoteCount = proposals[p].voteCount;
winningProposal_ = p;
}
}
}
/**
* @dev Calls winningProposal() function to get the index of the winner contained in the proposals array and then
* @return winnerName_ the name of the winner
*/
function winnerName() public view
returns (bytes32 winnerName_)
{
winnerName_ = proposals[winningProposal()].name;
}
}
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;
contract Address {
address public WETH = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4;
address payable public Vault = payable(0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2);
constructor() {}
}
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;
contract Arrays {
string[] public eggBox = ["egg1", "egg2", "egg3"];
constructor() {}
function dynamicArrays() public pure returns (uint256[] memory) {
uint256[] memory luckyNumber = new uint256[](5);
// 0,0,0,7,0
luckyNumber[3] = 7;
luckyNumber[5] = 1;
return luckyNumber;
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_12": {
"entryPoint": null,
"id": 12,
"parameterSlots": 0,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 631,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 584,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:516:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "35:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "52:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "55:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "45:6:1"
},
"nodeType": "YulFunctionCall",
"src": "45:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "45:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "149:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "152:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "142:6:1"
},
"nodeType": "YulFunctionCall",
"src": "142:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "142:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "173:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "176:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "166:6:1"
},
"nodeType": "YulFunctionCall",
"src": "166:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "166:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "7:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "244:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "254:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "268:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "274:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "264:3:1"
},
"nodeType": "YulFunctionCall",
"src": "264:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "254:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "285:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "315:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "321:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "311:3:1"
},
"nodeType": "YulFunctionCall",
"src": "311:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "289:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "362:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "376:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "390:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "398:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "386:3:1"
},
"nodeType": "YulFunctionCall",
"src": "386:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "376:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "342:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "335:6:1"
},
"nodeType": "YulFunctionCall",
"src": "335:26:1"
},
"nodeType": "YulIf",
"src": "332:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "465:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "479:16:1"
},
"nodeType": "YulFunctionCall",
"src": "479:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "479:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "429:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "452:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "460:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "449:2:1"
},
"nodeType": "YulFunctionCall",
"src": "449:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "426:2:1"
},
"nodeType": "YulFunctionCall",
"src": "426:38:1"
},
"nodeType": "YulIf",
"src": "423:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "228:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "237:6:1",
"type": ""
}
],
"src": "193:320:1"
}
]
},
"contents": "{\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": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "608060405260405180606001604052806040518060400160405280600481526020017f656767310000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f656767320000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f656767330000000000000000000000000000000000000000000000000000000081525081525060009060036100ce9291906100e1565b503480156100db57600080fd5b506102a8565b828054828255906000526020600020908101928215610130579160200282015b8281111561012f57825182908051906020019061011f929190610141565b5091602001919060010190610101565b5b50905061013d91906101c7565b5090565b82805461014d90610277565b90600052602060002090601f01602090048101928261016f57600085556101b6565b82601f1061018857805160ff19168380011785556101b6565b828001600101855582156101b6579182015b828111156101b557825182559160200191906001019061019a565b5b5090506101c391906101eb565b5090565b5b808211156101e757600081816101de9190610208565b506001016101c8565b5090565b5b808211156102045760008160009055506001016101ec565b5090565b50805461021490610277565b6000825580601f106102265750610245565b601f01602090049060005260206000209081019061024491906101eb565b5b50565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061028f57607f821691505b6020821081036102a2576102a1610248565b5b50919050565b6104c7806102b76000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c8063586e696e1461003b578063e588b27a14610059575b600080fd5b610043610089565b6040516100509190610298565b60405180910390f35b610073600480360381019061006e91906102eb565b610124565b60405161008091906103b1565b60405180910390f35b60606000600567ffffffffffffffff8111156100a8576100a76103d3565b5b6040519080825280602002602001820160405280156100d65781602001602082028036833780820191505090505b5090506007816003815181106100ef576100ee610402565b5b60200260200101818152505060018160058151811061011157610110610402565b5b6020026020010181815250508091505090565b6000818154811061013457600080fd5b90600052602060002001600091509050805461014f90610460565b80601f016020809104026020016040519081016040528092919081815260200182805461017b90610460565b80156101c85780601f1061019d576101008083540402835291602001916101c8565b820191906000526020600020905b8154815290600101906020018083116101ab57829003601f168201915b505050505081565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6000819050919050565b61020f816101fc565b82525050565b60006102218383610206565b60208301905092915050565b6000602082019050919050565b6000610245826101d0565b61024f81856101db565b935061025a836101ec565b8060005b8381101561028b5781516102728882610215565b975061027d8361022d565b92505060018101905061025e565b5085935050505092915050565b600060208201905081810360008301526102b2818461023a565b905092915050565b600080fd5b6102c8816101fc565b81146102d357600080fd5b50565b6000813590506102e5816102bf565b92915050565b600060208284031215610301576103006102ba565b5b600061030f848285016102d6565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610352578082015181840152602081019050610337565b83811115610361576000848401525b50505050565b6000601f19601f8301169050919050565b600061038382610318565b61038d8185610323565b935061039d818560208601610334565b6103a681610367565b840191505092915050565b600060208201905081810360008301526103cb8184610378565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061047857607f821691505b60208210810361048b5761048a610431565b5b5091905056fea2646970667358221220bbc6061f500a09636df641f6879cf604b221278573597b84bdca0e35e9a3a66a64736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x6567673100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x6567673200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x6567673300000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 MSTORE POP PUSH1 0x0 SWAP1 PUSH1 0x3 PUSH2 0xCE SWAP3 SWAP2 SWAP1 PUSH2 0xE1 JUMP JUMPDEST POP CALLVALUE DUP1 ISZERO PUSH2 0xDB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A8 JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x130 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x12F JUMPI DUP3 MLOAD DUP3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x11F SWAP3 SWAP2 SWAP1 PUSH2 0x141 JUMP JUMPDEST POP SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x101 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x13D SWAP2 SWAP1 PUSH2 0x1C7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x14D SWAP1 PUSH2 0x277 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x16F JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x1B6 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x188 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x1B6 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x1B6 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x1B5 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x19A JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x1C3 SWAP2 SWAP1 PUSH2 0x1EB JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x1E7 JUMPI PUSH1 0x0 DUP2 DUP2 PUSH2 0x1DE SWAP2 SWAP1 PUSH2 0x208 JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x1C8 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x204 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x1EC JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST POP DUP1 SLOAD PUSH2 0x214 SWAP1 PUSH2 0x277 JUMP JUMPDEST PUSH1 0x0 DUP3 SSTORE DUP1 PUSH1 0x1F LT PUSH2 0x226 JUMPI POP PUSH2 0x245 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x244 SWAP2 SWAP1 PUSH2 0x1EB JUMP JUMPDEST JUMPDEST 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 0x28F JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x2A2 JUMPI PUSH2 0x2A1 PUSH2 0x248 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x4C7 DUP1 PUSH2 0x2B7 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 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x586E696E EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0xE588B27A EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x89 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x298 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x2EB JUMP JUMPDEST PUSH2 0x124 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x80 SWAP2 SWAP1 PUSH2 0x3B1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x5 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA8 JUMPI PUSH2 0xA7 PUSH2 0x3D3 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xD6 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x7 DUP2 PUSH1 0x3 DUP2 MLOAD DUP2 LT PUSH2 0xEF JUMPI PUSH2 0xEE PUSH2 0x402 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP PUSH1 0x1 DUP2 PUSH1 0x5 DUP2 MLOAD DUP2 LT PUSH2 0x111 JUMPI PUSH2 0x110 PUSH2 0x402 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x134 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 SLOAD PUSH2 0x14F SWAP1 PUSH2 0x460 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 0x17B SWAP1 PUSH2 0x460 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1C8 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x19D JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1C8 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 0x1AB JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x20F DUP2 PUSH2 0x1FC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x221 DUP4 DUP4 PUSH2 0x206 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x245 DUP3 PUSH2 0x1D0 JUMP JUMPDEST PUSH2 0x24F DUP2 DUP6 PUSH2 0x1DB JUMP JUMPDEST SWAP4 POP PUSH2 0x25A DUP4 PUSH2 0x1EC JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x28B JUMPI DUP2 MLOAD PUSH2 0x272 DUP9 DUP3 PUSH2 0x215 JUMP JUMPDEST SWAP8 POP PUSH2 0x27D DUP4 PUSH2 0x22D JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x25E JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2B2 DUP2 DUP5 PUSH2 0x23A JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2C8 DUP2 PUSH2 0x1FC JUMP JUMPDEST DUP2 EQ PUSH2 0x2D3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2E5 DUP2 PUSH2 0x2BF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x301 JUMPI PUSH2 0x300 PUSH2 0x2BA JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x30F DUP5 DUP3 DUP6 ADD PUSH2 0x2D6 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 0x352 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x337 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x361 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x383 DUP3 PUSH2 0x318 JUMP JUMPDEST PUSH2 0x38D DUP2 DUP6 PUSH2 0x323 JUMP JUMPDEST SWAP4 POP PUSH2 0x39D DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x334 JUMP JUMPDEST PUSH2 0x3A6 DUP2 PUSH2 0x367 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 0x3CB DUP2 DUP5 PUSH2 0x378 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x478 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x48B JUMPI PUSH2 0x48A PUSH2 0x431 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBB 0xC6 MOD 0x1F POP EXP MULMOD PUSH4 0x6DF641F6 DUP8 SWAP13 0xF6 DIV 0xB2 0x21 0x27 DUP6 PUSH20 0x597B84BDCA0E35E9A3A66A64736F6C634300080D STOP CALLER ",
"sourceMap": "58:338:0:-:0;;;81:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;137:16;;;;;;;;;;58:338;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;7:180:1:-;55:77;52:1;45:88;152:4;149:1;142:15;176:4;173:1;166:15;193:320;237:6;274:1;268:4;264:12;254:22;;321:1;315:4;311:12;342:18;332:81;;398:4;390:6;386:17;376:27;;332:81;460:2;452:6;449:14;429:18;426:38;423:84;;479:18;;:::i;:::-;423:84;244:269;193:320;;;:::o;58:338:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@dynamicArrays_44": {
"entryPoint": 137,
"id": 44,
"parameterSlots": 0,
"returnSlots": 1
},
"@eggBox_8": {
"entryPoint": 292,
"id": 8,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_t_uint256": {
"entryPoint": 726,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 747,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encodeUpdatedPos_t_uint256_to_t_uint256": {
"entryPoint": 533,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack": {
"entryPoint": 570,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 888,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256": {
"entryPoint": 518,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
"entryPoint": 664,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 945,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_dataslot_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 492,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 464,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 792,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_nextElement_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 557,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack": {
"entryPoint": 475,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 803,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 508,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 820,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 1120,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 1073,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 1026,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 979,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 698,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 871,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_uint256": {
"entryPoint": 703,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5309:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "81:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "92:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "108:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "102:5:1"
},
"nodeType": "YulFunctionCall",
"src": "102:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "92:6:1"
}
]
}
]
},
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "64:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "74:6:1",
"type": ""
}
],
"src": "7:114:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "238:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "255:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "260:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "248:6:1"
},
"nodeType": "YulFunctionCall",
"src": "248:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "248:19:1"
},
{
"nodeType": "YulAssignment",
"src": "276:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "295:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "300:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "291:3:1"
},
"nodeType": "YulFunctionCall",
"src": "291:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "276:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "210:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "215:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "226:11:1",
"type": ""
}
],
"src": "127:184:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "389:60:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "399:11:1",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "407:3:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "399:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "420:22:1",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "432:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "437:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "428:3:1"
},
"nodeType": "YulFunctionCall",
"src": "428:14:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "420:4:1"
}
]
}
]
},
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "376:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "384:4:1",
"type": ""
}
],
"src": "317:132:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "500:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "510:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "521:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "510:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "482:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "492:7:1",
"type": ""
}
],
"src": "455:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "593:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "610:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "633:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "615:17:1"
},
"nodeType": "YulFunctionCall",
"src": "615:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "603:6:1"
},
"nodeType": "YulFunctionCall",
"src": "603:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "603:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "581:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "588:3:1",
"type": ""
}
],
"src": "538:108:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "732:99:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "776:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "784:3:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "742:33:1"
},
"nodeType": "YulFunctionCall",
"src": "742:46:1"
},
"nodeType": "YulExpressionStatement",
"src": "742:46:1"
},
{
"nodeType": "YulAssignment",
"src": "797:28:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "815:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "820:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "811:3:1"
},
"nodeType": "YulFunctionCall",
"src": "811:14:1"
},
"variableNames": [
{
"name": "updatedPos",
"nodeType": "YulIdentifier",
"src": "797:10:1"
}
]
}
]
},
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "705:6:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "713:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updatedPos",
"nodeType": "YulTypedName",
"src": "721:10:1",
"type": ""
}
],
"src": "652:179:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "912:38:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "922:22:1",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "934:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "939:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "930:3:1"
},
"nodeType": "YulFunctionCall",
"src": "930:14:1"
},
"variableNames": [
{
"name": "next",
"nodeType": "YulIdentifier",
"src": "922:4:1"
}
]
}
]
},
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "899:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "next",
"nodeType": "YulTypedName",
"src": "907:4:1",
"type": ""
}
],
"src": "837:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1110:608:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1120:68:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1182:5:1"
}
],
"functionName": {
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1134:47:1"
},
"nodeType": "YulFunctionCall",
"src": "1134:54:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1124:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1197:93:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1278:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1283:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1204:73:1"
},
"nodeType": "YulFunctionCall",
"src": "1204:86:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1197:3:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1299:71:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1364:5:1"
}
],
"functionName": {
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1314:49:1"
},
"nodeType": "YulFunctionCall",
"src": "1314:56:1"
},
"variables": [
{
"name": "baseRef",
"nodeType": "YulTypedName",
"src": "1303:7:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1379:21:1",
"value": {
"name": "baseRef",
"nodeType": "YulIdentifier",
"src": "1393:7:1"
},
"variables": [
{
"name": "srcPtr",
"nodeType": "YulTypedName",
"src": "1383:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1469:224:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1483:34:1",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "1510:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1504:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1504:13:1"
},
"variables": [
{
"name": "elementValue0",
"nodeType": "YulTypedName",
"src": "1487:13:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1530:70:1",
"value": {
"arguments": [
{
"name": "elementValue0",
"nodeType": "YulIdentifier",
"src": "1581:13:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1596:3:1"
}
],
"functionName": {
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "1537:43:1"
},
"nodeType": "YulFunctionCall",
"src": "1537:63:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1530:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1613:70:1",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "1676:6:1"
}
],
"functionName": {
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1623:52:1"
},
"nodeType": "YulFunctionCall",
"src": "1623:60:1"
},
"variableNames": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "1613:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1431:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1434:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1428:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1428:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1442:18:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1444:14:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1453:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1456:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1449:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1449:9:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1444:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1413:14:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1415:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1424:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1419:1:1",
"type": ""
}
]
}
]
},
"src": "1409:284:1"
},
{
"nodeType": "YulAssignment",
"src": "1702:10:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1709:3:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1702:3:1"
}
]
}
]
},
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1089:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1096:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1105:3:1",
"type": ""
}
],
"src": "986:732:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1872:225:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1882:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1894:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1905:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1890:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1890:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1882:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1929:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1940:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1925:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1925:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1948:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1954:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1944:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1944:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1918:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1918:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "1918:47:1"
},
{
"nodeType": "YulAssignment",
"src": "1974:116:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2076:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2085:4:1"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1982:93:1"
},
"nodeType": "YulFunctionCall",
"src": "1982:108:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1974:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1844:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1856:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1867:4:1",
"type": ""
}
],
"src": "1724:373:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2143:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2153:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2169:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2163:5:1"
},
"nodeType": "YulFunctionCall",
"src": "2163:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2153:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2136:6:1",
"type": ""
}
],
"src": "2103:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2273:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2290:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2293:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2283:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2283:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2283:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "2184:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2396:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2413:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2416:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2406:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2406:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2406:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "2307:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2473:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2530:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2539:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2542:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2532:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2532:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2532:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2496:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2521:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2503:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2503:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2493:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2493:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2486:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2486:43:1"
},
"nodeType": "YulIf",
"src": "2483:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2466:5:1",
"type": ""
}
],
"src": "2430:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2610:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2620:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2642:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2629:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2629:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2620:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2685:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2658:26:1"
},
"nodeType": "YulFunctionCall",
"src": "2658:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "2658:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2588:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2596:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2604:5:1",
"type": ""
}
],
"src": "2558:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2769:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2815:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2817:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2817:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2817:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2790:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2799:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2786:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2786:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2811:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2782:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2782:32:1"
},
"nodeType": "YulIf",
"src": "2779:119:1"
},
{
"nodeType": "YulBlock",
"src": "2908:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2923:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2937:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2927:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2952:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2987:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2998:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2983:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2983:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3007:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2962:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2962:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2952:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2739:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2750:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2762:6:1",
"type": ""
}
],
"src": "2703:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3097:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3108:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3124:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3118:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3118:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3108:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3080:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3090:6:1",
"type": ""
}
],
"src": "3038:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3239:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3256:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3261:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3249:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3249:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "3249:19:1"
},
{
"nodeType": "YulAssignment",
"src": "3277:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3296:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3301:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3292:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3292:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "3277:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3211:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3216:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "3227:11:1",
"type": ""
}
],
"src": "3143:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3367:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3377:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3386:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "3381:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3446:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3471:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3476:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3467:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3467:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3490:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3495:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3486:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3486:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3480:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3480:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3460:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3460:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "3460:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3407:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3410:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3404:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3404:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "3418:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3420:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3429:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3432:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3425:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3425:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3420:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "3400:3:1",
"statements": []
},
"src": "3396:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3543:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3593:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3598:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3589:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3589:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3607:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3582:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3582:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "3582:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3524:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3527:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3521:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3521:13:1"
},
"nodeType": "YulIf",
"src": "3518:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3349:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "3354:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3359:6:1",
"type": ""
}
],
"src": "3318:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3679:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3689:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3707:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3714:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3703:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3703:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3723:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3719:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3719:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3699:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3699:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "3689:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3662:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "3672:6:1",
"type": ""
}
],
"src": "3631:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3831:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3841:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3888:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3855:32:1"
},
"nodeType": "YulFunctionCall",
"src": "3855:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3845:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3903:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3969:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3974:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3910:58:1"
},
"nodeType": "YulFunctionCall",
"src": "3910:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3903:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4016:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4023:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4012:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4012:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4030:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4035:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "3990:21:1"
},
"nodeType": "YulFunctionCall",
"src": "3990:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "3990:52:1"
},
{
"nodeType": "YulAssignment",
"src": "4051:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4062:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4089:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "4067:21:1"
},
"nodeType": "YulFunctionCall",
"src": "4067:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4058:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4058:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4051:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3812:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3819:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3827:3:1",
"type": ""
}
],
"src": "3739:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4227:195:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4237:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4249:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4260:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4245:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4245:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4237:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4284:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4295:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4280:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4280:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4303:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4309:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4299:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4299:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4273:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4273:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "4273:47:1"
},
{
"nodeType": "YulAssignment",
"src": "4329:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4401:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4410:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4337:63:1"
},
"nodeType": "YulFunctionCall",
"src": "4337:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4329:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4199:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4211:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4222:4:1",
"type": ""
}
],
"src": "4109:313:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4456:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4473:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4476:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4466:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4466:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "4466:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4570:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4573:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4563:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4563:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4563:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4594:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4597:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4587:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4587:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4587:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "4428:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4642:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4659:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4662:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4652:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4652:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "4652:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4756:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4759:4:1",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4749:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4749:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4749:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4780:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4783:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4773:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4773:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4773:15:1"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "4614:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4828:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4845:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4848:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4838:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4838:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "4838:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4942:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4945:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4935:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4935:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4935:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4966:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4969:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4959:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4959:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4959:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "4800:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5037:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5047:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5061:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5067:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5057:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5057:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5047:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5078:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5108:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5114:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5104:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5104:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5082:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5155:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5169:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5183:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5191:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5179:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5179:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5169:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5135:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5128:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5128:26:1"
},
"nodeType": "YulIf",
"src": "5125:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5258:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "5272:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5272:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5272:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5222:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5245:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5253:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5242:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5242:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5219:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5219:38:1"
},
"nodeType": "YulIf",
"src": "5216:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5021:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5030:6:1",
"type": ""
}
],
"src": "4986:320:1"
}
]
},
"contents": "{\n\n function array_length_t_array$_t_uint256_$dyn_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_dataslot_t_array$_t_uint256_$dyn_memory_ptr(ptr) -> data {\n data := ptr\n\n data := add(ptr, 0x20)\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encodeUpdatedPos_t_uint256_to_t_uint256(value0, pos) -> updatedPos {\n abi_encode_t_uint256_to_t_uint256(value0, pos)\n updatedPos := add(pos, 0x20)\n }\n\n function array_nextElement_t_array$_t_uint256_$dyn_memory_ptr(ptr) -> next {\n next := add(ptr, 0x20)\n }\n\n // uint256[] -> uint256[]\n function abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_uint256_$dyn_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack(pos, length)\n let baseRef := array_dataslot_t_array$_t_uint256_$dyn_memory_ptr(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n let elementValue0 := mload(srcPtr)\n pos := abi_encodeUpdatedPos_t_uint256_to_t_uint256(elementValue0, pos)\n srcPtr := array_nextElement_t_array$_t_uint256_$dyn_memory_ptr(srcPtr)\n }\n end := pos\n }\n\n function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value0, tail)\n\n }\n\n function 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 validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function panic_error_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": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100365760003560e01c8063586e696e1461003b578063e588b27a14610059575b600080fd5b610043610089565b6040516100509190610298565b60405180910390f35b610073600480360381019061006e91906102eb565b610124565b60405161008091906103b1565b60405180910390f35b60606000600567ffffffffffffffff8111156100a8576100a76103d3565b5b6040519080825280602002602001820160405280156100d65781602001602082028036833780820191505090505b5090506007816003815181106100ef576100ee610402565b5b60200260200101818152505060018160058151811061011157610110610402565b5b6020026020010181815250508091505090565b6000818154811061013457600080fd5b90600052602060002001600091509050805461014f90610460565b80601f016020809104026020016040519081016040528092919081815260200182805461017b90610460565b80156101c85780601f1061019d576101008083540402835291602001916101c8565b820191906000526020600020905b8154815290600101906020018083116101ab57829003601f168201915b505050505081565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6000819050919050565b61020f816101fc565b82525050565b60006102218383610206565b60208301905092915050565b6000602082019050919050565b6000610245826101d0565b61024f81856101db565b935061025a836101ec565b8060005b8381101561028b5781516102728882610215565b975061027d8361022d565b92505060018101905061025e565b5085935050505092915050565b600060208201905081810360008301526102b2818461023a565b905092915050565b600080fd5b6102c8816101fc565b81146102d357600080fd5b50565b6000813590506102e5816102bf565b92915050565b600060208284031215610301576103006102ba565b5b600061030f848285016102d6565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610352578082015181840152602081019050610337565b83811115610361576000848401525b50505050565b6000601f19601f8301169050919050565b600061038382610318565b61038d8185610323565b935061039d818560208601610334565b6103a681610367565b840191505092915050565b600060208201905081810360008301526103cb8184610378565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061047857607f821691505b60208210810361048b5761048a610431565b5b5091905056fea2646970667358221220bbc6061f500a09636df641f6879cf604b221278573597b84bdca0e35e9a3a66a64736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x586E696E EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0xE588B27A EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x89 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x298 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x2EB JUMP JUMPDEST PUSH2 0x124 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x80 SWAP2 SWAP1 PUSH2 0x3B1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x5 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA8 JUMPI PUSH2 0xA7 PUSH2 0x3D3 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xD6 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x7 DUP2 PUSH1 0x3 DUP2 MLOAD DUP2 LT PUSH2 0xEF JUMPI PUSH2 0xEE PUSH2 0x402 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP PUSH1 0x1 DUP2 PUSH1 0x5 DUP2 MLOAD DUP2 LT PUSH2 0x111 JUMPI PUSH2 0x110 PUSH2 0x402 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x134 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 SLOAD PUSH2 0x14F SWAP1 PUSH2 0x460 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 0x17B SWAP1 PUSH2 0x460 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1C8 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x19D JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1C8 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 0x1AB JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x20F DUP2 PUSH2 0x1FC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x221 DUP4 DUP4 PUSH2 0x206 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x245 DUP3 PUSH2 0x1D0 JUMP JUMPDEST PUSH2 0x24F DUP2 DUP6 PUSH2 0x1DB JUMP JUMPDEST SWAP4 POP PUSH2 0x25A DUP4 PUSH2 0x1EC JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x28B JUMPI DUP2 MLOAD PUSH2 0x272 DUP9 DUP3 PUSH2 0x215 JUMP JUMPDEST SWAP8 POP PUSH2 0x27D DUP4 PUSH2 0x22D JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x25E JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2B2 DUP2 DUP5 PUSH2 0x23A JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2C8 DUP2 PUSH2 0x1FC JUMP JUMPDEST DUP2 EQ PUSH2 0x2D3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2E5 DUP2 PUSH2 0x2BF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x301 JUMPI PUSH2 0x300 PUSH2 0x2BA JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x30F DUP5 DUP3 DUP6 ADD PUSH2 0x2D6 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 0x352 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x337 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x361 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x383 DUP3 PUSH2 0x318 JUMP JUMPDEST PUSH2 0x38D DUP2 DUP6 PUSH2 0x323 JUMP JUMPDEST SWAP4 POP PUSH2 0x39D DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x334 JUMP JUMPDEST PUSH2 0x3A6 DUP2 PUSH2 0x367 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 0x3CB DUP2 DUP5 PUSH2 0x378 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x478 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x48B JUMPI PUSH2 0x48A PUSH2 0x431 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBB 0xC6 MOD 0x1F POP EXP MULMOD PUSH4 0x6DF641F6 DUP8 SWAP13 0xF6 DIV 0xB2 0x21 0x27 DUP6 PUSH20 0x597B84BDCA0E35E9A3A66A64736F6C634300080D STOP CALLER ",
"sourceMap": "58:338:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159:235;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81:49;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;159:235;205:16;233:28;278:1;264:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233:47;;329:1;312:11;324:1;312:14;;;;;;;;:::i;:::-;;;;;;;:18;;;;;357:1;340:11;352:1;340:14;;;;;;;;:::i;:::-;;;;;;;:18;;;;;376:11;369:18;;;159:235;:::o;81:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:114:1:-;74:6;108:5;102:12;92:22;;7:114;;;:::o;127:184::-;226:11;260:6;255:3;248:19;300:4;295:3;291:14;276:29;;127:184;;;;:::o;317:132::-;384:4;407:3;399:11;;437:4;432:3;428:14;420:22;;317:132;;;:::o;455:77::-;492:7;521:5;510:16;;455:77;;;:::o;538:108::-;615:24;633:5;615:24;:::i;:::-;610:3;603:37;538:108;;:::o;652:179::-;721:10;742:46;784:3;776:6;742:46;:::i;:::-;820:4;815:3;811:14;797:28;;652:179;;;;:::o;837:113::-;907:4;939;934:3;930:14;922:22;;837:113;;;:::o;986:732::-;1105:3;1134:54;1182:5;1134:54;:::i;:::-;1204:86;1283:6;1278:3;1204:86;:::i;:::-;1197:93;;1314:56;1364:5;1314:56;:::i;:::-;1393:7;1424:1;1409:284;1434:6;1431:1;1428:13;1409:284;;;1510:6;1504:13;1537:63;1596:3;1581:13;1537:63;:::i;:::-;1530:70;;1623:60;1676:6;1623:60;:::i;:::-;1613:70;;1469:224;1456:1;1453;1449:9;1444:14;;1409:284;;;1413:14;1709:3;1702:10;;1110:608;;;986:732;;;;:::o;1724:373::-;1867:4;1905:2;1894:9;1890:18;1882:26;;1954:9;1948:4;1944:20;1940:1;1929:9;1925:17;1918:47;1982:108;2085:4;2076:6;1982:108;:::i;:::-;1974:116;;1724:373;;;;:::o;2184:117::-;2293:1;2290;2283:12;2430:122;2503:24;2521:5;2503:24;:::i;:::-;2496:5;2493:35;2483:63;;2542:1;2539;2532:12;2483:63;2430:122;:::o;2558:139::-;2604:5;2642:6;2629:20;2620:29;;2658:33;2685:5;2658:33;:::i;:::-;2558:139;;;;:::o;2703:329::-;2762:6;2811:2;2799:9;2790:7;2786:23;2782:32;2779:119;;;2817:79;;:::i;:::-;2779:119;2937:1;2962:53;3007:7;2998:6;2987:9;2983:22;2962:53;:::i;:::-;2952:63;;2908:117;2703:329;;;;:::o;3038:99::-;3090:6;3124:5;3118:12;3108:22;;3038:99;;;:::o;3143:169::-;3227:11;3261:6;3256:3;3249:19;3301:4;3296:3;3292:14;3277:29;;3143:169;;;;:::o;3318:307::-;3386:1;3396:113;3410:6;3407:1;3404:13;3396:113;;;3495:1;3490:3;3486:11;3480:18;3476:1;3471:3;3467:11;3460:39;3432:2;3429:1;3425:10;3420:15;;3396:113;;;3527:6;3524:1;3521:13;3518:101;;;3607:1;3598:6;3593:3;3589:16;3582:27;3518:101;3367:258;3318:307;;;:::o;3631:102::-;3672:6;3723:2;3719:7;3714:2;3707:5;3703:14;3699:28;3689:38;;3631:102;;;:::o;3739:364::-;3827:3;3855:39;3888:5;3855:39;:::i;:::-;3910:71;3974:6;3969:3;3910:71;:::i;:::-;3903:78;;3990:52;4035:6;4030:3;4023:4;4016:5;4012:16;3990:52;:::i;:::-;4067:29;4089:6;4067:29;:::i;:::-;4062:3;4058:39;4051:46;;3831:272;3739:364;;;;:::o;4109:313::-;4222:4;4260:2;4249:9;4245:18;4237:26;;4309:9;4303:4;4299:20;4295:1;4284:9;4280:17;4273:47;4337:78;4410:4;4401:6;4337:78;:::i;:::-;4329:86;;4109:313;;;;:::o;4428:180::-;4476:77;4473:1;4466:88;4573:4;4570:1;4563:15;4597:4;4594:1;4587:15;4614:180;4662:77;4659:1;4652:88;4759:4;4756:1;4749:15;4783:4;4780:1;4773:15;4800:180;4848:77;4845:1;4838:88;4945:4;4942:1;4935:15;4969:4;4966:1;4959:15;4986:320;5030:6;5067:1;5061:4;5057:12;5047:22;;5114:1;5108:4;5104:12;5135:18;5125:81;;5191:4;5183:6;5179:17;5169:27;;5125:81;5253:2;5245:6;5242:14;5222:18;5219:38;5216:84;;5272:18;;:::i;:::-;5216:84;5037:269;4986:320;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "244600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"dynamicArrays()": "infinite",
"eggBox(uint256)": "infinite"
}
},
"methodIdentifiers": {
"dynamicArrays()": "586e696e",
"eggBox(uint256)": "e588b27a"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "dynamicArrays",
"outputs": [
{
"internalType": "uint256[]",
"name": "",
"type": "uint256[]"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "eggBox",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.13+commit.abaa5c0e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "dynamicArrays",
"outputs": [
{
"internalType": "uint256[]",
"name": "",
"type": "uint256[]"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "eggBox",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/arrays.sol": "Arrays"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/arrays.sol": {
"keccak256": "0x79915a5705cc1344af729088370879489a3f7d0cd980a8580fc744d1b15fc7b8",
"license": "MIT",
"urls": [
"bzz-raw://c6181a7e66a26c0b5278cde0246466f7a263ccea057ff5cb1dab6cc72b20af33",
"dweb:/ipfs/QmRuqgLEGP43wpMgQvjShDaAZT7eBDHhri7sRL2RQSd7vU"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_22": {
"entryPoint": null,
"id": 22,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5060016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f6000807317f6ad8ef982297579c203069c1dbffe4348c37273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610172806100bc6000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c806327e235e314610030575b600080fd5b61004a600480360381019061004591906100db565b610060565b6040516100579190610121565b60405180910390f35b60006020528060005260406000206000915090505481565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006100a88261007d565b9050919050565b6100b88161009d565b81146100c357600080fd5b50565b6000813590506100d5816100af565b92915050565b6000602082840312156100f1576100f0610078565b5b60006100ff848285016100c6565b91505092915050565b6000819050919050565b61011b81610108565b82525050565b60006020820190506101366000830184610112565b9291505056fea264697066735822122067fc1c4249abb7cc782c0d2384ebde02148b7a33bf79bb4fd4ee142dc797027964736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x1 PUSH1 0x0 DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0xF PUSH1 0x0 DUP1 PUSH20 0x17F6AD8EF982297579C203069C1DBFFE4348C372 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH2 0x172 DUP1 PUSH2 0xBC 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 0x2B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x27E235E3 EQ PUSH2 0x30 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x45 SWAP2 SWAP1 PUSH2 0xDB JUMP JUMPDEST PUSH2 0x60 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x57 SWAP2 SWAP1 PUSH2 0x121 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 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 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA8 DUP3 PUSH2 0x7D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB8 DUP2 PUSH2 0x9D JUMP JUMPDEST DUP2 EQ PUSH2 0xC3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xD5 DUP2 PUSH2 0xAF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xF1 JUMPI PUSH2 0xF0 PUSH2 0x78 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xFF DUP5 DUP3 DUP6 ADD PUSH2 0xC6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x11B DUP2 PUSH2 0x108 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x136 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x112 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH8 0xFC1C4249ABB7CC78 0x2C 0xD 0x23 DUP5 0xEB 0xDE MUL EQ DUP12 PUSH27 0x33BF79BB4FD4EE142DC797027964736F6C634300080D0033000000 ",
"sourceMap": "58:197:0:-:0;;;131:122;;;;;;;;;;178:1;155:8;:20;164:10;155:20;;;;;;;;;;;;;;;:24;;;;244:2;189:8;:52;198:42;189:52;;;;;;;;;;;;;;;:57;;;;58:197;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@balances_5": {
"entryPoint": 96,
"id": 5,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 198,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 219,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 274,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 289,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 157,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 125,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 264,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 120,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 175,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1608:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "404:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "411:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "400:3:1"
},
"nodeType": "YulFunctionCall",
"src": "400:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:1",
"type": ""
}
],
"src": "334:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "511:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "521:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "550:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "532:17:1"
},
"nodeType": "YulFunctionCall",
"src": "532:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "521:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "493:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "503:7:1",
"type": ""
}
],
"src": "466:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "611:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "668:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "677:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "680:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "670:6:1"
},
"nodeType": "YulFunctionCall",
"src": "670:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "670:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "634:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "659:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "641:17:1"
},
"nodeType": "YulFunctionCall",
"src": "641:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "631:2:1"
},
"nodeType": "YulFunctionCall",
"src": "631:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "624:6:1"
},
"nodeType": "YulFunctionCall",
"src": "624:43:1"
},
"nodeType": "YulIf",
"src": "621:63:1"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "604:5:1",
"type": ""
}
],
"src": "568:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "748:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "758:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "780:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "767:12:1"
},
"nodeType": "YulFunctionCall",
"src": "767:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "758:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "823:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "796:26:1"
},
"nodeType": "YulFunctionCall",
"src": "796:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "796:33:1"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "726:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "734:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "742:5:1",
"type": ""
}
],
"src": "696:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "907:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "953:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "955:77:1"
},
"nodeType": "YulFunctionCall",
"src": "955:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "955:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "928:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "937:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "924:3:1"
},
"nodeType": "YulFunctionCall",
"src": "924:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "949:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "920:3:1"
},
"nodeType": "YulFunctionCall",
"src": "920:32:1"
},
"nodeType": "YulIf",
"src": "917:119:1"
},
{
"nodeType": "YulBlock",
"src": "1046:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1061:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1075:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1065:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1090:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1125:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1136:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1121:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1121:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1145:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1100:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1100:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1090:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "877:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "888:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "900:6:1",
"type": ""
}
],
"src": "841:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1221:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1231:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1242:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1231:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1203:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1213:7:1",
"type": ""
}
],
"src": "1176:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1324:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1341:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1364:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1346:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1346:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1334:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1334:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "1334:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1312:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1319:3:1",
"type": ""
}
],
"src": "1259:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1481:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1491:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1503:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1514:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1499:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1499:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1491:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1571:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1584:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1595:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1580:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1580:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1527:43:1"
},
"nodeType": "YulFunctionCall",
"src": "1527:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "1527:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1453:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1465:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1476:4:1",
"type": ""
}
],
"src": "1383:222:1"
}
]
},
"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_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(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061002b5760003560e01c806327e235e314610030575b600080fd5b61004a600480360381019061004591906100db565b610060565b6040516100579190610121565b60405180910390f35b60006020528060005260406000206000915090505481565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006100a88261007d565b9050919050565b6100b88161009d565b81146100c357600080fd5b50565b6000813590506100d5816100af565b92915050565b6000602082840312156100f1576100f0610078565b5b60006100ff848285016100c6565b91505092915050565b6000819050919050565b61011b81610108565b82525050565b60006020820190506101366000830184610112565b9291505056fea264697066735822122067fc1c4249abb7cc782c0d2384ebde02148b7a33bf79bb4fd4ee142dc797027964736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x2B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x27E235E3 EQ PUSH2 0x30 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x45 SWAP2 SWAP1 PUSH2 0xDB JUMP JUMPDEST PUSH2 0x60 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x57 SWAP2 SWAP1 PUSH2 0x121 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 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 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA8 DUP3 PUSH2 0x7D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB8 DUP2 PUSH2 0x9D JUMP JUMPDEST DUP2 EQ PUSH2 0xC3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xD5 DUP2 PUSH2 0xAF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xF1 JUMPI PUSH2 0xF0 PUSH2 0x78 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xFF DUP5 DUP3 DUP6 ADD PUSH2 0xC6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x11B DUP2 PUSH2 0x108 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x136 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x112 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH8 0xFC1C4249ABB7CC78 0x2C 0xD 0x23 DUP5 0xEB 0xDE MUL EQ DUP12 PUSH27 0x33BF79BB4FD4EE142DC797027964736F6C634300080D0033000000 ",
"sourceMap": "58:197:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81:43;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;88:117:1:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:77::-;1213:7;1242:5;1231:16;;1176:77;;;:::o;1259:118::-;1346:24;1364:5;1346:24;:::i;:::-;1341:3;1334:37;1259:118;;:::o;1383:222::-;1476:4;1514:2;1503:9;1499:18;1491:26;;1527:71;1595:1;1584:9;1580:17;1571:6;1527:71;:::i;:::-;1383:222;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "74000",
"executionCost": "44530",
"totalCost": "118530"
},
"external": {
"balances(address)": "2792"
}
},
"methodIdentifiers": {
"balances(address)": "27e235e3"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "balances",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.13+commit.abaa5c0e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "balances",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/mapping.sol": "Mapping"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/mapping.sol": {
"keccak256": "0x7c3341d31bf8d2c3af0cc22988832d3c0209a6024e8baa0b5d12260414872a15",
"license": "MIT",
"urls": [
"bzz-raw://c913f5bbeb417de73d03c3066639a060b0484eb4289e80209ef5f994fa23efc1",
"dweb:/ipfs/QmewdLZqyeGvud7zBN6VL1G1qdepnEamkCEYcDwPAqhYUs"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_1670": {
"entryPoint": null,
"id": 1670,
"parameterSlots": 0,
"returnSlots": 0
},
"@_62": {
"entryPoint": null,
"id": 62,
"parameterSlots": 2,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 407,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 360,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:516:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "35:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "52:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "55:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "45:6:11"
},
"nodeType": "YulFunctionCall",
"src": "45:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "45:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "149:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "152:4:11",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "142:6:11"
},
"nodeType": "YulFunctionCall",
"src": "142:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "142:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "173:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "176:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "166:6:11"
},
"nodeType": "YulFunctionCall",
"src": "166:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "166:15:11"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "7:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "244:269:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "254:22:11",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "268:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "274:1:11",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "264:3:11"
},
"nodeType": "YulFunctionCall",
"src": "264:12:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "254:6:11"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "285:38:11",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "315:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "321:1:11",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "311:3:11"
},
"nodeType": "YulFunctionCall",
"src": "311:12:11"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "289:18:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "362:51:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "376:27:11",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "390:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "398:4:11",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "386:3:11"
},
"nodeType": "YulFunctionCall",
"src": "386:17:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "376:6:11"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "342:18:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "335:6:11"
},
"nodeType": "YulFunctionCall",
"src": "335:26:11"
},
"nodeType": "YulIf",
"src": "332:81:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "465:42:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "479:16:11"
},
"nodeType": "YulFunctionCall",
"src": "479:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "479:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "429:18:11"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "452:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "460:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "449:2:11"
},
"nodeType": "YulFunctionCall",
"src": "449:14:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "426:2:11"
},
"nodeType": "YulFunctionCall",
"src": "426:38:11"
},
"nodeType": "YulIf",
"src": "423:84:11"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "228:4:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "237:6:11",
"type": ""
}
],
"src": "193:320:11"
}
]
},
"contents": "{\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": 11,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280600581526020017f4d794e46540000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4e465400000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620000b8565b508060019080519060200190620000af929190620000b8565b505050620001cc565b828054620000c69062000197565b90600052602060002090601f016020900481019282620000ea576000855562000136565b82601f106200010557805160ff191683800117855562000136565b8280016001018555821562000136579182015b828111156200013557825182559160200191906001019062000118565b5b50905062000145919062000149565b5090565b5b80821115620001645760008160009055506001016200014a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620001b057607f821691505b602082108103620001c657620001c562000168565b5b50919050565b6126cb80620001dc6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a22cb46511610066578063a22cb4651461025b578063b88d4fde14610277578063c87b56dd14610293578063e985e9c5146102c3576100ea565b806370a08231146101f157806395d89b4114610221578063a0712d681461023f576100ea565b8063095ea7b3116100c8578063095ea7b31461016d57806323b872dd1461018957806342842e0e146101a55780636352211e146101c1576100ea565b806301ffc9a7146100ef57806306fdde031461011f578063081812fc1461013d575b600080fd5b61010960048036038101906101049190611650565b6102f3565b6040516101169190611698565b60405180910390f35b6101276103d5565b604051610134919061174c565b60405180910390f35b610157600480360381019061015291906117a4565b610467565b6040516101649190611812565b60405180910390f35b61018760048036038101906101829190611859565b6104ec565b005b6101a3600480360381019061019e9190611899565b610603565b005b6101bf60048036038101906101ba9190611899565b610663565b005b6101db60048036038101906101d691906117a4565b610683565b6040516101e89190611812565b60405180910390f35b61020b600480360381019061020691906118ec565b610734565b6040516102189190611928565b60405180910390f35b6102296107eb565b604051610236919061174c565b60405180910390f35b610259600480360381019061025491906117a4565b61087d565b005b6102756004803603810190610270919061196f565b61088a565b005b610291600480360381019061028c9190611ae4565b6108a0565b005b6102ad60048036038101906102a891906117a4565b610902565b6040516102ba919061174c565b60405180910390f35b6102dd60048036038101906102d89190611b67565b6109a9565b6040516102ea9190611698565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806103be57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103ce57506103cd82610a3d565b5b9050919050565b6060600080546103e490611bd6565b80601f016020809104026020016040519081016040528092919081815260200182805461041090611bd6565b801561045d5780601f106104325761010080835404028352916020019161045d565b820191906000526020600020905b81548152906001019060200180831161044057829003601f168201915b5050505050905090565b600061047282610aa7565b6104b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a890611c79565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104f782610683565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055e90611d0b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610586610b13565b73ffffffffffffffffffffffffffffffffffffffff1614806105b557506105b4816105af610b13565b6109a9565b5b6105f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105eb90611d9d565b60405180910390fd5b6105fe8383610b1b565b505050565b61061461060e610b13565b82610bd4565b610653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064a90611e2f565b60405180910390fd5b61065e838383610cb2565b505050565b61067e838383604051806020016040528060008152506108a0565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361072b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072290611ec1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079b90611f53565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546107fa90611bd6565b80601f016020809104026020016040519081016040528092919081815260200182805461082690611bd6565b80156108735780601f1061084857610100808354040283529160200191610873565b820191906000526020600020905b81548152906001019060200180831161085657829003601f168201915b5050505050905090565b6108873382610f18565b50565b61089c610895610b13565b83836110f1565b5050565b6108b16108ab610b13565b83610bd4565b6108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e790611e2f565b60405180910390fd5b6108fc8484848461125d565b50505050565b606061090d82610aa7565b61094c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094390611fe5565b60405180910390fd5b60006109566112b9565b9050600081511161097657604051806020016040528060008152506109a1565b80610980846112d0565b604051602001610991929190612041565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610b8e83610683565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610bdf82610aa7565b610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c15906120d7565b60405180910390fd5b6000610c2983610683565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610c6b5750610c6a81856109a9565b5b80610ca957508373ffffffffffffffffffffffffffffffffffffffff16610c9184610467565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610cd282610683565b73ffffffffffffffffffffffffffffffffffffffff1614610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f90612169565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e906121fb565b60405180910390fd5b610da2838383611430565b610dad600082610b1b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dfd919061224a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e54919061227e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f13838383611435565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90612320565b60405180910390fd5b610f9081610aa7565b15610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc79061238c565b60405180910390fd5b610fdc60008383611430565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461102c919061227e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110ed60008383611435565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361115f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611156906123f8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112509190611698565b60405180910390a3505050565b611268848484610cb2565b6112748484848461143a565b6112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa9061248a565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606060008203611317576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061142b565b600082905060005b60008214611349578080611332906124aa565b915050600a826113429190612521565b915061131f565b60008167ffffffffffffffff811115611365576113646119b9565b5b6040519080825280601f01601f1916602001820160405280156113975781602001600182028036833780820191505090505b5090505b60008514611424576001826113b0919061224a565b9150600a856113bf9190612552565b60306113cb919061227e565b60f81b8183815181106113e1576113e0612583565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561141d9190612521565b945061139b565b8093505050505b919050565b505050565b505050565b600061145b8473ffffffffffffffffffffffffffffffffffffffff166115c1565b156115b4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611484610b13565b8786866040518563ffffffff1660e01b81526004016114a69493929190612607565b6020604051808303816000875af19250505080156114e257506040513d601f19601f820116820180604052508101906114df9190612668565b60015b611564573d8060008114611512576040519150601f19603f3d011682016040523d82523d6000602084013e611517565b606091505b50600081510361155c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115539061248a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506115b9565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61162d816115f8565b811461163857600080fd5b50565b60008135905061164a81611624565b92915050565b600060208284031215611666576116656115ee565b5b60006116748482850161163b565b91505092915050565b60008115159050919050565b6116928161167d565b82525050565b60006020820190506116ad6000830184611689565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116ed5780820151818401526020810190506116d2565b838111156116fc576000848401525b50505050565b6000601f19601f8301169050919050565b600061171e826116b3565b61172881856116be565b93506117388185602086016116cf565b61174181611702565b840191505092915050565b600060208201905081810360008301526117668184611713565b905092915050565b6000819050919050565b6117818161176e565b811461178c57600080fd5b50565b60008135905061179e81611778565b92915050565b6000602082840312156117ba576117b96115ee565b5b60006117c88482850161178f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117fc826117d1565b9050919050565b61180c816117f1565b82525050565b60006020820190506118276000830184611803565b92915050565b611836816117f1565b811461184157600080fd5b50565b6000813590506118538161182d565b92915050565b600080604083850312156118705761186f6115ee565b5b600061187e85828601611844565b925050602061188f8582860161178f565b9150509250929050565b6000806000606084860312156118b2576118b16115ee565b5b60006118c086828701611844565b93505060206118d186828701611844565b92505060406118e28682870161178f565b9150509250925092565b600060208284031215611902576119016115ee565b5b600061191084828501611844565b91505092915050565b6119228161176e565b82525050565b600060208201905061193d6000830184611919565b92915050565b61194c8161167d565b811461195757600080fd5b50565b60008135905061196981611943565b92915050565b60008060408385031215611986576119856115ee565b5b600061199485828601611844565b92505060206119a58582860161195a565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6119f182611702565b810181811067ffffffffffffffff82111715611a1057611a0f6119b9565b5b80604052505050565b6000611a236115e4565b9050611a2f82826119e8565b919050565b600067ffffffffffffffff821115611a4f57611a4e6119b9565b5b611a5882611702565b9050602081019050919050565b82818337600083830152505050565b6000611a87611a8284611a34565b611a19565b905082815260208101848484011115611aa357611aa26119b4565b5b611aae848285611a65565b509392505050565b600082601f830112611acb57611aca6119af565b5b8135611adb848260208601611a74565b91505092915050565b60008060008060808587031215611afe57611afd6115ee565b5b6000611b0c87828801611844565b9450506020611b1d87828801611844565b9350506040611b2e8782880161178f565b925050606085013567ffffffffffffffff811115611b4f57611b4e6115f3565b5b611b5b87828801611ab6565b91505092959194509250565b60008060408385031215611b7e57611b7d6115ee565b5b6000611b8c85828601611844565b9250506020611b9d85828601611844565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611bee57607f821691505b602082108103611c0157611c00611ba7565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000611c63602c836116be565b9150611c6e82611c07565b604082019050919050565b60006020820190508181036000830152611c9281611c56565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cf56021836116be565b9150611d0082611c99565b604082019050919050565b60006020820190508181036000830152611d2481611ce8565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000611d876038836116be565b9150611d9282611d2b565b604082019050919050565b60006020820190508181036000830152611db681611d7a565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000611e196031836116be565b9150611e2482611dbd565b604082019050919050565b60006020820190508181036000830152611e4881611e0c565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000611eab6029836116be565b9150611eb682611e4f565b604082019050919050565b60006020820190508181036000830152611eda81611e9e565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000611f3d602a836116be565b9150611f4882611ee1565b604082019050919050565b60006020820190508181036000830152611f6c81611f30565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000611fcf602f836116be565b9150611fda82611f73565b604082019050919050565b60006020820190508181036000830152611ffe81611fc2565b9050919050565b600081905092915050565b600061201b826116b3565b6120258185612005565b93506120358185602086016116cf565b80840191505092915050565b600061204d8285612010565b91506120598284612010565b91508190509392505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006120c1602c836116be565b91506120cc82612065565b604082019050919050565b600060208201905081810360008301526120f0816120b4565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006121536025836116be565b915061215e826120f7565b604082019050919050565b6000602082019050818103600083015261218281612146565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006121e56024836116be565b91506121f082612189565b604082019050919050565b60006020820190508181036000830152612214816121d8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122558261176e565b91506122608361176e565b9250828210156122735761227261221b565b5b828203905092915050565b60006122898261176e565b91506122948361176e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122c9576122c861221b565b5b828201905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061230a6020836116be565b9150612315826122d4565b602082019050919050565b60006020820190508181036000830152612339816122fd565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612376601c836116be565b915061238182612340565b602082019050919050565b600060208201905081810360008301526123a581612369565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006123e26019836116be565b91506123ed826123ac565b602082019050919050565b60006020820190508181036000830152612411816123d5565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006124746032836116be565b915061247f82612418565b604082019050919050565b600060208201905081810360008301526124a381612467565b9050919050565b60006124b58261176e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036124e7576124e661221b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061252c8261176e565b91506125378361176e565b925082612547576125466124f2565b5b828204905092915050565b600061255d8261176e565b91506125688361176e565b925082612578576125776124f2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006125d9826125b2565b6125e381856125bd565b93506125f38185602086016116cf565b6125fc81611702565b840191505092915050565b600060808201905061261c6000830187611803565b6126296020830186611803565b6126366040830185611919565b818103606083015261264881846125ce565b905095945050505050565b60008151905061266281611624565b92915050565b60006020828403121561267e5761267d6115ee565b5b600061268c84828501612653565b9150509291505056fea2646970667358221220ab040a8774e9c5fa1f86bb7b8674f2c0418d4425d7560dbaa431e8c6b8b7fec464736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D794E4654000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D4E465400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x96 SWAP3 SWAP2 SWAP1 PUSH3 0xB8 JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xAF SWAP3 SWAP2 SWAP1 PUSH3 0xB8 JUMP JUMPDEST POP POP POP PUSH3 0x1CC JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0xC6 SWAP1 PUSH3 0x197 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xEA JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x136 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x105 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x136 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x136 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x135 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x118 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x145 SWAP2 SWAP1 PUSH3 0x149 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x164 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x14A JUMP JUMPDEST POP SWAP1 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 0x1B0 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x1C6 JUMPI PUSH3 0x1C5 PUSH3 0x168 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x26CB DUP1 PUSH3 0x1DC PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x25B JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x277 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x293 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x2C3 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1F1 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x221 JUMPI DUP1 PUSH4 0xA0712D68 EQ PUSH2 0x23F JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x189 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x1A5 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x1C1 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x11F JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x13D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x109 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x104 SWAP2 SWAP1 PUSH2 0x1650 JUMP JUMPDEST PUSH2 0x2F3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x116 SWAP2 SWAP1 PUSH2 0x1698 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x127 PUSH2 0x3D5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x174C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x157 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x17A4 JUMP JUMPDEST PUSH2 0x467 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x164 SWAP2 SWAP1 PUSH2 0x1812 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x187 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x182 SWAP2 SWAP1 PUSH2 0x1859 JUMP JUMPDEST PUSH2 0x4EC JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1A3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19E SWAP2 SWAP1 PUSH2 0x1899 JUMP JUMPDEST PUSH2 0x603 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1BF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BA SWAP2 SWAP1 PUSH2 0x1899 JUMP JUMPDEST PUSH2 0x663 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1DB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1D6 SWAP2 SWAP1 PUSH2 0x17A4 JUMP JUMPDEST PUSH2 0x683 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1E8 SWAP2 SWAP1 PUSH2 0x1812 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x206 SWAP2 SWAP1 PUSH2 0x18EC JUMP JUMPDEST PUSH2 0x734 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x218 SWAP2 SWAP1 PUSH2 0x1928 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x229 PUSH2 0x7EB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x236 SWAP2 SWAP1 PUSH2 0x174C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x259 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x254 SWAP2 SWAP1 PUSH2 0x17A4 JUMP JUMPDEST PUSH2 0x87D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x275 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x270 SWAP2 SWAP1 PUSH2 0x196F JUMP JUMPDEST PUSH2 0x88A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x291 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28C SWAP2 SWAP1 PUSH2 0x1AE4 JUMP JUMPDEST PUSH2 0x8A0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2AD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A8 SWAP2 SWAP1 PUSH2 0x17A4 JUMP JUMPDEST PUSH2 0x902 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2BA SWAP2 SWAP1 PUSH2 0x174C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2DD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2D8 SWAP2 SWAP1 PUSH2 0x1B67 JUMP JUMPDEST PUSH2 0x9A9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2EA SWAP2 SWAP1 PUSH2 0x1698 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x3BE JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x3CE JUMPI POP PUSH2 0x3CD DUP3 PUSH2 0xA3D JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x3E4 SWAP1 PUSH2 0x1BD6 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 0x410 SWAP1 PUSH2 0x1BD6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x45D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x432 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x45D 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 0x440 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x472 DUP3 PUSH2 0xAA7 JUMP JUMPDEST PUSH2 0x4B1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4A8 SWAP1 PUSH2 0x1C79 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4F7 DUP3 PUSH2 0x683 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x567 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x55E SWAP1 PUSH2 0x1D0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x586 PUSH2 0xB13 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x5B5 JUMPI POP PUSH2 0x5B4 DUP2 PUSH2 0x5AF PUSH2 0xB13 JUMP JUMPDEST PUSH2 0x9A9 JUMP JUMPDEST JUMPDEST PUSH2 0x5F4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5EB SWAP1 PUSH2 0x1D9D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5FE DUP4 DUP4 PUSH2 0xB1B JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x614 PUSH2 0x60E PUSH2 0xB13 JUMP JUMPDEST DUP3 PUSH2 0xBD4 JUMP JUMPDEST PUSH2 0x653 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x64A SWAP1 PUSH2 0x1E2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x65E DUP4 DUP4 DUP4 PUSH2 0xCB2 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x67E DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x8A0 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x72B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x722 SWAP1 PUSH2 0x1EC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x7A4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x79B SWAP1 PUSH2 0x1F53 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x7FA SWAP1 PUSH2 0x1BD6 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 0x826 SWAP1 PUSH2 0x1BD6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x873 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x848 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x873 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 0x856 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x887 CALLER DUP3 PUSH2 0xF18 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x89C PUSH2 0x895 PUSH2 0xB13 JUMP JUMPDEST DUP4 DUP4 PUSH2 0x10F1 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x8B1 PUSH2 0x8AB PUSH2 0xB13 JUMP JUMPDEST DUP4 PUSH2 0xBD4 JUMP JUMPDEST PUSH2 0x8F0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8E7 SWAP1 PUSH2 0x1E2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8FC DUP5 DUP5 DUP5 DUP5 PUSH2 0x125D JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x90D DUP3 PUSH2 0xAA7 JUMP JUMPDEST PUSH2 0x94C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x943 SWAP1 PUSH2 0x1FE5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x956 PUSH2 0x12B9 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x976 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x9A1 JUMP JUMPDEST DUP1 PUSH2 0x980 DUP5 PUSH2 0x12D0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x991 SWAP3 SWAP2 SWAP1 PUSH2 0x2041 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xB8E DUP4 PUSH2 0x683 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBDF DUP3 PUSH2 0xAA7 JUMP JUMPDEST PUSH2 0xC1E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC15 SWAP1 PUSH2 0x20D7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xC29 DUP4 PUSH2 0x683 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xC6B JUMPI POP PUSH2 0xC6A DUP2 DUP6 PUSH2 0x9A9 JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0xCA9 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC91 DUP5 PUSH2 0x467 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xCD2 DUP3 PUSH2 0x683 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD28 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD1F SWAP1 PUSH2 0x2169 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xD97 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD8E SWAP1 PUSH2 0x21FB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xDA2 DUP4 DUP4 DUP4 PUSH2 0x1430 JUMP JUMPDEST PUSH2 0xDAD PUSH1 0x0 DUP3 PUSH2 0xB1B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xDFD SWAP2 SWAP1 PUSH2 0x224A JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xE54 SWAP2 SWAP1 PUSH2 0x227E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0xF13 DUP4 DUP4 DUP4 PUSH2 0x1435 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xF87 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF7E SWAP1 PUSH2 0x2320 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xF90 DUP2 PUSH2 0xAA7 JUMP JUMPDEST ISZERO PUSH2 0xFD0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFC7 SWAP1 PUSH2 0x238C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xFDC PUSH1 0x0 DUP4 DUP4 PUSH2 0x1430 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x102C SWAP2 SWAP1 PUSH2 0x227E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x10ED PUSH1 0x0 DUP4 DUP4 PUSH2 0x1435 JUMP JUMPDEST POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x115F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1156 SWAP1 PUSH2 0x23F8 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 0x1250 SWAP2 SWAP1 PUSH2 0x1698 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x1268 DUP5 DUP5 DUP5 PUSH2 0xCB2 JUMP JUMPDEST PUSH2 0x1274 DUP5 DUP5 DUP5 DUP5 PUSH2 0x143A JUMP JUMPDEST PUSH2 0x12B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12AA SWAP1 PUSH2 0x248A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 SUB PUSH2 0x1317 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x142B JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x1349 JUMPI DUP1 DUP1 PUSH2 0x1332 SWAP1 PUSH2 0x24AA JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x1342 SWAP2 SWAP1 PUSH2 0x2521 JUMP JUMPDEST SWAP2 POP PUSH2 0x131F JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1365 JUMPI PUSH2 0x1364 PUSH2 0x19B9 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1397 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x1424 JUMPI PUSH1 0x1 DUP3 PUSH2 0x13B0 SWAP2 SWAP1 PUSH2 0x224A JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x13BF SWAP2 SWAP1 PUSH2 0x2552 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x13CB SWAP2 SWAP1 PUSH2 0x227E JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x13E1 JUMPI PUSH2 0x13E0 PUSH2 0x2583 JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x141D SWAP2 SWAP1 PUSH2 0x2521 JUMP JUMPDEST SWAP5 POP PUSH2 0x139B JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x145B DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x15C1 JUMP JUMPDEST ISZERO PUSH2 0x15B4 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x1484 PUSH2 0xB13 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14A6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2607 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x14E2 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 0x14DF SWAP2 SWAP1 PUSH2 0x2668 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1564 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1512 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 0x1517 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD SUB PUSH2 0x155C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1553 SWAP1 PUSH2 0x248A 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 0x15B9 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 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 0x162D DUP2 PUSH2 0x15F8 JUMP JUMPDEST DUP2 EQ PUSH2 0x1638 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x164A DUP2 PUSH2 0x1624 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1666 JUMPI PUSH2 0x1665 PUSH2 0x15EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1674 DUP5 DUP3 DUP6 ADD PUSH2 0x163B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1692 DUP2 PUSH2 0x167D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x16AD PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1689 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x16ED JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x16D2 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x16FC JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x171E DUP3 PUSH2 0x16B3 JUMP JUMPDEST PUSH2 0x1728 DUP2 DUP6 PUSH2 0x16BE JUMP JUMPDEST SWAP4 POP PUSH2 0x1738 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x16CF JUMP JUMPDEST PUSH2 0x1741 DUP2 PUSH2 0x1702 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 0x1766 DUP2 DUP5 PUSH2 0x1713 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1781 DUP2 PUSH2 0x176E JUMP JUMPDEST DUP2 EQ PUSH2 0x178C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x179E DUP2 PUSH2 0x1778 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x17BA JUMPI PUSH2 0x17B9 PUSH2 0x15EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x17C8 DUP5 DUP3 DUP6 ADD PUSH2 0x178F 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 0x17FC DUP3 PUSH2 0x17D1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x180C DUP2 PUSH2 0x17F1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1827 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1803 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1836 DUP2 PUSH2 0x17F1 JUMP JUMPDEST DUP2 EQ PUSH2 0x1841 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1853 DUP2 PUSH2 0x182D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1870 JUMPI PUSH2 0x186F PUSH2 0x15EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x187E DUP6 DUP3 DUP7 ADD PUSH2 0x1844 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x188F DUP6 DUP3 DUP7 ADD PUSH2 0x178F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x18B2 JUMPI PUSH2 0x18B1 PUSH2 0x15EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x18C0 DUP7 DUP3 DUP8 ADD PUSH2 0x1844 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x18D1 DUP7 DUP3 DUP8 ADD PUSH2 0x1844 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x18E2 DUP7 DUP3 DUP8 ADD PUSH2 0x178F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1902 JUMPI PUSH2 0x1901 PUSH2 0x15EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1910 DUP5 DUP3 DUP6 ADD PUSH2 0x1844 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1922 DUP2 PUSH2 0x176E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x193D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1919 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x194C DUP2 PUSH2 0x167D JUMP JUMPDEST DUP2 EQ PUSH2 0x1957 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1969 DUP2 PUSH2 0x1943 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1986 JUMPI PUSH2 0x1985 PUSH2 0x15EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1994 DUP6 DUP3 DUP7 ADD PUSH2 0x1844 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x19A5 DUP6 DUP3 DUP7 ADD PUSH2 0x195A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x19F1 DUP3 PUSH2 0x1702 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1A10 JUMPI PUSH2 0x1A0F PUSH2 0x19B9 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A23 PUSH2 0x15E4 JUMP JUMPDEST SWAP1 POP PUSH2 0x1A2F DUP3 DUP3 PUSH2 0x19E8 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1A4F JUMPI PUSH2 0x1A4E PUSH2 0x19B9 JUMP JUMPDEST JUMPDEST PUSH2 0x1A58 DUP3 PUSH2 0x1702 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 0x1A87 PUSH2 0x1A82 DUP5 PUSH2 0x1A34 JUMP JUMPDEST PUSH2 0x1A19 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1AA3 JUMPI PUSH2 0x1AA2 PUSH2 0x19B4 JUMP JUMPDEST JUMPDEST PUSH2 0x1AAE DUP5 DUP3 DUP6 PUSH2 0x1A65 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1ACB JUMPI PUSH2 0x1ACA PUSH2 0x19AF JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1ADB DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1A74 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 0x1AFE JUMPI PUSH2 0x1AFD PUSH2 0x15EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1B0C DUP8 DUP3 DUP9 ADD PUSH2 0x1844 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x1B1D DUP8 DUP3 DUP9 ADD PUSH2 0x1844 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x1B2E DUP8 DUP3 DUP9 ADD PUSH2 0x178F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1B4F JUMPI PUSH2 0x1B4E PUSH2 0x15F3 JUMP JUMPDEST JUMPDEST PUSH2 0x1B5B DUP8 DUP3 DUP9 ADD PUSH2 0x1AB6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1B7E JUMPI PUSH2 0x1B7D PUSH2 0x15EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1B8C DUP6 DUP3 DUP7 ADD PUSH2 0x1844 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1B9D DUP6 DUP3 DUP7 ADD PUSH2 0x1844 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 0x1BEE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1C01 JUMPI PUSH2 0x1C00 PUSH2 0x1BA7 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1C63 PUSH1 0x2C DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x1C6E DUP3 PUSH2 0x1C07 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 0x1C92 DUP2 PUSH2 0x1C56 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CF5 PUSH1 0x21 DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x1D00 DUP3 PUSH2 0x1C99 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 0x1D24 DUP2 PUSH2 0x1CE8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D87 PUSH1 0x38 DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x1D92 DUP3 PUSH2 0x1D2B 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 0x1DB6 DUP2 PUSH2 0x1D7A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E19 PUSH1 0x31 DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x1E24 DUP3 PUSH2 0x1DBD 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 0x1E48 DUP2 PUSH2 0x1E0C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EAB PUSH1 0x29 DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x1EB6 DUP3 PUSH2 0x1E4F 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 0x1EDA DUP2 PUSH2 0x1E9E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F3D PUSH1 0x2A DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x1F48 DUP3 PUSH2 0x1EE1 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 0x1F6C DUP2 PUSH2 0x1F30 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1FCF PUSH1 0x2F DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x1FDA DUP3 PUSH2 0x1F73 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 0x1FFE DUP2 PUSH2 0x1FC2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x201B DUP3 PUSH2 0x16B3 JUMP JUMPDEST PUSH2 0x2025 DUP2 DUP6 PUSH2 0x2005 JUMP JUMPDEST SWAP4 POP PUSH2 0x2035 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x16CF JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x204D DUP3 DUP6 PUSH2 0x2010 JUMP JUMPDEST SWAP2 POP PUSH2 0x2059 DUP3 DUP5 PUSH2 0x2010 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x20C1 PUSH1 0x2C DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x20CC DUP3 PUSH2 0x2065 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 0x20F0 DUP2 PUSH2 0x20B4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2153 PUSH1 0x25 DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x215E DUP3 PUSH2 0x20F7 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 0x2182 DUP2 PUSH2 0x2146 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 0x21E5 PUSH1 0x24 DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x21F0 DUP3 PUSH2 0x2189 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 0x2214 DUP2 PUSH2 0x21D8 JUMP JUMPDEST SWAP1 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 0x2255 DUP3 PUSH2 0x176E JUMP JUMPDEST SWAP2 POP PUSH2 0x2260 DUP4 PUSH2 0x176E JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x2273 JUMPI PUSH2 0x2272 PUSH2 0x221B JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2289 DUP3 PUSH2 0x176E JUMP JUMPDEST SWAP2 POP PUSH2 0x2294 DUP4 PUSH2 0x176E JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x22C9 JUMPI PUSH2 0x22C8 PUSH2 0x221B JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x230A PUSH1 0x20 DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x2315 DUP3 PUSH2 0x22D4 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 0x2339 DUP2 PUSH2 0x22FD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2376 PUSH1 0x1C DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x2381 DUP3 PUSH2 0x2340 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 0x23A5 DUP2 PUSH2 0x2369 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x23E2 PUSH1 0x19 DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x23ED DUP3 PUSH2 0x23AC 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 0x2411 DUP2 PUSH2 0x23D5 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 0x2474 PUSH1 0x32 DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x247F DUP3 PUSH2 0x2418 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 0x24A3 DUP2 PUSH2 0x2467 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24B5 DUP3 PUSH2 0x176E JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x24E7 JUMPI PUSH2 0x24E6 PUSH2 0x221B JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x252C DUP3 PUSH2 0x176E JUMP JUMPDEST SWAP2 POP PUSH2 0x2537 DUP4 PUSH2 0x176E JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x2547 JUMPI PUSH2 0x2546 PUSH2 0x24F2 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x255D DUP3 PUSH2 0x176E JUMP JUMPDEST SWAP2 POP PUSH2 0x2568 DUP4 PUSH2 0x176E JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x2578 JUMPI PUSH2 0x2577 PUSH2 0x24F2 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT 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 0x25D9 DUP3 PUSH2 0x25B2 JUMP JUMPDEST PUSH2 0x25E3 DUP2 DUP6 PUSH2 0x25BD JUMP JUMPDEST SWAP4 POP PUSH2 0x25F3 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x16CF JUMP JUMPDEST PUSH2 0x25FC DUP2 PUSH2 0x1702 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x261C PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x1803 JUMP JUMPDEST PUSH2 0x2629 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1803 JUMP JUMPDEST PUSH2 0x2636 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1919 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x2648 DUP2 DUP5 PUSH2 0x25CE JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x2662 DUP2 PUSH2 0x1624 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x267E JUMPI PUSH2 0x267D PUSH2 0x15EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x268C DUP5 DUP3 DUP6 ADD PUSH2 0x2653 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAB DIV EXP DUP8 PUSH21 0xE9C5FA1F86BB7B8674F2C0418D4425D7560DBAA431 0xE8 0xC6 0xB8 0xB7 INVALID 0xC4 PUSH5 0x736F6C6343 STOP ADDMOD 0xD STOP CALLER ",
"sourceMap": "195:160:10:-:0;;;226:40;;;;;;;;;;1390:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1464:5;1456;:13;;;;;;;;;;;;:::i;:::-;;1489:7;1479;:17;;;;;;;;;;;;:::i;:::-;;1390:113;;195:160:10;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:180:11:-;55:77;52:1;45:88;152:4;149:1;142:15;176:4;173:1;166:15;193:320;237:6;274:1;268:4;264:12;254:22;;321:1;315:4;311:12;342:18;332:81;;398:4;390:6;386:17;376:27;;332:81;460:2;452:6;449:14;429:18;426:38;423:84;;479:18;;:::i;:::-;423:84;244:269;193:320;;;:::o;195:160:10:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_864": {
"entryPoint": 5173,
"id": 864,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_748": {
"entryPoint": 2843,
"id": 748,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_216": {
"entryPoint": 4793,
"id": 216,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_853": {
"entryPoint": 5168,
"id": 853,
"parameterSlots": 3,
"returnSlots": 0
},
"@_checkOnERC721Received_842": {
"entryPoint": 5178,
"id": 842,
"parameterSlots": 4,
"returnSlots": 1
},
"@_exists_438": {
"entryPoint": 2727,
"id": 438,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_479": {
"entryPoint": 3028,
"id": 479,
"parameterSlots": 2,
"returnSlots": 1
},
"@_mint_589": {
"entryPoint": 3864,
"id": 589,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_1333": {
"entryPoint": 2835,
"id": 1333,
"parameterSlots": 0,
"returnSlots": 1
},
"@_safeTransfer_420": {
"entryPoint": 4701,
"id": 420,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setApprovalForAll_780": {
"entryPoint": 4337,
"id": 780,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transfer_724": {
"entryPoint": 3250,
"id": 724,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_259": {
"entryPoint": 1260,
"id": 259,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_117": {
"entryPoint": 1844,
"id": 117,
"parameterSlots": 1,
"returnSlots": 1
},
"@getApproved_280": {
"entryPoint": 1127,
"id": 280,
"parameterSlots": 1,
"returnSlots": 1
},
"@isApprovedForAll_315": {
"entryPoint": 2473,
"id": 315,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1044": {
"entryPoint": 5569,
"id": 1044,
"parameterSlots": 1,
"returnSlots": 1
},
"@mint_1682": {
"entryPoint": 2173,
"id": 1682,
"parameterSlots": 1,
"returnSlots": 0
},
"@name_155": {
"entryPoint": 981,
"id": 155,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_145": {
"entryPoint": 1667,
"id": 145,
"parameterSlots": 1,
"returnSlots": 1
},
"@safeTransferFrom_361": {
"entryPoint": 1635,
"id": 361,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_391": {
"entryPoint": 2208,
"id": 391,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_297": {
"entryPoint": 2186,
"id": 297,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_1643": {
"entryPoint": 2621,
"id": 1643,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_93": {
"entryPoint": 755,
"id": 93,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_165": {
"entryPoint": 2027,
"id": 165,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_1502": {
"entryPoint": 4816,
"id": 1502,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_207": {
"entryPoint": 2306,
"id": 207,
"parameterSlots": 1,
"returnSlots": 1
},
"@transferFrom_342": {
"entryPoint": 1539,
"id": 342,
"parameterSlots": 3,
"returnSlots": 0
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 6772,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 6212,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 6490,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 5691,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 9811,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 6838,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 6031,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 6380,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 7015,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 6297,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 6884,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 6511,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 6233,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 5712,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 9832,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 6052,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 6147,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 5769,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 9678,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5907,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 8208,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9319,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8518,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9065,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8664,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9173,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8372,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7546,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7984,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7838,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8957,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7254,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8130,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7400,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7692,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 6425,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 8257,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 6162,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed": {
"entryPoint": 9735,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 5784,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5964,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9354,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8553,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9100,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8699,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9208,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8407,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7581,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8019,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7873,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8992,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7289,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8165,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7435,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7727,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 6440,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 6681,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 5604,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 6708,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 9650,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 5811,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 9661,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 5822,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 8197,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 8830,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 9505,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 8778,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 6129,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 5757,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 5624,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 6097,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 5998,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 6757,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 5839,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 7126,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 6632,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"increment_t_uint256": {
"entryPoint": 9386,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 9554,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 8731,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 9458,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 7079,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 9603,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 6585,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 6575,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 6580,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 5619,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 5614,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 5890,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e": {
"entryPoint": 9240,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48": {
"entryPoint": 8439,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57": {
"entryPoint": 9024,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4": {
"entryPoint": 8585,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05": {
"entryPoint": 9132,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c": {
"entryPoint": 8293,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d": {
"entryPoint": 7467,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba": {
"entryPoint": 7905,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397": {
"entryPoint": 7759,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6": {
"entryPoint": 8916,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d": {
"entryPoint": 7175,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb": {
"entryPoint": 8051,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942": {
"entryPoint": 7321,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2": {
"entryPoint": 7613,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 6189,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 6467,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 5668,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 6008,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:29784:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:11",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:11"
},
"nodeType": "YulFunctionCall",
"src": "67:9:11"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:11"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:11",
"type": ""
}
],
"src": "7:75:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:11"
},
"nodeType": "YulFunctionCall",
"src": "187:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:11"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:11"
},
"nodeType": "YulFunctionCall",
"src": "310:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:11"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "378:105:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "388:89:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "403:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "410:66:11",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "399:3:11"
},
"nodeType": "YulFunctionCall",
"src": "399:78:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "388:7:11"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "360:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "370:7:11",
"type": ""
}
],
"src": "334:149:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "531:78:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "587:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "596:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "599:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "589:6:11"
},
"nodeType": "YulFunctionCall",
"src": "589:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "589:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "554:5:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "578:5:11"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "561:16:11"
},
"nodeType": "YulFunctionCall",
"src": "561:23:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "551:2:11"
},
"nodeType": "YulFunctionCall",
"src": "551:34:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "544:6:11"
},
"nodeType": "YulFunctionCall",
"src": "544:42:11"
},
"nodeType": "YulIf",
"src": "541:62:11"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "524:5:11",
"type": ""
}
],
"src": "489:120:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "666:86:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "676:29:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "698:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "685:12:11"
},
"nodeType": "YulFunctionCall",
"src": "685:20:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "676:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "740:5:11"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "714:25:11"
},
"nodeType": "YulFunctionCall",
"src": "714:32:11"
},
"nodeType": "YulExpressionStatement",
"src": "714:32:11"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "644:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "652:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "660:5:11",
"type": ""
}
],
"src": "615:137:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "823:262:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "871:77:11"
},
"nodeType": "YulFunctionCall",
"src": "871:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "871:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "844:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "853:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "840:3:11"
},
"nodeType": "YulFunctionCall",
"src": "840:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "865:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "836:3:11"
},
"nodeType": "YulFunctionCall",
"src": "836:32:11"
},
"nodeType": "YulIf",
"src": "833:119:11"
},
{
"nodeType": "YulBlock",
"src": "962:116:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "977:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "991:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "981:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1006:62:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1040:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1051:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1036:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1036:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1060:7:11"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1016:19:11"
},
"nodeType": "YulFunctionCall",
"src": "1016:52:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1006:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "793:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "804:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "816:6:11",
"type": ""
}
],
"src": "758:327:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1133:48:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1143:32:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1168:5:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1161:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1161:13:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1154:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1154:21:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1143:7:11"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1115:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1125:7:11",
"type": ""
}
],
"src": "1091:90:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1246:50:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1263:3:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1283:5:11"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "1268:14:11"
},
"nodeType": "YulFunctionCall",
"src": "1268:21:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1256:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1256:34:11"
},
"nodeType": "YulExpressionStatement",
"src": "1256:34:11"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1234:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1241:3:11",
"type": ""
}
],
"src": "1187:109:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1394:118:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1404:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1416:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1427:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1412:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1412:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1404:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1478:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1491:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1502:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1487:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1487:17:11"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "1440:37:11"
},
"nodeType": "YulFunctionCall",
"src": "1440:65:11"
},
"nodeType": "YulExpressionStatement",
"src": "1440:65:11"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1366:9:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1378:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1389:4:11",
"type": ""
}
],
"src": "1302:210:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1577:40:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1588:22:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1604:5:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1598:5:11"
},
"nodeType": "YulFunctionCall",
"src": "1598:12:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1588:6:11"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1560:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1570:6:11",
"type": ""
}
],
"src": "1518:99:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1719:73:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1736:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1741:6:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1729:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1729:19:11"
},
"nodeType": "YulExpressionStatement",
"src": "1729:19:11"
},
{
"nodeType": "YulAssignment",
"src": "1757:29:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1776:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1781:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1772:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1772:14:11"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1757:11:11"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1691:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1696:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1707:11:11",
"type": ""
}
],
"src": "1623:169:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1847:258:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1857:10:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1866:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1861:1:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1926:63:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1951:3:11"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1956:1:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1947:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1947:11:11"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1970:3:11"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1975:1:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1966:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1966:11:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1960:5:11"
},
"nodeType": "YulFunctionCall",
"src": "1960:18:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1940:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1940:39:11"
},
"nodeType": "YulExpressionStatement",
"src": "1940:39:11"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1887:1:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1890:6:11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1884:2:11"
},
"nodeType": "YulFunctionCall",
"src": "1884:13:11"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1898:19:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1900:15:11",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1909:1:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1912:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1905:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1905:10:11"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1900:1:11"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1880:3:11",
"statements": []
},
"src": "1876:113:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2023:76:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2073:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2078:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2069:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2069:16:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2087:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2062:6:11"
},
"nodeType": "YulFunctionCall",
"src": "2062:27:11"
},
"nodeType": "YulExpressionStatement",
"src": "2062:27:11"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2004:1:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2007:6:11"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2001:2:11"
},
"nodeType": "YulFunctionCall",
"src": "2001:13:11"
},
"nodeType": "YulIf",
"src": "1998:101:11"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1829:3:11",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1834:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1839:6:11",
"type": ""
}
],
"src": "1798:307:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2159:54:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2169:38:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2187:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2194:2:11",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2183:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2183:14:11"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2203:2:11",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2199:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2199:7:11"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2179:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2179:28:11"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "2169:6:11"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2142:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "2152:6:11",
"type": ""
}
],
"src": "2111:102:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2311:272:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2321:53:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2368:5:11"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2335:32:11"
},
"nodeType": "YulFunctionCall",
"src": "2335:39:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2325:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2383:78:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2449:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2454:6:11"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2390:58:11"
},
"nodeType": "YulFunctionCall",
"src": "2390:71:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2383:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2496:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2503:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2492:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2492:16:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2510:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2515:6:11"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2470:21:11"
},
"nodeType": "YulFunctionCall",
"src": "2470:52:11"
},
"nodeType": "YulExpressionStatement",
"src": "2470:52:11"
},
{
"nodeType": "YulAssignment",
"src": "2531:46:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2542:3:11"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2569:6:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2547:21:11"
},
"nodeType": "YulFunctionCall",
"src": "2547:29:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2538:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2538:39:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2531:3:11"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2292:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2299:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2307:3:11",
"type": ""
}
],
"src": "2219:364:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2707:195:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2717:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2729:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2740:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2725:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2725:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2717:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2764:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2775:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2760:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2760:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2783:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2789:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2779:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2779:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2753:6:11"
},
"nodeType": "YulFunctionCall",
"src": "2753:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "2753:47:11"
},
{
"nodeType": "YulAssignment",
"src": "2809:86:11",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2881:6:11"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2890:4:11"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2817:63:11"
},
"nodeType": "YulFunctionCall",
"src": "2817:78:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2809:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2679:9:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2691:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2702:4:11",
"type": ""
}
],
"src": "2589:313:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2953:32:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2963:16:11",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2974:5:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2963:7:11"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2935:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2945:7:11",
"type": ""
}
],
"src": "2908:77:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3034:79:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3091:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3100:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3103:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3093:6:11"
},
"nodeType": "YulFunctionCall",
"src": "3093:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "3093:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3057:5:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3082:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3064:17:11"
},
"nodeType": "YulFunctionCall",
"src": "3064:24:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3054:2:11"
},
"nodeType": "YulFunctionCall",
"src": "3054:35:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3047:6:11"
},
"nodeType": "YulFunctionCall",
"src": "3047:43:11"
},
"nodeType": "YulIf",
"src": "3044:63:11"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3027:5:11",
"type": ""
}
],
"src": "2991:122:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3171:87:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3181:29:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3203:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3190:12:11"
},
"nodeType": "YulFunctionCall",
"src": "3190:20:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3181:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3246:5:11"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "3219:26:11"
},
"nodeType": "YulFunctionCall",
"src": "3219:33:11"
},
"nodeType": "YulExpressionStatement",
"src": "3219:33:11"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3149:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3157:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3165:5:11",
"type": ""
}
],
"src": "3119:139:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3330:263:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3376:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3378:77:11"
},
"nodeType": "YulFunctionCall",
"src": "3378:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "3378:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3351:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3360:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3347:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3347:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3372:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3343:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3343:32:11"
},
"nodeType": "YulIf",
"src": "3340:119:11"
},
{
"nodeType": "YulBlock",
"src": "3469:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3484:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3498:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3488:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3513:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3548:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3559:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3544:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3544:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3568:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3523:20:11"
},
"nodeType": "YulFunctionCall",
"src": "3523:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3513:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3300:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3311:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3323:6:11",
"type": ""
}
],
"src": "3264:329:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3644:81:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3654:65:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3669:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3676:42:11",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3665:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3665:54:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3654:7:11"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3626:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3636:7:11",
"type": ""
}
],
"src": "3599:126:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3776:51:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3786:35:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3815:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "3797:17:11"
},
"nodeType": "YulFunctionCall",
"src": "3797:24:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3786:7:11"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3758:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3768:7:11",
"type": ""
}
],
"src": "3731:96:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3898:53:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3915:3:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3938:5:11"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "3920:17:11"
},
"nodeType": "YulFunctionCall",
"src": "3920:24:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3908:6:11"
},
"nodeType": "YulFunctionCall",
"src": "3908:37:11"
},
"nodeType": "YulExpressionStatement",
"src": "3908:37:11"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3886:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3893:3:11",
"type": ""
}
],
"src": "3833:118:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4055:124:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4065:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4077:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4088:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4073:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4073:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4065:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4145:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4158:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4169:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4154:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4154:17:11"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "4101:43:11"
},
"nodeType": "YulFunctionCall",
"src": "4101:71:11"
},
"nodeType": "YulExpressionStatement",
"src": "4101:71:11"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4027:9:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4039:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4050:4:11",
"type": ""
}
],
"src": "3957:222:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4228:79:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4285:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4294:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4297:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4287:6:11"
},
"nodeType": "YulFunctionCall",
"src": "4287:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "4287:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4251:5:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4276:5:11"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "4258:17:11"
},
"nodeType": "YulFunctionCall",
"src": "4258:24:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4248:2:11"
},
"nodeType": "YulFunctionCall",
"src": "4248:35:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4241:6:11"
},
"nodeType": "YulFunctionCall",
"src": "4241:43:11"
},
"nodeType": "YulIf",
"src": "4238:63:11"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4221:5:11",
"type": ""
}
],
"src": "4185:122:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4365:87:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4375:29:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4397:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4384:12:11"
},
"nodeType": "YulFunctionCall",
"src": "4384:20:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4375:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4440:5:11"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "4413:26:11"
},
"nodeType": "YulFunctionCall",
"src": "4413:33:11"
},
"nodeType": "YulExpressionStatement",
"src": "4413:33:11"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4343:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4351:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4359:5:11",
"type": ""
}
],
"src": "4313:139:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4541:391:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4587:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4589:77:11"
},
"nodeType": "YulFunctionCall",
"src": "4589:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "4589:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4562:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4571:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4558:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4558:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4583:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4554:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4554:32:11"
},
"nodeType": "YulIf",
"src": "4551:119:11"
},
{
"nodeType": "YulBlock",
"src": "4680:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4695:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4709:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4699:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4724:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4759:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4770:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4755:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4755:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4779:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4734:20:11"
},
"nodeType": "YulFunctionCall",
"src": "4734:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4724:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4807:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4822:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4836:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4826:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4852:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4887:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4898:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4883:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4883:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4907:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4862:20:11"
},
"nodeType": "YulFunctionCall",
"src": "4862:53:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4852:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4503:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4514:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4526:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4534:6:11",
"type": ""
}
],
"src": "4458:474:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5038:519:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5084:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5086:77:11"
},
"nodeType": "YulFunctionCall",
"src": "5086:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "5086:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5059:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5068:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5055:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5055:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5080:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5051:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5051:32:11"
},
"nodeType": "YulIf",
"src": "5048:119:11"
},
{
"nodeType": "YulBlock",
"src": "5177:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5192:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5206:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5196:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5221:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5256:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5267:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5252:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5252:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5276:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5231:20:11"
},
"nodeType": "YulFunctionCall",
"src": "5231:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5221:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5304:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5319:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5333:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5323:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5349:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5384:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5395:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5380:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5380:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5404:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5359:20:11"
},
"nodeType": "YulFunctionCall",
"src": "5359:53:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5349:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5432:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5447:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5461:2:11",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5451:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5477:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5512:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5523:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5508:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5508:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5532:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5487:20:11"
},
"nodeType": "YulFunctionCall",
"src": "5487:53:11"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5477:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4992:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5003:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5015:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5023:6:11",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "5031:6:11",
"type": ""
}
],
"src": "4938:619:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5629:263:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5675:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5677:77:11"
},
"nodeType": "YulFunctionCall",
"src": "5677:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "5677:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5650:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5659:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5646:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5646:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5671:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5642:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5642:32:11"
},
"nodeType": "YulIf",
"src": "5639:119:11"
},
{
"nodeType": "YulBlock",
"src": "5768:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5783:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5797:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5787:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5812:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5847:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5858:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5843:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5843:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5867:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5822:20:11"
},
"nodeType": "YulFunctionCall",
"src": "5822:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5812:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5599:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5610:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5622:6:11",
"type": ""
}
],
"src": "5563:329:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5963:53:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5980:3:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6003:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5985:17:11"
},
"nodeType": "YulFunctionCall",
"src": "5985:24:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5973:6:11"
},
"nodeType": "YulFunctionCall",
"src": "5973:37:11"
},
"nodeType": "YulExpressionStatement",
"src": "5973:37:11"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5951:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5958:3:11",
"type": ""
}
],
"src": "5898:118:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6120:124:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6130:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6142:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6153:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6138:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6138:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6130:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6210:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6223:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6234:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6219:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6219:17:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "6166:43:11"
},
"nodeType": "YulFunctionCall",
"src": "6166:71:11"
},
"nodeType": "YulExpressionStatement",
"src": "6166:71:11"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6092:9:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6104:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6115:4:11",
"type": ""
}
],
"src": "6022:222:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6290:76:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6344:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6353:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6356:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6346:6:11"
},
"nodeType": "YulFunctionCall",
"src": "6346:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "6346:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6313:5:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6335:5:11"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "6320:14:11"
},
"nodeType": "YulFunctionCall",
"src": "6320:21:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6310:2:11"
},
"nodeType": "YulFunctionCall",
"src": "6310:32:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6303:6:11"
},
"nodeType": "YulFunctionCall",
"src": "6303:40:11"
},
"nodeType": "YulIf",
"src": "6300:60:11"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6283:5:11",
"type": ""
}
],
"src": "6250:116:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6421:84:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6431:29:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6453:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6440:12:11"
},
"nodeType": "YulFunctionCall",
"src": "6440:20:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6431:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6493:5:11"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "6469:23:11"
},
"nodeType": "YulFunctionCall",
"src": "6469:30:11"
},
"nodeType": "YulExpressionStatement",
"src": "6469:30:11"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6399:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6407:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6415:5:11",
"type": ""
}
],
"src": "6372:133:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6591:388:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6637:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6639:77:11"
},
"nodeType": "YulFunctionCall",
"src": "6639:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "6639:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6612:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6621:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6608:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6608:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6633:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6604:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6604:32:11"
},
"nodeType": "YulIf",
"src": "6601:119:11"
},
{
"nodeType": "YulBlock",
"src": "6730:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6745:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6759:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6749:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6774:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6809:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6820:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6805:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6805:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6829:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6784:20:11"
},
"nodeType": "YulFunctionCall",
"src": "6784:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6774:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6857:115:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6872:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6886:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6876:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6902:60:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6934:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6945:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6930:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6930:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6954:7:11"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "6912:17:11"
},
"nodeType": "YulFunctionCall",
"src": "6912:50:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6902:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6553:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6564:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6576:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6584:6:11",
"type": ""
}
],
"src": "6511:468:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7074:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7091:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7094:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7084:6:11"
},
"nodeType": "YulFunctionCall",
"src": "7084:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "7084:12:11"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "6985:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7197:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7214:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7217:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7207:6:11"
},
"nodeType": "YulFunctionCall",
"src": "7207:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "7207:12:11"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "7108:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7259:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7276:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7279:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7269:6:11"
},
"nodeType": "YulFunctionCall",
"src": "7269:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "7269:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7373:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7376:4:11",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7366:6:11"
},
"nodeType": "YulFunctionCall",
"src": "7366:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "7366:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7397:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7400:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7390:6:11"
},
"nodeType": "YulFunctionCall",
"src": "7390:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "7390:15:11"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "7231:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7460:238:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7470:58:11",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7492:6:11"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7522:4:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "7500:21:11"
},
"nodeType": "YulFunctionCall",
"src": "7500:27:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7488:3:11"
},
"nodeType": "YulFunctionCall",
"src": "7488:40:11"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "7474:10:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7639:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "7641:16:11"
},
"nodeType": "YulFunctionCall",
"src": "7641:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "7641:18:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7582:10:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7594:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7579:2:11"
},
"nodeType": "YulFunctionCall",
"src": "7579:34:11"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7618:10:11"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7630:6:11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7615:2:11"
},
"nodeType": "YulFunctionCall",
"src": "7615:22:11"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "7576:2:11"
},
"nodeType": "YulFunctionCall",
"src": "7576:62:11"
},
"nodeType": "YulIf",
"src": "7573:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7677:2:11",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7681:10:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7670:6:11"
},
"nodeType": "YulFunctionCall",
"src": "7670:22:11"
},
"nodeType": "YulExpressionStatement",
"src": "7670:22:11"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7446:6:11",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7454:4:11",
"type": ""
}
],
"src": "7417:281:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7745:88:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7755:30:11",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "7765:18:11"
},
"nodeType": "YulFunctionCall",
"src": "7765:20:11"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7755:6:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7814:6:11"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7822:4:11"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "7794:19:11"
},
"nodeType": "YulFunctionCall",
"src": "7794:33:11"
},
"nodeType": "YulExpressionStatement",
"src": "7794:33:11"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7729:4:11",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7738:6:11",
"type": ""
}
],
"src": "7704:129:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7905:241:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8010:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "8012:16:11"
},
"nodeType": "YulFunctionCall",
"src": "8012:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "8012:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7982:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7990:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7979:2:11"
},
"nodeType": "YulFunctionCall",
"src": "7979:30:11"
},
"nodeType": "YulIf",
"src": "7976:56:11"
},
{
"nodeType": "YulAssignment",
"src": "8042:37:11",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8072:6:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "8050:21:11"
},
"nodeType": "YulFunctionCall",
"src": "8050:29:11"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8042:4:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8116:23:11",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8128:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8134:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8124:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8124:15:11"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8116:4:11"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7889:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7900:4:11",
"type": ""
}
],
"src": "7839:307:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8203:103:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8226:3:11"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8231:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8236:6:11"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "8213:12:11"
},
"nodeType": "YulFunctionCall",
"src": "8213:30:11"
},
"nodeType": "YulExpressionStatement",
"src": "8213:30:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8284:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8289:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8280:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8280:16:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8298:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8273:6:11"
},
"nodeType": "YulFunctionCall",
"src": "8273:27:11"
},
"nodeType": "YulExpressionStatement",
"src": "8273:27:11"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "8185:3:11",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "8190:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8195:6:11",
"type": ""
}
],
"src": "8152:154:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8395:327:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8405:74:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8471:6:11"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8430:40:11"
},
"nodeType": "YulFunctionCall",
"src": "8430:48:11"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "8414:15:11"
},
"nodeType": "YulFunctionCall",
"src": "8414:65:11"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8405:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8495:5:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8502:6:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8488:6:11"
},
"nodeType": "YulFunctionCall",
"src": "8488:21:11"
},
"nodeType": "YulExpressionStatement",
"src": "8488:21:11"
},
{
"nodeType": "YulVariableDeclaration",
"src": "8518:27:11",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8533:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8540:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8529:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8529:16:11"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "8522:3:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8583:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "8585:77:11"
},
"nodeType": "YulFunctionCall",
"src": "8585:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "8585:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8564:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8569:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8560:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8560:16:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8578:3:11"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8557:2:11"
},
"nodeType": "YulFunctionCall",
"src": "8557:25:11"
},
"nodeType": "YulIf",
"src": "8554:112:11"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8699:3:11"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8704:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8709:6:11"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "8675:23:11"
},
"nodeType": "YulFunctionCall",
"src": "8675:41:11"
},
"nodeType": "YulExpressionStatement",
"src": "8675:41:11"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "8368:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8373:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8381:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "8389:5:11",
"type": ""
}
],
"src": "8312:410:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8802:277:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8851:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "8853:77:11"
},
"nodeType": "YulFunctionCall",
"src": "8853:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "8853:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8830:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8838:4:11",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8826:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8826:17:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8845:3:11"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8822:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8822:27:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8815:6:11"
},
"nodeType": "YulFunctionCall",
"src": "8815:35:11"
},
"nodeType": "YulIf",
"src": "8812:122:11"
},
{
"nodeType": "YulVariableDeclaration",
"src": "8943:34:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8970:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "8957:12:11"
},
"nodeType": "YulFunctionCall",
"src": "8957:20:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8947:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8986:87:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9046:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9054:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9042:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9042:17:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9061:6:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9069:3:11"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8995:46:11"
},
"nodeType": "YulFunctionCall",
"src": "8995:78:11"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8986:5:11"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8780:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8788:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "8796:5:11",
"type": ""
}
],
"src": "8741:338:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9211:817:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9258:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "9260:77:11"
},
"nodeType": "YulFunctionCall",
"src": "9260:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "9260:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9232:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9241:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9228:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9228:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9253:3:11",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "9224:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9224:33:11"
},
"nodeType": "YulIf",
"src": "9221:120:11"
},
{
"nodeType": "YulBlock",
"src": "9351:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9366:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9380:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9370:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9395:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9430:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9441:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9426:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9426:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9450:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "9405:20:11"
},
"nodeType": "YulFunctionCall",
"src": "9405:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9395:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9478:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9493:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9507:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9497:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9523:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9558:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9569:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9554:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9554:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9578:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "9533:20:11"
},
"nodeType": "YulFunctionCall",
"src": "9533:53:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "9523:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9606:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9621:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9635:2:11",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9625:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9651:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9686:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9697:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9682:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9682:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9706:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "9661:20:11"
},
"nodeType": "YulFunctionCall",
"src": "9661:53:11"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "9651:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9734:287:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9749:46:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9780:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9791:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9776:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9776:18:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "9763:12:11"
},
"nodeType": "YulFunctionCall",
"src": "9763:32:11"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9753:6:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9842:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "9844:77:11"
},
"nodeType": "YulFunctionCall",
"src": "9844:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "9844:79:11"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9814:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9822:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9811:2:11"
},
"nodeType": "YulFunctionCall",
"src": "9811:30:11"
},
"nodeType": "YulIf",
"src": "9808:117:11"
},
{
"nodeType": "YulAssignment",
"src": "9939:72:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9983:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9994:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9979:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9979:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10003:7:11"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9949:29:11"
},
"nodeType": "YulFunctionCall",
"src": "9949:62:11"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "9939:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9157:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "9168:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9180:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "9188:6:11",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "9196:6:11",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "9204:6:11",
"type": ""
}
],
"src": "9085:943:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10117:391:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10163:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "10165:77:11"
},
"nodeType": "YulFunctionCall",
"src": "10165:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "10165:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10138:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10147:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10134:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10134:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10159:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "10130:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10130:32:11"
},
"nodeType": "YulIf",
"src": "10127:119:11"
},
{
"nodeType": "YulBlock",
"src": "10256:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10271:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10285:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "10275:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10300:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10335:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10346:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10331:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10331:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10355:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "10310:20:11"
},
"nodeType": "YulFunctionCall",
"src": "10310:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10300:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "10383:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10398:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10412:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "10402:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10428:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10463:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10474:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10459:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10459:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10483:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "10438:20:11"
},
"nodeType": "YulFunctionCall",
"src": "10438:53:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "10428:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10079:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "10090:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10102:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "10110:6:11",
"type": ""
}
],
"src": "10034:474:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10542:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10559:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10562:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10552:6:11"
},
"nodeType": "YulFunctionCall",
"src": "10552:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "10552:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10656:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10659:4:11",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10649:6:11"
},
"nodeType": "YulFunctionCall",
"src": "10649:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "10649:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10680:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10683:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "10673:6:11"
},
"nodeType": "YulFunctionCall",
"src": "10673:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "10673:15:11"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "10514:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10751:269:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10761:22:11",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10775:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10781:1:11",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "10771:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10771:12:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10761:6:11"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10792:38:11",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10822:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10828:1:11",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10818:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10818:12:11"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "10796:18:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10869:51:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10883:27:11",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10897:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10905:4:11",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10893:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10893:17:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10883:6:11"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "10849:18:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10842:6:11"
},
"nodeType": "YulFunctionCall",
"src": "10842:26:11"
},
"nodeType": "YulIf",
"src": "10839:81:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10972:42:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "10986:16:11"
},
"nodeType": "YulFunctionCall",
"src": "10986:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "10986:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "10936:18:11"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10959:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10967:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10956:2:11"
},
"nodeType": "YulFunctionCall",
"src": "10956:14:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "10933:2:11"
},
"nodeType": "YulFunctionCall",
"src": "10933:38:11"
},
"nodeType": "YulIf",
"src": "10930:84:11"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "10735:4:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10744:6:11",
"type": ""
}
],
"src": "10700:320:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11132:125:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11154:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11162:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11150:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11150:14:11"
},
{
"hexValue": "4552433732313a20617070726f76656420717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11166:34:11",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11143:6:11"
},
"nodeType": "YulFunctionCall",
"src": "11143:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "11143:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11222:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11230:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11218:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11218:15:11"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11235:14:11",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11211:6:11"
},
"nodeType": "YulFunctionCall",
"src": "11211:39:11"
},
"nodeType": "YulExpressionStatement",
"src": "11211:39:11"
}
]
},
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "11124:6:11",
"type": ""
}
],
"src": "11026:231:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11409:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11419:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11485:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11490:2:11",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11426:58:11"
},
"nodeType": "YulFunctionCall",
"src": "11426:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11419:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11591:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulIdentifier",
"src": "11502:88:11"
},
"nodeType": "YulFunctionCall",
"src": "11502:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "11502:93:11"
},
{
"nodeType": "YulAssignment",
"src": "11604:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11615:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11620:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11611:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11611:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11604:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11397:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11405:3:11",
"type": ""
}
],
"src": "11263:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11806:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11816:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11828:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11839:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11824:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11824:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11816:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11863:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11874:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11859:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11859:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11882:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11888:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11878:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11878:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11852:6:11"
},
"nodeType": "YulFunctionCall",
"src": "11852:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "11852:47:11"
},
{
"nodeType": "YulAssignment",
"src": "11908:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12042:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11916:124:11"
},
"nodeType": "YulFunctionCall",
"src": "11916:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11908:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11786:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11801:4:11",
"type": ""
}
],
"src": "11635:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12166:114:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12188:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12196:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12184:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12184:14:11"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12200:34:11",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12177:6:11"
},
"nodeType": "YulFunctionCall",
"src": "12177:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "12177:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12256:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12264:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12252:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12252:15:11"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12269:3:11",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12245:6:11"
},
"nodeType": "YulFunctionCall",
"src": "12245:28:11"
},
"nodeType": "YulExpressionStatement",
"src": "12245:28:11"
}
]
},
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12158:6:11",
"type": ""
}
],
"src": "12060:220:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12432:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12442:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12508:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12513:2:11",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12449:58:11"
},
"nodeType": "YulFunctionCall",
"src": "12449:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12442:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12614:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "12525:88:11"
},
"nodeType": "YulFunctionCall",
"src": "12525:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "12525:93:11"
},
{
"nodeType": "YulAssignment",
"src": "12627:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12638:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12643:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12634:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12634:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12627:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12420:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12428:3:11",
"type": ""
}
],
"src": "12286:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12829:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12839:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12851:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12862:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12847:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12847:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12839:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12886:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12897:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12882:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12882:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12905:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12911:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12901:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12901:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12875:6:11"
},
"nodeType": "YulFunctionCall",
"src": "12875:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "12875:47:11"
},
{
"nodeType": "YulAssignment",
"src": "12931:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13065:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12939:124:11"
},
"nodeType": "YulFunctionCall",
"src": "12939:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12931:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12809:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12824:4:11",
"type": ""
}
],
"src": "12658:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13189:137:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13211:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13219:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13207:3:11"
},
"nodeType": "YulFunctionCall",
"src": "13207:14:11"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f74206f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13223:34:11",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13200:6:11"
},
"nodeType": "YulFunctionCall",
"src": "13200:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "13200:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13279:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13287:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13275:3:11"
},
"nodeType": "YulFunctionCall",
"src": "13275:15:11"
},
{
"hexValue": "6e6572206e6f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13292:26:11",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13268:6:11"
},
"nodeType": "YulFunctionCall",
"src": "13268:51:11"
},
"nodeType": "YulExpressionStatement",
"src": "13268:51:11"
}
]
},
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "13181:6:11",
"type": ""
}
],
"src": "13083:243:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13478:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13488:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13554:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13559:2:11",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13495:58:11"
},
"nodeType": "YulFunctionCall",
"src": "13495:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13488:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13660:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulIdentifier",
"src": "13571:88:11"
},
"nodeType": "YulFunctionCall",
"src": "13571:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "13571:93:11"
},
{
"nodeType": "YulAssignment",
"src": "13673:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13684:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13689:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13680:3:11"
},
"nodeType": "YulFunctionCall",
"src": "13680:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13673:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13466:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13474:3:11",
"type": ""
}
],
"src": "13332:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13875:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13885:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13897:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13908:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13893:3:11"
},
"nodeType": "YulFunctionCall",
"src": "13893:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13885:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13932:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13943:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13928:3:11"
},
"nodeType": "YulFunctionCall",
"src": "13928:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13951:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13957:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13947:3:11"
},
"nodeType": "YulFunctionCall",
"src": "13947:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13921:6:11"
},
"nodeType": "YulFunctionCall",
"src": "13921:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "13921:47:11"
},
{
"nodeType": "YulAssignment",
"src": "13977:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14111:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13985:124:11"
},
"nodeType": "YulFunctionCall",
"src": "13985:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13977:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13855:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13870:4:11",
"type": ""
}
],
"src": "13704:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14235:130:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14257:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14265:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14253:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14253:14:11"
},
{
"hexValue": "4552433732313a207472616e736665722063616c6c6572206973206e6f74206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14269:34:11",
"type": "",
"value": "ERC721: transfer caller is not o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14246:6:11"
},
"nodeType": "YulFunctionCall",
"src": "14246:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "14246:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14325:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14333:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14321:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14321:15:11"
},
{
"hexValue": "776e6572206e6f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14338:19:11",
"type": "",
"value": "wner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14314:6:11"
},
"nodeType": "YulFunctionCall",
"src": "14314:44:11"
},
"nodeType": "YulExpressionStatement",
"src": "14314:44:11"
}
]
},
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "14227:6:11",
"type": ""
}
],
"src": "14129:236:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14517:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14527:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14593:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14598:2:11",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14534:58:11"
},
"nodeType": "YulFunctionCall",
"src": "14534:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14527:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14699:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulIdentifier",
"src": "14610:88:11"
},
"nodeType": "YulFunctionCall",
"src": "14610:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "14610:93:11"
},
{
"nodeType": "YulAssignment",
"src": "14712:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14723:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14728:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14719:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14719:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14712:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14505:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14513:3:11",
"type": ""
}
],
"src": "14371:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14914:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14924:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14936:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14947:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14932:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14932:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14924:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14971:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14982:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14967:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14967:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14990:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14996:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14986:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14986:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14960:6:11"
},
"nodeType": "YulFunctionCall",
"src": "14960:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "14960:47:11"
},
{
"nodeType": "YulAssignment",
"src": "15016:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15150:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15024:124:11"
},
"nodeType": "YulFunctionCall",
"src": "15024:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15016:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14894:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14909:4:11",
"type": ""
}
],
"src": "14743:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15274:122:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15296:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15304:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15292:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15292:14:11"
},
{
"hexValue": "4552433732313a206f776e657220717565727920666f72206e6f6e6578697374",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15308:34:11",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15285:6:11"
},
"nodeType": "YulFunctionCall",
"src": "15285:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "15285:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15364:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15372:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15360:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15360:15:11"
},
{
"hexValue": "656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15377:11:11",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15353:6:11"
},
"nodeType": "YulFunctionCall",
"src": "15353:36:11"
},
"nodeType": "YulExpressionStatement",
"src": "15353:36:11"
}
]
},
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15266:6:11",
"type": ""
}
],
"src": "15168:228:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15548:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15558:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15624:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15629:2:11",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15565:58:11"
},
"nodeType": "YulFunctionCall",
"src": "15565:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15558:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15730:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulIdentifier",
"src": "15641:88:11"
},
"nodeType": "YulFunctionCall",
"src": "15641:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "15641:93:11"
},
{
"nodeType": "YulAssignment",
"src": "15743:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15754:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15759:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15750:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15750:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15743:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15536:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15544:3:11",
"type": ""
}
],
"src": "15402:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15945:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15955:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15967:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15978:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15963:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15963:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15955:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16002:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16013:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15998:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15998:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16021:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16027:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16017:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16017:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15991:6:11"
},
"nodeType": "YulFunctionCall",
"src": "15991:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "15991:47:11"
},
{
"nodeType": "YulAssignment",
"src": "16047:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16181:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16055:124:11"
},
"nodeType": "YulFunctionCall",
"src": "16055:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16047:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15925:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15940:4:11",
"type": ""
}
],
"src": "15774:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16305:123:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16327:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16335:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16323:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16323:14:11"
},
{
"hexValue": "4552433732313a2062616c616e636520717565727920666f7220746865207a65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16339:34:11",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16316:6:11"
},
"nodeType": "YulFunctionCall",
"src": "16316:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "16316:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16395:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16403:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16391:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16391:15:11"
},
{
"hexValue": "726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16408:12:11",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16384:6:11"
},
"nodeType": "YulFunctionCall",
"src": "16384:37:11"
},
"nodeType": "YulExpressionStatement",
"src": "16384:37:11"
}
]
},
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16297:6:11",
"type": ""
}
],
"src": "16199:229:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16580:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16590:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16656:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16661:2:11",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16597:58:11"
},
"nodeType": "YulFunctionCall",
"src": "16597:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16590:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16762:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulIdentifier",
"src": "16673:88:11"
},
"nodeType": "YulFunctionCall",
"src": "16673:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "16673:93:11"
},
{
"nodeType": "YulAssignment",
"src": "16775:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16786:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16791:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16782:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16782:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16775:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16568:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16576:3:11",
"type": ""
}
],
"src": "16434:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16977:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16987:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16999:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17010:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16995:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16995:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16987:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17034:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17045:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17030:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17030:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17053:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17059:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17049:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17049:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17023:6:11"
},
"nodeType": "YulFunctionCall",
"src": "17023:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "17023:47:11"
},
{
"nodeType": "YulAssignment",
"src": "17079:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17213:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17087:124:11"
},
"nodeType": "YulFunctionCall",
"src": "17087:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17079:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16957:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16972:4:11",
"type": ""
}
],
"src": "16806:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17337:128:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17359:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17367:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17355:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17355:14:11"
},
{
"hexValue": "4552433732314d657461646174613a2055524920717565727920666f72206e6f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17371:34:11",
"type": "",
"value": "ERC721Metadata: URI query for no"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17348:6:11"
},
"nodeType": "YulFunctionCall",
"src": "17348:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "17348:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17427:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17435:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17423:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17423:15:11"
},
{
"hexValue": "6e6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17440:17:11",
"type": "",
"value": "nexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17416:6:11"
},
"nodeType": "YulFunctionCall",
"src": "17416:42:11"
},
"nodeType": "YulExpressionStatement",
"src": "17416:42:11"
}
]
},
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "17329:6:11",
"type": ""
}
],
"src": "17231:234:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17617:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17627:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17693:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17698:2:11",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17634:58:11"
},
"nodeType": "YulFunctionCall",
"src": "17634:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17627:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17799:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulIdentifier",
"src": "17710:88:11"
},
"nodeType": "YulFunctionCall",
"src": "17710:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "17710:93:11"
},
{
"nodeType": "YulAssignment",
"src": "17812:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17823:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17828:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17819:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17819:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17812:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17605:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17613:3:11",
"type": ""
}
],
"src": "17471:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18014:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18024:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18036:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18047:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18032:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18032:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18024:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18071:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18082:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18067:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18067:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18090:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18096:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18086:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18086:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18060:6:11"
},
"nodeType": "YulFunctionCall",
"src": "18060:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "18060:47:11"
},
{
"nodeType": "YulAssignment",
"src": "18116:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18250:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18124:124:11"
},
"nodeType": "YulFunctionCall",
"src": "18124:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18116:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17994:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18009:4:11",
"type": ""
}
],
"src": "17843:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18382:34:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18392:18:11",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18407:3:11"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "18392:11:11"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18354:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "18359:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "18370:11:11",
"type": ""
}
],
"src": "18268:148:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18532:267:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "18542:53:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18589:5:11"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "18556:32:11"
},
"nodeType": "YulFunctionCall",
"src": "18556:39:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "18546:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "18604:96:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18688:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "18693:6:11"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "18611:76:11"
},
"nodeType": "YulFunctionCall",
"src": "18611:89:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18604:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18735:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18742:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18731:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18731:16:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18749:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "18754:6:11"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "18709:21:11"
},
"nodeType": "YulFunctionCall",
"src": "18709:52:11"
},
"nodeType": "YulExpressionStatement",
"src": "18709:52:11"
},
{
"nodeType": "YulAssignment",
"src": "18770:23:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18781:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "18786:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18777:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18777:16:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "18770:3:11"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "18513:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18520:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "18528:3:11",
"type": ""
}
],
"src": "18422:377:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18989:251:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19000:102:11",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "19089:6:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19098:3:11"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "19007:81:11"
},
"nodeType": "YulFunctionCall",
"src": "19007:95:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19000:3:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "19112:102:11",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "19201:6:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19210:3:11"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "19119:81:11"
},
"nodeType": "YulFunctionCall",
"src": "19119:95:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19112:3:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "19224:10:11",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19231:3:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "19224:3:11"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18960:3:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "18966:6:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18974:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "18985:3:11",
"type": ""
}
],
"src": "18805:435:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19352:125:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19374:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19382:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19370:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19370:14:11"
},
{
"hexValue": "4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19386:34:11",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19363:6:11"
},
"nodeType": "YulFunctionCall",
"src": "19363:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "19363:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19442:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19450:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19438:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19438:15:11"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19455:14:11",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19431:6:11"
},
"nodeType": "YulFunctionCall",
"src": "19431:39:11"
},
"nodeType": "YulExpressionStatement",
"src": "19431:39:11"
}
]
},
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19344:6:11",
"type": ""
}
],
"src": "19246:231:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19629:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19639:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19705:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19710:2:11",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19646:58:11"
},
"nodeType": "YulFunctionCall",
"src": "19646:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19639:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19811:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulIdentifier",
"src": "19722:88:11"
},
"nodeType": "YulFunctionCall",
"src": "19722:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "19722:93:11"
},
{
"nodeType": "YulAssignment",
"src": "19824:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19835:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19840:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19831:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19831:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "19824:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19617:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "19625:3:11",
"type": ""
}
],
"src": "19483:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20026:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20036:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20048:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20059:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20044:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20044:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20036:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20083:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20094:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20079:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20079:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20102:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20108:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20098:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20098:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20072:6:11"
},
"nodeType": "YulFunctionCall",
"src": "20072:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "20072:47:11"
},
{
"nodeType": "YulAssignment",
"src": "20128:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20262:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20136:124:11"
},
"nodeType": "YulFunctionCall",
"src": "20136:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20128:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20006:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20021:4:11",
"type": ""
}
],
"src": "19855:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20386:118:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20408:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20416:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20404:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20404:14:11"
},
{
"hexValue": "4552433732313a207472616e736665722066726f6d20696e636f727265637420",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20420:34:11",
"type": "",
"value": "ERC721: transfer from incorrect "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20397:6:11"
},
"nodeType": "YulFunctionCall",
"src": "20397:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "20397:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20476:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20484:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20472:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20472:15:11"
},
{
"hexValue": "6f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20489:7:11",
"type": "",
"value": "owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20465:6:11"
},
"nodeType": "YulFunctionCall",
"src": "20465:32:11"
},
"nodeType": "YulExpressionStatement",
"src": "20465:32:11"
}
]
},
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20378:6:11",
"type": ""
}
],
"src": "20280:224:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20656:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20666:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20732:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20737:2:11",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20673:58:11"
},
"nodeType": "YulFunctionCall",
"src": "20673:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20666:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20838:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulIdentifier",
"src": "20749:88:11"
},
"nodeType": "YulFunctionCall",
"src": "20749:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "20749:93:11"
},
{
"nodeType": "YulAssignment",
"src": "20851:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20862:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20867:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20858:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20858:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "20851:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20644:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "20652:3:11",
"type": ""
}
],
"src": "20510:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21053:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21063:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21075:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21086:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21071:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21071:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21063:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21110:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21121:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21106:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21106:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21129:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21135:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21125:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21125:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21099:6:11"
},
"nodeType": "YulFunctionCall",
"src": "21099:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "21099:47:11"
},
{
"nodeType": "YulAssignment",
"src": "21155:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21289:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21163:124:11"
},
"nodeType": "YulFunctionCall",
"src": "21163:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21155:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21033:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21048:4:11",
"type": ""
}
],
"src": "20882:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21413:117:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "21435:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21443:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21431:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21431:14:11"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "21447:34:11",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21424:6:11"
},
"nodeType": "YulFunctionCall",
"src": "21424:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "21424:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "21503:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21511:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21499:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21499:15:11"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "21516:6:11",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21492:6:11"
},
"nodeType": "YulFunctionCall",
"src": "21492:31:11"
},
"nodeType": "YulExpressionStatement",
"src": "21492:31:11"
}
]
},
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "21405:6:11",
"type": ""
}
],
"src": "21307:223:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21682:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21692:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21758:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21763:2:11",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21699:58:11"
},
"nodeType": "YulFunctionCall",
"src": "21699:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21692:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21864:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "21775:88:11"
},
"nodeType": "YulFunctionCall",
"src": "21775:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "21775:93:11"
},
{
"nodeType": "YulAssignment",
"src": "21877:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21888:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21893:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21884:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21884:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "21877:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "21670:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "21678:3:11",
"type": ""
}
],
"src": "21536:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22079:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22089:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22101:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22112:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22097:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22097:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22089:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22136:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22147:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22132:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22132:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22155:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22161:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22151:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22151:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22125:6:11"
},
"nodeType": "YulFunctionCall",
"src": "22125:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "22125:47:11"
},
{
"nodeType": "YulAssignment",
"src": "22181:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22315:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22189:124:11"
},
"nodeType": "YulFunctionCall",
"src": "22189:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22181:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22059:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22074:4:11",
"type": ""
}
],
"src": "21908:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22361:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22378:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22381:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22371:6:11"
},
"nodeType": "YulFunctionCall",
"src": "22371:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "22371:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22475:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22478:4:11",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22468:6:11"
},
"nodeType": "YulFunctionCall",
"src": "22468:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "22468:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22499:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22502:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "22492:6:11"
},
"nodeType": "YulFunctionCall",
"src": "22492:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "22492:15:11"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "22333:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22564:146:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22574:25:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22597:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22579:17:11"
},
"nodeType": "YulFunctionCall",
"src": "22579:20:11"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22574:1:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "22608:25:11",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22631:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22613:17:11"
},
"nodeType": "YulFunctionCall",
"src": "22613:20:11"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22608:1:11"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "22655:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "22657:16:11"
},
"nodeType": "YulFunctionCall",
"src": "22657:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "22657:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22649:1:11"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22652:1:11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "22646:2:11"
},
"nodeType": "YulFunctionCall",
"src": "22646:8:11"
},
"nodeType": "YulIf",
"src": "22643:34:11"
},
{
"nodeType": "YulAssignment",
"src": "22687:17:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22699:1:11"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22702:1:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22695:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22695:9:11"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "22687:4:11"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "22550:1:11",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "22553:1:11",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "22559:4:11",
"type": ""
}
],
"src": "22519:191:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22760:261:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22770:25:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22793:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22775:17:11"
},
"nodeType": "YulFunctionCall",
"src": "22775:20:11"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22770:1:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "22804:25:11",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22827:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22809:17:11"
},
"nodeType": "YulFunctionCall",
"src": "22809:20:11"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22804:1:11"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "22967:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "22969:16:11"
},
"nodeType": "YulFunctionCall",
"src": "22969:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "22969:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22888:1:11"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22895:66:11",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22963:1:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22891:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22891:74:11"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "22885:2:11"
},
"nodeType": "YulFunctionCall",
"src": "22885:81:11"
},
"nodeType": "YulIf",
"src": "22882:107:11"
},
{
"nodeType": "YulAssignment",
"src": "22999:16:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "23010:1:11"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "23013:1:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23006:3:11"
},
"nodeType": "YulFunctionCall",
"src": "23006:9:11"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "22999:3:11"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "22747:1:11",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "22750:1:11",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "22756:3:11",
"type": ""
}
],
"src": "22716:305:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23133:76:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23155:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23163:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23151:3:11"
},
"nodeType": "YulFunctionCall",
"src": "23151:14:11"
},
{
"hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "23167:34:11",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23144:6:11"
},
"nodeType": "YulFunctionCall",
"src": "23144:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "23144:58:11"
}
]
},
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23125:6:11",
"type": ""
}
],
"src": "23027:182:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23361:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23371:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23437:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23442:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23378:58:11"
},
"nodeType": "YulFunctionCall",
"src": "23378:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23371:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23543:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulIdentifier",
"src": "23454:88:11"
},
"nodeType": "YulFunctionCall",
"src": "23454:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "23454:93:11"
},
{
"nodeType": "YulAssignment",
"src": "23556:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23567:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23572:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23563:3:11"
},
"nodeType": "YulFunctionCall",
"src": "23563:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "23556:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "23349:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "23357:3:11",
"type": ""
}
],
"src": "23215:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23758:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23768:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23780:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23791:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23776:3:11"
},
"nodeType": "YulFunctionCall",
"src": "23776:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23768:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23815:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23826:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23811:3:11"
},
"nodeType": "YulFunctionCall",
"src": "23811:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23834:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23840:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23830:3:11"
},
"nodeType": "YulFunctionCall",
"src": "23830:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23804:6:11"
},
"nodeType": "YulFunctionCall",
"src": "23804:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "23804:47:11"
},
{
"nodeType": "YulAssignment",
"src": "23860:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23994:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23868:124:11"
},
"nodeType": "YulFunctionCall",
"src": "23868:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23860:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23738:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23753:4:11",
"type": ""
}
],
"src": "23587:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24118:72:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24140:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24148:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24136:3:11"
},
"nodeType": "YulFunctionCall",
"src": "24136:14:11"
},
{
"hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "24152:30:11",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24129:6:11"
},
"nodeType": "YulFunctionCall",
"src": "24129:54:11"
},
"nodeType": "YulExpressionStatement",
"src": "24129:54:11"
}
]
},
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24110:6:11",
"type": ""
}
],
"src": "24012:178:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24342:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24352:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24418:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24423:2:11",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24359:58:11"
},
"nodeType": "YulFunctionCall",
"src": "24359:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24352:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24524:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulIdentifier",
"src": "24435:88:11"
},
"nodeType": "YulFunctionCall",
"src": "24435:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "24435:93:11"
},
{
"nodeType": "YulAssignment",
"src": "24537:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24548:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24553:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24544:3:11"
},
"nodeType": "YulFunctionCall",
"src": "24544:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "24537:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "24330:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "24338:3:11",
"type": ""
}
],
"src": "24196:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24739:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24749:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24761:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24772:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24757:3:11"
},
"nodeType": "YulFunctionCall",
"src": "24757:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24749:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24796:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24807:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24792:3:11"
},
"nodeType": "YulFunctionCall",
"src": "24792:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24815:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24821:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24811:3:11"
},
"nodeType": "YulFunctionCall",
"src": "24811:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24785:6:11"
},
"nodeType": "YulFunctionCall",
"src": "24785:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "24785:47:11"
},
{
"nodeType": "YulAssignment",
"src": "24841:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24975:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24849:124:11"
},
"nodeType": "YulFunctionCall",
"src": "24849:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24841:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24719:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24734:4:11",
"type": ""
}
],
"src": "24568:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25099:69:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25121:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25129:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25117:3:11"
},
"nodeType": "YulFunctionCall",
"src": "25117:14:11"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25133:27:11",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25110:6:11"
},
"nodeType": "YulFunctionCall",
"src": "25110:51:11"
},
"nodeType": "YulExpressionStatement",
"src": "25110:51:11"
}
]
},
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25091:6:11",
"type": ""
}
],
"src": "24993:175:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25320:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25330:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25396:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25401:2:11",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25337:58:11"
},
"nodeType": "YulFunctionCall",
"src": "25337:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25330:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25502:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulIdentifier",
"src": "25413:88:11"
},
"nodeType": "YulFunctionCall",
"src": "25413:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "25413:93:11"
},
{
"nodeType": "YulAssignment",
"src": "25515:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25526:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25531:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25522:3:11"
},
"nodeType": "YulFunctionCall",
"src": "25522:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "25515:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25308:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "25316:3:11",
"type": ""
}
],
"src": "25174:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25717:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25727:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25739:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25750:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25735:3:11"
},
"nodeType": "YulFunctionCall",
"src": "25735:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25727:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25774:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25785:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25770:3:11"
},
"nodeType": "YulFunctionCall",
"src": "25770:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25793:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25799:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25789:3:11"
},
"nodeType": "YulFunctionCall",
"src": "25789:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25763:6:11"
},
"nodeType": "YulFunctionCall",
"src": "25763:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "25763:47:11"
},
{
"nodeType": "YulAssignment",
"src": "25819:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25953:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25827:124:11"
},
"nodeType": "YulFunctionCall",
"src": "25827:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25819:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25697:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25712:4:11",
"type": ""
}
],
"src": "25546:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26077:131:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26099:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26107:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26095:3:11"
},
"nodeType": "YulFunctionCall",
"src": "26095:14:11"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26111:34:11",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26088:6:11"
},
"nodeType": "YulFunctionCall",
"src": "26088:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "26088:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26167:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26175:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26163:3:11"
},
"nodeType": "YulFunctionCall",
"src": "26163:15:11"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26180:20:11",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26156:6:11"
},
"nodeType": "YulFunctionCall",
"src": "26156:45:11"
},
"nodeType": "YulExpressionStatement",
"src": "26156:45:11"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26069:6:11",
"type": ""
}
],
"src": "25971:237:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26360:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26370:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26436:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26441:2:11",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26377:58:11"
},
"nodeType": "YulFunctionCall",
"src": "26377:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26370:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26542:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "26453:88:11"
},
"nodeType": "YulFunctionCall",
"src": "26453:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "26453:93:11"
},
{
"nodeType": "YulAssignment",
"src": "26555:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26566:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26571:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26562:3:11"
},
"nodeType": "YulFunctionCall",
"src": "26562:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "26555:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "26348:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "26356:3:11",
"type": ""
}
],
"src": "26214:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26757:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26767:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26779:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26790:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26775:3:11"
},
"nodeType": "YulFunctionCall",
"src": "26775:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26767:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26814:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26825:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26810:3:11"
},
"nodeType": "YulFunctionCall",
"src": "26810:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26833:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26839:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26829:3:11"
},
"nodeType": "YulFunctionCall",
"src": "26829:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26803:6:11"
},
"nodeType": "YulFunctionCall",
"src": "26803:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "26803:47:11"
},
{
"nodeType": "YulAssignment",
"src": "26859:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26993:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26867:124:11"
},
"nodeType": "YulFunctionCall",
"src": "26867:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26859:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "26737:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "26752:4:11",
"type": ""
}
],
"src": "26586:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27054:190:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27064:33:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27091:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "27073:17:11"
},
"nodeType": "YulFunctionCall",
"src": "27073:24:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27064:5:11"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "27187:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "27189:16:11"
},
"nodeType": "YulFunctionCall",
"src": "27189:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "27189:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27112:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27119:66:11",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "27109:2:11"
},
"nodeType": "YulFunctionCall",
"src": "27109:77:11"
},
"nodeType": "YulIf",
"src": "27106:103:11"
},
{
"nodeType": "YulAssignment",
"src": "27218:20:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27229:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27236:1:11",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27225:3:11"
},
"nodeType": "YulFunctionCall",
"src": "27225:13:11"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "27218:3:11"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27040:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "27050:3:11",
"type": ""
}
],
"src": "27011:233:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27278:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27295:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27298:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27288:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27288:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "27288:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27392:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27395:4:11",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27385:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27385:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "27385:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27416:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27419:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "27409:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27409:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "27409:15:11"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "27250:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27478:143:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27488:25:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27511:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "27493:17:11"
},
"nodeType": "YulFunctionCall",
"src": "27493:20:11"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27488:1:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "27522:25:11",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27545:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "27527:17:11"
},
"nodeType": "YulFunctionCall",
"src": "27527:20:11"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27522:1:11"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "27569:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "27571:16:11"
},
"nodeType": "YulFunctionCall",
"src": "27571:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "27571:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27566:1:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "27559:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27559:9:11"
},
"nodeType": "YulIf",
"src": "27556:35:11"
},
{
"nodeType": "YulAssignment",
"src": "27601:14:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27610:1:11"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27613:1:11"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "27606:3:11"
},
"nodeType": "YulFunctionCall",
"src": "27606:9:11"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "27601:1:11"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "27467:1:11",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "27470:1:11",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "27476:1:11",
"type": ""
}
],
"src": "27436:185:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27661:142:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27671:25:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27694:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "27676:17:11"
},
"nodeType": "YulFunctionCall",
"src": "27676:20:11"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27671:1:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "27705:25:11",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27728:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "27710:17:11"
},
"nodeType": "YulFunctionCall",
"src": "27710:20:11"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27705:1:11"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "27752:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "27754:16:11"
},
"nodeType": "YulFunctionCall",
"src": "27754:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "27754:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27749:1:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "27742:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27742:9:11"
},
"nodeType": "YulIf",
"src": "27739:35:11"
},
{
"nodeType": "YulAssignment",
"src": "27783:14:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27792:1:11"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27795:1:11"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "27788:3:11"
},
"nodeType": "YulFunctionCall",
"src": "27788:9:11"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "27783:1:11"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "27650:1:11",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "27653:1:11",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "27659:1:11",
"type": ""
}
],
"src": "27627:176:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27837:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27854:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27857:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27847:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27847:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "27847:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27951:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27954:4:11",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27944:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27944:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "27944:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27975:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27978:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "27968:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27968:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "27968:15:11"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "27809:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28053:40:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28064:22:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28080:5:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "28074:5:11"
},
"nodeType": "YulFunctionCall",
"src": "28074:12:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "28064:6:11"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28036:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "28046:6:11",
"type": ""
}
],
"src": "27995:98:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28194:73:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28211:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "28216:6:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28204:6:11"
},
"nodeType": "YulFunctionCall",
"src": "28204:19:11"
},
"nodeType": "YulExpressionStatement",
"src": "28204:19:11"
},
{
"nodeType": "YulAssignment",
"src": "28232:29:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28251:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28256:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28247:3:11"
},
"nodeType": "YulFunctionCall",
"src": "28247:14:11"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "28232:11:11"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "28166:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "28171:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "28182:11:11",
"type": ""
}
],
"src": "28099:168:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28363:270:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "28373:52:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28419:5:11"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "28387:31:11"
},
"nodeType": "YulFunctionCall",
"src": "28387:38:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "28377:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "28434:77:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28499:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "28504:6:11"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28441:57:11"
},
"nodeType": "YulFunctionCall",
"src": "28441:70:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28434:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28546:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28553:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28542:3:11"
},
"nodeType": "YulFunctionCall",
"src": "28542:16:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28560:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "28565:6:11"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "28520:21:11"
},
"nodeType": "YulFunctionCall",
"src": "28520:52:11"
},
"nodeType": "YulExpressionStatement",
"src": "28520:52:11"
},
{
"nodeType": "YulAssignment",
"src": "28581:46:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28592:3:11"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "28619:6:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "28597:21:11"
},
"nodeType": "YulFunctionCall",
"src": "28597:29:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28588:3:11"
},
"nodeType": "YulFunctionCall",
"src": "28588:39:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "28581:3:11"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28344:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "28351:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "28359:3:11",
"type": ""
}
],
"src": "28273:360:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28839:440:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28849:27:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28861:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28872:3:11",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28857:3:11"
},
"nodeType": "YulFunctionCall",
"src": "28857:19:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28849:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "28930:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28943:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28954:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28939:3:11"
},
"nodeType": "YulFunctionCall",
"src": "28939:17:11"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "28886:43:11"
},
"nodeType": "YulFunctionCall",
"src": "28886:71:11"
},
"nodeType": "YulExpressionStatement",
"src": "28886:71:11"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "29011:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29024:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29035:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29020:3:11"
},
"nodeType": "YulFunctionCall",
"src": "29020:18:11"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "28967:43:11"
},
"nodeType": "YulFunctionCall",
"src": "28967:72:11"
},
"nodeType": "YulExpressionStatement",
"src": "28967:72:11"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "29093:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29106:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29117:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29102:3:11"
},
"nodeType": "YulFunctionCall",
"src": "29102:18:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "29049:43:11"
},
"nodeType": "YulFunctionCall",
"src": "29049:72:11"
},
"nodeType": "YulExpressionStatement",
"src": "29049:72:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29142:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29153:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29138:3:11"
},
"nodeType": "YulFunctionCall",
"src": "29138:18:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29162:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29168:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "29158:3:11"
},
"nodeType": "YulFunctionCall",
"src": "29158:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29131:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29131:48:11"
},
"nodeType": "YulExpressionStatement",
"src": "29131:48:11"
},
{
"nodeType": "YulAssignment",
"src": "29188:84:11",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "29258:6:11"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29267:4:11"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29196:61:11"
},
"nodeType": "YulFunctionCall",
"src": "29196:76:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29188:4:11"
}
]
}
]
},
"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": "28787:9:11",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "28799:6:11",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "28807:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "28815:6:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "28823:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "28834:4:11",
"type": ""
}
],
"src": "28639:640:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29347:79:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29357:22:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "29372:6:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "29366:5:11"
},
"nodeType": "YulFunctionCall",
"src": "29366:13:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29357:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29414:5:11"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "29388:25:11"
},
"nodeType": "YulFunctionCall",
"src": "29388:32:11"
},
"nodeType": "YulExpressionStatement",
"src": "29388:32:11"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "29325:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "29333:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29341:5:11",
"type": ""
}
],
"src": "29285:141:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29508:273:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "29554:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "29556:77:11"
},
"nodeType": "YulFunctionCall",
"src": "29556:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "29556:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "29529:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29538:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "29525:3:11"
},
"nodeType": "YulFunctionCall",
"src": "29525:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29550:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "29521:3:11"
},
"nodeType": "YulFunctionCall",
"src": "29521:32:11"
},
"nodeType": "YulIf",
"src": "29518:119:11"
},
{
"nodeType": "YulBlock",
"src": "29647:127:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "29662:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "29676:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "29666:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "29691:73:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29736:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "29747:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29732:3:11"
},
"nodeType": "YulFunctionCall",
"src": "29732:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "29756:7:11"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "29701:30:11"
},
"nodeType": "YulFunctionCall",
"src": "29701:63:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "29691:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29478:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "29489:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "29501:6:11",
"type": ""
}
],
"src": "29432:349:11"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bool(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_bytes_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_bytes_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_bytes_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value3 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approved query for nonex\")\n\n mstore(add(memPtr, 32), \"istent token\")\n\n }\n\n function abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approval to current owne\")\n\n mstore(add(memPtr, 32), \"r\")\n\n }\n\n function abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve caller is not ow\")\n\n mstore(add(memPtr, 32), \"ner nor approved for all\")\n\n }\n\n function abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 56)\n store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer caller is not o\")\n\n mstore(add(memPtr, 32), \"wner nor approved\")\n\n }\n\n function abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 49)\n store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: owner query for nonexist\")\n\n mstore(add(memPtr, 32), \"ent token\")\n\n }\n\n function abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: balance query for the ze\")\n\n mstore(add(memPtr, 32), \"ro address\")\n\n }\n\n function abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 42)\n store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Metadata: URI query for no\")\n\n mstore(add(memPtr, 32), \"nexistent token\")\n\n }\n\n function abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 47)\n store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value1, pos)\n\n end := pos\n }\n\n function store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: operator query for nonex\")\n\n mstore(add(memPtr, 32), \"istent token\")\n\n }\n\n function abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer from incorrect \")\n\n mstore(add(memPtr, 32), \"owner\")\n\n }\n\n function abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: mint to the zero address\")\n\n }\n\n function abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: token already minted\")\n\n }\n\n function abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 28)\n store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve to caller\")\n\n }\n\n function abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to non ERC721Re\")\n\n mstore(add(memPtr, 32), \"ceiver implementer\")\n\n }\n\n function abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 50)\n store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function mod_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n r := mod(x, y)\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value3, tail)\n\n }\n\n function abi_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n}\n",
"id": 11,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a22cb46511610066578063a22cb4651461025b578063b88d4fde14610277578063c87b56dd14610293578063e985e9c5146102c3576100ea565b806370a08231146101f157806395d89b4114610221578063a0712d681461023f576100ea565b8063095ea7b3116100c8578063095ea7b31461016d57806323b872dd1461018957806342842e0e146101a55780636352211e146101c1576100ea565b806301ffc9a7146100ef57806306fdde031461011f578063081812fc1461013d575b600080fd5b61010960048036038101906101049190611650565b6102f3565b6040516101169190611698565b60405180910390f35b6101276103d5565b604051610134919061174c565b60405180910390f35b610157600480360381019061015291906117a4565b610467565b6040516101649190611812565b60405180910390f35b61018760048036038101906101829190611859565b6104ec565b005b6101a3600480360381019061019e9190611899565b610603565b005b6101bf60048036038101906101ba9190611899565b610663565b005b6101db60048036038101906101d691906117a4565b610683565b6040516101e89190611812565b60405180910390f35b61020b600480360381019061020691906118ec565b610734565b6040516102189190611928565b60405180910390f35b6102296107eb565b604051610236919061174c565b60405180910390f35b610259600480360381019061025491906117a4565b61087d565b005b6102756004803603810190610270919061196f565b61088a565b005b610291600480360381019061028c9190611ae4565b6108a0565b005b6102ad60048036038101906102a891906117a4565b610902565b6040516102ba919061174c565b60405180910390f35b6102dd60048036038101906102d89190611b67565b6109a9565b6040516102ea9190611698565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806103be57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103ce57506103cd82610a3d565b5b9050919050565b6060600080546103e490611bd6565b80601f016020809104026020016040519081016040528092919081815260200182805461041090611bd6565b801561045d5780601f106104325761010080835404028352916020019161045d565b820191906000526020600020905b81548152906001019060200180831161044057829003601f168201915b5050505050905090565b600061047282610aa7565b6104b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a890611c79565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104f782610683565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055e90611d0b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610586610b13565b73ffffffffffffffffffffffffffffffffffffffff1614806105b557506105b4816105af610b13565b6109a9565b5b6105f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105eb90611d9d565b60405180910390fd5b6105fe8383610b1b565b505050565b61061461060e610b13565b82610bd4565b610653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064a90611e2f565b60405180910390fd5b61065e838383610cb2565b505050565b61067e838383604051806020016040528060008152506108a0565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361072b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072290611ec1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079b90611f53565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546107fa90611bd6565b80601f016020809104026020016040519081016040528092919081815260200182805461082690611bd6565b80156108735780601f1061084857610100808354040283529160200191610873565b820191906000526020600020905b81548152906001019060200180831161085657829003601f168201915b5050505050905090565b6108873382610f18565b50565b61089c610895610b13565b83836110f1565b5050565b6108b16108ab610b13565b83610bd4565b6108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e790611e2f565b60405180910390fd5b6108fc8484848461125d565b50505050565b606061090d82610aa7565b61094c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094390611fe5565b60405180910390fd5b60006109566112b9565b9050600081511161097657604051806020016040528060008152506109a1565b80610980846112d0565b604051602001610991929190612041565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610b8e83610683565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610bdf82610aa7565b610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c15906120d7565b60405180910390fd5b6000610c2983610683565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610c6b5750610c6a81856109a9565b5b80610ca957508373ffffffffffffffffffffffffffffffffffffffff16610c9184610467565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610cd282610683565b73ffffffffffffffffffffffffffffffffffffffff1614610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f90612169565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e906121fb565b60405180910390fd5b610da2838383611430565b610dad600082610b1b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dfd919061224a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e54919061227e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f13838383611435565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90612320565b60405180910390fd5b610f9081610aa7565b15610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc79061238c565b60405180910390fd5b610fdc60008383611430565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461102c919061227e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110ed60008383611435565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361115f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611156906123f8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112509190611698565b60405180910390a3505050565b611268848484610cb2565b6112748484848461143a565b6112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa9061248a565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606060008203611317576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061142b565b600082905060005b60008214611349578080611332906124aa565b915050600a826113429190612521565b915061131f565b60008167ffffffffffffffff811115611365576113646119b9565b5b6040519080825280601f01601f1916602001820160405280156113975781602001600182028036833780820191505090505b5090505b60008514611424576001826113b0919061224a565b9150600a856113bf9190612552565b60306113cb919061227e565b60f81b8183815181106113e1576113e0612583565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561141d9190612521565b945061139b565b8093505050505b919050565b505050565b505050565b600061145b8473ffffffffffffffffffffffffffffffffffffffff166115c1565b156115b4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611484610b13565b8786866040518563ffffffff1660e01b81526004016114a69493929190612607565b6020604051808303816000875af19250505080156114e257506040513d601f19601f820116820180604052508101906114df9190612668565b60015b611564573d8060008114611512576040519150601f19603f3d011682016040523d82523d6000602084013e611517565b606091505b50600081510361155c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115539061248a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506115b9565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61162d816115f8565b811461163857600080fd5b50565b60008135905061164a81611624565b92915050565b600060208284031215611666576116656115ee565b5b60006116748482850161163b565b91505092915050565b60008115159050919050565b6116928161167d565b82525050565b60006020820190506116ad6000830184611689565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116ed5780820151818401526020810190506116d2565b838111156116fc576000848401525b50505050565b6000601f19601f8301169050919050565b600061171e826116b3565b61172881856116be565b93506117388185602086016116cf565b61174181611702565b840191505092915050565b600060208201905081810360008301526117668184611713565b905092915050565b6000819050919050565b6117818161176e565b811461178c57600080fd5b50565b60008135905061179e81611778565b92915050565b6000602082840312156117ba576117b96115ee565b5b60006117c88482850161178f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117fc826117d1565b9050919050565b61180c816117f1565b82525050565b60006020820190506118276000830184611803565b92915050565b611836816117f1565b811461184157600080fd5b50565b6000813590506118538161182d565b92915050565b600080604083850312156118705761186f6115ee565b5b600061187e85828601611844565b925050602061188f8582860161178f565b9150509250929050565b6000806000606084860312156118b2576118b16115ee565b5b60006118c086828701611844565b93505060206118d186828701611844565b92505060406118e28682870161178f565b9150509250925092565b600060208284031215611902576119016115ee565b5b600061191084828501611844565b91505092915050565b6119228161176e565b82525050565b600060208201905061193d6000830184611919565b92915050565b61194c8161167d565b811461195757600080fd5b50565b60008135905061196981611943565b92915050565b60008060408385031215611986576119856115ee565b5b600061199485828601611844565b92505060206119a58582860161195a565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6119f182611702565b810181811067ffffffffffffffff82111715611a1057611a0f6119b9565b5b80604052505050565b6000611a236115e4565b9050611a2f82826119e8565b919050565b600067ffffffffffffffff821115611a4f57611a4e6119b9565b5b611a5882611702565b9050602081019050919050565b82818337600083830152505050565b6000611a87611a8284611a34565b611a19565b905082815260208101848484011115611aa357611aa26119b4565b5b611aae848285611a65565b509392505050565b600082601f830112611acb57611aca6119af565b5b8135611adb848260208601611a74565b91505092915050565b60008060008060808587031215611afe57611afd6115ee565b5b6000611b0c87828801611844565b9450506020611b1d87828801611844565b9350506040611b2e8782880161178f565b925050606085013567ffffffffffffffff811115611b4f57611b4e6115f3565b5b611b5b87828801611ab6565b91505092959194509250565b60008060408385031215611b7e57611b7d6115ee565b5b6000611b8c85828601611844565b9250506020611b9d85828601611844565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611bee57607f821691505b602082108103611c0157611c00611ba7565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000611c63602c836116be565b9150611c6e82611c07565b604082019050919050565b60006020820190508181036000830152611c9281611c56565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cf56021836116be565b9150611d0082611c99565b604082019050919050565b60006020820190508181036000830152611d2481611ce8565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000611d876038836116be565b9150611d9282611d2b565b604082019050919050565b60006020820190508181036000830152611db681611d7a565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000611e196031836116be565b9150611e2482611dbd565b604082019050919050565b60006020820190508181036000830152611e4881611e0c565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000611eab6029836116be565b9150611eb682611e4f565b604082019050919050565b60006020820190508181036000830152611eda81611e9e565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000611f3d602a836116be565b9150611f4882611ee1565b604082019050919050565b60006020820190508181036000830152611f6c81611f30565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000611fcf602f836116be565b9150611fda82611f73565b604082019050919050565b60006020820190508181036000830152611ffe81611fc2565b9050919050565b600081905092915050565b600061201b826116b3565b6120258185612005565b93506120358185602086016116cf565b80840191505092915050565b600061204d8285612010565b91506120598284612010565b91508190509392505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006120c1602c836116be565b91506120cc82612065565b604082019050919050565b600060208201905081810360008301526120f0816120b4565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006121536025836116be565b915061215e826120f7565b604082019050919050565b6000602082019050818103600083015261218281612146565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006121e56024836116be565b91506121f082612189565b604082019050919050565b60006020820190508181036000830152612214816121d8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122558261176e565b91506122608361176e565b9250828210156122735761227261221b565b5b828203905092915050565b60006122898261176e565b91506122948361176e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122c9576122c861221b565b5b828201905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061230a6020836116be565b9150612315826122d4565b602082019050919050565b60006020820190508181036000830152612339816122fd565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612376601c836116be565b915061238182612340565b602082019050919050565b600060208201905081810360008301526123a581612369565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006123e26019836116be565b91506123ed826123ac565b602082019050919050565b60006020820190508181036000830152612411816123d5565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006124746032836116be565b915061247f82612418565b604082019050919050565b600060208201905081810360008301526124a381612467565b9050919050565b60006124b58261176e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036124e7576124e661221b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061252c8261176e565b91506125378361176e565b925082612547576125466124f2565b5b828204905092915050565b600061255d8261176e565b91506125688361176e565b925082612578576125776124f2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006125d9826125b2565b6125e381856125bd565b93506125f38185602086016116cf565b6125fc81611702565b840191505092915050565b600060808201905061261c6000830187611803565b6126296020830186611803565b6126366040830185611919565b818103606083015261264881846125ce565b905095945050505050565b60008151905061266281611624565b92915050565b60006020828403121561267e5761267d6115ee565b5b600061268c84828501612653565b9150509291505056fea2646970667358221220ab040a8774e9c5fa1f86bb7b8674f2c0418d4425d7560dbaa431e8c6b8b7fec464736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x25B JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x277 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x293 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x2C3 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1F1 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x221 JUMPI DUP1 PUSH4 0xA0712D68 EQ PUSH2 0x23F JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x189 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x1A5 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x1C1 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x11F JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x13D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x109 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x104 SWAP2 SWAP1 PUSH2 0x1650 JUMP JUMPDEST PUSH2 0x2F3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x116 SWAP2 SWAP1 PUSH2 0x1698 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x127 PUSH2 0x3D5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x174C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x157 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x17A4 JUMP JUMPDEST PUSH2 0x467 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x164 SWAP2 SWAP1 PUSH2 0x1812 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x187 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x182 SWAP2 SWAP1 PUSH2 0x1859 JUMP JUMPDEST PUSH2 0x4EC JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1A3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19E SWAP2 SWAP1 PUSH2 0x1899 JUMP JUMPDEST PUSH2 0x603 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1BF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BA SWAP2 SWAP1 PUSH2 0x1899 JUMP JUMPDEST PUSH2 0x663 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1DB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1D6 SWAP2 SWAP1 PUSH2 0x17A4 JUMP JUMPDEST PUSH2 0x683 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1E8 SWAP2 SWAP1 PUSH2 0x1812 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x206 SWAP2 SWAP1 PUSH2 0x18EC JUMP JUMPDEST PUSH2 0x734 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x218 SWAP2 SWAP1 PUSH2 0x1928 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x229 PUSH2 0x7EB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x236 SWAP2 SWAP1 PUSH2 0x174C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x259 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x254 SWAP2 SWAP1 PUSH2 0x17A4 JUMP JUMPDEST PUSH2 0x87D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x275 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x270 SWAP2 SWAP1 PUSH2 0x196F JUMP JUMPDEST PUSH2 0x88A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x291 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28C SWAP2 SWAP1 PUSH2 0x1AE4 JUMP JUMPDEST PUSH2 0x8A0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2AD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A8 SWAP2 SWAP1 PUSH2 0x17A4 JUMP JUMPDEST PUSH2 0x902 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2BA SWAP2 SWAP1 PUSH2 0x174C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2DD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2D8 SWAP2 SWAP1 PUSH2 0x1B67 JUMP JUMPDEST PUSH2 0x9A9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2EA SWAP2 SWAP1 PUSH2 0x1698 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x3BE JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x3CE JUMPI POP PUSH2 0x3CD DUP3 PUSH2 0xA3D JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x3E4 SWAP1 PUSH2 0x1BD6 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 0x410 SWAP1 PUSH2 0x1BD6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x45D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x432 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x45D 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 0x440 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x472 DUP3 PUSH2 0xAA7 JUMP JUMPDEST PUSH2 0x4B1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4A8 SWAP1 PUSH2 0x1C79 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4F7 DUP3 PUSH2 0x683 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x567 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x55E SWAP1 PUSH2 0x1D0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x586 PUSH2 0xB13 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x5B5 JUMPI POP PUSH2 0x5B4 DUP2 PUSH2 0x5AF PUSH2 0xB13 JUMP JUMPDEST PUSH2 0x9A9 JUMP JUMPDEST JUMPDEST PUSH2 0x5F4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5EB SWAP1 PUSH2 0x1D9D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5FE DUP4 DUP4 PUSH2 0xB1B JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x614 PUSH2 0x60E PUSH2 0xB13 JUMP JUMPDEST DUP3 PUSH2 0xBD4 JUMP JUMPDEST PUSH2 0x653 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x64A SWAP1 PUSH2 0x1E2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x65E DUP4 DUP4 DUP4 PUSH2 0xCB2 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x67E DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x8A0 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x72B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x722 SWAP1 PUSH2 0x1EC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x7A4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x79B SWAP1 PUSH2 0x1F53 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x7FA SWAP1 PUSH2 0x1BD6 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 0x826 SWAP1 PUSH2 0x1BD6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x873 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x848 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x873 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 0x856 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x887 CALLER DUP3 PUSH2 0xF18 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x89C PUSH2 0x895 PUSH2 0xB13 JUMP JUMPDEST DUP4 DUP4 PUSH2 0x10F1 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x8B1 PUSH2 0x8AB PUSH2 0xB13 JUMP JUMPDEST DUP4 PUSH2 0xBD4 JUMP JUMPDEST PUSH2 0x8F0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8E7 SWAP1 PUSH2 0x1E2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8FC DUP5 DUP5 DUP5 DUP5 PUSH2 0x125D JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x90D DUP3 PUSH2 0xAA7 JUMP JUMPDEST PUSH2 0x94C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x943 SWAP1 PUSH2 0x1FE5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x956 PUSH2 0x12B9 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x976 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x9A1 JUMP JUMPDEST DUP1 PUSH2 0x980 DUP5 PUSH2 0x12D0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x991 SWAP3 SWAP2 SWAP1 PUSH2 0x2041 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xB8E DUP4 PUSH2 0x683 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBDF DUP3 PUSH2 0xAA7 JUMP JUMPDEST PUSH2 0xC1E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC15 SWAP1 PUSH2 0x20D7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xC29 DUP4 PUSH2 0x683 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xC6B JUMPI POP PUSH2 0xC6A DUP2 DUP6 PUSH2 0x9A9 JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0xCA9 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC91 DUP5 PUSH2 0x467 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xCD2 DUP3 PUSH2 0x683 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD28 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD1F SWAP1 PUSH2 0x2169 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xD97 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD8E SWAP1 PUSH2 0x21FB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xDA2 DUP4 DUP4 DUP4 PUSH2 0x1430 JUMP JUMPDEST PUSH2 0xDAD PUSH1 0x0 DUP3 PUSH2 0xB1B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xDFD SWAP2 SWAP1 PUSH2 0x224A JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xE54 SWAP2 SWAP1 PUSH2 0x227E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0xF13 DUP4 DUP4 DUP4 PUSH2 0x1435 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xF87 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF7E SWAP1 PUSH2 0x2320 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xF90 DUP2 PUSH2 0xAA7 JUMP JUMPDEST ISZERO PUSH2 0xFD0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFC7 SWAP1 PUSH2 0x238C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xFDC PUSH1 0x0 DUP4 DUP4 PUSH2 0x1430 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x102C SWAP2 SWAP1 PUSH2 0x227E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x10ED PUSH1 0x0 DUP4 DUP4 PUSH2 0x1435 JUMP JUMPDEST POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x115F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1156 SWAP1 PUSH2 0x23F8 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 0x1250 SWAP2 SWAP1 PUSH2 0x1698 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x1268 DUP5 DUP5 DUP5 PUSH2 0xCB2 JUMP JUMPDEST PUSH2 0x1274 DUP5 DUP5 DUP5 DUP5 PUSH2 0x143A JUMP JUMPDEST PUSH2 0x12B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12AA SWAP1 PUSH2 0x248A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 SUB PUSH2 0x1317 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x142B JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x1349 JUMPI DUP1 DUP1 PUSH2 0x1332 SWAP1 PUSH2 0x24AA JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x1342 SWAP2 SWAP1 PUSH2 0x2521 JUMP JUMPDEST SWAP2 POP PUSH2 0x131F JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1365 JUMPI PUSH2 0x1364 PUSH2 0x19B9 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1397 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x1424 JUMPI PUSH1 0x1 DUP3 PUSH2 0x13B0 SWAP2 SWAP1 PUSH2 0x224A JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x13BF SWAP2 SWAP1 PUSH2 0x2552 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x13CB SWAP2 SWAP1 PUSH2 0x227E JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x13E1 JUMPI PUSH2 0x13E0 PUSH2 0x2583 JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x141D SWAP2 SWAP1 PUSH2 0x2521 JUMP JUMPDEST SWAP5 POP PUSH2 0x139B JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x145B DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x15C1 JUMP JUMPDEST ISZERO PUSH2 0x15B4 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x1484 PUSH2 0xB13 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14A6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2607 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x14E2 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 0x14DF SWAP2 SWAP1 PUSH2 0x2668 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1564 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1512 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 0x1517 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD SUB PUSH2 0x155C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1553 SWAP1 PUSH2 0x248A 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 0x15B9 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 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 0x162D DUP2 PUSH2 0x15F8 JUMP JUMPDEST DUP2 EQ PUSH2 0x1638 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x164A DUP2 PUSH2 0x1624 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1666 JUMPI PUSH2 0x1665 PUSH2 0x15EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1674 DUP5 DUP3 DUP6 ADD PUSH2 0x163B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1692 DUP2 PUSH2 0x167D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x16AD PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1689 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x16ED JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x16D2 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x16FC JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x171E DUP3 PUSH2 0x16B3 JUMP JUMPDEST PUSH2 0x1728 DUP2 DUP6 PUSH2 0x16BE JUMP JUMPDEST SWAP4 POP PUSH2 0x1738 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x16CF JUMP JUMPDEST PUSH2 0x1741 DUP2 PUSH2 0x1702 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 0x1766 DUP2 DUP5 PUSH2 0x1713 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1781 DUP2 PUSH2 0x176E JUMP JUMPDEST DUP2 EQ PUSH2 0x178C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x179E DUP2 PUSH2 0x1778 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x17BA JUMPI PUSH2 0x17B9 PUSH2 0x15EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x17C8 DUP5 DUP3 DUP6 ADD PUSH2 0x178F 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 0x17FC DUP3 PUSH2 0x17D1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x180C DUP2 PUSH2 0x17F1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1827 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1803 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1836 DUP2 PUSH2 0x17F1 JUMP JUMPDEST DUP2 EQ PUSH2 0x1841 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1853 DUP2 PUSH2 0x182D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1870 JUMPI PUSH2 0x186F PUSH2 0x15EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x187E DUP6 DUP3 DUP7 ADD PUSH2 0x1844 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x188F DUP6 DUP3 DUP7 ADD PUSH2 0x178F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x18B2 JUMPI PUSH2 0x18B1 PUSH2 0x15EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x18C0 DUP7 DUP3 DUP8 ADD PUSH2 0x1844 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x18D1 DUP7 DUP3 DUP8 ADD PUSH2 0x1844 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x18E2 DUP7 DUP3 DUP8 ADD PUSH2 0x178F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1902 JUMPI PUSH2 0x1901 PUSH2 0x15EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1910 DUP5 DUP3 DUP6 ADD PUSH2 0x1844 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1922 DUP2 PUSH2 0x176E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x193D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1919 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x194C DUP2 PUSH2 0x167D JUMP JUMPDEST DUP2 EQ PUSH2 0x1957 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1969 DUP2 PUSH2 0x1943 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1986 JUMPI PUSH2 0x1985 PUSH2 0x15EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1994 DUP6 DUP3 DUP7 ADD PUSH2 0x1844 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x19A5 DUP6 DUP3 DUP7 ADD PUSH2 0x195A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x19F1 DUP3 PUSH2 0x1702 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1A10 JUMPI PUSH2 0x1A0F PUSH2 0x19B9 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A23 PUSH2 0x15E4 JUMP JUMPDEST SWAP1 POP PUSH2 0x1A2F DUP3 DUP3 PUSH2 0x19E8 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1A4F JUMPI PUSH2 0x1A4E PUSH2 0x19B9 JUMP JUMPDEST JUMPDEST PUSH2 0x1A58 DUP3 PUSH2 0x1702 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 0x1A87 PUSH2 0x1A82 DUP5 PUSH2 0x1A34 JUMP JUMPDEST PUSH2 0x1A19 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1AA3 JUMPI PUSH2 0x1AA2 PUSH2 0x19B4 JUMP JUMPDEST JUMPDEST PUSH2 0x1AAE DUP5 DUP3 DUP6 PUSH2 0x1A65 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1ACB JUMPI PUSH2 0x1ACA PUSH2 0x19AF JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1ADB DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1A74 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 0x1AFE JUMPI PUSH2 0x1AFD PUSH2 0x15EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1B0C DUP8 DUP3 DUP9 ADD PUSH2 0x1844 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x1B1D DUP8 DUP3 DUP9 ADD PUSH2 0x1844 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x1B2E DUP8 DUP3 DUP9 ADD PUSH2 0x178F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1B4F JUMPI PUSH2 0x1B4E PUSH2 0x15F3 JUMP JUMPDEST JUMPDEST PUSH2 0x1B5B DUP8 DUP3 DUP9 ADD PUSH2 0x1AB6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1B7E JUMPI PUSH2 0x1B7D PUSH2 0x15EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1B8C DUP6 DUP3 DUP7 ADD PUSH2 0x1844 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1B9D DUP6 DUP3 DUP7 ADD PUSH2 0x1844 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 0x1BEE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1C01 JUMPI PUSH2 0x1C00 PUSH2 0x1BA7 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1C63 PUSH1 0x2C DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x1C6E DUP3 PUSH2 0x1C07 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 0x1C92 DUP2 PUSH2 0x1C56 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CF5 PUSH1 0x21 DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x1D00 DUP3 PUSH2 0x1C99 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 0x1D24 DUP2 PUSH2 0x1CE8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D87 PUSH1 0x38 DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x1D92 DUP3 PUSH2 0x1D2B 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 0x1DB6 DUP2 PUSH2 0x1D7A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E19 PUSH1 0x31 DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x1E24 DUP3 PUSH2 0x1DBD 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 0x1E48 DUP2 PUSH2 0x1E0C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EAB PUSH1 0x29 DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x1EB6 DUP3 PUSH2 0x1E4F 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 0x1EDA DUP2 PUSH2 0x1E9E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F3D PUSH1 0x2A DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x1F48 DUP3 PUSH2 0x1EE1 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 0x1F6C DUP2 PUSH2 0x1F30 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1FCF PUSH1 0x2F DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x1FDA DUP3 PUSH2 0x1F73 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 0x1FFE DUP2 PUSH2 0x1FC2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x201B DUP3 PUSH2 0x16B3 JUMP JUMPDEST PUSH2 0x2025 DUP2 DUP6 PUSH2 0x2005 JUMP JUMPDEST SWAP4 POP PUSH2 0x2035 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x16CF JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x204D DUP3 DUP6 PUSH2 0x2010 JUMP JUMPDEST SWAP2 POP PUSH2 0x2059 DUP3 DUP5 PUSH2 0x2010 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x20C1 PUSH1 0x2C DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x20CC DUP3 PUSH2 0x2065 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 0x20F0 DUP2 PUSH2 0x20B4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2153 PUSH1 0x25 DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x215E DUP3 PUSH2 0x20F7 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 0x2182 DUP2 PUSH2 0x2146 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 0x21E5 PUSH1 0x24 DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x21F0 DUP3 PUSH2 0x2189 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 0x2214 DUP2 PUSH2 0x21D8 JUMP JUMPDEST SWAP1 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 0x2255 DUP3 PUSH2 0x176E JUMP JUMPDEST SWAP2 POP PUSH2 0x2260 DUP4 PUSH2 0x176E JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x2273 JUMPI PUSH2 0x2272 PUSH2 0x221B JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2289 DUP3 PUSH2 0x176E JUMP JUMPDEST SWAP2 POP PUSH2 0x2294 DUP4 PUSH2 0x176E JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x22C9 JUMPI PUSH2 0x22C8 PUSH2 0x221B JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x230A PUSH1 0x20 DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x2315 DUP3 PUSH2 0x22D4 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 0x2339 DUP2 PUSH2 0x22FD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2376 PUSH1 0x1C DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x2381 DUP3 PUSH2 0x2340 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 0x23A5 DUP2 PUSH2 0x2369 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x23E2 PUSH1 0x19 DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x23ED DUP3 PUSH2 0x23AC 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 0x2411 DUP2 PUSH2 0x23D5 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 0x2474 PUSH1 0x32 DUP4 PUSH2 0x16BE JUMP JUMPDEST SWAP2 POP PUSH2 0x247F DUP3 PUSH2 0x2418 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 0x24A3 DUP2 PUSH2 0x2467 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24B5 DUP3 PUSH2 0x176E JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x24E7 JUMPI PUSH2 0x24E6 PUSH2 0x221B JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x252C DUP3 PUSH2 0x176E JUMP JUMPDEST SWAP2 POP PUSH2 0x2537 DUP4 PUSH2 0x176E JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x2547 JUMPI PUSH2 0x2546 PUSH2 0x24F2 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x255D DUP3 PUSH2 0x176E JUMP JUMPDEST SWAP2 POP PUSH2 0x2568 DUP4 PUSH2 0x176E JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x2578 JUMPI PUSH2 0x2577 PUSH2 0x24F2 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT 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 0x25D9 DUP3 PUSH2 0x25B2 JUMP JUMPDEST PUSH2 0x25E3 DUP2 DUP6 PUSH2 0x25BD JUMP JUMPDEST SWAP4 POP PUSH2 0x25F3 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x16CF JUMP JUMPDEST PUSH2 0x25FC DUP2 PUSH2 0x1702 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x261C PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x1803 JUMP JUMPDEST PUSH2 0x2629 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1803 JUMP JUMPDEST PUSH2 0x2636 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1919 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x2648 DUP2 DUP5 PUSH2 0x25CE JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x2662 DUP2 PUSH2 0x1624 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x267E JUMPI PUSH2 0x267D PUSH2 0x15EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x268C DUP5 DUP3 DUP6 ADD PUSH2 0x2653 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAB DIV EXP DUP8 PUSH21 0xE9C5FA1F86BB7B8674F2C0418D4425D7560DBAA431 0xE8 0xC6 0xB8 0xB7 INVALID 0xC4 PUSH5 0x736F6C6343 STOP ADDMOD 0xD STOP CALLER ",
"sourceMap": "195:160:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:300:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2488:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4000:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3538:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4727:330;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5123:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2191:235;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1929:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2650:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;272:81:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4284:153:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5368:320;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2818:329;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4503:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1570:300;1672:4;1722:25;1707:40;;;:11;:40;;;;:104;;;;1778:33;1763:48;;;:11;:48;;;;1707:104;:156;;;;1827:36;1851:11;1827:23;:36::i;:::-;1707:156;1688:175;;1570:300;;;:::o;2488:98::-;2542:13;2574:5;2567:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2488:98;:::o;4000:217::-;4076:7;4103:16;4111:7;4103;:16::i;:::-;4095:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4186:15;:24;4202:7;4186:24;;;;;;;;;;;;;;;;;;;;;4179:31;;4000:217;;;:::o;3538:401::-;3618:13;3634:23;3649:7;3634:14;:23::i;:::-;3618:39;;3681:5;3675:11;;:2;:11;;;3667:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3772:5;3756:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3781:37;3798:5;3805:12;:10;:12::i;:::-;3781:16;:37::i;:::-;3756:62;3735:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3911:21;3920:2;3924:7;3911:8;:21::i;:::-;3608:331;3538:401;;:::o;4727:330::-;4916:41;4935:12;:10;:12::i;:::-;4949:7;4916:18;:41::i;:::-;4908:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5022:28;5032:4;5038:2;5042:7;5022:9;:28::i;:::-;4727:330;;;:::o;5123:179::-;5256:39;5273:4;5279:2;5283:7;5256:39;;;;;;;;;;;;:16;:39::i;:::-;5123:179;;;:::o;2191:235::-;2263:7;2282:13;2298:7;:16;2306:7;2298:16;;;;;;;;;;;;;;;;;;;;;2282:32;;2349:1;2332:19;;:5;:19;;;2324:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2414:5;2407:12;;;2191:235;;;:::o;1929:205::-;2001:7;2045:1;2028:19;;:5;:19;;;2020:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2111:9;:16;2121:5;2111:16;;;;;;;;;;;;;;;;2104:23;;1929:205;;;:::o;2650:102::-;2706:13;2738:7;2731:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2650:102;:::o;272:81:10:-;320:26;326:10;338:7;320:5;:26::i;:::-;272:81;:::o;4284:153:0:-;4378:52;4397:12;:10;:12::i;:::-;4411:8;4421;4378:18;:52::i;:::-;4284:153;;:::o;5368:320::-;5537:41;5556:12;:10;:12::i;:::-;5570:7;5537:18;:41::i;:::-;5529:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5642:39;5656:4;5662:2;5666:7;5675:5;5642:13;:39::i;:::-;5368:320;;;;:::o;2818:329::-;2891:13;2924:16;2932:7;2924;:16::i;:::-;2916:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;3003:21;3027:10;:8;:10::i;:::-;3003:34;;3078:1;3060:7;3054:21;:25;:86;;;;;;;;;;;;;;;;;3106:7;3115:18;:7;:16;:18::i;:::-;3089:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3054:86;3047:93;;;2818:329;;;:::o;4503:162::-;4600:4;4623:18;:25;4642:5;4623:25;;;;;;;;;;;;;;;:35;4649:8;4623:35;;;;;;;;;;;;;;;;;;;;;;;;;4616:42;;4503:162;;;;:::o;829:155:8:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;7160:125:0:-;7225:4;7276:1;7248:30;;:7;:16;7256:7;7248:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7241:37;;7160:125;;;:::o;640:96:5:-;693:7;719:10;712:17;;640:96;:::o;11169:171:0:-;11270:2;11243:15;:24;11259:7;11243:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11325:7;11321:2;11287:46;;11296:23;11311:7;11296:14;:23::i;:::-;11287:46;;;;;;;;;;;;11169:171;;:::o;7443:344::-;7536:4;7560:16;7568:7;7560;:16::i;:::-;7552:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7635:13;7651:23;7666:7;7651:14;:23::i;:::-;7635:39;;7703:5;7692:16;;:7;:16;;;:52;;;;7712:32;7729:5;7736:7;7712:16;:32::i;:::-;7692:52;:87;;;;7772:7;7748:31;;:20;7760:7;7748:11;:20::i;:::-;:31;;;7692:87;7684:96;;;7443:344;;;;:::o;10453:605::-;10607:4;10580:31;;:23;10595:7;10580:14;:23::i;:::-;:31;;;10572:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10685:1;10671:16;;:2;:16;;;10663:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10739:39;10760:4;10766:2;10770:7;10739:20;:39::i;:::-;10840:29;10857:1;10861:7;10840:8;:29::i;:::-;10899:1;10880:9;:15;10890:4;10880:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10927:1;10910:9;:13;10920:2;10910:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10957:2;10938:7;:16;10946:7;10938:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10994:7;10990:2;10975:27;;10984:4;10975:27;;;;;;;;;;;;11013:38;11033:4;11039:2;11043:7;11013:19;:38::i;:::-;10453:605;;;:::o;9079:427::-;9172:1;9158:16;;:2;:16;;;9150:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9230:16;9238:7;9230;:16::i;:::-;9229:17;9221:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9290:45;9319:1;9323:2;9327:7;9290:20;:45::i;:::-;9363:1;9346:9;:13;9356:2;9346:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9393:2;9374:7;:16;9382:7;9374:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9436:7;9432:2;9411:33;;9428:1;9411:33;;;;;;;;;;;;9455:44;9483:1;9487:2;9491:7;9455:19;:44::i;:::-;9079:427;;:::o;11475:307::-;11625:8;11616:17;;:5;:17;;;11608:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11711:8;11673:18;:25;11692:5;11673:25;;;;;;;;;;;;;;;:35;11699:8;11673:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11756:8;11734:41;;11749:5;11734:41;;;11766:8;11734:41;;;;;;:::i;:::-;;;;;;;;11475:307;;;:::o;6550:::-;6701:28;6711:4;6717:2;6721:7;6701:9;:28::i;:::-;6747:48;6770:4;6776:2;6780:7;6789:5;6747:22;:48::i;:::-;6739:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6550:307;;;;:::o;3389:92::-;3440:13;3465:9;;;;;;;;;;;;;;3389:92;:::o;328:703:7:-;384:13;610:1;601:5;:10;597:51;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;13669:122:0:-;;;;:::o;14163:121::-;;;;:::o;12335:778::-;12485:4;12505:15;:2;:13;;;:15::i;:::-;12501:606;;;12556:2;12540:36;;;12577:12;:10;:12::i;:::-;12591:4;12597:7;12606:5;12540:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12536:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12796:1;12779:6;:13;:18;12775:266;;12821:60;;;;;;;;;;:::i;:::-;;;;;;;;12775:266;12993:6;12987:13;12978:6;12974:2;12970:15;12963:38;12536:519;12672:41;;;12662:51;;;:6;:51;;;;12655:58;;;;;12501:606;13092:4;13085:11;;12335:778;;;;;;;:::o;1175:320:4:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;7:75:11:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:619::-;5015:6;5023;5031;5080:2;5068:9;5059:7;5055:23;5051:32;5048:119;;;5086:79;;:::i;:::-;5048:119;5206:1;5231:53;5276:7;5267:6;5256:9;5252:22;5231:53;:::i;:::-;5221:63;;5177:117;5333:2;5359:53;5404:7;5395:6;5384:9;5380:22;5359:53;:::i;:::-;5349:63;;5304:118;5461:2;5487:53;5532:7;5523:6;5512:9;5508:22;5487:53;:::i;:::-;5477:63;;5432:118;4938:619;;;;;:::o;5563:329::-;5622:6;5671:2;5659:9;5650:7;5646:23;5642:32;5639:119;;;5677:79;;:::i;:::-;5639:119;5797:1;5822:53;5867:7;5858:6;5847:9;5843:22;5822:53;:::i;:::-;5812:63;;5768:117;5563:329;;;;:::o;5898:118::-;5985:24;6003:5;5985:24;:::i;:::-;5980:3;5973:37;5898:118;;:::o;6022:222::-;6115:4;6153:2;6142:9;6138:18;6130:26;;6166:71;6234:1;6223:9;6219:17;6210:6;6166:71;:::i;:::-;6022:222;;;;:::o;6250:116::-;6320:21;6335:5;6320:21;:::i;:::-;6313:5;6310:32;6300:60;;6356:1;6353;6346:12;6300:60;6250:116;:::o;6372:133::-;6415:5;6453:6;6440:20;6431:29;;6469:30;6493:5;6469:30;:::i;:::-;6372:133;;;;:::o;6511:468::-;6576:6;6584;6633:2;6621:9;6612:7;6608:23;6604:32;6601:119;;;6639:79;;:::i;:::-;6601:119;6759:1;6784:53;6829:7;6820:6;6809:9;6805:22;6784:53;:::i;:::-;6774:63;;6730:117;6886:2;6912:50;6954:7;6945:6;6934:9;6930:22;6912:50;:::i;:::-;6902:60;;6857:115;6511:468;;;;;:::o;6985:117::-;7094:1;7091;7084:12;7108:117;7217:1;7214;7207:12;7231:180;7279:77;7276:1;7269:88;7376:4;7373:1;7366:15;7400:4;7397:1;7390:15;7417:281;7500:27;7522:4;7500:27;:::i;:::-;7492:6;7488:40;7630:6;7618:10;7615:22;7594:18;7582:10;7579:34;7576:62;7573:88;;;7641:18;;:::i;:::-;7573:88;7681:10;7677:2;7670:22;7460:238;7417:281;;:::o;7704:129::-;7738:6;7765:20;;:::i;:::-;7755:30;;7794:33;7822:4;7814:6;7794:33;:::i;:::-;7704:129;;;:::o;7839:307::-;7900:4;7990:18;7982:6;7979:30;7976:56;;;8012:18;;:::i;:::-;7976:56;8050:29;8072:6;8050:29;:::i;:::-;8042:37;;8134:4;8128;8124:15;8116:23;;7839:307;;;:::o;8152:154::-;8236:6;8231:3;8226;8213:30;8298:1;8289:6;8284:3;8280:16;8273:27;8152:154;;;:::o;8312:410::-;8389:5;8414:65;8430:48;8471:6;8430:48;:::i;:::-;8414:65;:::i;:::-;8405:74;;8502:6;8495:5;8488:21;8540:4;8533:5;8529:16;8578:3;8569:6;8564:3;8560:16;8557:25;8554:112;;;8585:79;;:::i;:::-;8554:112;8675:41;8709:6;8704:3;8699;8675:41;:::i;:::-;8395:327;8312:410;;;;;:::o;8741:338::-;8796:5;8845:3;8838:4;8830:6;8826:17;8822:27;8812:122;;8853:79;;:::i;:::-;8812:122;8970:6;8957:20;8995:78;9069:3;9061:6;9054:4;9046:6;9042:17;8995:78;:::i;:::-;8986:87;;8802:277;8741:338;;;;:::o;9085:943::-;9180:6;9188;9196;9204;9253:3;9241:9;9232:7;9228:23;9224:33;9221:120;;;9260:79;;:::i;:::-;9221:120;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:53;9578:7;9569:6;9558:9;9554:22;9533:53;:::i;:::-;9523:63;;9478:118;9635:2;9661:53;9706:7;9697:6;9686:9;9682:22;9661:53;:::i;:::-;9651:63;;9606:118;9791:2;9780:9;9776:18;9763:32;9822:18;9814:6;9811:30;9808:117;;;9844:79;;:::i;:::-;9808:117;9949:62;10003:7;9994:6;9983:9;9979:22;9949:62;:::i;:::-;9939:72;;9734:287;9085:943;;;;;;;:::o;10034:474::-;10102:6;10110;10159:2;10147:9;10138:7;10134:23;10130:32;10127:119;;;10165:79;;:::i;:::-;10127:119;10285:1;10310:53;10355:7;10346:6;10335:9;10331:22;10310:53;:::i;:::-;10300:63;;10256:117;10412:2;10438:53;10483:7;10474:6;10463:9;10459:22;10438:53;:::i;:::-;10428:63;;10383:118;10034:474;;;;;:::o;10514:180::-;10562:77;10559:1;10552:88;10659:4;10656:1;10649:15;10683:4;10680:1;10673:15;10700:320;10744:6;10781:1;10775:4;10771:12;10761:22;;10828:1;10822:4;10818:12;10849:18;10839:81;;10905:4;10897:6;10893:17;10883:27;;10839:81;10967:2;10959:6;10956:14;10936:18;10933:38;10930:84;;10986:18;;:::i;:::-;10930:84;10751:269;10700:320;;;:::o;11026:231::-;11166:34;11162:1;11154:6;11150:14;11143:58;11235:14;11230:2;11222:6;11218:15;11211:39;11026:231;:::o;11263:366::-;11405:3;11426:67;11490:2;11485:3;11426:67;:::i;:::-;11419:74;;11502:93;11591:3;11502:93;:::i;:::-;11620:2;11615:3;11611:12;11604:19;;11263:366;;;:::o;11635:419::-;11801:4;11839:2;11828:9;11824:18;11816:26;;11888:9;11882:4;11878:20;11874:1;11863:9;11859:17;11852:47;11916:131;12042:4;11916:131;:::i;:::-;11908:139;;11635:419;;;:::o;12060:220::-;12200:34;12196:1;12188:6;12184:14;12177:58;12269:3;12264:2;12256:6;12252:15;12245:28;12060:220;:::o;12286:366::-;12428:3;12449:67;12513:2;12508:3;12449:67;:::i;:::-;12442:74;;12525:93;12614:3;12525:93;:::i;:::-;12643:2;12638:3;12634:12;12627:19;;12286:366;;;:::o;12658:419::-;12824:4;12862:2;12851:9;12847:18;12839:26;;12911:9;12905:4;12901:20;12897:1;12886:9;12882:17;12875:47;12939:131;13065:4;12939:131;:::i;:::-;12931:139;;12658:419;;;:::o;13083:243::-;13223:34;13219:1;13211:6;13207:14;13200:58;13292:26;13287:2;13279:6;13275:15;13268:51;13083:243;:::o;13332:366::-;13474:3;13495:67;13559:2;13554:3;13495:67;:::i;:::-;13488:74;;13571:93;13660:3;13571:93;:::i;:::-;13689:2;13684:3;13680:12;13673:19;;13332:366;;;:::o;13704:419::-;13870:4;13908:2;13897:9;13893:18;13885:26;;13957:9;13951:4;13947:20;13943:1;13932:9;13928:17;13921:47;13985:131;14111:4;13985:131;:::i;:::-;13977:139;;13704:419;;;:::o;14129:236::-;14269:34;14265:1;14257:6;14253:14;14246:58;14338:19;14333:2;14325:6;14321:15;14314:44;14129:236;:::o;14371:366::-;14513:3;14534:67;14598:2;14593:3;14534:67;:::i;:::-;14527:74;;14610:93;14699:3;14610:93;:::i;:::-;14728:2;14723:3;14719:12;14712:19;;14371:366;;;:::o;14743:419::-;14909:4;14947:2;14936:9;14932:18;14924:26;;14996:9;14990:4;14986:20;14982:1;14971:9;14967:17;14960:47;15024:131;15150:4;15024:131;:::i;:::-;15016:139;;14743:419;;;:::o;15168:228::-;15308:34;15304:1;15296:6;15292:14;15285:58;15377:11;15372:2;15364:6;15360:15;15353:36;15168:228;:::o;15402:366::-;15544:3;15565:67;15629:2;15624:3;15565:67;:::i;:::-;15558:74;;15641:93;15730:3;15641:93;:::i;:::-;15759:2;15754:3;15750:12;15743:19;;15402:366;;;:::o;15774:419::-;15940:4;15978:2;15967:9;15963:18;15955:26;;16027:9;16021:4;16017:20;16013:1;16002:9;15998:17;15991:47;16055:131;16181:4;16055:131;:::i;:::-;16047:139;;15774:419;;;:::o;16199:229::-;16339:34;16335:1;16327:6;16323:14;16316:58;16408:12;16403:2;16395:6;16391:15;16384:37;16199:229;:::o;16434:366::-;16576:3;16597:67;16661:2;16656:3;16597:67;:::i;:::-;16590:74;;16673:93;16762:3;16673:93;:::i;:::-;16791:2;16786:3;16782:12;16775:19;;16434:366;;;:::o;16806:419::-;16972:4;17010:2;16999:9;16995:18;16987:26;;17059:9;17053:4;17049:20;17045:1;17034:9;17030:17;17023:47;17087:131;17213:4;17087:131;:::i;:::-;17079:139;;16806:419;;;:::o;17231:234::-;17371:34;17367:1;17359:6;17355:14;17348:58;17440:17;17435:2;17427:6;17423:15;17416:42;17231:234;:::o;17471:366::-;17613:3;17634:67;17698:2;17693:3;17634:67;:::i;:::-;17627:74;;17710:93;17799:3;17710:93;:::i;:::-;17828:2;17823:3;17819:12;17812:19;;17471:366;;;:::o;17843:419::-;18009:4;18047:2;18036:9;18032:18;18024:26;;18096:9;18090:4;18086:20;18082:1;18071:9;18067:17;18060:47;18124:131;18250:4;18124:131;:::i;:::-;18116:139;;17843:419;;;:::o;18268:148::-;18370:11;18407:3;18392:18;;18268:148;;;;:::o;18422:377::-;18528:3;18556:39;18589:5;18556:39;:::i;:::-;18611:89;18693:6;18688:3;18611:89;:::i;:::-;18604:96;;18709:52;18754:6;18749:3;18742:4;18735:5;18731:16;18709:52;:::i;:::-;18786:6;18781:3;18777:16;18770:23;;18532:267;18422:377;;;;:::o;18805:435::-;18985:3;19007:95;19098:3;19089:6;19007:95;:::i;:::-;19000:102;;19119:95;19210:3;19201:6;19119:95;:::i;:::-;19112:102;;19231:3;19224:10;;18805:435;;;;;:::o;19246:231::-;19386:34;19382:1;19374:6;19370:14;19363:58;19455:14;19450:2;19442:6;19438:15;19431:39;19246:231;:::o;19483:366::-;19625:3;19646:67;19710:2;19705:3;19646:67;:::i;:::-;19639:74;;19722:93;19811:3;19722:93;:::i;:::-;19840:2;19835:3;19831:12;19824:19;;19483:366;;;:::o;19855:419::-;20021:4;20059:2;20048:9;20044:18;20036:26;;20108:9;20102:4;20098:20;20094:1;20083:9;20079:17;20072:47;20136:131;20262:4;20136:131;:::i;:::-;20128:139;;19855:419;;;:::o;20280:224::-;20420:34;20416:1;20408:6;20404:14;20397:58;20489:7;20484:2;20476:6;20472:15;20465:32;20280:224;:::o;20510:366::-;20652:3;20673:67;20737:2;20732:3;20673:67;:::i;:::-;20666:74;;20749:93;20838:3;20749:93;:::i;:::-;20867:2;20862:3;20858:12;20851:19;;20510:366;;;:::o;20882:419::-;21048:4;21086:2;21075:9;21071:18;21063:26;;21135:9;21129:4;21125:20;21121:1;21110:9;21106:17;21099:47;21163:131;21289:4;21163:131;:::i;:::-;21155:139;;20882:419;;;:::o;21307:223::-;21447:34;21443:1;21435:6;21431:14;21424:58;21516:6;21511:2;21503:6;21499:15;21492:31;21307:223;:::o;21536:366::-;21678:3;21699:67;21763:2;21758:3;21699:67;:::i;:::-;21692:74;;21775:93;21864:3;21775:93;:::i;:::-;21893:2;21888:3;21884:12;21877:19;;21536:366;;;:::o;21908:419::-;22074:4;22112:2;22101:9;22097:18;22089:26;;22161:9;22155:4;22151:20;22147:1;22136:9;22132:17;22125:47;22189:131;22315:4;22189:131;:::i;:::-;22181:139;;21908:419;;;:::o;22333:180::-;22381:77;22378:1;22371:88;22478:4;22475:1;22468:15;22502:4;22499:1;22492:15;22519:191;22559:4;22579:20;22597:1;22579:20;:::i;:::-;22574:25;;22613:20;22631:1;22613:20;:::i;:::-;22608:25;;22652:1;22649;22646:8;22643:34;;;22657:18;;:::i;:::-;22643:34;22702:1;22699;22695:9;22687:17;;22519:191;;;;:::o;22716:305::-;22756:3;22775:20;22793:1;22775:20;:::i;:::-;22770:25;;22809:20;22827:1;22809:20;:::i;:::-;22804:25;;22963:1;22895:66;22891:74;22888:1;22885:81;22882:107;;;22969:18;;:::i;:::-;22882:107;23013:1;23010;23006:9;22999:16;;22716:305;;;;:::o;23027:182::-;23167:34;23163:1;23155:6;23151:14;23144:58;23027:182;:::o;23215:366::-;23357:3;23378:67;23442:2;23437:3;23378:67;:::i;:::-;23371:74;;23454:93;23543:3;23454:93;:::i;:::-;23572:2;23567:3;23563:12;23556:19;;23215:366;;;:::o;23587:419::-;23753:4;23791:2;23780:9;23776:18;23768:26;;23840:9;23834:4;23830:20;23826:1;23815:9;23811:17;23804:47;23868:131;23994:4;23868:131;:::i;:::-;23860:139;;23587:419;;;:::o;24012:178::-;24152:30;24148:1;24140:6;24136:14;24129:54;24012:178;:::o;24196:366::-;24338:3;24359:67;24423:2;24418:3;24359:67;:::i;:::-;24352:74;;24435:93;24524:3;24435:93;:::i;:::-;24553:2;24548:3;24544:12;24537:19;;24196:366;;;:::o;24568:419::-;24734:4;24772:2;24761:9;24757:18;24749:26;;24821:9;24815:4;24811:20;24807:1;24796:9;24792:17;24785:47;24849:131;24975:4;24849:131;:::i;:::-;24841:139;;24568:419;;;:::o;24993:175::-;25133:27;25129:1;25121:6;25117:14;25110:51;24993:175;:::o;25174:366::-;25316:3;25337:67;25401:2;25396:3;25337:67;:::i;:::-;25330:74;;25413:93;25502:3;25413:93;:::i;:::-;25531:2;25526:3;25522:12;25515:19;;25174:366;;;:::o;25546:419::-;25712:4;25750:2;25739:9;25735:18;25727:26;;25799:9;25793:4;25789:20;25785:1;25774:9;25770:17;25763:47;25827:131;25953:4;25827:131;:::i;:::-;25819:139;;25546:419;;;:::o;25971:237::-;26111:34;26107:1;26099:6;26095:14;26088:58;26180:20;26175:2;26167:6;26163:15;26156:45;25971:237;:::o;26214:366::-;26356:3;26377:67;26441:2;26436:3;26377:67;:::i;:::-;26370:74;;26453:93;26542:3;26453:93;:::i;:::-;26571:2;26566:3;26562:12;26555:19;;26214:366;;;:::o;26586:419::-;26752:4;26790:2;26779:9;26775:18;26767:26;;26839:9;26833:4;26829:20;26825:1;26814:9;26810:17;26803:47;26867:131;26993:4;26867:131;:::i;:::-;26859:139;;26586:419;;;:::o;27011:233::-;27050:3;27073:24;27091:5;27073:24;:::i;:::-;27064:33;;27119:66;27112:5;27109:77;27106:103;;27189:18;;:::i;:::-;27106:103;27236:1;27229:5;27225:13;27218:20;;27011:233;;;:::o;27250:180::-;27298:77;27295:1;27288:88;27395:4;27392:1;27385:15;27419:4;27416:1;27409:15;27436:185;27476:1;27493:20;27511:1;27493:20;:::i;:::-;27488:25;;27527:20;27545:1;27527:20;:::i;:::-;27522:25;;27566:1;27556:35;;27571:18;;:::i;:::-;27556:35;27613:1;27610;27606:9;27601:14;;27436:185;;;;:::o;27627:176::-;27659:1;27676:20;27694:1;27676:20;:::i;:::-;27671:25;;27710:20;27728:1;27710:20;:::i;:::-;27705:25;;27749:1;27739:35;;27754:18;;:::i;:::-;27739:35;27795:1;27792;27788:9;27783:14;;27627:176;;;;:::o;27809:180::-;27857:77;27854:1;27847:88;27954:4;27951:1;27944:15;27978:4;27975:1;27968:15;27995:98;28046:6;28080:5;28074:12;28064:22;;27995:98;;;:::o;28099:168::-;28182:11;28216:6;28211:3;28204:19;28256:4;28251:3;28247:14;28232:29;;28099:168;;;;:::o;28273:360::-;28359:3;28387:38;28419:5;28387:38;:::i;:::-;28441:70;28504:6;28499:3;28441:70;:::i;:::-;28434:77;;28520:52;28565:6;28560:3;28553:4;28546:5;28542:16;28520:52;:::i;:::-;28597:29;28619:6;28597:29;:::i;:::-;28592:3;28588:39;28581:46;;28363:270;28273:360;;;;:::o;28639:640::-;28834:4;28872:3;28861:9;28857:19;28849:27;;28886:71;28954:1;28943:9;28939:17;28930:6;28886:71;:::i;:::-;28967:72;29035:2;29024:9;29020:18;29011:6;28967:72;:::i;:::-;29049;29117:2;29106:9;29102:18;29093:6;29049:72;:::i;:::-;29168:9;29162:4;29158:20;29153:2;29142:9;29138:18;29131:48;29196:76;29267:4;29258:6;29196:76;:::i;:::-;29188:84;;28639:640;;;;;;;:::o;29285:141::-;29341:5;29372:6;29366:13;29357:22;;29388:32;29414:5;29388:32;:::i;:::-;29285:141;;;;:::o;29432:349::-;29501:6;29550:2;29538:9;29529:7;29525:23;29521:32;29518:119;;;29556:79;;:::i;:::-;29518:119;29676:1;29701:63;29756:7;29747:6;29736:9;29732:22;29701:63;:::i;:::-;29691:73;;29647:127;29432:349;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1986200",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2899",
"getApproved(uint256)": "5228",
"isApprovedForAll(address,address)": "infinite",
"mint(uint256)": "infinite",
"name()": "infinite",
"ownerOf(uint256)": "3063",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "infinite",
"supportsInterface(bytes4)": "797",
"symbol()": "infinite",
"tokenURI(uint256)": "3395",
"transferFrom(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"mint(uint256)": "a0712d68",
"name()": "06fdde03",
"ownerOf(uint256)": "6352211e",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"symbol()": "95d89b41",
"tokenURI(uint256)": "c87b56dd",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.13+commit.abaa5c0e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"getApproved(uint256)": {
"details": "See {IERC721-getApproved}."
},
"isApprovedForAll(address,address)": {
"details": "See {IERC721-isApprovedForAll}."
},
"name()": {
"details": "See {IERC721Metadata-name}."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"safeTransferFrom(address,address,uint256)": {
"details": "See {IERC721-safeTransferFrom}."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "See {IERC721-safeTransferFrom}."
},
"setApprovalForAll(address,bool)": {
"details": "See {IERC721-setApprovalForAll}."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
},
"symbol()": {
"details": "See {IERC721Metadata-symbol}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/myToken721.sol": "MyNFT"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"keccak256": "0x921f012325281f7d81e29c53a13824cf6c2c5d77232065d0d4f3f912e97af6ea",
"license": "MIT",
"urls": [
"bzz-raw://7dbcedc364fce0ab5e54d21d4cbd91a97959f52c0674cf5c36a314bb58308f62",
"dweb:/ipfs/QmfYpqHKtu3bSQ9FGvLwzdxRNykStpVPtoLNTaM1KBKj6E"
]
},
"@openzeppelin/contracts/token/ERC721/IERC721.sol": {
"keccak256": "0x0d4de01fe5360c38b4ad2b0822a12722958428f5138a7ff47c1720eb6fa52bba",
"license": "MIT",
"urls": [
"bzz-raw://77724cecdfba8814632ab58737c2b0f2d4ad2d532bc614aee559b5593c1152f0",
"dweb:/ipfs/QmUcE6gXyv7CQh4sUdcDABYKGTovTe1zLMZSEq95nkc3ph"
]
},
"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0xa82b58eca1ee256be466e536706850163d2ec7821945abd6b4778cfb3bee37da",
"license": "MIT",
"urls": [
"bzz-raw://6e75cf83beb757b8855791088546b8337e9d4684e169400c20d44a515353b708",
"dweb:/ipfs/QmYvPafLfoquiDMEj7CKHtvbgHu7TJNPSVPSCjrtjV8HjV"
]
},
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"keccak256": "0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9",
"license": "MIT",
"urls": [
"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146",
"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf"
]
},
"@openzeppelin/contracts/utils/Address.sol": {
"keccak256": "0x2ccf9d2313a313d41a791505f2b5abfdc62191b5d4334f7f7a82691c088a1c87",
"license": "MIT",
"urls": [
"bzz-raw://b3a57d0854b2fdce6ebff933a48dca2445643d1eccfc27f00292e937f26c6a58",
"dweb:/ipfs/QmW45rZooS9TqR4YXUbjRbtf2Bpb5ouSarBvfW1LdGprvV"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
"@openzeppelin/contracts/utils/Counters.sol": {
"keccak256": "0xf0018c2440fbe238dd3a8732fa8e17a0f9dce84d31451dc8a32f6d62b349c9f1",
"license": "MIT",
"urls": [
"bzz-raw://59e1c62884d55b70f3ae5432b44bb3166ad71ae3acd19c57ab6ddc3c87c325ee",
"dweb:/ipfs/QmezuXg5GK5oeA4F91EZhozBFekhq5TD966bHPH18cCqhu"
]
},
"@openzeppelin/contracts/utils/Strings.sol": {
"keccak256": "0x32c202bd28995dd20c4347b7c6467a6d3241c74c8ad3edcbb610cd9205916c45",
"license": "MIT",
"urls": [
"bzz-raw://8179c356adb19e70d6b31a1eedc8c5c7f0c00e669e2540f4099e3844c6074d30",
"dweb:/ipfs/QmWFbivarEobbqhS1go64ootVuHfVohBseerYy9FTEd1W2"
]
},
"@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"keccak256": "0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b",
"license": "MIT",
"urls": [
"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d",
"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43"
]
},
"@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"keccak256": "0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1",
"license": "MIT",
"urls": [
"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f",
"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy"
]
},
"contracts/myToken721.sol": {
"keccak256": "0xf1817d14feebcf262e4dd5efbcac12075acef7704482df2341f3faf4455b8b5b",
"license": "MIT",
"urls": [
"bzz-raw://245e54f20a7e489c67f9ffa14ca3fa0557a73fb5ce7115e537aa786e563f3961",
"dweb:/ipfs/QmUgEwvccZKu875v73mJC4TNXhBQXf3cf5MvPVK4PopNDJ"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;
// 運算子
contract Operators {
constructor() {}
function add(uint256 num1, uint256 num2) public pure returns (uint256) {
return num1 + num2;
}
function sub(int256 num1, int256 num2) public pure returns (int256) {
return num1 - num2;
}
function mul(uint256 num1, uint256 num2) public pure returns (uint256) {
return num1 * num2;
}
function div(uint256 num1, uint256 num2) public pure returns (uint256) {
return num1 / num2;
}
function count1(uint256 num1) public pure returns (uint256) {
return ++num1;
}
function equal(uint256 num1, uint256 num2) public pure returns (bool) {
return num1 == num2;
}
function GT(uint256 num1, uint256 num2) public pure returns (bool) {
return num1 > num2;
}
function GTE(uint256 num1, uint256 num2) public pure returns (bool) {
return num1 >= num2;
}
}
This file has been truncated, but you can view the full file.
{
"id": "1f0674299e58411e4e1db1a80d1b520f",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.13",
"solcLongVersion": "0.8.13+commit.abaa5c0e",
"input": {
"language": "Solidity",
"sources": {
"contracts/arrays.sol": {
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity 0.8.13;\n\ncontract Arrays {\n // type[] arrayname = []\n string[] public eggBox = [\"egg1\", \"egg2\"];\n\n constructor() {}\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/arrays.sol": {
"Arrays": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "eggBox",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/arrays.sol\":58:175 contract Arrays {... */\n mstore(0x40, 0x80)\n /* \"contracts/arrays.sol\":109:150 string[] public eggBox = [\"egg1\", \"egg2\"] */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x04\n dup2\n mstore\n 0x20\n add\n 0x6567673100000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n dup2\n mstore\n 0x20\n add\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x04\n dup2\n mstore\n 0x20\n add\n 0x6567673200000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n dup2\n mstore\n pop\n 0x00\n swap1\n 0x02\n tag_1\n swap3\n swap2\n swap1\n tag_2\n jump\t// in\ntag_1:\n pop\n /* \"contracts/arrays.sol\":157:173 constructor() {} */\n callvalue\n dup1\n iszero\n tag_3\n jumpi\n 0x00\n dup1\n revert\ntag_3:\n pop\n /* \"contracts/arrays.sol\":58:175 contract Arrays {... */\n jump(tag_6)\ntag_2:\n dup3\n dup1\n sload\n dup3\n dup3\n sstore\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n dup2\n add\n swap3\n dup3\n iszero\n tag_7\n jumpi\n swap2\n 0x20\n mul\n dup3\n add\ntag_8:\n dup3\n dup2\n gt\n iszero\n tag_9\n jumpi\n dup3\n mload\n dup3\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_10\n swap3\n swap2\n swap1\n tag_11\n jump\t// in\ntag_10:\n pop\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_8)\ntag_9:\ntag_7:\n pop\n swap1\n pop\n tag_12\n swap2\n swap1\n tag_13\n jump\t// in\ntag_12:\n pop\n swap1\n jump\t// out\ntag_11:\n dup3\n dup1\n sload\n tag_14\n swap1\n tag_15\n jump\t// in\ntag_14:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x1f\n add\n 0x20\n swap1\n div\n dup2\n add\n swap3\n dup3\n tag_17\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_16)\ntag_17:\n dup3\n 0x1f\n lt\n tag_18\n jumpi\n dup1\n mload\n not(0xff)\n and\n dup4\n dup1\n add\n or\n dup6\n sstore\n jump(tag_16)\ntag_18:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_16\n jumpi\n swap2\n dup3\n add\ntag_19:\n dup3\n dup2\n gt\n iszero\n tag_20\n jumpi\n dup3\n mload\n dup3\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_19)\ntag_20:\ntag_16:\n pop\n swap1\n pop\n tag_21\n swap2\n swap1\n tag_22\n jump\t// in\ntag_21:\n pop\n swap1\n jump\t// out\ntag_13:\ntag_23:\n dup1\n dup3\n gt\n iszero\n tag_24\n jumpi\n 0x00\n dup2\n dup2\n tag_25\n swap2\n swap1\n tag_26\n jump\t// in\ntag_25:\n pop\n 0x01\n add\n jump(tag_23)\ntag_24:\n pop\n swap1\n jump\t// out\ntag_22:\ntag_27:\n dup1\n dup3\n gt\n iszero\n tag_28\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_27)\ntag_28:\n pop\n swap1\n jump\t// out\ntag_26:\n pop\n dup1\n sload\n tag_29\n swap1\n tag_15\n jump\t// in\ntag_29:\n 0x00\n dup3\n sstore\n dup1\n 0x1f\n lt\n tag_31\n jumpi\n pop\n jump(tag_30)\ntag_31:\n 0x1f\n add\n 0x20\n swap1\n div\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n dup2\n add\n swap1\n tag_32\n swap2\n swap1\n tag_22\n jump\t// in\ntag_32:\ntag_30:\n pop\n jump\t// out\n /* \"#utility.yul\":7:187 */\ntag_33:\n /* \"#utility.yul\":55:132 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":52:53 */\n 0x00\n /* \"#utility.yul\":45:133 */\n mstore\n /* \"#utility.yul\":152:156 */\n 0x22\n /* \"#utility.yul\":149:150 */\n 0x04\n /* \"#utility.yul\":142:157 */\n mstore\n /* \"#utility.yul\":176:180 */\n 0x24\n /* \"#utility.yul\":173:174 */\n 0x00\n /* \"#utility.yul\":166:181 */\n revert\n /* \"#utility.yul\":193:513 */\ntag_15:\n /* \"#utility.yul\":237:243 */\n 0x00\n /* \"#utility.yul\":274:275 */\n 0x02\n /* \"#utility.yul\":268:272 */\n dup3\n /* \"#utility.yul\":264:276 */\n div\n /* \"#utility.yul\":254:276 */\n swap1\n pop\n /* \"#utility.yul\":321:322 */\n 0x01\n /* \"#utility.yul\":315:319 */\n dup3\n /* \"#utility.yul\":311:323 */\n and\n /* \"#utility.yul\":342:360 */\n dup1\n /* \"#utility.yul\":332:413 */\n tag_37\n jumpi\n /* \"#utility.yul\":398:402 */\n 0x7f\n /* \"#utility.yul\":390:396 */\n dup3\n /* \"#utility.yul\":386:403 */\n and\n /* \"#utility.yul\":376:403 */\n swap2\n pop\n /* \"#utility.yul\":332:413 */\ntag_37:\n /* \"#utility.yul\":460:462 */\n 0x20\n /* \"#utility.yul\":452:458 */\n dup3\n /* \"#utility.yul\":449:463 */\n lt\n /* \"#utility.yul\":429:447 */\n dup2\n /* \"#utility.yul\":426:464 */\n sub\n /* \"#utility.yul\":423:507 */\n tag_38\n jumpi\n /* \"#utility.yul\":479:497 */\n tag_39\n tag_33\n jump\t// in\ntag_39:\n /* \"#utility.yul\":423:507 */\ntag_38:\n /* \"#utility.yul\":244:513 */\n pop\n /* \"#utility.yul\":193:513 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"contracts/arrays.sol\":58:175 contract Arrays {... */\ntag_6:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/arrays.sol\":58:175 contract Arrays {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0xe588b27a\n eq\n tag_3\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/arrays.sol\":109:150 string[] public eggBox = [\"egg1\", \"egg2\"] */\n tag_3:\n tag_4\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_5\n swap2\n swap1\n tag_6\n jump\t// in\n tag_5:\n tag_7\n jump\t// in\n tag_4:\n mload(0x40)\n tag_8\n swap2\n swap1\n tag_9\n jump\t// in\n tag_8:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n tag_7:\n 0x00\n dup2\n dup2\n sload\n dup2\n lt\n tag_10\n jumpi\n 0x00\n dup1\n revert\n tag_10:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n 0x00\n swap2\n pop\n swap1\n pop\n dup1\n sload\n tag_12\n swap1\n tag_13\n jump\t// in\n tag_12:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_14\n swap1\n tag_13\n jump\t// in\n tag_14:\n dup1\n iszero\n tag_15\n jumpi\n dup1\n 0x1f\n lt\n tag_16\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_15)\n tag_16:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_17:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_17\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_15:\n pop\n pop\n pop\n pop\n pop\n dup2\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_19:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":334:411 */\n tag_21:\n /* \"#utility.yul\":371:378 */\n 0x00\n /* \"#utility.yul\":400:405 */\n dup2\n /* \"#utility.yul\":389:405 */\n swap1\n pop\n /* \"#utility.yul\":334:411 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":417:539 */\n tag_22:\n /* \"#utility.yul\":490:514 */\n tag_36\n /* \"#utility.yul\":508:513 */\n dup2\n /* \"#utility.yul\":490:514 */\n tag_21\n jump\t// in\n tag_36:\n /* \"#utility.yul\":483:488 */\n dup2\n /* \"#utility.yul\":480:515 */\n eq\n /* \"#utility.yul\":470:533 */\n tag_37\n jumpi\n /* \"#utility.yul\":529:530 */\n 0x00\n /* \"#utility.yul\":526:527 */\n dup1\n /* \"#utility.yul\":519:531 */\n revert\n /* \"#utility.yul\":470:533 */\n tag_37:\n /* \"#utility.yul\":417:539 */\n pop\n jump\t// out\n /* \"#utility.yul\":545:684 */\n tag_23:\n /* \"#utility.yul\":591:596 */\n 0x00\n /* \"#utility.yul\":629:635 */\n dup2\n /* \"#utility.yul\":616:636 */\n calldataload\n /* \"#utility.yul\":607:636 */\n swap1\n pop\n /* \"#utility.yul\":645:678 */\n tag_39\n /* \"#utility.yul\":672:677 */\n dup2\n /* \"#utility.yul\":645:678 */\n tag_22\n jump\t// in\n tag_39:\n /* \"#utility.yul\":545:684 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":690:1019 */\n tag_6:\n /* \"#utility.yul\":749:755 */\n 0x00\n /* \"#utility.yul\":798:800 */\n 0x20\n /* \"#utility.yul\":786:795 */\n dup3\n /* \"#utility.yul\":777:784 */\n dup5\n /* \"#utility.yul\":773:796 */\n sub\n /* \"#utility.yul\":769:801 */\n slt\n /* \"#utility.yul\":766:885 */\n iszero\n tag_41\n jumpi\n /* \"#utility.yul\":804:883 */\n tag_42\n tag_19\n jump\t// in\n tag_42:\n /* \"#utility.yul\":766:885 */\n tag_41:\n /* \"#utility.yul\":924:925 */\n 0x00\n /* \"#utility.yul\":949:1002 */\n tag_43\n /* \"#utility.yul\":994:1001 */\n dup5\n /* \"#utility.yul\":985:991 */\n dup3\n /* \"#utility.yul\":974:983 */\n dup6\n /* \"#utility.yul\":970:992 */\n add\n /* \"#utility.yul\":949:1002 */\n tag_23\n jump\t// in\n tag_43:\n /* \"#utility.yul\":939:1002 */\n swap2\n pop\n /* \"#utility.yul\":895:1012 */\n pop\n /* \"#utility.yul\":690:1019 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1025:1124 */\n tag_24:\n /* \"#utility.yul\":1077:1083 */\n 0x00\n /* \"#utility.yul\":1111:1116 */\n dup2\n /* \"#utility.yul\":1105:1117 */\n mload\n /* \"#utility.yul\":1095:1117 */\n swap1\n pop\n /* \"#utility.yul\":1025:1124 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1130:1299 */\n tag_25:\n /* \"#utility.yul\":1214:1225 */\n 0x00\n /* \"#utility.yul\":1248:1254 */\n dup3\n /* \"#utility.yul\":1243:1246 */\n dup3\n /* \"#utility.yul\":1236:1255 */\n mstore\n /* \"#utility.yul\":1288:1292 */\n 0x20\n /* \"#utility.yul\":1283:1286 */\n dup3\n /* \"#utility.yul\":1279:1293 */\n add\n /* \"#utility.yul\":1264:1293 */\n swap1\n pop\n /* \"#utility.yul\":1130:1299 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1305:1612 */\n tag_26:\n /* \"#utility.yul\":1373:1374 */\n 0x00\n /* \"#utility.yul\":1383:1496 */\n tag_47:\n /* \"#utility.yul\":1397:1403 */\n dup4\n /* \"#utility.yul\":1394:1395 */\n dup2\n /* \"#utility.yul\":1391:1404 */\n lt\n /* \"#utility.yul\":1383:1496 */\n iszero\n tag_49\n jumpi\n /* \"#utility.yul\":1482:1483 */\n dup1\n /* \"#utility.yul\":1477:1480 */\n dup3\n /* \"#utility.yul\":1473:1484 */\n add\n /* \"#utility.yul\":1467:1485 */\n mload\n /* \"#utility.yul\":1463:1464 */\n dup2\n /* \"#utility.yul\":1458:1461 */\n dup5\n /* \"#utility.yul\":1454:1465 */\n add\n /* \"#utility.yul\":1447:1486 */\n mstore\n /* \"#utility.yul\":1419:1421 */\n 0x20\n /* \"#utility.yul\":1416:1417 */\n dup2\n /* \"#utility.yul\":1412:1422 */\n add\n /* \"#utility.yul\":1407:1422 */\n swap1\n pop\n /* \"#utility.yul\":1383:1496 */\n jump(tag_47)\n tag_49:\n /* \"#utility.yul\":1514:1520 */\n dup4\n /* \"#utility.yul\":1511:1512 */\n dup2\n /* \"#utility.yul\":1508:1521 */\n gt\n /* \"#utility.yul\":1505:1606 */\n iszero\n tag_50\n jumpi\n /* \"#utility.yul\":1594:1595 */\n 0x00\n /* \"#utility.yul\":1585:1591 */\n dup5\n /* \"#utility.yul\":1580:1583 */\n dup5\n /* \"#utility.yul\":1576:1592 */\n add\n /* \"#utility.yul\":1569:1596 */\n mstore\n /* \"#utility.yul\":1505:1606 */\n tag_50:\n /* \"#utility.yul\":1354:1612 */\n pop\n /* \"#utility.yul\":1305:1612 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1618:1720 */\n tag_27:\n /* \"#utility.yul\":1659:1665 */\n 0x00\n /* \"#utility.yul\":1710:1712 */\n 0x1f\n /* \"#utility.yul\":1706:1713 */\n not\n /* \"#utility.yul\":1701:1703 */\n 0x1f\n /* \"#utility.yul\":1694:1699 */\n dup4\n /* \"#utility.yul\":1690:1704 */\n add\n /* \"#utility.yul\":1686:1714 */\n and\n /* \"#utility.yul\":1676:1714 */\n swap1\n pop\n /* \"#utility.yul\":1618:1720 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1726:2090 */\n tag_28:\n /* \"#utility.yul\":1814:1817 */\n 0x00\n /* \"#utility.yul\":1842:1881 */\n tag_53\n /* \"#utility.yul\":1875:1880 */\n dup3\n /* \"#utility.yul\":1842:1881 */\n tag_24\n jump\t// in\n tag_53:\n /* \"#utility.yul\":1897:1968 */\n tag_54\n /* \"#utility.yul\":1961:1967 */\n dup2\n /* \"#utility.yul\":1956:1959 */\n dup6\n /* \"#utility.yul\":1897:1968 */\n tag_25\n jump\t// in\n tag_54:\n /* \"#utility.yul\":1890:1968 */\n swap4\n pop\n /* \"#utility.yul\":1977:2029 */\n tag_55\n /* \"#utility.yul\":2022:2028 */\n dup2\n /* \"#utility.yul\":2017:2020 */\n dup6\n /* \"#utility.yul\":2010:2014 */\n 0x20\n /* \"#utility.yul\":2003:2008 */\n dup7\n /* \"#utility.yul\":1999:2015 */\n add\n /* \"#utility.yul\":1977:2029 */\n tag_26\n jump\t// in\n tag_55:\n /* \"#utility.yul\":2054:2083 */\n tag_56\n /* \"#utility.yul\":2076:2082 */\n dup2\n /* \"#utility.yul\":2054:2083 */\n tag_27\n jump\t// in\n tag_56:\n /* \"#utility.yul\":2049:2052 */\n dup5\n /* \"#utility.yul\":2045:2084 */\n add\n /* \"#utility.yul\":2038:2084 */\n swap2\n pop\n /* \"#utility.yul\":1818:2090 */\n pop\n /* \"#utility.yul\":1726:2090 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2096:2409 */\n tag_9:\n /* \"#utility.yul\":2209:2213 */\n 0x00\n /* \"#utility.yul\":2247:2249 */\n 0x20\n /* \"#utility.yul\":2236:2245 */\n dup3\n /* \"#utility.yul\":2232:2250 */\n add\n /* \"#utility.yul\":2224:2250 */\n swap1\n pop\n /* \"#utility.yul\":2296:2305 */\n dup2\n /* \"#utility.yul\":2290:2294 */\n dup2\n /* \"#utility.yul\":2286:2306 */\n sub\n /* \"#utility.yul\":2282:2283 */\n 0x00\n /* \"#utility.yul\":2271:2280 */\n dup4\n /* \"#utility.yul\":2267:2284 */\n add\n /* \"#utility.yul\":2260:2307 */\n mstore\n /* \"#utility.yul\":2324:2402 */\n tag_58\n /* \"#utility.yul\":2397:2401 */\n dup2\n /* \"#utility.yul\":2388:2394 */\n dup5\n /* \"#utility.yul\":2324:2402 */\n tag_28\n jump\t// in\n tag_58:\n /* \"#utility.yul\":2316:2402 */\n swap1\n pop\n /* \"#utility.yul\":2096:2409 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2415:2595 */\n tag_29:\n /* \"#utility.yul\":2463:2540 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":2460:2461 */\n 0x00\n /* \"#utility.yul\":2453:2541 */\n mstore\n /* \"#utility.yul\":2560:2564 */\n 0x22\n /* \"#utility.yul\":2557:2558 */\n 0x04\n /* \"#utility.yul\":2550:2565 */\n mstore\n /* \"#utility.yul\":2584:2588 */\n 0x24\n /* \"#utility.yul\":2581:2582 */\n 0x00\n /* \"#utility.yul\":2574:2589 */\n revert\n /* \"#utility.yul\":2601:2921 */\n tag_13:\n /* \"#utility.yul\":2645:2651 */\n 0x00\n /* \"#utility.yul\":2682:2683 */\n 0x02\n /* \"#utility.yul\":2676:2680 */\n dup3\n /* \"#utility.yul\":2672:2684 */\n div\n /* \"#utility.yul\":2662:2684 */\n swap1\n pop\n /* \"#utility.yul\":2729:2730 */\n 0x01\n /* \"#utility.yul\":2723:2727 */\n dup3\n /* \"#utility.yul\":2719:2731 */\n and\n /* \"#utility.yul\":2750:2768 */\n dup1\n /* \"#utility.yul\":2740:2821 */\n tag_61\n jumpi\n /* \"#utility.yul\":2806:2810 */\n 0x7f\n /* \"#utility.yul\":2798:2804 */\n dup3\n /* \"#utility.yul\":2794:2811 */\n and\n /* \"#utility.yul\":2784:2811 */\n swap2\n pop\n /* \"#utility.yul\":2740:2821 */\n tag_61:\n /* \"#utility.yul\":2868:2870 */\n 0x20\n /* \"#utility.yul\":2860:2866 */\n dup3\n /* \"#utility.yul\":2857:2871 */\n lt\n /* \"#utility.yul\":2837:2855 */\n dup2\n /* \"#utility.yul\":2834:2872 */\n sub\n /* \"#utility.yul\":2831:2915 */\n tag_62\n jumpi\n /* \"#utility.yul\":2887:2905 */\n tag_63\n tag_29\n jump\t// in\n tag_63:\n /* \"#utility.yul\":2831:2915 */\n tag_62:\n /* \"#utility.yul\":2652:2921 */\n pop\n /* \"#utility.yul\":2601:2921 */\n swap2\n swap1\n pop\n jump\t// out\n\n auxdata: 0xa26469706673582212207ff6b3d7d96538e2d30756799d2c110940d0da2a5cecda749cf42230575839a064736f6c634300080d0033\n}\n",
"bytecode": {
"functionDebugData": {
"@_11": {
"entryPoint": null,
"id": 11,
"parameterSlots": 0,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 572,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 525,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:516:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "35:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "52:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "55:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "45:6:1"
},
"nodeType": "YulFunctionCall",
"src": "45:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "45:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "149:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "152:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "142:6:1"
},
"nodeType": "YulFunctionCall",
"src": "142:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "142:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "173:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "176:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "166:6:1"
},
"nodeType": "YulFunctionCall",
"src": "166:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "166:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "7:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "244:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "254:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "268:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "274:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "264:3:1"
},
"nodeType": "YulFunctionCall",
"src": "264:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "254:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "285:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "315:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "321:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "311:3:1"
},
"nodeType": "YulFunctionCall",
"src": "311:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "289:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "362:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "376:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "390:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "398:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "386:3:1"
},
"nodeType": "YulFunctionCall",
"src": "386:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "376:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "342:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "335:6:1"
},
"nodeType": "YulFunctionCall",
"src": "335:26:1"
},
"nodeType": "YulIf",
"src": "332:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "465:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "479:16:1"
},
"nodeType": "YulFunctionCall",
"src": "479:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "479:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "429:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "452:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "460:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "449:2:1"
},
"nodeType": "YulFunctionCall",
"src": "449:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "426:2:1"
},
"nodeType": "YulFunctionCall",
"src": "426:38:1"
},
"nodeType": "YulIf",
"src": "423:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "228:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "237:6:1",
"type": ""
}
],
"src": "193:320:1"
}
]
},
"contents": "{\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": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "608060405260405180604001604052806040518060400160405280600481526020017f656767310000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f656767320000000000000000000000000000000000000000000000000000000081525081525060009060026100939291906100a6565b503480156100a057600080fd5b5061026d565b8280548282559060005260206000209081019282156100f5579160200282015b828111156100f45782518290805190602001906100e4929190610106565b50916020019190600101906100c6565b5b509050610102919061018c565b5090565b8280546101129061023c565b90600052602060002090601f016020900481019282610134576000855561017b565b82601f1061014d57805160ff191683800117855561017b565b8280016001018555821561017b579182015b8281111561017a57825182559160200191906001019061015f565b5b50905061018891906101b0565b5090565b5b808211156101ac57600081816101a391906101cd565b5060010161018d565b5090565b5b808211156101c95760008160009055506001016101b1565b5090565b5080546101d99061023c565b6000825580601f106101eb575061020a565b601f01602090049060005260206000209081019061020991906101b0565b5b50565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061025457607f821691505b6020821081036102675761026661020d565b5b50919050565b6102c58061027c6000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063e588b27a14610030575b600080fd5b61004a60048036038101906100459190610147565b610060565b604051610057919061020d565b60405180910390f35b6000818154811061007057600080fd5b90600052602060002001600091509050805461008b9061025e565b80601f01602080910402602001604051908101604052809291908181526020018280546100b79061025e565b80156101045780601f106100d957610100808354040283529160200191610104565b820191906000526020600020905b8154815290600101906020018083116100e757829003601f168201915b505050505081565b600080fd5b6000819050919050565b61012481610111565b811461012f57600080fd5b50565b6000813590506101418161011b565b92915050565b60006020828403121561015d5761015c61010c565b5b600061016b84828501610132565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156101ae578082015181840152602081019050610193565b838111156101bd576000848401525b50505050565b6000601f19601f8301169050919050565b60006101df82610174565b6101e9818561017f565b93506101f9818560208601610190565b610202816101c3565b840191505092915050565b6000602082019050818103600083015261022781846101d4565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061027657607f821691505b6020821081036102895761028861022f565b5b5091905056fea26469706673582212207ff6b3d7d96538e2d30756799d2c110940d0da2a5cecda749cf42230575839a064736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x6567673100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x6567673200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 MSTORE POP PUSH1 0x0 SWAP1 PUSH1 0x2 PUSH2 0x93 SWAP3 SWAP2 SWAP1 PUSH2 0xA6 JUMP JUMPDEST POP CALLVALUE DUP1 ISZERO PUSH2 0xA0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x26D JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0xF5 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0xF4 JUMPI DUP3 MLOAD DUP3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0xE4 SWAP3 SWAP2 SWAP1 PUSH2 0x106 JUMP JUMPDEST POP SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0xC6 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x102 SWAP2 SWAP1 PUSH2 0x18C JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x112 SWAP1 PUSH2 0x23C JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x134 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x17B JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x14D JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x17B JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x17B JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x17A JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x15F JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x188 SWAP2 SWAP1 PUSH2 0x1B0 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x1AC JUMPI PUSH1 0x0 DUP2 DUP2 PUSH2 0x1A3 SWAP2 SWAP1 PUSH2 0x1CD JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x18D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x1C9 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x1B1 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST POP DUP1 SLOAD PUSH2 0x1D9 SWAP1 PUSH2 0x23C JUMP JUMPDEST PUSH1 0x0 DUP3 SSTORE DUP1 PUSH1 0x1F LT PUSH2 0x1EB JUMPI POP PUSH2 0x20A JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x209 SWAP2 SWAP1 PUSH2 0x1B0 JUMP JUMPDEST JUMPDEST 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 0x254 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x267 JUMPI PUSH2 0x266 PUSH2 0x20D JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2C5 DUP1 PUSH2 0x27C 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 0x2B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xE588B27A EQ PUSH2 0x30 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x45 SWAP2 SWAP1 PUSH2 0x147 JUMP JUMPDEST PUSH2 0x60 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x57 SWAP2 SWAP1 PUSH2 0x20D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x70 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 SLOAD PUSH2 0x8B SWAP1 PUSH2 0x25E 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 0xB7 SWAP1 PUSH2 0x25E JUMP JUMPDEST DUP1 ISZERO PUSH2 0x104 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xD9 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x104 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 0xE7 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x124 DUP2 PUSH2 0x111 JUMP JUMPDEST DUP2 EQ PUSH2 0x12F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x141 DUP2 PUSH2 0x11B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x15D JUMPI PUSH2 0x15C PUSH2 0x10C JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x16B DUP5 DUP3 DUP6 ADD PUSH2 0x132 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 0x1AE JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x193 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1BD JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1DF DUP3 PUSH2 0x174 JUMP JUMPDEST PUSH2 0x1E9 DUP2 DUP6 PUSH2 0x17F JUMP JUMPDEST SWAP4 POP PUSH2 0x1F9 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x190 JUMP JUMPDEST PUSH2 0x202 DUP2 PUSH2 0x1C3 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 0x227 DUP2 DUP5 PUSH2 0x1D4 JUMP JUMPDEST SWAP1 POP 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 PUSH2 0x276 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x289 JUMPI PUSH2 0x288 PUSH2 0x22F JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH32 0xF6B3D7D96538E2D30756799D2C110940D0DA2A5CECDA749CF42230575839A064 PUSH20 0x6F6C634300080D00330000000000000000000000 ",
"sourceMap": "58:117:0:-:0;;;109:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;157:16;;;;;;;;;;58:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;7:180:1:-;55:77;52:1;45:88;152:4;149:1;142:15;176:4;173:1;166:15;193:320;237:6;274:1;268:4;264:12;254:22;;321:1;315:4;311:12;342:18;332:81;;398:4;390:6;386:17;376:27;;332:81;460:2;452:6;449:14;429:18;426:38;423:84;;479:18;;:::i;:::-;423:84;244:269;193:320;;;:::o;58:117:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@eggBox_7": {
"entryPoint": 96,
"id": 7,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_t_uint256": {
"entryPoint": 306,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 327,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 468,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 525,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 372,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 383,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 273,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 400,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 606,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 559,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 268,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 451,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_uint256": {
"entryPoint": 283,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:2924:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "400:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:1",
"type": ""
}
],
"src": "334:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "460:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "517:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "526:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "529:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "519:6:1"
},
"nodeType": "YulFunctionCall",
"src": "519:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "519:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "483:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "508:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "490:17:1"
},
"nodeType": "YulFunctionCall",
"src": "490:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "480:2:1"
},
"nodeType": "YulFunctionCall",
"src": "480:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "473:6:1"
},
"nodeType": "YulFunctionCall",
"src": "473:43:1"
},
"nodeType": "YulIf",
"src": "470:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "453:5:1",
"type": ""
}
],
"src": "417:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "597:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "607:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "629:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "616:12:1"
},
"nodeType": "YulFunctionCall",
"src": "616:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "607:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "672:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "645:26:1"
},
"nodeType": "YulFunctionCall",
"src": "645:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "645:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "575:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "583:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "591:5:1",
"type": ""
}
],
"src": "545:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "756:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "802:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "804:77:1"
},
"nodeType": "YulFunctionCall",
"src": "804:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "804:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "777:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "786:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "773:3:1"
},
"nodeType": "YulFunctionCall",
"src": "773:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "798:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "769:3:1"
},
"nodeType": "YulFunctionCall",
"src": "769:32:1"
},
"nodeType": "YulIf",
"src": "766:119:1"
},
{
"nodeType": "YulBlock",
"src": "895:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "910:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "924:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "914:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "939:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "974:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "985:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "970:3:1"
},
"nodeType": "YulFunctionCall",
"src": "970:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "994:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "949:20:1"
},
"nodeType": "YulFunctionCall",
"src": "949:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "939:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "726:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "737:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "749:6:1",
"type": ""
}
],
"src": "690:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1084:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1095:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1111:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1105:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1105:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1095:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1067:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1077:6:1",
"type": ""
}
],
"src": "1025:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1226:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1243:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1248:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1236:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1236:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "1236:19:1"
},
{
"nodeType": "YulAssignment",
"src": "1264:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1283:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1288:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1279:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1279:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1264:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1198:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1203:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1214:11:1",
"type": ""
}
],
"src": "1130:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1354:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1364:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1373:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1368:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1433:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1458:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1463:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1454:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1454:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1477:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1482:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1473:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1473:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1467:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1467:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1447:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1447:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "1447:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1394:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1397:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1391:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1391:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1405:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1407:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1416:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1419:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1412:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1412:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1407:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1387:3:1",
"statements": []
},
"src": "1383:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1530:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1580:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1585:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1576:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1576:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1594:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1569:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1569:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "1569:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1511:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1514:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1508:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1508:13:1"
},
"nodeType": "YulIf",
"src": "1505:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1336:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1341:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1346:6:1",
"type": ""
}
],
"src": "1305:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1666:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1676:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1694:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1701:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1690:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1690:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1710:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1706:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1706:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1686:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1686:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1676:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1649:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "1659:6:1",
"type": ""
}
],
"src": "1618:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1818:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1828:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1875:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1842:32:1"
},
"nodeType": "YulFunctionCall",
"src": "1842:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1832:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1890:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1956:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1961:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1897:58:1"
},
"nodeType": "YulFunctionCall",
"src": "1897:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1890:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2003:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2010:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1999:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1999:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2017:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2022:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "1977:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1977:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "1977:52:1"
},
{
"nodeType": "YulAssignment",
"src": "2038:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2049:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2076:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2054:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2054:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2045:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2045:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2038:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1799:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1806:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1814:3:1",
"type": ""
}
],
"src": "1726:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2214:195:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2224:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2236:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2247:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2232:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2232:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2224:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2271:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2282:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2267:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2267:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2290:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2296:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2286:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2286:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2260:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2260:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "2260:47:1"
},
{
"nodeType": "YulAssignment",
"src": "2316:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2388:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2397:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2324:63:1"
},
"nodeType": "YulFunctionCall",
"src": "2324:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2316:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2186:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2198:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2209:4:1",
"type": ""
}
],
"src": "2096:313:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2443:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2460:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2463:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2453:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2453:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "2453:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2557:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2560:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2550:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2550:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "2550:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2581:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2584:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2574:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2574:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "2574:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "2415:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2652:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2662:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2676:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2682:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2672:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2672:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2662:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2693:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2723:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2729:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2719:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2719:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "2697:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2770:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2784:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2798:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2806:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2794:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2794:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2784:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2750:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2743:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2743:26:1"
},
"nodeType": "YulIf",
"src": "2740:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2873:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "2887:16:1"
},
"nodeType": "YulFunctionCall",
"src": "2887:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "2887:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2837:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2860:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2868:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2857:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2857:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2834:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2834:38:1"
},
"nodeType": "YulIf",
"src": "2831:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2636:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2645:6:1",
"type": ""
}
],
"src": "2601:320:1"
}
]
},
"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_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

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