Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dobestan/9efa8512a741f0f834b6b1ed67018423 to your computer and use it in GitHub Desktop.
Save dobestan/9efa8512a741f0f834b6b1ed67018423 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.7.0) (token/ERC1155/ERC1155.sol)
pragma solidity ^0.8.0;
import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of the basic standard multi-token.
* See https://eips.ethereum.org/EIPS/eip-1155
* Originally based on code by Enjin: https://github.com/enjin/erc-1155
*
* _Available since v3.1._
*/
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
using Address for address;
// Mapping from token ID to account balances
mapping(uint256 => mapping(address => uint256)) private _balances;
// Mapping from account to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
// Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
string private _uri;
/**
* @dev See {_setURI}.
*/
constructor(string memory uri_) {
_setURI(uri_);
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC1155).interfaceId ||
interfaceId == type(IERC1155MetadataURI).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC1155MetadataURI-uri}.
*
* This implementation returns the same URI for *all* token types. It relies
* on the token type ID substitution mechanism
* https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
*
* Clients calling this function must replace the `\{id\}` substring with the
* actual token type ID.
*/
function uri(uint256) public view virtual override returns (string memory) {
return _uri;
}
/**
* @dev See {IERC1155-balanceOf}.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
require(account != address(0), "ERC1155: address zero is not a valid owner");
return _balances[id][account];
}
/**
* @dev See {IERC1155-balanceOfBatch}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
public
view
virtual
override
returns (uint256[] memory)
{
require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");
uint256[] memory batchBalances = new uint256[](accounts.length);
for (uint256 i = 0; i < accounts.length; ++i) {
batchBalances[i] = balanceOf(accounts[i], ids[i]);
}
return batchBalances;
}
/**
* @dev See {IERC1155-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC1155-isApprovedForAll}.
*/
function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
return _operatorApprovals[account][operator];
}
/**
* @dev See {IERC1155-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) public virtual override {
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: caller is not token owner nor approved"
);
_safeTransferFrom(from, to, id, amount, data);
}
/**
* @dev See {IERC1155-safeBatchTransferFrom}.
*/
function safeBatchTransferFrom(
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) public virtual override {
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: caller is not token owner nor approved"
);
_safeBatchTransferFrom(from, to, ids, amounts, data);
}
/**
* @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `from` must have a balance of tokens of type `id` of at least `amount`.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function _safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) internal virtual {
require(to != address(0), "ERC1155: transfer to the zero address");
address operator = _msgSender();
uint256[] memory ids = _asSingletonArray(id);
uint256[] memory amounts = _asSingletonArray(amount);
_beforeTokenTransfer(operator, from, to, ids, amounts, data);
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
unchecked {
_balances[id][from] = fromBalance - amount;
}
_balances[id][to] += amount;
emit TransferSingle(operator, from, to, id, amount);
_afterTokenTransfer(operator, from, to, ids, amounts, data);
_doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function _safeBatchTransferFrom(
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
require(to != address(0), "ERC1155: transfer to the zero address");
address operator = _msgSender();
_beforeTokenTransfer(operator, from, to, ids, amounts, data);
for (uint256 i = 0; i < ids.length; ++i) {
uint256 id = ids[i];
uint256 amount = amounts[i];
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
unchecked {
_balances[id][from] = fromBalance - amount;
}
_balances[id][to] += amount;
}
emit TransferBatch(operator, from, to, ids, amounts);
_afterTokenTransfer(operator, from, to, ids, amounts, data);
_doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
}
/**
* @dev Sets a new URI for all token types, by relying on the token type ID
* substitution mechanism
* https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
*
* By this mechanism, any occurrence of the `\{id\}` substring in either the
* URI or any of the amounts in the JSON file at said URI will be replaced by
* clients with the token type ID.
*
* For example, the `https://token-cdn-domain/\{id\}.json` URI would be
* interpreted by clients as
* `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
* for token type ID 0x4cce0.
*
* See {uri}.
*
* Because these URIs cannot be meaningfully represented by the {URI} event,
* this function emits no events.
*/
function _setURI(string memory newuri) internal virtual {
_uri = newuri;
}
/**
* @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function _mint(
address to,
uint256 id,
uint256 amount,
bytes memory data
) internal virtual {
require(to != address(0), "ERC1155: mint to the zero address");
address operator = _msgSender();
uint256[] memory ids = _asSingletonArray(id);
uint256[] memory amounts = _asSingletonArray(amount);
_beforeTokenTransfer(operator, address(0), to, ids, amounts, data);
_balances[id][to] += amount;
emit TransferSingle(operator, address(0), to, id, amount);
_afterTokenTransfer(operator, address(0), to, ids, amounts, data);
_doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function _mintBatch(
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {
require(to != address(0), "ERC1155: mint to the zero address");
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
address operator = _msgSender();
_beforeTokenTransfer(operator, address(0), to, ids, amounts, data);
for (uint256 i = 0; i < ids.length; i++) {
_balances[ids[i]][to] += amounts[i];
}
emit TransferBatch(operator, address(0), to, ids, amounts);
_afterTokenTransfer(operator, address(0), to, ids, amounts, data);
_doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
}
/**
* @dev Destroys `amount` tokens of token type `id` from `from`
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `from` must have at least `amount` tokens of token type `id`.
*/
function _burn(
address from,
uint256 id,
uint256 amount
) internal virtual {
require(from != address(0), "ERC1155: burn from the zero address");
address operator = _msgSender();
uint256[] memory ids = _asSingletonArray(id);
uint256[] memory amounts = _asSingletonArray(amount);
_beforeTokenTransfer(operator, from, address(0), ids, amounts, "");
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
unchecked {
_balances[id][from] = fromBalance - amount;
}
emit TransferSingle(operator, from, address(0), id, amount);
_afterTokenTransfer(operator, from, address(0), ids, amounts, "");
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
*/
function _burnBatch(
address from,
uint256[] memory ids,
uint256[] memory amounts
) internal virtual {
require(from != address(0), "ERC1155: burn from the zero address");
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
address operator = _msgSender();
_beforeTokenTransfer(operator, from, address(0), ids, amounts, "");
for (uint256 i = 0; i < ids.length; i++) {
uint256 id = ids[i];
uint256 amount = amounts[i];
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
unchecked {
_balances[id][from] = fromBalance - amount;
}
}
emit TransferBatch(operator, from, address(0), ids, amounts);
_afterTokenTransfer(operator, from, address(0), ids, amounts, "");
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC1155: setting approval status for self");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning, as well as batched variants.
*
* The same hook is called on both single and batched variants. For single
* transfers, the length of the `ids` and `amounts` arrays will be 1.
*
* Calling conditions (for each `id` and `amount` pair):
*
* - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* of token type `id` will be transferred to `to`.
* - When `from` is zero, `amount` tokens of token type `id` will be minted
* for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
* will be burned.
* - `from` and `to` are never both zero.
* - `ids` and `amounts` have the same, non-zero length.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {}
/**
* @dev Hook that is called after any token transfer. This includes minting
* and burning, as well as batched variants.
*
* The same hook is called on both single and batched variants. For single
* transfers, the length of the `id` and `amount` arrays will be 1.
*
* Calling conditions (for each `id` and `amount` pair):
*
* - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* of token type `id` will be transferred to `to`.
* - When `from` is zero, `amount` tokens of token type `id` will be minted
* for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
* will be burned.
* - `from` and `to` are never both zero.
* - `ids` and `amounts` have the same, non-zero length.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {}
function _doSafeTransferAcceptanceCheck(
address operator,
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) private {
if (to.isContract()) {
try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
if (response != IERC1155Receiver.onERC1155Received.selector) {
revert("ERC1155: ERC1155Receiver rejected tokens");
}
} catch Error(string memory reason) {
revert(reason);
} catch {
revert("ERC1155: transfer to non ERC1155Receiver implementer");
}
}
}
function _doSafeBatchTransferAcceptanceCheck(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) private {
if (to.isContract()) {
try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
bytes4 response
) {
if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
revert("ERC1155: ERC1155Receiver rejected tokens");
}
} catch Error(string memory reason) {
revert(reason);
} catch {
revert("ERC1155: transfer to non ERC1155Receiver implementer");
}
}
}
function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
uint256[] memory array = new uint256[](1);
array[0] = element;
return array;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)
pragma solidity ^0.8.0;
import "../IERC1155.sol";
/**
* @dev Interface of the optional ERC1155MetadataExtension interface, as defined
* in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
*
* _Available since v3.1._
*/
interface IERC1155MetadataURI is IERC1155 {
/**
* @dev Returns the URI for token type `id`.
*
* If the `\{id\}` substring is present in the URI, it must be replaced by
* clients with the actual token type ID.
*/
function uri(uint256 id) external view returns (string memory);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC1155 compliant contract, as defined in the
* https://eips.ethereum.org/EIPS/eip-1155[EIP].
*
* _Available since v3.1._
*/
interface IERC1155 is IERC165 {
/**
* @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
*/
event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);
/**
* @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
* transfers.
*/
event TransferBatch(
address indexed operator,
address indexed from,
address indexed to,
uint256[] ids,
uint256[] values
);
/**
* @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
* `approved`.
*/
event ApprovalForAll(address indexed account, address indexed operator, bool approved);
/**
* @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
*
* If an {URI} event was emitted for `id`, the standard
* https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
* returned by {IERC1155MetadataURI-uri}.
*/
event URI(string value, uint256 indexed id);
/**
* @dev Returns the amount of tokens of token type `id` owned by `account`.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id) external view returns (uint256);
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
external
view
returns (uint256[] memory);
/**
* @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
*
* Emits an {ApprovalForAll} event.
*
* Requirements:
*
* - `operator` cannot be the caller.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address account, address operator) external view returns (bool);
/**
* @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
* - `from` must have a balance of tokens of type `id` of at least `amount`.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes calldata data
) external;
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function safeBatchTransferFrom(
address from,
address to,
uint256[] calldata ids,
uint256[] calldata amounts,
bytes calldata data
) external;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev _Available since v3.1._
*/
interface IERC1155Receiver is IERC165 {
/**
* @dev Handles the receipt of a single ERC1155 token type. This function is
* called at the end of a `safeTransferFrom` after the balance has been updated.
*
* NOTE: To accept the transfer, this must return
* `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
* (i.e. 0xf23a6e61, or its own function selector).
*
* @param operator The address which initiated the transfer (i.e. msg.sender)
* @param from The address which previously owned the token
* @param id The ID of the token being transferred
* @param value The amount of tokens being transferred
* @param data Additional data with no specified format
* @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
*/
function onERC1155Received(
address operator,
address from,
uint256 id,
uint256 value,
bytes calldata data
) external returns (bytes4);
/**
* @dev Handles the receipt of a multiple ERC1155 token types. This function
* is called at the end of a `safeBatchTransferFrom` after the balances have
* been updated.
*
* NOTE: To accept the transfer(s), this must return
* `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
* (i.e. 0xbc197c81, or its own function selector).
*
* @param operator The address which initiated the batch transfer (i.e. msg.sender)
* @param from The address which previously owned the token
* @param ids An array containing ids of each token being transferred (order and length must match values array)
* @param values An array containing amounts of each token being transferred (order and length must match ids array)
* @param data Additional data with no specified format
* @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
*/
function onERC1155BatchReceived(
address operator,
address from,
uint256[] calldata ids,
uint256[] calldata values,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 `from` to `to`.
*
* 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.7.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
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
// 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);
}
REMIX DEFAULT WORKSPACE
Remix default workspace is present when:
i. Remix loads for the very first time
ii. A new workspace is created with 'Default' template
iii. There are no files existing in the File Explorer
This workspace contains 3 directories:
1. 'contracts': Holds three contracts with increasing levels of complexity.
2. 'scripts': Contains four typescript files 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 has four typescript files which help to deploy the 'Storage' contract using 'web3.js' and 'ethers.js' libraries.
For the deployment of any other contract, just update the contract's name from 'Storage' to the desired contract and provide constructor arguments accordingly
in the file `deploy_with_ethers.ts` or `deploy_with_web3.ts`
In the 'tests' folder there is a script containing Mocha-Chai unit tests for 'Storage' contract.
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/import is supported in a limited manner for Remix supported modules.
For now, modules supported by Remix are ethers, web3, swarmgw, chai, multihashes, 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.
{
"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": {
"@_1809": {
"entryPoint": null,
"id": 1809,
"parameterSlots": 0,
"returnSlots": 0
},
"@_44": {
"entryPoint": null,
"id": 44,
"parameterSlots": 1,
"returnSlots": 0
},
"@_afterTokenTransfer_1065": {
"entryPoint": 871,
"id": 1065,
"parameterSlots": 6,
"returnSlots": 0
},
"@_asSingletonArray_1221": {
"entryPoint": 734,
"id": 1221,
"parameterSlots": 1,
"returnSlots": 1
},
"@_beforeTokenTransfer_1046": {
"entryPoint": 863,
"id": 1046,
"parameterSlots": 6,
"returnSlots": 0
},
"@_doSafeTransferAcceptanceCheck_1128": {
"entryPoint": 879,
"id": 1128,
"parameterSlots": 6,
"returnSlots": 0
},
"@_mint_656": {
"entryPoint": 238,
"id": 656,
"parameterSlots": 4,
"returnSlots": 0
},
"@_msgSender_1707": {
"entryPoint": 726,
"id": 1707,
"parameterSlots": 0,
"returnSlots": 1
},
"@_setURI_555": {
"entryPoint": 210,
"id": 555,
"parameterSlots": 1,
"returnSlots": 0
},
"@isContract_1418": {
"entryPoint": 1401,
"id": 1418,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 1612,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 1635,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 1685,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 1702,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1767,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1832,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1871,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1910,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1949,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__fromStack_reversed": {
"entryPoint": 1966,
"id": null,
"parameterSlots": 6,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2066,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2102,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2136,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2170,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 2204,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 2249,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 2259,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 2270,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 2281,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 2298,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 2315,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 2408,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 2428,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 2472,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 2504,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 2514,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 2568,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 2622,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x11": {
"entryPoint": 2676,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 2723,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 2770,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 2817,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"return_data_selector": {
"entryPoint": 2864,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 2901,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 2906,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_right_224_unsigned": {
"entryPoint": 2923,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed": {
"entryPoint": 2936,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503": {
"entryPoint": 3015,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2": {
"entryPoint": 3094,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"try_decode_error_message": {
"entryPoint": 3173,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"validator_revert_t_bytes4": {
"entryPoint": 3335,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:10589:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "69:79:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "79:22:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "94:6:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "88:5:9"
},
"nodeType": "YulFunctionCall",
"src": "88:13:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "79:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "136:5:9"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "110:25:9"
},
"nodeType": "YulFunctionCall",
"src": "110:32:9"
},
"nodeType": "YulExpressionStatement",
"src": "110:32:9"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "47:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "55:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "63:5:9",
"type": ""
}
],
"src": "7:141:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "230:273:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "276:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "278:77:9"
},
"nodeType": "YulFunctionCall",
"src": "278:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "278:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "251:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "260:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "247:3:9"
},
"nodeType": "YulFunctionCall",
"src": "247:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "272:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "243:3:9"
},
"nodeType": "YulFunctionCall",
"src": "243:32:9"
},
"nodeType": "YulIf",
"src": "240:119:9"
},
{
"nodeType": "YulBlock",
"src": "369:127:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "384:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "398:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "388:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "413:73:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "458:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "469:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "454:3:9"
},
"nodeType": "YulFunctionCall",
"src": "454:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "478:7:9"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "423:30:9"
},
"nodeType": "YulFunctionCall",
"src": "423:63:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "413:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "200:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "211:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "223:6:9",
"type": ""
}
],
"src": "154:349:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "574:53:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "591:3:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "614:5:9"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "596:17:9"
},
"nodeType": "YulFunctionCall",
"src": "596:24:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "584:6:9"
},
"nodeType": "YulFunctionCall",
"src": "584:37:9"
},
"nodeType": "YulExpressionStatement",
"src": "584:37:9"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "562:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "569:3:9",
"type": ""
}
],
"src": "509:118:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "723:270:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "733:52:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "779:5:9"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "747:31:9"
},
"nodeType": "YulFunctionCall",
"src": "747:38:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "737:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "794:77:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "859:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "864:6:9"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "801:57:9"
},
"nodeType": "YulFunctionCall",
"src": "801:70:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "794:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "906:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "913:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "902:3:9"
},
"nodeType": "YulFunctionCall",
"src": "902:16:9"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "920:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "925:6:9"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "880:21:9"
},
"nodeType": "YulFunctionCall",
"src": "880:52:9"
},
"nodeType": "YulExpressionStatement",
"src": "880:52:9"
},
{
"nodeType": "YulAssignment",
"src": "941:46:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "952:3:9"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "979:6:9"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "957:21:9"
},
"nodeType": "YulFunctionCall",
"src": "957:29:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "948:3:9"
},
"nodeType": "YulFunctionCall",
"src": "948:39:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "941:3:9"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "704:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "711:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "719:3:9",
"type": ""
}
],
"src": "633:360:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1091:272:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1101:53:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1148:5:9"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1115:32:9"
},
"nodeType": "YulFunctionCall",
"src": "1115:39:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1105:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1163:78:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1229:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1234:6:9"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1170:58:9"
},
"nodeType": "YulFunctionCall",
"src": "1170:71:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1163:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1276:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1283:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1272:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1272:16:9"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1290:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1295:6:9"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "1250:21:9"
},
"nodeType": "YulFunctionCall",
"src": "1250:52:9"
},
"nodeType": "YulExpressionStatement",
"src": "1250:52:9"
},
{
"nodeType": "YulAssignment",
"src": "1311:46:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1322:3:9"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1349:6:9"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1327:21:9"
},
"nodeType": "YulFunctionCall",
"src": "1327:29:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1318:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1318:39:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1311:3:9"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1072:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1079:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1087:3:9",
"type": ""
}
],
"src": "999:364:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1515:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1525:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1591:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1596:2:9",
"type": "",
"value": "52"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1532:58:9"
},
"nodeType": "YulFunctionCall",
"src": "1532:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1525:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1697:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed",
"nodeType": "YulIdentifier",
"src": "1608:88:9"
},
"nodeType": "YulFunctionCall",
"src": "1608:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "1608:93:9"
},
{
"nodeType": "YulAssignment",
"src": "1710:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1721:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1726:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1717:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1717:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1710:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1503:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1511:3:9",
"type": ""
}
],
"src": "1369:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1887:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1897:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1963:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1968:2:9",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1904:58:9"
},
"nodeType": "YulFunctionCall",
"src": "1904:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1897:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2069:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503",
"nodeType": "YulIdentifier",
"src": "1980:88:9"
},
"nodeType": "YulFunctionCall",
"src": "1980:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "1980:93:9"
},
{
"nodeType": "YulAssignment",
"src": "2082:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2093:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2098:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2089:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2089:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2082:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1875:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1883:3:9",
"type": ""
}
],
"src": "1741:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2259:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2269:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2335:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2340:2:9",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2276:58:9"
},
"nodeType": "YulFunctionCall",
"src": "2276:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2269:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2441:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2",
"nodeType": "YulIdentifier",
"src": "2352:88:9"
},
"nodeType": "YulFunctionCall",
"src": "2352:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "2352:93:9"
},
{
"nodeType": "YulAssignment",
"src": "2454:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2465:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2470:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2461:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2461:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2454:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2247:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2255:3:9",
"type": ""
}
],
"src": "2113:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2550:53:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2567:3:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2590:5:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2572:17:9"
},
"nodeType": "YulFunctionCall",
"src": "2572:24:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2560:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2560:37:9"
},
"nodeType": "YulExpressionStatement",
"src": "2560:37:9"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2538:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2545:3:9",
"type": ""
}
],
"src": "2485:118:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2837:523:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2847:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2859:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2870:3:9",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2855:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2855:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2847:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2928:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2941:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2952:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2937:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2937:17:9"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "2884:43:9"
},
"nodeType": "YulFunctionCall",
"src": "2884:71:9"
},
"nodeType": "YulExpressionStatement",
"src": "2884:71:9"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3009:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3022:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3033:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3018:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3018:18:9"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "2965:43:9"
},
"nodeType": "YulFunctionCall",
"src": "2965:72:9"
},
"nodeType": "YulExpressionStatement",
"src": "2965:72:9"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3091:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3104:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3115:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3100:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3100:18:9"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3047:43:9"
},
"nodeType": "YulFunctionCall",
"src": "3047:72:9"
},
"nodeType": "YulExpressionStatement",
"src": "3047:72:9"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "3173:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3186:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3197:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3182:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3182:18:9"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3129:43:9"
},
"nodeType": "YulFunctionCall",
"src": "3129:72:9"
},
"nodeType": "YulExpressionStatement",
"src": "3129:72:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3222:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3233:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3218:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3218:19:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3243:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3249:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3239:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3239:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3211:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3211:49:9"
},
"nodeType": "YulExpressionStatement",
"src": "3211:49:9"
},
{
"nodeType": "YulAssignment",
"src": "3269:84:9",
"value": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "3339:6:9"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3348:4:9"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3277:61:9"
},
"nodeType": "YulFunctionCall",
"src": "3277:76:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3269:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2777:9:9",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "2789:6:9",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "2797:6:9",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2805:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2813:6:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2821:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2832:4:9",
"type": ""
}
],
"src": "2609:751:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3484:195:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3494:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3506:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3517:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3502:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3502:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3494:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3541:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3552:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3537:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3537:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3560:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3566:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3556:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3556:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3530:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3530:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "3530:47:9"
},
{
"nodeType": "YulAssignment",
"src": "3586:86:9",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3658:6:9"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3667:4:9"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3594:63:9"
},
"nodeType": "YulFunctionCall",
"src": "3594:78:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3586:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3456:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3468:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3479:4:9",
"type": ""
}
],
"src": "3366:313:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3856:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3866:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3878:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3889:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3874:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3874:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3866:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3913:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3924:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3909:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3909:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3932:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3938:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3928:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3928:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3902:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3902:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "3902:47:9"
},
{
"nodeType": "YulAssignment",
"src": "3958:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4092:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3966:124:9"
},
"nodeType": "YulFunctionCall",
"src": "3966:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3958:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3836:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3851:4:9",
"type": ""
}
],
"src": "3685:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4281:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4291:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4303:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4314:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4299:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4299:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4291:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4338:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4349:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4334:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4334:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4357:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4363:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4353:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4353:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4327:6:9"
},
"nodeType": "YulFunctionCall",
"src": "4327:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "4327:47:9"
},
{
"nodeType": "YulAssignment",
"src": "4383:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4517:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4391:124:9"
},
"nodeType": "YulFunctionCall",
"src": "4391:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4383:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4261:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4276:4:9",
"type": ""
}
],
"src": "4110:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4706:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4716:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4728:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4739:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4724:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4724:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4716:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4763:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4774:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4759:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4759:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4782:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4788:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4778:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4778:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4752:6:9"
},
"nodeType": "YulFunctionCall",
"src": "4752:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "4752:47:9"
},
{
"nodeType": "YulAssignment",
"src": "4808:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4942:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4816:124:9"
},
"nodeType": "YulFunctionCall",
"src": "4816:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4808:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4686:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4701:4:9",
"type": ""
}
],
"src": "4535:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5086:206:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5096:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5108:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5119:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5104:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5104:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5096:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5176:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5189:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5200:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5185:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5185:17:9"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5132:43:9"
},
"nodeType": "YulFunctionCall",
"src": "5132:71:9"
},
"nodeType": "YulExpressionStatement",
"src": "5132:71:9"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5257:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5270:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5281:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5266:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5266:18:9"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5213:43:9"
},
"nodeType": "YulFunctionCall",
"src": "5213:72:9"
},
"nodeType": "YulExpressionStatement",
"src": "5213:72:9"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5050:9:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5062:6:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5070:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5081:4:9",
"type": ""
}
],
"src": "4960:332:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5338:35:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5348:19:9",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5364:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5358:5:9"
},
"nodeType": "YulFunctionCall",
"src": "5358:9:9"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5348:6:9"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "5331:6:9",
"type": ""
}
],
"src": "5298:75:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5437:40:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5448:22:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5464:5:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5458:5:9"
},
"nodeType": "YulFunctionCall",
"src": "5458:12:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5448:6:9"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5420:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5430:6:9",
"type": ""
}
],
"src": "5379:98:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5542:40:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5553:22:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5569:5:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5563:5:9"
},
"nodeType": "YulFunctionCall",
"src": "5563:12:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5553:6:9"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5525:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5535:6:9",
"type": ""
}
],
"src": "5483:99:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5683:73:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5700:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5705:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5693:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5693:19:9"
},
"nodeType": "YulExpressionStatement",
"src": "5693:19:9"
},
{
"nodeType": "YulAssignment",
"src": "5721:29:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5740:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5745:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5736:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5736:14:9"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "5721:11:9"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5655:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5660:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "5671:11:9",
"type": ""
}
],
"src": "5588:168:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5858:73:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5875:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5880:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5868:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5868:19:9"
},
"nodeType": "YulExpressionStatement",
"src": "5868:19:9"
},
{
"nodeType": "YulAssignment",
"src": "5896:29:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5915:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5920:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5911:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5911:14:9"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "5896:11:9"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5830:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5835:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "5846:11:9",
"type": ""
}
],
"src": "5762:169:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5981:261:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5991:25:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6014:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5996:17:9"
},
"nodeType": "YulFunctionCall",
"src": "5996:20:9"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5991:1:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6025:25:9",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6048:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6030:17:9"
},
"nodeType": "YulFunctionCall",
"src": "6030:20:9"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6025:1:9"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6188:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6190:16:9"
},
"nodeType": "YulFunctionCall",
"src": "6190:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "6190:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6109:1:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6116:66:9",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6184:1:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6112:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6112:74:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6106:2:9"
},
"nodeType": "YulFunctionCall",
"src": "6106:81:9"
},
"nodeType": "YulIf",
"src": "6103:107:9"
},
{
"nodeType": "YulAssignment",
"src": "6220:16:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6231:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6234:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6227:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6227:9:9"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "6220:3:9"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5968:1:9",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5971:1:9",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "5977:3:9",
"type": ""
}
],
"src": "5937:305:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6293:51:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6303:35:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6332:5:9"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "6314:17:9"
},
"nodeType": "YulFunctionCall",
"src": "6314:24:9"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "6303:7:9"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6275:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "6285:7:9",
"type": ""
}
],
"src": "6248:96:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6394:105:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6404:89:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6419:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6426:66:9",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6415:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6415:78:9"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "6404:7:9"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6376:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "6386:7:9",
"type": ""
}
],
"src": "6350:149:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6550:81:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6560:65:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6575:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6582:42:9",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6571:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6571:54:9"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "6560:7:9"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6532:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "6542:7:9",
"type": ""
}
],
"src": "6505:126:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6682:32:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6692:16:9",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "6703:5:9"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "6692:7:9"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6664:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "6674:7:9",
"type": ""
}
],
"src": "6637:77:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6769:258:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6779:10:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6788:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "6783:1:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6848:63:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "6873:3:9"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6878:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6869:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6869:11:9"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "6892:3:9"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6897:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6888:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6888:11:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "6882:5:9"
},
"nodeType": "YulFunctionCall",
"src": "6882:18:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6862:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6862:39:9"
},
"nodeType": "YulExpressionStatement",
"src": "6862:39:9"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6809:1:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6812:6:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6806:2:9"
},
"nodeType": "YulFunctionCall",
"src": "6806:13:9"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "6820:19:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6822:15:9",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6831:1:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6834:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6827:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6827:10:9"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6822:1:9"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "6802:3:9",
"statements": []
},
"src": "6798:113:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6945:76:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "6995:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7000:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6991:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6991:16:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7009:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6984:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6984:27:9"
},
"nodeType": "YulExpressionStatement",
"src": "6984:27:9"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6926:1:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6929:6:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6923:2:9"
},
"nodeType": "YulFunctionCall",
"src": "6923:13:9"
},
"nodeType": "YulIf",
"src": "6920:101:9"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "6751:3:9",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "6756:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6761:6:9",
"type": ""
}
],
"src": "6720:307:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7084:269:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7094:22:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7108:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7114:1:9",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "7104:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7104:12:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7094:6:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7125:38:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7155:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7161:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7151:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7151:12:9"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "7129:18:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7202:51:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7216:27:9",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7230:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7238:4:9",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7226:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7226:17:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7216:6:9"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "7182:18:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7175:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7175:26:9"
},
"nodeType": "YulIf",
"src": "7172:81:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7305:42:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "7319:16:9"
},
"nodeType": "YulFunctionCall",
"src": "7319:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "7319:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "7269:18:9"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7292:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7300:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7289:2:9"
},
"nodeType": "YulFunctionCall",
"src": "7289:14:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "7266:2:9"
},
"nodeType": "YulFunctionCall",
"src": "7266:38:9"
},
"nodeType": "YulIf",
"src": "7263:84:9"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "7068:4:9",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7077:6:9",
"type": ""
}
],
"src": "7033:320:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7402:238:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7412:58:9",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7434:6:9"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7464:4:9"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "7442:21:9"
},
"nodeType": "YulFunctionCall",
"src": "7442:27:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7430:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7430:40:9"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "7416:10:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7581:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "7583:16:9"
},
"nodeType": "YulFunctionCall",
"src": "7583:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "7583:18:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7524:10:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7536:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7521:2:9"
},
"nodeType": "YulFunctionCall",
"src": "7521:34:9"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7560:10:9"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7572:6:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7557:2:9"
},
"nodeType": "YulFunctionCall",
"src": "7557:22:9"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "7518:2:9"
},
"nodeType": "YulFunctionCall",
"src": "7518:62:9"
},
"nodeType": "YulIf",
"src": "7515:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7619:2:9",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7623:10:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7612:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7612:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "7612:22:9"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7388:6:9",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7396:4:9",
"type": ""
}
],
"src": "7359:281:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7674:152:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7691:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7694:77:9",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7684:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7684:88:9"
},
"nodeType": "YulExpressionStatement",
"src": "7684:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7788:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7791:4:9",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7781:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7781:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "7781:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7812:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7815:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7805:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7805:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "7805:15:9"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "7646:180:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7860:152:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7877:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7880:77:9",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7870:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7870:88:9"
},
"nodeType": "YulExpressionStatement",
"src": "7870:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7974:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7977:4:9",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7967:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7967:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "7967:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7998:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8001:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7991:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7991:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "7991:15:9"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "7832:180:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8046:152:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8063:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8066:77:9",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8056:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8056:88:9"
},
"nodeType": "YulExpressionStatement",
"src": "8056:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8160:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8163:4:9",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8153:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8153:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "8153:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8184:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8187:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8177:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8177:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "8177:15:9"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "8018:180:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8232:152:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8249:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8252:77:9",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8242:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8242:88:9"
},
"nodeType": "YulExpressionStatement",
"src": "8242:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8346:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8349:4:9",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8339:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8339:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "8339:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8370:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8373:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8363:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8363:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "8363:15:9"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "8204:180:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8429:144:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8466:101:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8495:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8498:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8501:1:9",
"type": "",
"value": "4"
}
],
"functionName": {
"name": "returndatacopy",
"nodeType": "YulIdentifier",
"src": "8480:14:9"
},
"nodeType": "YulFunctionCall",
"src": "8480:23:9"
},
"nodeType": "YulExpressionStatement",
"src": "8480:23:9"
},
{
"nodeType": "YulAssignment",
"src": "8516:41:9",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8554:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "8548:5:9"
},
"nodeType": "YulFunctionCall",
"src": "8548:8:9"
}
],
"functionName": {
"name": "shift_right_224_unsigned",
"nodeType": "YulIdentifier",
"src": "8523:24:9"
},
"nodeType": "YulFunctionCall",
"src": "8523:34:9"
},
"variableNames": [
{
"name": "sig",
"nodeType": "YulIdentifier",
"src": "8516:3:9"
}
]
}
]
},
"condition": {
"arguments": [
{
"arguments": [],
"functionName": {
"name": "returndatasize",
"nodeType": "YulIdentifier",
"src": "8445:14:9"
},
"nodeType": "YulFunctionCall",
"src": "8445:16:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8463:1:9",
"type": "",
"value": "3"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8442:2:9"
},
"nodeType": "YulFunctionCall",
"src": "8442:23:9"
},
"nodeType": "YulIf",
"src": "8439:128:9"
}
]
},
"name": "return_data_selector",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "sig",
"nodeType": "YulTypedName",
"src": "8425:3:9",
"type": ""
}
],
"src": "8390:183:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8668:28:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8685:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8688:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8678:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8678:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "8678:12:9"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "8579:117:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8791:28:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8808:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8811:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8801:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8801:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "8801:12:9"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "8702:117:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8873:54:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8883:38:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8901:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8908:2:9",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8897:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8897:14:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8917:2:9",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "8913:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8913:7:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "8893:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8893:28:9"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "8883:6:9"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8856:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "8866:6:9",
"type": ""
}
],
"src": "8825:102:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8986:53:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8996:36:9",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9021:3:9",
"type": "",
"value": "224"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9026:5:9"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "9017:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9017:15:9"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "8996:8:9"
}
]
}
]
},
"name": "shift_right_224_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8967:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "8977:8:9",
"type": ""
}
],
"src": "8933:106:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9151:133:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9173:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9181:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9169:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9169:14:9"
},
{
"hexValue": "455243313135353a207472616e7366657220746f206e6f6e2045524331313535",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9185:34:9",
"type": "",
"value": "ERC1155: transfer to non ERC1155"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9162:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9162:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "9162:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9241:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9249:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9237:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9237:15:9"
},
{
"hexValue": "526563656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9254:22:9",
"type": "",
"value": "Receiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9230:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9230:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "9230:47:9"
}
]
},
"name": "store_literal_in_memory_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "9143:6:9",
"type": ""
}
],
"src": "9045:239:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9396:121:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9418:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9426:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9414:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9414:14:9"
},
{
"hexValue": "455243313135353a204552433131353552656365697665722072656a65637465",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9430:34:9",
"type": "",
"value": "ERC1155: ERC1155Receiver rejecte"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9407:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9407:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "9407:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9486:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9494:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9482:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9482:15:9"
},
{
"hexValue": "6420746f6b656e73",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9499:10:9",
"type": "",
"value": "d tokens"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9475:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9475:35:9"
},
"nodeType": "YulExpressionStatement",
"src": "9475:35:9"
}
]
},
"name": "store_literal_in_memory_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "9388:6:9",
"type": ""
}
],
"src": "9290:227:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9629:114:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9651:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9659:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9647:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9647:14:9"
},
{
"hexValue": "455243313135353a206d696e7420746f20746865207a65726f20616464726573",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9663:34:9",
"type": "",
"value": "ERC1155: mint to the zero addres"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9640:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9640:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "9640:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9719:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9727:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9715:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9715:15:9"
},
{
"hexValue": "73",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9732:3:9",
"type": "",
"value": "s"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9708:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9708:28:9"
},
"nodeType": "YulExpressionStatement",
"src": "9708:28:9"
}
]
},
"name": "store_literal_in_memory_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "9621:6:9",
"type": ""
}
],
"src": "9523:220:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9792:668:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9832:9:9",
"statements": [
{
"nodeType": "YulLeave",
"src": "9834:5:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [],
"functionName": {
"name": "returndatasize",
"nodeType": "YulIdentifier",
"src": "9808:14:9"
},
"nodeType": "YulFunctionCall",
"src": "9808:16:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9826:4:9",
"type": "",
"value": "0x44"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "9805:2:9"
},
"nodeType": "YulFunctionCall",
"src": "9805:26:9"
},
"nodeType": "YulIf",
"src": "9802:39:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "9851:32:9",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "9863:18:9"
},
"nodeType": "YulFunctionCall",
"src": "9863:20:9"
},
"variables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "9855:4:9",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "9907:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9913:1:9",
"type": "",
"value": "4"
},
{
"arguments": [
{
"arguments": [],
"functionName": {
"name": "returndatasize",
"nodeType": "YulIdentifier",
"src": "9920:14:9"
},
"nodeType": "YulFunctionCall",
"src": "9920:16:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9938:1:9",
"type": "",
"value": "4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9916:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9916:24:9"
}
],
"functionName": {
"name": "returndatacopy",
"nodeType": "YulIdentifier",
"src": "9892:14:9"
},
"nodeType": "YulFunctionCall",
"src": "9892:49:9"
},
"nodeType": "YulExpressionStatement",
"src": "9892:49:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "9951:25:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "9971:4:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "9965:5:9"
},
"nodeType": "YulFunctionCall",
"src": "9965:11:9"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9955:6:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10102:29:9",
"statements": [
{
"nodeType": "YulLeave",
"src": "10116:5:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10007:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10015:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10004:2:9"
},
"nodeType": "YulFunctionCall",
"src": "10004:30:9"
},
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10055:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10063:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10051:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10051:17:9"
},
{
"arguments": [],
"functionName": {
"name": "returndatasize",
"nodeType": "YulIdentifier",
"src": "10070:14:9"
},
"nodeType": "YulFunctionCall",
"src": "10070:16:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10048:2:9"
},
"nodeType": "YulFunctionCall",
"src": "10048:39:9"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "9988:2:9"
},
"nodeType": "YulFunctionCall",
"src": "9988:113:9"
},
"nodeType": "YulIf",
"src": "9985:146:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "10141:28:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10156:4:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10162:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10152:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10152:17:9"
},
"variables": [
{
"name": "msg",
"nodeType": "YulTypedName",
"src": "10145:3:9",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10178:24:9",
"value": {
"arguments": [
{
"name": "msg",
"nodeType": "YulIdentifier",
"src": "10198:3:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10192:5:9"
},
"nodeType": "YulFunctionCall",
"src": "10192:10:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10182:6:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10245:9:9",
"statements": [
{
"nodeType": "YulLeave",
"src": "10247:5:9"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10217:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10225:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10214:2:9"
},
"nodeType": "YulFunctionCall",
"src": "10214:30:9"
},
"nodeType": "YulIf",
"src": "10211:43:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "10264:38:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "msg",
"nodeType": "YulIdentifier",
"src": "10283:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10288:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10279:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10279:14:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10295:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10275:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10275:27:9"
},
"variables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10268:3:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10359:9:9",
"statements": [
{
"nodeType": "YulLeave",
"src": "10361:5:9"
}
]
},
"condition": {
"arguments": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10317:3:9"
},
{
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10326:4:9"
},
{
"arguments": [
{
"arguments": [],
"functionName": {
"name": "returndatasize",
"nodeType": "YulIdentifier",
"src": "10336:14:9"
},
"nodeType": "YulFunctionCall",
"src": "10336:16:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10354:1:9",
"type": "",
"value": "4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10332:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10332:24:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10322:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10322:35:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10314:2:9"
},
"nodeType": "YulFunctionCall",
"src": "10314:44:9"
},
"nodeType": "YulIf",
"src": "10311:57:9"
},
{
"expression": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10398:4:9"
},
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10408:6:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10420:4:9",
"type": "",
"value": "0x20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10426:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10416:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10416:17:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10404:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10404:30:9"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "10378:19:9"
},
"nodeType": "YulFunctionCall",
"src": "10378:57:9"
},
"nodeType": "YulExpressionStatement",
"src": "10378:57:9"
},
{
"nodeType": "YulAssignment",
"src": "10444:10:9",
"value": {
"name": "msg",
"nodeType": "YulIdentifier",
"src": "10451:3:9"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "10444:3:9"
}
]
}
]
},
"name": "try_decode_error_message",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "9788:3:9",
"type": ""
}
],
"src": "9749:711:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10508:78:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10564:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10573:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10576:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "10566:6:9"
},
"nodeType": "YulFunctionCall",
"src": "10566:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "10566:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10531:5:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10555:5:9"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "10538:16:9"
},
"nodeType": "YulFunctionCall",
"src": "10538:23:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "10528:2:9"
},
"nodeType": "YulFunctionCall",
"src": "10528:34:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10521:6:9"
},
"nodeType": "YulFunctionCall",
"src": "10521:42:9"
},
"nodeType": "YulIf",
"src": "10518:62:9"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10501:5:9",
"type": ""
}
],
"src": "10466:120:9"
}
]
},
"contents": "{\n\n function abi_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 52)\n store_literal_in_memory_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n store_literal_in_memory_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n store_literal_in_memory_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart , value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 160)\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 abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n mstore(add(headStart, 128), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value4, tail)\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed__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_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503__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_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2__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_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function 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 cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function copy_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 extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function return_data_selector() -> sig {\n if gt(returndatasize(), 3) {\n returndatacopy(0, 0, 4)\n sig := shift_right_224_unsigned(mload(0))\n }\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function shift_right_224_unsigned(value) -> newValue {\n newValue :=\n\n shr(224, value)\n\n }\n\n function store_literal_in_memory_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: transfer to non ERC1155\")\n\n mstore(add(memPtr, 32), \"Receiver implementer\")\n\n }\n\n function store_literal_in_memory_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: ERC1155Receiver rejecte\")\n\n mstore(add(memPtr, 32), \"d tokens\")\n\n }\n\n function store_literal_in_memory_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: mint to the zero addres\")\n\n mstore(add(memPtr, 32), \"s\")\n\n }\n\n function try_decode_error_message() -> ret {\n if lt(returndatasize(), 0x44) { leave }\n\n let data := allocate_unbounded()\n returndatacopy(data, 4, sub(returndatasize(), 4))\n\n let offset := mload(data)\n if or(\n gt(offset, 0xffffffffffffffff),\n gt(add(offset, 0x24), returndatasize())\n ) {\n leave\n }\n\n let msg := add(data, offset)\n let length := mload(msg)\n if gt(length, 0xffffffffffffffff) { leave }\n\n let end := add(add(msg, 0x20), length)\n if gt(end, add(data, sub(returndatasize(), 4))) { leave }\n\n finalize_allocation(data, add(offset, add(0x20, length)))\n ret := msg\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 9,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b50604051806020016040528060008152506200003381620000d260201b60201c565b506200005a3360006103e860405180602001604052806000815250620000ee60201b60201c565b620000803360016103e860405180602001604052806000815250620000ee60201b60201c565b620000a63360026103e860405180602001604052806000815250620000ee60201b60201c565b620000cc3360036103e860405180602001604052806000815250620000ee60201b60201c565b62000d21565b8060029080519060200190620000ea9291906200059c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141562000161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000158906200087a565b60405180910390fd5b600062000173620002d660201b60201c565b905060006200018885620002de60201b60201c565b905060006200019d85620002de60201b60201c565b9050620001b6836000898585896200035f60201b60201c565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200021791906200090b565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051620002979291906200089c565b60405180910390a4620002b6836000898585896200036760201b60201c565b620002cd836000898989896200036f60201b60201c565b50505050505050565b600033905090565b60606000600167ffffffffffffffff8111156200030057620002ff62000b01565b5b6040519080825280602002602001820160405280156200032f5781602001602082028036833780820191505090505b50905082816000815181106200034a576200034962000ad2565b5b60200260200101818152505080915050919050565b505050505050565b505050505050565b6200039b8473ffffffffffffffffffffffffffffffffffffffff166200057960201b620007cc1760201c565b1562000571578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401620003e4959493929190620007ae565b602060405180830381600087803b158015620003ff57600080fd5b505af19250505080156200043357506040513d601f19601f8201168201806040525081019062000430919062000663565b60015b620004e5576200044262000b30565b806308c379a01415620004a657506200045a62000c65565b80620004675750620004a8565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200049d919062000812565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004dc9062000836565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146200056f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005669062000858565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054620005aa9062000a08565b90600052602060002090601f016020900481019282620005ce57600085556200061a565b82601f10620005e957805160ff19168380011785556200061a565b828001600101855582156200061a579182015b8281111562000619578251825591602001919060010190620005fc565b5b5090506200062991906200062d565b5090565b5b80821115620006485760008160009055506001016200062e565b5090565b6000815190506200065d8162000d07565b92915050565b6000602082840312156200067c576200067b62000b55565b5b60006200068c848285016200064c565b91505092915050565b620006a08162000968565b82525050565b6000620006b382620008d3565b620006bf8185620008e9565b9350620006d1818560208601620009d2565b620006dc8162000b5a565b840191505092915050565b6000620006f482620008de565b620007008185620008fa565b935062000712818560208601620009d2565b6200071d8162000b5a565b840191505092915050565b600062000737603483620008fa565b9150620007448262000b78565b604082019050919050565b60006200075e602883620008fa565b91506200076b8262000bc7565b604082019050919050565b600062000785602183620008fa565b9150620007928262000c16565b604082019050919050565b620007a881620009c8565b82525050565b600060a082019050620007c5600083018862000695565b620007d4602083018762000695565b620007e360408301866200079d565b620007f260608301856200079d565b8181036080830152620008068184620006a6565b90509695505050505050565b600060208201905081810360008301526200082e8184620006e7565b905092915050565b60006020820190508181036000830152620008518162000728565b9050919050565b6000602082019050818103600083015262000873816200074f565b9050919050565b60006020820190508181036000830152620008958162000776565b9050919050565b6000604082019050620008b360008301856200079d565b620008c260208301846200079d565b9392505050565b6000604051905090565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200091882620009c8565b91506200092583620009c8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200095d576200095c62000a74565b5b828201905092915050565b60006200097582620009a8565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620009f2578082015181840152602081019050620009d5565b8381111562000a02576000848401525b50505050565b6000600282049050600182168062000a2157607f821691505b6020821081141562000a385762000a3762000aa3565b5b50919050565b62000a498262000b5a565b810181811067ffffffffffffffff8211171562000a6b5762000a6a62000b01565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111562000b525760046000803e62000b4f60005162000b6b565b90505b90565b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d101562000c775762000d04565b62000c81620008c9565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000cab57505062000d04565b808201805167ffffffffffffffff81111562000ccb575050505062000d04565b80602083010160043d03850181111562000cea57505050505062000d04565b62000cfb8260200185018662000a3e565b82955050505050505b90565b62000d12816200097c565b811462000d1e57600080fd5b50565b6126148062000d316000396000f3fe608060405234801561001057600080fd5b50600436106100b35760003560e01c8063a22cb46511610071578063a22cb465146101b2578063af7e5db3146101ce578063e56a68d9146101ec578063e80499b31461020a578063e985e9c514610228578063f242432a14610258576100b3565b8062fdd58e146100b857806301ffc9a7146100e85780630e89341c1461011857806314f7b228146101485780632eb2c2d6146101665780634e1273f414610182575b600080fd5b6100d260048036038101906100cd91906117df565b610274565b6040516100df9190611df5565b60405180910390f35b61010260048036038101906100fd9190611897565b61033d565b60405161010f9190611c98565b60405180910390f35b610132600480360381019061012d91906118f1565b61041f565b60405161013f9190611cb3565b60405180910390f35b6101506104b3565b60405161015d9190611df5565b60405180910390f35b610180600480360381019061017b9190611639565b6104b8565b005b61019c6004803603810190610197919061181f565b610559565b6040516101a99190611c3f565b60405180910390f35b6101cc60048036038101906101c7919061179f565b610672565b005b6101d6610688565b6040516101e39190611df5565b60405180910390f35b6101f461068d565b6040516102019190611df5565b60405180910390f35b610212610692565b60405161021f9190611df5565b60405180910390f35b610242600480360381019061023d91906115f9565b610697565b60405161024f9190611c98565b60405180910390f35b610272600480360381019061026d9190611708565b61072b565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156102e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102dc90611d35565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061040857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104185750610417826107ef565b5b9050919050565b60606002805461042e90612064565b80601f016020809104026020016040519081016040528092919081815260200182805461045a90612064565b80156104a75780601f1061047c576101008083540402835291602001916104a7565b820191906000526020600020905b81548152906001019060200180831161048a57829003601f168201915b50505050509050919050565b600081565b6104c0610859565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610506575061050585610500610859565b610697565b5b610545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053c90611cf5565b60405180910390fd5b6105528585858585610861565b5050505050565b6060815183511461059f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059690611db5565b60405180910390fd5b6000835167ffffffffffffffff8111156105bc576105bb61219d565b5b6040519080825280602002602001820160405280156105ea5781602001602082028036833780820191505090505b50905060005b84518110156106675761063785828151811061060f5761060e61216e565b5b602002602001015185838151811061062a5761062961216e565b5b6020026020010151610274565b82828151811061064a5761064961216e565b5b60200260200101818152505080610660906120c7565b90506105f0565b508091505092915050565b61068461067d610859565b8383610b83565b5050565b600281565b600181565b600381565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610733610859565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610779575061077885610773610859565b610697565b5b6107b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107af90611cf5565b60405180910390fd5b6107c58585858585610cf0565b5050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b81518351146108a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089c90611dd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c90611d55565b60405180910390fd5b600061091f610859565b905061092f818787878787610f8c565b60005b8451811015610ae05760008582815181106109505761094f61216e565b5b60200260200101519050600085838151811061096f5761096e61216e565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0790611d75565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ac59190611f58565b9250508190555050505080610ad9906120c7565b9050610932565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610b57929190611c61565b60405180910390a4610b6d818787878787610f94565b610b7b818787878787610f9c565b505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990611d95565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ce39190611c98565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5790611d55565b60405180910390fd5b6000610d6a610859565b90506000610d7785611183565b90506000610d8485611183565b9050610d94838989858589610f8c565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015610e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2290611d75565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee09190611f58565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051610f5d929190611e10565b60405180910390a4610f73848a8a86868a610f94565b610f81848a8a8a8a8a6111fd565b505050505050505050565b505050505050565b505050505050565b610fbb8473ffffffffffffffffffffffffffffffffffffffff166107cc565b1561117b578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611001959493929190611b7d565b602060405180830381600087803b15801561101b57600080fd5b505af192505050801561104c57506040513d601f19601f8201168201806040525081019061104991906118c4565b60015b6110f2576110586121cc565b806308c379a014156110b5575061106d6124ec565b8061107857506110b7565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac9190611cb3565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990611cd5565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117090611d15565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156111a2576111a161219d565b5b6040519080825280602002602001820160405280156111d05781602001602082028036833780820191505090505b50905082816000815181106111e8576111e761216e565b5b60200260200101818152505080915050919050565b61121c8473ffffffffffffffffffffffffffffffffffffffff166107cc565b156113dc578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611262959493929190611be5565b602060405180830381600087803b15801561127c57600080fd5b505af19250505080156112ad57506040513d601f19601f820116820180604052508101906112aa91906118c4565b60015b611353576112b96121cc565b806308c379a0141561131657506112ce6124ec565b806112d95750611318565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d9190611cb3565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90611cd5565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190611d15565b60405180910390fd5b505b505050505050565b60006113f76113f284611e5e565b611e39565b9050808382526020820190508285602086028201111561141a576114196121f3565b5b60005b8581101561144a57816114308882611506565b84526020840193506020830192505060018101905061141d565b5050509392505050565b600061146761146284611e8a565b611e39565b9050808382526020820190508285602086028201111561148a576114896121f3565b5b60005b858110156114ba57816114a088826115e4565b84526020840193506020830192505060018101905061148d565b5050509392505050565b60006114d76114d284611eb6565b611e39565b9050828152602081018484840111156114f3576114f26121f8565b5b6114fe848285612022565b509392505050565b60008135905061151581612582565b92915050565b600082601f8301126115305761152f6121ee565b5b81356115408482602086016113e4565b91505092915050565b600082601f83011261155e5761155d6121ee565b5b813561156e848260208601611454565b91505092915050565b60008135905061158681612599565b92915050565b60008135905061159b816125b0565b92915050565b6000815190506115b0816125b0565b92915050565b600082601f8301126115cb576115ca6121ee565b5b81356115db8482602086016114c4565b91505092915050565b6000813590506115f3816125c7565b92915050565b600080604083850312156116105761160f612202565b5b600061161e85828601611506565b925050602061162f85828601611506565b9150509250929050565b600080600080600060a0868803121561165557611654612202565b5b600061166388828901611506565b955050602061167488828901611506565b945050604086013567ffffffffffffffff811115611695576116946121fd565b5b6116a188828901611549565b935050606086013567ffffffffffffffff8111156116c2576116c16121fd565b5b6116ce88828901611549565b925050608086013567ffffffffffffffff8111156116ef576116ee6121fd565b5b6116fb888289016115b6565b9150509295509295909350565b600080600080600060a0868803121561172457611723612202565b5b600061173288828901611506565b955050602061174388828901611506565b9450506040611754888289016115e4565b9350506060611765888289016115e4565b925050608086013567ffffffffffffffff811115611786576117856121fd565b5b611792888289016115b6565b9150509295509295909350565b600080604083850312156117b6576117b5612202565b5b60006117c485828601611506565b92505060206117d585828601611577565b9150509250929050565b600080604083850312156117f6576117f5612202565b5b600061180485828601611506565b9250506020611815858286016115e4565b9150509250929050565b6000806040838503121561183657611835612202565b5b600083013567ffffffffffffffff811115611854576118536121fd565b5b6118608582860161151b565b925050602083013567ffffffffffffffff811115611881576118806121fd565b5b61188d85828601611549565b9150509250929050565b6000602082840312156118ad576118ac612202565b5b60006118bb8482850161158c565b91505092915050565b6000602082840312156118da576118d9612202565b5b60006118e8848285016115a1565b91505092915050565b60006020828403121561190757611906612202565b5b6000611915848285016115e4565b91505092915050565b600061192a8383611b5f565b60208301905092915050565b61193f81611fae565b82525050565b600061195082611ef7565b61195a8185611f25565b935061196583611ee7565b8060005b8381101561199657815161197d888261191e565b975061198883611f18565b925050600181019050611969565b5085935050505092915050565b6119ac81611fc0565b82525050565b60006119bd82611f02565b6119c78185611f36565b93506119d7818560208601612031565b6119e081612207565b840191505092915050565b60006119f682611f0d565b611a008185611f47565b9350611a10818560208601612031565b611a1981612207565b840191505092915050565b6000611a31603483611f47565b9150611a3c82612225565b604082019050919050565b6000611a54602f83611f47565b9150611a5f82612274565b604082019050919050565b6000611a77602883611f47565b9150611a82826122c3565b604082019050919050565b6000611a9a602a83611f47565b9150611aa582612312565b604082019050919050565b6000611abd602583611f47565b9150611ac882612361565b604082019050919050565b6000611ae0602a83611f47565b9150611aeb826123b0565b604082019050919050565b6000611b03602983611f47565b9150611b0e826123ff565b604082019050919050565b6000611b26602983611f47565b9150611b318261244e565b604082019050919050565b6000611b49602883611f47565b9150611b548261249d565b604082019050919050565b611b6881612018565b82525050565b611b7781612018565b82525050565b600060a082019050611b926000830188611936565b611b9f6020830187611936565b8181036040830152611bb18186611945565b90508181036060830152611bc58185611945565b90508181036080830152611bd981846119b2565b90509695505050505050565b600060a082019050611bfa6000830188611936565b611c076020830187611936565b611c146040830186611b6e565b611c216060830185611b6e565b8181036080830152611c3381846119b2565b90509695505050505050565b60006020820190508181036000830152611c598184611945565b905092915050565b60006040820190508181036000830152611c7b8185611945565b90508181036020830152611c8f8184611945565b90509392505050565b6000602082019050611cad60008301846119a3565b92915050565b60006020820190508181036000830152611ccd81846119eb565b905092915050565b60006020820190508181036000830152611cee81611a24565b9050919050565b60006020820190508181036000830152611d0e81611a47565b9050919050565b60006020820190508181036000830152611d2e81611a6a565b9050919050565b60006020820190508181036000830152611d4e81611a8d565b9050919050565b60006020820190508181036000830152611d6e81611ab0565b9050919050565b60006020820190508181036000830152611d8e81611ad3565b9050919050565b60006020820190508181036000830152611dae81611af6565b9050919050565b60006020820190508181036000830152611dce81611b19565b9050919050565b60006020820190508181036000830152611dee81611b3c565b9050919050565b6000602082019050611e0a6000830184611b6e565b92915050565b6000604082019050611e256000830185611b6e565b611e326020830184611b6e565b9392505050565b6000611e43611e54565b9050611e4f8282612096565b919050565b6000604051905090565b600067ffffffffffffffff821115611e7957611e7861219d565b5b602082029050602081019050919050565b600067ffffffffffffffff821115611ea557611ea461219d565b5b602082029050602081019050919050565b600067ffffffffffffffff821115611ed157611ed061219d565b5b611eda82612207565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000611f6382612018565b9150611f6e83612018565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611fa357611fa2612110565b5b828201905092915050565b6000611fb982611ff8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561204f578082015181840152602081019050612034565b8381111561205e576000848401525b50505050565b6000600282049050600182168061207c57607f821691505b602082108114156120905761208f61213f565b5b50919050565b61209f82612207565b810181811067ffffffffffffffff821117156120be576120bd61219d565b5b80604052505050565b60006120d282612018565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561210557612104612110565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156121eb5760046000803e6121e8600051612218565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600060443d10156124fc5761257f565b612504611e54565b60043d036004823e80513d602482011167ffffffffffffffff8211171561252c57505061257f565b808201805167ffffffffffffffff81111561254a575050505061257f565b80602083010160043d03850181111561256757505050505061257f565b61257682602001850186612096565b82955050505050505b90565b61258b81611fae565b811461259657600080fd5b50565b6125a281611fc0565b81146125ad57600080fd5b50565b6125b981611fcc565b81146125c457600080fd5b50565b6125d081612018565b81146125db57600080fd5b5056fea26469706673582212202dfe27d4441c486a68e4ff0c97a2f5f950b5d55c9764c6a0e4e36402a54af50464736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH3 0x33 DUP2 PUSH3 0xD2 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP PUSH3 0x5A CALLER PUSH1 0x0 PUSH2 0x3E8 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH3 0xEE PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x80 CALLER PUSH1 0x1 PUSH2 0x3E8 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH3 0xEE PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xA6 CALLER PUSH1 0x2 PUSH2 0x3E8 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH3 0xEE PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xCC CALLER PUSH1 0x3 PUSH2 0x3E8 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH3 0xEE PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xD21 JUMP JUMPDEST DUP1 PUSH1 0x2 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xEA SWAP3 SWAP2 SWAP1 PUSH3 0x59C JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x161 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x158 SWAP1 PUSH3 0x87A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH3 0x173 PUSH3 0x2D6 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH3 0x188 DUP6 PUSH3 0x2DE PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH3 0x19D DUP6 PUSH3 0x2DE PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST SWAP1 POP PUSH3 0x1B6 DUP4 PUSH1 0x0 DUP10 DUP6 DUP6 DUP10 PUSH3 0x35F PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP5 PUSH1 0x0 DUP1 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP10 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 PUSH3 0x217 SWAP2 SWAP1 PUSH3 0x90B JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xC3D58168C5AE7397731D063D5BBF3D657854427343F4C083240F7AACAA2D0F62 DUP10 DUP10 PUSH1 0x40 MLOAD PUSH3 0x297 SWAP3 SWAP2 SWAP1 PUSH3 0x89C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH3 0x2B6 DUP4 PUSH1 0x0 DUP10 DUP6 DUP6 DUP10 PUSH3 0x367 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x2CD DUP4 PUSH1 0x0 DUP10 DUP10 DUP10 DUP10 PUSH3 0x36F PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x1 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x300 JUMPI PUSH3 0x2FF PUSH3 0xB01 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH3 0x32F 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 DUP3 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH3 0x34A JUMPI PUSH3 0x349 PUSH3 0xAD2 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH3 0x39B DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0x579 PUSH1 0x20 SHL PUSH3 0x7CC OR PUSH1 0x20 SHR JUMP JUMPDEST ISZERO PUSH3 0x571 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xF23A6E61 DUP8 DUP8 DUP7 DUP7 DUP7 PUSH1 0x40 MLOAD DUP7 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x3E4 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH3 0x7AE JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH3 0x3FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH3 0x433 JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH3 0x430 SWAP2 SWAP1 PUSH3 0x663 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH3 0x4E5 JUMPI PUSH3 0x442 PUSH3 0xB30 JUMP JUMPDEST DUP1 PUSH4 0x8C379A0 EQ ISZERO PUSH3 0x4A6 JUMPI POP PUSH3 0x45A PUSH3 0xC65 JUMP JUMPDEST DUP1 PUSH3 0x467 JUMPI POP PUSH3 0x4A8 JUMP JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x49D SWAP2 SWAP1 PUSH3 0x812 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x4DC SWAP1 PUSH3 0x836 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH4 0xF23A6E61 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ PUSH3 0x56F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x566 SWAP1 PUSH3 0x858 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x5AA SWAP1 PUSH3 0xA08 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x5CE JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x61A JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x5E9 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x61A JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x61A JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x619 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x5FC JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x629 SWAP2 SWAP1 PUSH3 0x62D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x648 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x62E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x65D DUP2 PUSH3 0xD07 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x67C JUMPI PUSH3 0x67B PUSH3 0xB55 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x68C DUP5 DUP3 DUP6 ADD PUSH3 0x64C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x6A0 DUP2 PUSH3 0x968 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x6B3 DUP3 PUSH3 0x8D3 JUMP JUMPDEST PUSH3 0x6BF DUP2 DUP6 PUSH3 0x8E9 JUMP JUMPDEST SWAP4 POP PUSH3 0x6D1 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH3 0x9D2 JUMP JUMPDEST PUSH3 0x6DC DUP2 PUSH3 0xB5A JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x6F4 DUP3 PUSH3 0x8DE JUMP JUMPDEST PUSH3 0x700 DUP2 DUP6 PUSH3 0x8FA JUMP JUMPDEST SWAP4 POP PUSH3 0x712 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH3 0x9D2 JUMP JUMPDEST PUSH3 0x71D DUP2 PUSH3 0xB5A JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x737 PUSH1 0x34 DUP4 PUSH3 0x8FA JUMP JUMPDEST SWAP2 POP PUSH3 0x744 DUP3 PUSH3 0xB78 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x75E PUSH1 0x28 DUP4 PUSH3 0x8FA JUMP JUMPDEST SWAP2 POP PUSH3 0x76B DUP3 PUSH3 0xBC7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x785 PUSH1 0x21 DUP4 PUSH3 0x8FA JUMP JUMPDEST SWAP2 POP PUSH3 0x792 DUP3 PUSH3 0xC16 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x7A8 DUP2 PUSH3 0x9C8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH3 0x7C5 PUSH1 0x0 DUP4 ADD DUP9 PUSH3 0x695 JUMP JUMPDEST PUSH3 0x7D4 PUSH1 0x20 DUP4 ADD DUP8 PUSH3 0x695 JUMP JUMPDEST PUSH3 0x7E3 PUSH1 0x40 DUP4 ADD DUP7 PUSH3 0x79D JUMP JUMPDEST PUSH3 0x7F2 PUSH1 0x60 DUP4 ADD DUP6 PUSH3 0x79D JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x80 DUP4 ADD MSTORE PUSH3 0x806 DUP2 DUP5 PUSH3 0x6A6 JUMP JUMPDEST SWAP1 POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x82E DUP2 DUP5 PUSH3 0x6E7 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x851 DUP2 PUSH3 0x728 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x873 DUP2 PUSH3 0x74F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x895 DUP2 PUSH3 0x776 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH3 0x8B3 PUSH1 0x0 DUP4 ADD DUP6 PUSH3 0x79D JUMP JUMPDEST PUSH3 0x8C2 PUSH1 0x20 DUP4 ADD DUP5 PUSH3 0x79D JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x918 DUP3 PUSH3 0x9C8 JUMP JUMPDEST SWAP2 POP PUSH3 0x925 DUP4 PUSH3 0x9C8 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x95D JUMPI PUSH3 0x95C PUSH3 0xA74 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x975 DUP3 PUSH3 0x9A8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x9F2 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x9D5 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0xA02 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0xA21 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0xA38 JUMPI PUSH3 0xA37 PUSH3 0xAA3 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0xA49 DUP3 PUSH3 0xB5A JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0xA6B JUMPI PUSH3 0xA6A PUSH3 0xB01 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x3 RETURNDATASIZE GT ISZERO PUSH3 0xB52 JUMPI PUSH1 0x4 PUSH1 0x0 DUP1 RETURNDATACOPY PUSH3 0xB4F PUSH1 0x0 MLOAD PUSH3 0xB6B JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0xE0 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x455243313135353A207472616E7366657220746F206E6F6E2045524331313535 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x526563656976657220696D706C656D656E746572000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A204552433131353552656365697665722072656A65637465 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6420746F6B656E73000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A206D696E7420746F20746865207A65726F20616464726573 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x44 RETURNDATASIZE LT ISZERO PUSH3 0xC77 JUMPI PUSH3 0xD04 JUMP JUMPDEST PUSH3 0xC81 PUSH3 0x8C9 JUMP JUMPDEST PUSH1 0x4 RETURNDATASIZE SUB PUSH1 0x4 DUP3 RETURNDATACOPY DUP1 MLOAD RETURNDATASIZE PUSH1 0x24 DUP3 ADD GT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0xCAB JUMPI POP POP PUSH3 0xD04 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0xCCB JUMPI POP POP POP POP PUSH3 0xD04 JUMP JUMPDEST DUP1 PUSH1 0x20 DUP4 ADD ADD PUSH1 0x4 RETURNDATASIZE SUB DUP6 ADD DUP2 GT ISZERO PUSH3 0xCEA JUMPI POP POP POP POP POP PUSH3 0xD04 JUMP JUMPDEST PUSH3 0xCFB DUP3 PUSH1 0x20 ADD DUP6 ADD DUP7 PUSH3 0xA3E JUMP JUMPDEST DUP3 SWAP6 POP POP POP POP POP POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH3 0xD12 DUP2 PUSH3 0x97C JUMP JUMPDEST DUP2 EQ PUSH3 0xD1E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2614 DUP1 PUSH3 0xD31 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 0xB3 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xA22CB465 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x1B2 JUMPI DUP1 PUSH4 0xAF7E5DB3 EQ PUSH2 0x1CE JUMPI DUP1 PUSH4 0xE56A68D9 EQ PUSH2 0x1EC JUMPI DUP1 PUSH4 0xE80499B3 EQ PUSH2 0x20A JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x228 JUMPI DUP1 PUSH4 0xF242432A EQ PUSH2 0x258 JUMPI PUSH2 0xB3 JUMP JUMPDEST DUP1 PUSH3 0xFDD58E EQ PUSH2 0xB8 JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xE8 JUMPI DUP1 PUSH4 0xE89341C EQ PUSH2 0x118 JUMPI DUP1 PUSH4 0x14F7B228 EQ PUSH2 0x148 JUMPI DUP1 PUSH4 0x2EB2C2D6 EQ PUSH2 0x166 JUMPI DUP1 PUSH4 0x4E1273F4 EQ PUSH2 0x182 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xCD SWAP2 SWAP1 PUSH2 0x17DF JUMP JUMPDEST PUSH2 0x274 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xDF SWAP2 SWAP1 PUSH2 0x1DF5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x102 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xFD SWAP2 SWAP1 PUSH2 0x1897 JUMP JUMPDEST PUSH2 0x33D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10F SWAP2 SWAP1 PUSH2 0x1C98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x132 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12D SWAP2 SWAP1 PUSH2 0x18F1 JUMP JUMPDEST PUSH2 0x41F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13F SWAP2 SWAP1 PUSH2 0x1CB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x150 PUSH2 0x4B3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15D SWAP2 SWAP1 PUSH2 0x1DF5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x180 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17B SWAP2 SWAP1 PUSH2 0x1639 JUMP JUMPDEST PUSH2 0x4B8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x19C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x197 SWAP2 SWAP1 PUSH2 0x181F JUMP JUMPDEST PUSH2 0x559 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A9 SWAP2 SWAP1 PUSH2 0x1C3F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C7 SWAP2 SWAP1 PUSH2 0x179F JUMP JUMPDEST PUSH2 0x672 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1D6 PUSH2 0x688 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1E3 SWAP2 SWAP1 PUSH2 0x1DF5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F4 PUSH2 0x68D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x201 SWAP2 SWAP1 PUSH2 0x1DF5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x212 PUSH2 0x692 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21F SWAP2 SWAP1 PUSH2 0x1DF5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x242 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x23D SWAP2 SWAP1 PUSH2 0x15F9 JUMP JUMPDEST PUSH2 0x697 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x24F SWAP2 SWAP1 PUSH2 0x1C98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x272 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x1708 JUMP JUMPDEST PUSH2 0x72B JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2E5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2DC SWAP1 PUSH2 0x1D35 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP4 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 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xD9B67A2600000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x408 JUMPI POP PUSH32 0xE89341C00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x418 JUMPI POP PUSH2 0x417 DUP3 PUSH2 0x7EF JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD PUSH2 0x42E SWAP1 PUSH2 0x2064 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 0x45A SWAP1 PUSH2 0x2064 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4A7 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x47C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x4A7 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 0x48A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 JUMP JUMPDEST PUSH2 0x4C0 PUSH2 0x859 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x506 JUMPI POP PUSH2 0x505 DUP6 PUSH2 0x500 PUSH2 0x859 JUMP JUMPDEST PUSH2 0x697 JUMP JUMPDEST JUMPDEST PUSH2 0x545 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x53C SWAP1 PUSH2 0x1CF5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x552 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0x861 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MLOAD DUP4 MLOAD EQ PUSH2 0x59F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x596 SWAP1 PUSH2 0x1DB5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5BC JUMPI PUSH2 0x5BB PUSH2 0x219D 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 0x5EA JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x667 JUMPI PUSH2 0x637 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x60F JUMPI PUSH2 0x60E PUSH2 0x216E JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP6 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x62A JUMPI PUSH2 0x629 PUSH2 0x216E JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x274 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x64A JUMPI PUSH2 0x649 PUSH2 0x216E JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 PUSH2 0x660 SWAP1 PUSH2 0x20C7 JUMP JUMPDEST SWAP1 POP PUSH2 0x5F0 JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x684 PUSH2 0x67D PUSH2 0x859 JUMP JUMPDEST DUP4 DUP4 PUSH2 0xB83 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMP JUMPDEST PUSH1 0x3 DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x733 PUSH2 0x859 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x779 JUMPI POP PUSH2 0x778 DUP6 PUSH2 0x773 PUSH2 0x859 JUMP JUMPDEST PUSH2 0x697 JUMP JUMPDEST JUMPDEST PUSH2 0x7B8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7AF SWAP1 PUSH2 0x1CF5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7C5 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0xCF0 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 MLOAD DUP4 MLOAD EQ PUSH2 0x8A5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x89C SWAP1 PUSH2 0x1DD5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x915 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x90C SWAP1 PUSH2 0x1D55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x91F PUSH2 0x859 JUMP JUMPDEST SWAP1 POP PUSH2 0x92F DUP2 DUP8 DUP8 DUP8 DUP8 DUP8 PUSH2 0xF8C JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0xAE0 JUMPI PUSH1 0x0 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x950 JUMPI PUSH2 0x94F PUSH2 0x216E JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x0 DUP6 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x96F JUMPI PUSH2 0x96E PUSH2 0x216E JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xA10 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA07 SWAP1 PUSH2 0x1D75 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP13 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP12 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 0xAC5 SWAP2 SWAP1 PUSH2 0x1F58 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP POP DUP1 PUSH2 0xAD9 SWAP1 PUSH2 0x20C7 JUMP JUMPDEST SWAP1 POP PUSH2 0x932 JUMP JUMPDEST POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x4A39DC06D4C0DBC64B70AF90FD698A233A518AA5D07E595D983B8C0526C8F7FB DUP8 DUP8 PUSH1 0x40 MLOAD PUSH2 0xB57 SWAP3 SWAP2 SWAP1 PUSH2 0x1C61 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0xB6D DUP2 DUP8 DUP8 DUP8 DUP8 DUP8 PUSH2 0xF94 JUMP JUMPDEST PUSH2 0xB7B DUP2 DUP8 DUP8 DUP8 DUP8 DUP8 PUSH2 0xF9C JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xBF2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBE9 SWAP1 PUSH2 0x1D95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 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 0xCE3 SWAP2 SWAP1 PUSH2 0x1C98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xD60 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD57 SWAP1 PUSH2 0x1D55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xD6A PUSH2 0x859 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xD77 DUP6 PUSH2 0x1183 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xD84 DUP6 PUSH2 0x1183 JUMP JUMPDEST SWAP1 POP PUSH2 0xD94 DUP4 DUP10 DUP10 DUP6 DUP6 DUP10 PUSH2 0xF8C JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP11 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP6 DUP2 LT ISZERO PUSH2 0xE2B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE22 SWAP1 PUSH2 0x1D75 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP6 DUP2 SUB PUSH1 0x0 DUP1 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP6 PUSH1 0x0 DUP1 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP11 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 0xEE0 SWAP2 SWAP1 PUSH2 0x1F58 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xC3D58168C5AE7397731D063D5BBF3D657854427343F4C083240F7AACAA2D0F62 DUP11 DUP11 PUSH1 0x40 MLOAD PUSH2 0xF5D SWAP3 SWAP2 SWAP1 PUSH2 0x1E10 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0xF73 DUP5 DUP11 DUP11 DUP7 DUP7 DUP11 PUSH2 0xF94 JUMP JUMPDEST PUSH2 0xF81 DUP5 DUP11 DUP11 DUP11 DUP11 DUP11 PUSH2 0x11FD JUMP JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0xFBB DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x7CC JUMP JUMPDEST ISZERO PUSH2 0x117B JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xBC197C81 DUP8 DUP8 DUP7 DUP7 DUP7 PUSH1 0x40 MLOAD DUP7 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1001 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1B7D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x101B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x104C 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 0x1049 SWAP2 SWAP1 PUSH2 0x18C4 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x10F2 JUMPI PUSH2 0x1058 PUSH2 0x21CC JUMP JUMPDEST DUP1 PUSH4 0x8C379A0 EQ ISZERO PUSH2 0x10B5 JUMPI POP PUSH2 0x106D PUSH2 0x24EC JUMP JUMPDEST DUP1 PUSH2 0x1078 JUMPI POP PUSH2 0x10B7 JUMP JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10AC SWAP2 SWAP1 PUSH2 0x1CB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10E9 SWAP1 PUSH2 0x1CD5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH4 0xBC197C81 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ PUSH2 0x1179 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1170 SWAP1 PUSH2 0x1D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x1 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x11A2 JUMPI PUSH2 0x11A1 PUSH2 0x219D 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 0x11D0 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 DUP3 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x11E8 JUMPI PUSH2 0x11E7 PUSH2 0x216E JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x121C DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x7CC JUMP JUMPDEST ISZERO PUSH2 0x13DC JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xF23A6E61 DUP8 DUP8 DUP7 DUP7 DUP7 PUSH1 0x40 MLOAD DUP7 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1262 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1BE5 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x127C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x12AD 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 0x12AA SWAP2 SWAP1 PUSH2 0x18C4 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1353 JUMPI PUSH2 0x12B9 PUSH2 0x21CC JUMP JUMPDEST DUP1 PUSH4 0x8C379A0 EQ ISZERO PUSH2 0x1316 JUMPI POP PUSH2 0x12CE PUSH2 0x24EC JUMP JUMPDEST DUP1 PUSH2 0x12D9 JUMPI POP PUSH2 0x1318 JUMP JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x130D SWAP2 SWAP1 PUSH2 0x1CB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x134A SWAP1 PUSH2 0x1CD5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH4 0xF23A6E61 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ PUSH2 0x13DA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13D1 SWAP1 PUSH2 0x1D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x13F7 PUSH2 0x13F2 DUP5 PUSH2 0x1E5E JUMP JUMPDEST PUSH2 0x1E39 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP DUP3 DUP6 PUSH1 0x20 DUP7 MUL DUP3 ADD GT ISZERO PUSH2 0x141A JUMPI PUSH2 0x1419 PUSH2 0x21F3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x144A JUMPI DUP2 PUSH2 0x1430 DUP9 DUP3 PUSH2 0x1506 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x20 DUP4 ADD SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x141D JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1467 PUSH2 0x1462 DUP5 PUSH2 0x1E8A JUMP JUMPDEST PUSH2 0x1E39 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP DUP3 DUP6 PUSH1 0x20 DUP7 MUL DUP3 ADD GT ISZERO PUSH2 0x148A JUMPI PUSH2 0x1489 PUSH2 0x21F3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x14BA JUMPI DUP2 PUSH2 0x14A0 DUP9 DUP3 PUSH2 0x15E4 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x20 DUP4 ADD SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x148D JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x14D7 PUSH2 0x14D2 DUP5 PUSH2 0x1EB6 JUMP JUMPDEST PUSH2 0x1E39 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x14F3 JUMPI PUSH2 0x14F2 PUSH2 0x21F8 JUMP JUMPDEST JUMPDEST PUSH2 0x14FE DUP5 DUP3 DUP6 PUSH2 0x2022 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1515 DUP2 PUSH2 0x2582 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1530 JUMPI PUSH2 0x152F PUSH2 0x21EE JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1540 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x13E4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x155E JUMPI PUSH2 0x155D PUSH2 0x21EE JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x156E DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1454 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1586 DUP2 PUSH2 0x2599 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x159B DUP2 PUSH2 0x25B0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x15B0 DUP2 PUSH2 0x25B0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x15CB JUMPI PUSH2 0x15CA PUSH2 0x21EE JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x15DB DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x14C4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x15F3 DUP2 PUSH2 0x25C7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1610 JUMPI PUSH2 0x160F PUSH2 0x2202 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x161E DUP6 DUP3 DUP7 ADD PUSH2 0x1506 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x162F DUP6 DUP3 DUP7 ADD PUSH2 0x1506 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x1655 JUMPI PUSH2 0x1654 PUSH2 0x2202 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1663 DUP9 DUP3 DUP10 ADD PUSH2 0x1506 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0x1674 DUP9 DUP3 DUP10 ADD PUSH2 0x1506 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1695 JUMPI PUSH2 0x1694 PUSH2 0x21FD JUMP JUMPDEST JUMPDEST PUSH2 0x16A1 DUP9 DUP3 DUP10 ADD PUSH2 0x1549 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x16C2 JUMPI PUSH2 0x16C1 PUSH2 0x21FD JUMP JUMPDEST JUMPDEST PUSH2 0x16CE DUP9 DUP3 DUP10 ADD PUSH2 0x1549 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x16EF JUMPI PUSH2 0x16EE PUSH2 0x21FD JUMP JUMPDEST JUMPDEST PUSH2 0x16FB DUP9 DUP3 DUP10 ADD PUSH2 0x15B6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x1724 JUMPI PUSH2 0x1723 PUSH2 0x2202 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1732 DUP9 DUP3 DUP10 ADD PUSH2 0x1506 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0x1743 DUP9 DUP3 DUP10 ADD PUSH2 0x1506 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH2 0x1754 DUP9 DUP3 DUP10 ADD PUSH2 0x15E4 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 PUSH2 0x1765 DUP9 DUP3 DUP10 ADD PUSH2 0x15E4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1786 JUMPI PUSH2 0x1785 PUSH2 0x21FD JUMP JUMPDEST JUMPDEST PUSH2 0x1792 DUP9 DUP3 DUP10 ADD PUSH2 0x15B6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x17B6 JUMPI PUSH2 0x17B5 PUSH2 0x2202 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x17C4 DUP6 DUP3 DUP7 ADD PUSH2 0x1506 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x17D5 DUP6 DUP3 DUP7 ADD PUSH2 0x1577 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x17F6 JUMPI PUSH2 0x17F5 PUSH2 0x2202 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1804 DUP6 DUP3 DUP7 ADD PUSH2 0x1506 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1815 DUP6 DUP3 DUP7 ADD PUSH2 0x15E4 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1836 JUMPI PUSH2 0x1835 PUSH2 0x2202 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1854 JUMPI PUSH2 0x1853 PUSH2 0x21FD JUMP JUMPDEST JUMPDEST PUSH2 0x1860 DUP6 DUP3 DUP7 ADD PUSH2 0x151B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1881 JUMPI PUSH2 0x1880 PUSH2 0x21FD JUMP JUMPDEST JUMPDEST PUSH2 0x188D DUP6 DUP3 DUP7 ADD PUSH2 0x1549 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x18AD JUMPI PUSH2 0x18AC PUSH2 0x2202 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x18BB DUP5 DUP3 DUP6 ADD PUSH2 0x158C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x18DA JUMPI PUSH2 0x18D9 PUSH2 0x2202 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x18E8 DUP5 DUP3 DUP6 ADD PUSH2 0x15A1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1907 JUMPI PUSH2 0x1906 PUSH2 0x2202 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1915 DUP5 DUP3 DUP6 ADD PUSH2 0x15E4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x192A DUP4 DUP4 PUSH2 0x1B5F JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x193F DUP2 PUSH2 0x1FAE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1950 DUP3 PUSH2 0x1EF7 JUMP JUMPDEST PUSH2 0x195A DUP2 DUP6 PUSH2 0x1F25 JUMP JUMPDEST SWAP4 POP PUSH2 0x1965 DUP4 PUSH2 0x1EE7 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1996 JUMPI DUP2 MLOAD PUSH2 0x197D DUP9 DUP3 PUSH2 0x191E JUMP JUMPDEST SWAP8 POP PUSH2 0x1988 DUP4 PUSH2 0x1F18 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x1969 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x19AC DUP2 PUSH2 0x1FC0 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19BD DUP3 PUSH2 0x1F02 JUMP JUMPDEST PUSH2 0x19C7 DUP2 DUP6 PUSH2 0x1F36 JUMP JUMPDEST SWAP4 POP PUSH2 0x19D7 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2031 JUMP JUMPDEST PUSH2 0x19E0 DUP2 PUSH2 0x2207 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19F6 DUP3 PUSH2 0x1F0D JUMP JUMPDEST PUSH2 0x1A00 DUP2 DUP6 PUSH2 0x1F47 JUMP JUMPDEST SWAP4 POP PUSH2 0x1A10 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2031 JUMP JUMPDEST PUSH2 0x1A19 DUP2 PUSH2 0x2207 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A31 PUSH1 0x34 DUP4 PUSH2 0x1F47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1A3C DUP3 PUSH2 0x2225 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A54 PUSH1 0x2F DUP4 PUSH2 0x1F47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1A5F DUP3 PUSH2 0x2274 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A77 PUSH1 0x28 DUP4 PUSH2 0x1F47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1A82 DUP3 PUSH2 0x22C3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A9A PUSH1 0x2A DUP4 PUSH2 0x1F47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1AA5 DUP3 PUSH2 0x2312 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1ABD PUSH1 0x25 DUP4 PUSH2 0x1F47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1AC8 DUP3 PUSH2 0x2361 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1AE0 PUSH1 0x2A DUP4 PUSH2 0x1F47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1AEB DUP3 PUSH2 0x23B0 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B03 PUSH1 0x29 DUP4 PUSH2 0x1F47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B0E DUP3 PUSH2 0x23FF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B26 PUSH1 0x29 DUP4 PUSH2 0x1F47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B31 DUP3 PUSH2 0x244E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B49 PUSH1 0x28 DUP4 PUSH2 0x1F47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B54 DUP3 PUSH2 0x249D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1B68 DUP2 PUSH2 0x2018 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1B77 DUP2 PUSH2 0x2018 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x1B92 PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x1936 JUMP JUMPDEST PUSH2 0x1B9F PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x1936 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x1BB1 DUP2 DUP7 PUSH2 0x1945 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1BC5 DUP2 DUP6 PUSH2 0x1945 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0x1BD9 DUP2 DUP5 PUSH2 0x19B2 JUMP JUMPDEST SWAP1 POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x1BFA PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x1936 JUMP JUMPDEST PUSH2 0x1C07 PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x1936 JUMP JUMPDEST PUSH2 0x1C14 PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x1B6E JUMP JUMPDEST PUSH2 0x1C21 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x1B6E JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0x1C33 DUP2 DUP5 PUSH2 0x19B2 JUMP JUMPDEST SWAP1 POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C59 DUP2 DUP5 PUSH2 0x1945 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C7B DUP2 DUP6 PUSH2 0x1945 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x1C8F DUP2 DUP5 PUSH2 0x1945 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1CAD PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x19A3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1CCD DUP2 DUP5 PUSH2 0x19EB JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1CEE DUP2 PUSH2 0x1A24 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D0E DUP2 PUSH2 0x1A47 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D2E DUP2 PUSH2 0x1A6A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D4E DUP2 PUSH2 0x1A8D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D6E DUP2 PUSH2 0x1AB0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D8E DUP2 PUSH2 0x1AD3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1DAE DUP2 PUSH2 0x1AF6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1DCE DUP2 PUSH2 0x1B19 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1DEE DUP2 PUSH2 0x1B3C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1E0A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1B6E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x1E25 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x1B6E JUMP JUMPDEST PUSH2 0x1E32 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1B6E JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E43 PUSH2 0x1E54 JUMP JUMPDEST SWAP1 POP PUSH2 0x1E4F DUP3 DUP3 PUSH2 0x2096 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1E79 JUMPI PUSH2 0x1E78 PUSH2 0x219D JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1EA5 JUMPI PUSH2 0x1EA4 PUSH2 0x219D JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1ED1 JUMPI PUSH2 0x1ED0 PUSH2 0x219D JUMP JUMPDEST JUMPDEST PUSH2 0x1EDA DUP3 PUSH2 0x2207 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F63 DUP3 PUSH2 0x2018 JUMP JUMPDEST SWAP2 POP PUSH2 0x1F6E DUP4 PUSH2 0x2018 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1FA3 JUMPI PUSH2 0x1FA2 PUSH2 0x2110 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1FB9 DUP3 PUSH2 0x1FF8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x204F JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2034 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x205E JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x207C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x2090 JUMPI PUSH2 0x208F PUSH2 0x213F JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x209F DUP3 PUSH2 0x2207 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x20BE JUMPI PUSH2 0x20BD PUSH2 0x219D JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x20D2 DUP3 PUSH2 0x2018 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x2105 JUMPI PUSH2 0x2104 PUSH2 0x2110 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x3 RETURNDATASIZE GT ISZERO PUSH2 0x21EB JUMPI PUSH1 0x4 PUSH1 0x0 DUP1 RETURNDATACOPY PUSH2 0x21E8 PUSH1 0x0 MLOAD PUSH2 0x2218 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0xE0 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x455243313135353A207472616E7366657220746F206E6F6E2045524331313535 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x526563656976657220696D706C656D656E746572000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A2063616C6C6572206973206E6F7420746F6B656E206F776E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6572206E6F7220617070726F7665640000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A204552433131353552656365697665722072656A65637465 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6420746F6B656E73000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A2061646472657373207A65726F206973206E6F7420612076 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C6964206F776E657200000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A207472616E7366657220746F20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A20696E73756666696369656E742062616C616E636520666F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x72207472616E7366657200000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A2073657474696E6720617070726F76616C20737461747573 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x20666F722073656C660000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A206163636F756E747320616E6420696473206C656E677468 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x206D69736D617463680000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A2069647320616E6420616D6F756E7473206C656E67746820 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6D69736D61746368000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x44 RETURNDATASIZE LT ISZERO PUSH2 0x24FC JUMPI PUSH2 0x257F JUMP JUMPDEST PUSH2 0x2504 PUSH2 0x1E54 JUMP JUMPDEST PUSH1 0x4 RETURNDATASIZE SUB PUSH1 0x4 DUP3 RETURNDATACOPY DUP1 MLOAD RETURNDATASIZE PUSH1 0x24 DUP3 ADD GT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x252C JUMPI POP POP PUSH2 0x257F JUMP JUMPDEST DUP1 DUP3 ADD DUP1 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x254A JUMPI POP POP POP POP PUSH2 0x257F JUMP JUMPDEST DUP1 PUSH1 0x20 DUP4 ADD ADD PUSH1 0x4 RETURNDATASIZE SUB DUP6 ADD DUP2 GT ISZERO PUSH2 0x2567 JUMPI POP POP POP POP POP PUSH2 0x257F JUMP JUMPDEST PUSH2 0x2576 DUP3 PUSH1 0x20 ADD DUP6 ADD DUP7 PUSH2 0x2096 JUMP JUMPDEST DUP3 SWAP6 POP POP POP POP POP POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH2 0x258B DUP2 PUSH2 0x1FAE JUMP JUMPDEST DUP2 EQ PUSH2 0x2596 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x25A2 DUP2 PUSH2 0x1FC0 JUMP JUMPDEST DUP2 EQ PUSH2 0x25AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x25B9 DUP2 PUSH2 0x1FCC JUMP JUMPDEST DUP2 EQ PUSH2 0x25C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x25D0 DUP2 PUSH2 0x2018 JUMP JUMPDEST DUP2 EQ PUSH2 0x25DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2D INVALID 0x27 0xD4 DIFFICULTY SHR BASEFEE PUSH11 0x68E4FF0C97A2F5F950B5D5 0x5C SWAP8 PUSH5 0xC6A0E4E364 MUL 0xA5 0x4A CREATE2 DIV PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "127:586:8:-:0;;;412:299;;;;;;;;;;1107:62:0;;;;;;;;;;;;1149:13;1157:4;1149:7;;;:13;;:::i;:::-;1107:62;494:37:8::1;500:10;202:1;522:4;494:37;;;;;;;;;;;::::0;:5:::1;;;:37;;:::i;:::-;541:48;547:10;255:1;580:4;541:48;;;;;;;;;;;::::0;:5:::1;;;:48;;:::i;:::-;599:47;605:10;307:1;637:4;599:47;;;;;;;;;;;::::0;:5:::1;;;:47;;:::i;:::-;656:48;662:10;360:1;695:4;656:48;;;;;;;;;;;::::0;:5:::1;;;:48;;:::i;:::-;127:586:::0;;8173:86:0;8246:6;8239:4;:13;;;;;;;;;;;;:::i;:::-;;8173:86;:::o;8632:709::-;8793:1;8779:16;;:2;:16;;;;8771:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;8844:16;8863:12;:10;;;:12;;:::i;:::-;8844:31;;8885:20;8908:21;8926:2;8908:17;;;:21;;:::i;:::-;8885:44;;8939:24;8966:25;8984:6;8966:17;;;:25;;:::i;:::-;8939:52;;9002:66;9023:8;9041:1;9045:2;9049:3;9054:7;9063:4;9002:20;;;:66;;:::i;:::-;9100:6;9079:9;:13;9089:2;9079:13;;;;;;;;;;;:17;9093:2;9079:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;9158:2;9121:52;;9154:1;9121:52;;9136:8;9121:52;;;9162:2;9166:6;9121:52;;;;;;;:::i;:::-;;;;;;;;9184:65;9204:8;9222:1;9226:2;9230:3;9235:7;9244:4;9184:19;;;:65;;:::i;:::-;9260:74;9291:8;9309:1;9313:2;9317;9321:6;9329:4;9260:30;;;:74;;:::i;:::-;8761:580;;;8632:709;;;;:::o;640:96:5:-;693:7;719:10;712:17;;640:96;:::o;17066:193:0:-;17132:16;17160:22;17199:1;17185:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17160:41;;17222:7;17211:5;17217:1;17211:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;17247:5;17240:12;;;17066:193;;;:::o;14171:214::-;;;;;;;:::o;15318:213::-;;;;;;;:::o;15537:725::-;15744:15;:2;:13;;;;;;;:15;;:::i;:::-;15740:516;;;15796:2;15779:38;;;15818:8;15828:4;15834:2;15838:6;15846:4;15779:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;15775:471;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;16122:6;16115:14;;;;;;;;;;;:::i;:::-;;;;;;;;15775:471;;;16169:62;;;;;;;;;;:::i;:::-;;;;;;;;15775:471;15912:43;;;15900:55;;;:8;:55;;;;15896:152;;15979:50;;;;;;;;;;:::i;:::-;;;;;;;;15896:152;15852:210;15740:516;15537:725;;;;;;:::o;1175:320:4:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;127:586:8:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:141:9:-;63:5;94:6;88:13;79:22;;110:32;136:5;110:32;:::i;:::-;7:141;;;;:::o;154:349::-;223:6;272:2;260:9;251:7;247:23;243:32;240:119;;;278:79;;:::i;:::-;240:119;398:1;423:63;478:7;469:6;458:9;454:22;423:63;:::i;:::-;413:73;;369:127;154:349;;;;:::o;509:118::-;596:24;614:5;596:24;:::i;:::-;591:3;584:37;509:118;;:::o;633:360::-;719:3;747:38;779:5;747:38;:::i;:::-;801:70;864:6;859:3;801:70;:::i;:::-;794:77;;880:52;925:6;920:3;913:4;906:5;902:16;880:52;:::i;:::-;957:29;979:6;957:29;:::i;:::-;952:3;948:39;941:46;;723:270;633:360;;;;:::o;999:364::-;1087:3;1115:39;1148:5;1115:39;:::i;:::-;1170:71;1234:6;1229:3;1170:71;:::i;:::-;1163:78;;1250:52;1295:6;1290:3;1283:4;1276:5;1272:16;1250:52;:::i;:::-;1327:29;1349:6;1327:29;:::i;:::-;1322:3;1318:39;1311:46;;1091:272;999:364;;;;:::o;1369:366::-;1511:3;1532:67;1596:2;1591:3;1532:67;:::i;:::-;1525:74;;1608:93;1697:3;1608:93;:::i;:::-;1726:2;1721:3;1717:12;1710:19;;1369:366;;;:::o;1741:::-;1883:3;1904:67;1968:2;1963:3;1904:67;:::i;:::-;1897:74;;1980:93;2069:3;1980:93;:::i;:::-;2098:2;2093:3;2089:12;2082:19;;1741:366;;;:::o;2113:::-;2255:3;2276:67;2340:2;2335:3;2276:67;:::i;:::-;2269:74;;2352:93;2441:3;2352:93;:::i;:::-;2470:2;2465:3;2461:12;2454:19;;2113:366;;;:::o;2485:118::-;2572:24;2590:5;2572:24;:::i;:::-;2567:3;2560:37;2485:118;;:::o;2609:751::-;2832:4;2870:3;2859:9;2855:19;2847:27;;2884:71;2952:1;2941:9;2937:17;2928:6;2884:71;:::i;:::-;2965:72;3033:2;3022:9;3018:18;3009:6;2965:72;:::i;:::-;3047;3115:2;3104:9;3100:18;3091:6;3047:72;:::i;:::-;3129;3197:2;3186:9;3182:18;3173:6;3129:72;:::i;:::-;3249:9;3243:4;3239:20;3233:3;3222:9;3218:19;3211:49;3277:76;3348:4;3339:6;3277:76;:::i;:::-;3269:84;;2609:751;;;;;;;;:::o;3366:313::-;3479:4;3517:2;3506:9;3502:18;3494:26;;3566:9;3560:4;3556:20;3552:1;3541:9;3537:17;3530:47;3594:78;3667:4;3658:6;3594:78;:::i;:::-;3586:86;;3366:313;;;;:::o;3685:419::-;3851:4;3889:2;3878:9;3874:18;3866:26;;3938:9;3932:4;3928:20;3924:1;3913:9;3909:17;3902:47;3966:131;4092:4;3966:131;:::i;:::-;3958:139;;3685:419;;;:::o;4110:::-;4276:4;4314:2;4303:9;4299:18;4291:26;;4363:9;4357:4;4353:20;4349:1;4338:9;4334:17;4327:47;4391:131;4517:4;4391:131;:::i;:::-;4383:139;;4110:419;;;:::o;4535:::-;4701:4;4739:2;4728:9;4724:18;4716:26;;4788:9;4782:4;4778:20;4774:1;4763:9;4759:17;4752:47;4816:131;4942:4;4816:131;:::i;:::-;4808:139;;4535:419;;;:::o;4960:332::-;5081:4;5119:2;5108:9;5104:18;5096:26;;5132:71;5200:1;5189:9;5185:17;5176:6;5132:71;:::i;:::-;5213:72;5281:2;5270:9;5266:18;5257:6;5213:72;:::i;:::-;4960:332;;;;;:::o;5298:75::-;5331:6;5364:2;5358:9;5348:19;;5298:75;:::o;5379:98::-;5430:6;5464:5;5458:12;5448:22;;5379:98;;;:::o;5483:99::-;5535:6;5569:5;5563:12;5553:22;;5483:99;;;:::o;5588:168::-;5671:11;5705:6;5700:3;5693:19;5745:4;5740:3;5736:14;5721:29;;5588:168;;;;:::o;5762:169::-;5846:11;5880:6;5875:3;5868:19;5920:4;5915:3;5911:14;5896:29;;5762:169;;;;:::o;5937:305::-;5977:3;5996:20;6014:1;5996:20;:::i;:::-;5991:25;;6030:20;6048:1;6030:20;:::i;:::-;6025:25;;6184:1;6116:66;6112:74;6109:1;6106:81;6103:107;;;6190:18;;:::i;:::-;6103:107;6234:1;6231;6227:9;6220:16;;5937:305;;;;:::o;6248:96::-;6285:7;6314:24;6332:5;6314:24;:::i;:::-;6303:35;;6248:96;;;:::o;6350:149::-;6386:7;6426:66;6419:5;6415:78;6404:89;;6350:149;;;:::o;6505:126::-;6542:7;6582:42;6575:5;6571:54;6560:65;;6505:126;;;:::o;6637:77::-;6674:7;6703:5;6692:16;;6637:77;;;:::o;6720:307::-;6788:1;6798:113;6812:6;6809:1;6806:13;6798:113;;;6897:1;6892:3;6888:11;6882:18;6878:1;6873:3;6869:11;6862:39;6834:2;6831:1;6827:10;6822:15;;6798:113;;;6929:6;6926:1;6923:13;6920:101;;;7009:1;7000:6;6995:3;6991:16;6984:27;6920:101;6769:258;6720:307;;;:::o;7033:320::-;7077:6;7114:1;7108:4;7104:12;7094:22;;7161:1;7155:4;7151:12;7182:18;7172:81;;7238:4;7230:6;7226:17;7216:27;;7172:81;7300:2;7292:6;7289:14;7269:18;7266:38;7263:84;;;7319:18;;:::i;:::-;7263:84;7084:269;7033:320;;;:::o;7359:281::-;7442:27;7464:4;7442:27;:::i;:::-;7434:6;7430:40;7572:6;7560:10;7557:22;7536:18;7524:10;7521:34;7518:62;7515:88;;;7583:18;;:::i;:::-;7515:88;7623:10;7619:2;7612:22;7402:238;7359:281;;:::o;7646:180::-;7694:77;7691:1;7684:88;7791:4;7788:1;7781:15;7815:4;7812:1;7805:15;7832:180;7880:77;7877:1;7870:88;7977:4;7974:1;7967:15;8001:4;7998:1;7991:15;8018:180;8066:77;8063:1;8056:88;8163:4;8160:1;8153:15;8187:4;8184:1;8177:15;8204:180;8252:77;8249:1;8242:88;8349:4;8346:1;8339:15;8373:4;8370:1;8363:15;8390:183;8425:3;8463:1;8445:16;8442:23;8439:128;;;8501:1;8498;8495;8480:23;8523:34;8554:1;8548:8;8523:34;:::i;:::-;8516:41;;8439:128;8390:183;:::o;8702:117::-;8811:1;8808;8801:12;8825:102;8866:6;8917:2;8913:7;8908:2;8901:5;8897:14;8893:28;8883:38;;8825:102;;;:::o;8933:106::-;8977:8;9026:5;9021:3;9017:15;8996:36;;8933:106;;;:::o;9045:239::-;9185:34;9181:1;9173:6;9169:14;9162:58;9254:22;9249:2;9241:6;9237:15;9230:47;9045:239;:::o;9290:227::-;9430:34;9426:1;9418:6;9414:14;9407:58;9499:10;9494:2;9486:6;9482:15;9475:35;9290:227;:::o;9523:220::-;9663:34;9659:1;9651:6;9647:14;9640:58;9732:3;9727:2;9719:6;9715:15;9708:28;9523:220;:::o;9749:711::-;9788:3;9826:4;9808:16;9805:26;9802:39;;;9834:5;;9802:39;9863:20;;:::i;:::-;9938:1;9920:16;9916:24;9913:1;9907:4;9892:49;9971:4;9965:11;10070:16;10063:4;10055:6;10051:17;10048:39;10015:18;10007:6;10004:30;9988:113;9985:146;;;10116:5;;;;9985:146;10162:6;10156:4;10152:17;10198:3;10192:10;10225:18;10217:6;10214:30;10211:43;;;10247:5;;;;;;10211:43;10295:6;10288:4;10283:3;10279:14;10275:27;10354:1;10336:16;10332:24;10326:4;10322:35;10317:3;10314:44;10311:57;;;10361:5;;;;;;;10311:57;10378;10426:6;10420:4;10416:17;10408:6;10404:30;10398:4;10378:57;:::i;:::-;10451:3;10444:10;;9792:668;;;;;9749:711;;:::o;10466:120::-;10538:23;10555:5;10538:23;:::i;:::-;10531:5;10528:34;10518:62;;10576:1;10573;10566:12;10518:62;10466:120;:::o;127:586:8:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@IS_PROFILE_NEGATIVE_1770": {
"entryPoint": 1682,
"id": 1770,
"parameterSlots": 0,
"returnSlots": 0
},
"@IS_PROFILE_NEUTRAL_1767": {
"entryPoint": 1672,
"id": 1767,
"parameterSlots": 0,
"returnSlots": 0
},
"@IS_PROFILE_POSITIVE_1764": {
"entryPoint": 1677,
"id": 1764,
"parameterSlots": 0,
"returnSlots": 0
},
"@WARNINGS_1761": {
"entryPoint": 1203,
"id": 1761,
"parameterSlots": 0,
"returnSlots": 0
},
"@_afterTokenTransfer_1065": {
"entryPoint": 3988,
"id": 1065,
"parameterSlots": 6,
"returnSlots": 0
},
"@_asSingletonArray_1221": {
"entryPoint": 4483,
"id": 1221,
"parameterSlots": 1,
"returnSlots": 1
},
"@_beforeTokenTransfer_1046": {
"entryPoint": 3980,
"id": 1046,
"parameterSlots": 6,
"returnSlots": 0
},
"@_doSafeBatchTransferAcceptanceCheck_1193": {
"entryPoint": 3996,
"id": 1193,
"parameterSlots": 6,
"returnSlots": 0
},
"@_doSafeTransferAcceptanceCheck_1128": {
"entryPoint": 4605,
"id": 1128,
"parameterSlots": 6,
"returnSlots": 0
},
"@_msgSender_1707": {
"entryPoint": 2137,
"id": 1707,
"parameterSlots": 0,
"returnSlots": 1
},
"@_safeBatchTransferFrom_544": {
"entryPoint": 2145,
"id": 544,
"parameterSlots": 5,
"returnSlots": 0
},
"@_safeTransferFrom_409": {
"entryPoint": 3312,
"id": 409,
"parameterSlots": 5,
"returnSlots": 0
},
"@_setApprovalForAll_1027": {
"entryPoint": 2947,
"id": 1027,
"parameterSlots": 3,
"returnSlots": 0
},
"@balanceOfBatch_179": {
"entryPoint": 1369,
"id": 179,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_115": {
"entryPoint": 628,
"id": 115,
"parameterSlots": 2,
"returnSlots": 1
},
"@isApprovedForAll_214": {
"entryPoint": 1687,
"id": 214,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1418": {
"entryPoint": 1996,
"id": 1418,
"parameterSlots": 1,
"returnSlots": 1
},
"@safeBatchTransferFrom_292": {
"entryPoint": 1208,
"id": 292,
"parameterSlots": 5,
"returnSlots": 0
},
"@safeTransferFrom_252": {
"entryPoint": 1835,
"id": 252,
"parameterSlots": 5,
"returnSlots": 0
},
"@setApprovalForAll_196": {
"entryPoint": 1650,
"id": 196,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_1740": {
"entryPoint": 2031,
"id": 1740,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_75": {
"entryPoint": 829,
"id": 75,
"parameterSlots": 1,
"returnSlots": 1
},
"@uri_87": {
"entryPoint": 1055,
"id": 87,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_available_length_t_array$_t_address_$dyn_memory_ptr": {
"entryPoint": 5092,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 5204,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 5316,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 5382,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_array$_t_address_$dyn_memory_ptr": {
"entryPoint": 5403,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 5449,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 5495,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 5516,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 5537,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 5558,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 5604,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 5625,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr": {
"entryPoint": 5689,
"id": null,
"parameterSlots": 2,
"returnSlots": 5
},
"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_bytes_memory_ptr": {
"entryPoint": 5896,
"id": null,
"parameterSlots": 2,
"returnSlots": 5
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 6047,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 6111,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 6175,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 6295,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 6340,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 6385,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encodeUpdatedPos_t_uint256_to_t_uint256": {
"entryPoint": 6430,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 6454,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack": {
"entryPoint": 6469,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 6563,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 6578,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6635,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6692,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6727,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6762,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6797,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6832,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6867,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6902,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6937,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6972,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256": {
"entryPoint": 7007,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 7022,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed": {
"entryPoint": 7037,
"id": null,
"parameterSlots": 6,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__fromStack_reversed": {
"entryPoint": 7141,
"id": null,
"parameterSlots": 6,
"returnSlots": 1
},
"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
"entryPoint": 7231,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
"entryPoint": 7265,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 7320,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7347,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7381,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7413,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7445,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7477,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7509,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7541,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7573,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7605,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7637,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 7669,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 7696,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 7737,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 7764,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_array$_t_address_$dyn_memory_ptr": {
"entryPoint": 7774,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 7818,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 7862,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 7911,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 7927,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 7938,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 7949,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_nextElement_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 7960,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack": {
"entryPoint": 7973,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 7990,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 8007,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 8024,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 8110,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 8128,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 8140,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 8184,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 8216,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 8226,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 8241,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 8292,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 8342,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"increment_t_uint256": {
"entryPoint": 8391,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 8464,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 8511,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 8558,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 8605,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"return_data_selector": {
"entryPoint": 8652,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 8686,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef": {
"entryPoint": 8691,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 8696,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 8701,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 8706,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 8711,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_right_224_unsigned": {
"entryPoint": 8728,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed": {
"entryPoint": 8741,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370": {
"entryPoint": 8820,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503": {
"entryPoint": 8899,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad": {
"entryPoint": 8978,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d": {
"entryPoint": 9057,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf": {
"entryPoint": 9136,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2": {
"entryPoint": 9215,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5": {
"entryPoint": 9294,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807": {
"entryPoint": 9373,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"try_decode_error_message": {
"entryPoint": 9452,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"validator_revert_t_address": {
"entryPoint": 9602,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 9625,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 9648,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 9671,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:32614:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "126:620:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "136:90:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "218:6:9"
}
],
"functionName": {
"name": "array_allocation_size_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "161:56:9"
},
"nodeType": "YulFunctionCall",
"src": "161:64:9"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "145:15:9"
},
"nodeType": "YulFunctionCall",
"src": "145:81:9"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "136:5:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "235:16:9",
"value": {
"name": "array",
"nodeType": "YulIdentifier",
"src": "246:5:9"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "239:3:9",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "268:5:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "275:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "261:6:9"
},
"nodeType": "YulFunctionCall",
"src": "261:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "261:21:9"
},
{
"nodeType": "YulAssignment",
"src": "291:23:9",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "302:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "309:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "298:3:9"
},
"nodeType": "YulFunctionCall",
"src": "298:16:9"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "291:3:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "324:17:9",
"value": {
"name": "offset",
"nodeType": "YulIdentifier",
"src": "335:6:9"
},
"variables": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "328:3:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "390:103:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulIdentifier",
"src": "404:77:9"
},
"nodeType": "YulFunctionCall",
"src": "404:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "404:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "360:3:9"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "369:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "377:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "365:3:9"
},
"nodeType": "YulFunctionCall",
"src": "365:17:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "356:3:9"
},
"nodeType": "YulFunctionCall",
"src": "356:27:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "385:3:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "353:2:9"
},
"nodeType": "YulFunctionCall",
"src": "353:36:9"
},
"nodeType": "YulIf",
"src": "350:143:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "562:178:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "577:21:9",
"value": {
"name": "src",
"nodeType": "YulIdentifier",
"src": "595:3:9"
},
"variables": [
{
"name": "elementPos",
"nodeType": "YulTypedName",
"src": "581:10:9",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "619:3:9"
},
{
"arguments": [
{
"name": "elementPos",
"nodeType": "YulIdentifier",
"src": "645:10:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "657:3:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "624:20:9"
},
"nodeType": "YulFunctionCall",
"src": "624:37:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "612:6:9"
},
"nodeType": "YulFunctionCall",
"src": "612:50:9"
},
"nodeType": "YulExpressionStatement",
"src": "612:50:9"
},
{
"nodeType": "YulAssignment",
"src": "675:21:9",
"value": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "686:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "691:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "682:3:9"
},
"nodeType": "YulFunctionCall",
"src": "682:14:9"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "675:3:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "709:21:9",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "720:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "725:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "716:3:9"
},
"nodeType": "YulFunctionCall",
"src": "716:14:9"
},
"variableNames": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "709:3:9"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "524:1:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "527:6:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "521:2:9"
},
"nodeType": "YulFunctionCall",
"src": "521:13:9"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "535:18:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "537:14:9",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "546:1:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "549:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "542:3:9"
},
"nodeType": "YulFunctionCall",
"src": "542:9:9"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "537:1:9"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "506:14:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "508:10:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "517:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "512:1:9",
"type": ""
}
]
}
]
},
"src": "502:238:9"
}
]
},
"name": "abi_decode_available_length_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "96:6:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "104:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "112:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "120:5:9",
"type": ""
}
],
"src": "24:722:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "871:620:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "881:90:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "963:6:9"
}
],
"functionName": {
"name": "array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "906:56:9"
},
"nodeType": "YulFunctionCall",
"src": "906:64:9"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "890:15:9"
},
"nodeType": "YulFunctionCall",
"src": "890:81:9"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "881:5:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "980:16:9",
"value": {
"name": "array",
"nodeType": "YulIdentifier",
"src": "991:5:9"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "984:3:9",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1013:5:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1020:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1006:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1006:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "1006:21:9"
},
{
"nodeType": "YulAssignment",
"src": "1036:23:9",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1047:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1054:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1043:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1043:16:9"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1036:3:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1069:17:9",
"value": {
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1080:6:9"
},
"variables": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1073:3:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1135:103:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulIdentifier",
"src": "1149:77:9"
},
"nodeType": "YulFunctionCall",
"src": "1149:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "1149:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1105:3:9"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1114:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1122:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1110:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1110:17:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1101:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1101:27:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1130:3:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1098:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1098:36:9"
},
"nodeType": "YulIf",
"src": "1095:143:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1307:178:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1322:21:9",
"value": {
"name": "src",
"nodeType": "YulIdentifier",
"src": "1340:3:9"
},
"variables": [
{
"name": "elementPos",
"nodeType": "YulTypedName",
"src": "1326:10:9",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1364:3:9"
},
{
"arguments": [
{
"name": "elementPos",
"nodeType": "YulIdentifier",
"src": "1390:10:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1402:3:9"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1369:20:9"
},
"nodeType": "YulFunctionCall",
"src": "1369:37:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1357:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1357:50:9"
},
"nodeType": "YulExpressionStatement",
"src": "1357:50:9"
},
{
"nodeType": "YulAssignment",
"src": "1420:21:9",
"value": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1431:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1436:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1427:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1427:14:9"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1420:3:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1454:21:9",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1465:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1470:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1461:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1461:14:9"
},
"variableNames": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1454:3:9"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1269:1:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1272:6:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1266:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1266:13:9"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1280:18:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1282:14:9",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1291:1:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1294:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1287:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1287:9:9"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1282:1:9"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1251:14:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1253:10:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1262:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1257:1:9",
"type": ""
}
]
}
]
},
"src": "1247:238:9"
}
]
},
"name": "abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "841:6:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "849:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "857:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "865:5:9",
"type": ""
}
],
"src": "769:722:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1580:327:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1590:74:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1656:6:9"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1615:40:9"
},
"nodeType": "YulFunctionCall",
"src": "1615:48:9"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "1599:15:9"
},
"nodeType": "YulFunctionCall",
"src": "1599:65:9"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1590:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1680:5:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1687:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1673:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1673:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "1673:21:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1703:27:9",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1718:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1725:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1714:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1714:16:9"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1707:3:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1768:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "1770:77:9"
},
"nodeType": "YulFunctionCall",
"src": "1770:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "1770:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1749:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1754:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1745:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1745:16:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1763:3:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1742:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1742:25:9"
},
"nodeType": "YulIf",
"src": "1739:112:9"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1884:3:9"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1889:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1894:6:9"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "1860:23:9"
},
"nodeType": "YulFunctionCall",
"src": "1860:41:9"
},
"nodeType": "YulExpressionStatement",
"src": "1860:41:9"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1553:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1558:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1566:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1574:5:9",
"type": ""
}
],
"src": "1497:410:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1965:87:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1975:29:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1997:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1984:12:9"
},
"nodeType": "YulFunctionCall",
"src": "1984:20:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1975:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2040:5:9"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "2013:26:9"
},
"nodeType": "YulFunctionCall",
"src": "2013:33:9"
},
"nodeType": "YulExpressionStatement",
"src": "2013:33:9"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1943:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1951:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1959:5:9",
"type": ""
}
],
"src": "1913:139:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2152:293:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2201:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2203:77:9"
},
"nodeType": "YulFunctionCall",
"src": "2203:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "2203:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2180:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2188:4:9",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2176:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2176:17:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2195:3:9"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2172:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2172:27:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2165:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2165:35:9"
},
"nodeType": "YulIf",
"src": "2162:122:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2293:34:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2320:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2307:12:9"
},
"nodeType": "YulFunctionCall",
"src": "2307:20:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2297:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2336:103:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2412:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2420:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2408:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2408:17:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2427:6:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2435:3:9"
}
],
"functionName": {
"name": "abi_decode_available_length_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2345:62:9"
},
"nodeType": "YulFunctionCall",
"src": "2345:94:9"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2336:5:9"
}
]
}
]
},
"name": "abi_decode_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2130:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2138:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2146:5:9",
"type": ""
}
],
"src": "2075:370:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2545:293:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2594:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2596:77:9"
},
"nodeType": "YulFunctionCall",
"src": "2596:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "2596:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2573:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2581:4:9",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2569:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2569:17:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2588:3:9"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2565:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2565:27:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2558:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2558:35:9"
},
"nodeType": "YulIf",
"src": "2555:122:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2686:34:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2713:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2700:12:9"
},
"nodeType": "YulFunctionCall",
"src": "2700:20:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2690:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2729:103:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2805:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2813:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2801:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2801:17:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2820:6:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2828:3:9"
}
],
"functionName": {
"name": "abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2738:62:9"
},
"nodeType": "YulFunctionCall",
"src": "2738:94:9"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2729:5:9"
}
]
}
]
},
"name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2523:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2531:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2539:5:9",
"type": ""
}
],
"src": "2468:370:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2893:84:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2903:29:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2925:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2912:12:9"
},
"nodeType": "YulFunctionCall",
"src": "2912:20:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2903:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2965:5:9"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "2941:23:9"
},
"nodeType": "YulFunctionCall",
"src": "2941:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "2941:30:9"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2871:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2879:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2887:5:9",
"type": ""
}
],
"src": "2844:133:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3034:86:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3044:29:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3066:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3053:12:9"
},
"nodeType": "YulFunctionCall",
"src": "3053:20:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3044:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3108:5:9"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "3082:25:9"
},
"nodeType": "YulFunctionCall",
"src": "3082:32:9"
},
"nodeType": "YulExpressionStatement",
"src": "3082:32:9"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3012:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3020:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3028:5:9",
"type": ""
}
],
"src": "2983:137:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3188:79:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3198:22:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3213:6:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3207:5:9"
},
"nodeType": "YulFunctionCall",
"src": "3207:13:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3198:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3255:5:9"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "3229:25:9"
},
"nodeType": "YulFunctionCall",
"src": "3229:32:9"
},
"nodeType": "YulExpressionStatement",
"src": "3229:32:9"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3166:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3174:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3182:5:9",
"type": ""
}
],
"src": "3126:141:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3347:277:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3396:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "3398:77:9"
},
"nodeType": "YulFunctionCall",
"src": "3398:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "3398:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3375:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3383:4:9",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3371:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3371:17:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3390:3:9"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3367:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3367:27:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3360:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3360:35:9"
},
"nodeType": "YulIf",
"src": "3357:122:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3488:34:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3515:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3502:12:9"
},
"nodeType": "YulFunctionCall",
"src": "3502:20:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3492:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3531:87:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3591:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3599:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3587:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3587:17:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3606:6:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3614:3:9"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3540:46:9"
},
"nodeType": "YulFunctionCall",
"src": "3540:78:9"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "3531:5:9"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3325:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3333:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "3341:5:9",
"type": ""
}
],
"src": "3286:338:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3682:87:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3692:29:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3714:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3701:12:9"
},
"nodeType": "YulFunctionCall",
"src": "3701:20:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3692:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3757:5:9"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "3730:26:9"
},
"nodeType": "YulFunctionCall",
"src": "3730:33:9"
},
"nodeType": "YulExpressionStatement",
"src": "3730:33:9"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3660:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3668:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3676:5:9",
"type": ""
}
],
"src": "3630:139:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3858:391:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3904:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3906:77:9"
},
"nodeType": "YulFunctionCall",
"src": "3906:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "3906:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3879:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3888:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3875:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3875:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3900:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3871:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3871:32:9"
},
"nodeType": "YulIf",
"src": "3868:119:9"
},
{
"nodeType": "YulBlock",
"src": "3997:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4012:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4026:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4016:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4041:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4076:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4087:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4072:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4072:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4096:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4051:20:9"
},
"nodeType": "YulFunctionCall",
"src": "4051:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4041:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4124:118:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4139:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4153:2:9",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4143:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4169:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4204:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4215:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4200:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4200:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4224:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4179:20:9"
},
"nodeType": "YulFunctionCall",
"src": "4179:53:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4169:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3820:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3831:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3843:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3851:6:9",
"type": ""
}
],
"src": "3775:474:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4448:1316:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4495:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4497:77:9"
},
"nodeType": "YulFunctionCall",
"src": "4497:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "4497:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4469:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4478:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4465:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4465:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4490:3:9",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4461:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4461:33:9"
},
"nodeType": "YulIf",
"src": "4458:120:9"
},
{
"nodeType": "YulBlock",
"src": "4588:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4603:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4617:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4607:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4632:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4667:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4678:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4663:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4663:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4687:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4642:20:9"
},
"nodeType": "YulFunctionCall",
"src": "4642:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4632:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4715:118:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4730:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4744:2:9",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4734:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4760:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4795:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4806:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4791:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4791:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4815:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4770:20:9"
},
"nodeType": "YulFunctionCall",
"src": "4770:53:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4760:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4843:303:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4858:46:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4889:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4900:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4885:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4885:18:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4872:12:9"
},
"nodeType": "YulFunctionCall",
"src": "4872:32:9"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4862:6:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4951:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "4953:77:9"
},
"nodeType": "YulFunctionCall",
"src": "4953:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "4953:79:9"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4923:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4931:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4920:2:9"
},
"nodeType": "YulFunctionCall",
"src": "4920:30:9"
},
"nodeType": "YulIf",
"src": "4917:117:9"
},
{
"nodeType": "YulAssignment",
"src": "5048:88:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5108:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5119:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5104:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5104:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5128:7:9"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5058:45:9"
},
"nodeType": "YulFunctionCall",
"src": "5058:78:9"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5048:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5156:303:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5171:46:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5202:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5213:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5198:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5198:18:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5185:12:9"
},
"nodeType": "YulFunctionCall",
"src": "5185:32:9"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5175:6:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5264:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "5266:77:9"
},
"nodeType": "YulFunctionCall",
"src": "5266:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "5266:79:9"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5236:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5244:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5233:2:9"
},
"nodeType": "YulFunctionCall",
"src": "5233:30:9"
},
"nodeType": "YulIf",
"src": "5230:117:9"
},
{
"nodeType": "YulAssignment",
"src": "5361:88:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5421:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5432:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5417:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5417:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5441:7:9"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5371:45:9"
},
"nodeType": "YulFunctionCall",
"src": "5371:78:9"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "5361:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5469:288:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5484:47:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5515:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5526:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5511:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5511:19:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5498:12:9"
},
"nodeType": "YulFunctionCall",
"src": "5498:33:9"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5488:6:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5578:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "5580:77:9"
},
"nodeType": "YulFunctionCall",
"src": "5580:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "5580:79:9"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5550:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5558:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5547:2:9"
},
"nodeType": "YulFunctionCall",
"src": "5547:30:9"
},
"nodeType": "YulIf",
"src": "5544:117:9"
},
{
"nodeType": "YulAssignment",
"src": "5675:72:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5719:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5730:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5715:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5715:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5739:7:9"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5685:29:9"
},
"nodeType": "YulFunctionCall",
"src": "5685:62:9"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "5675:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4386:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4397:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4409:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4417:6:9",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4425:6:9",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "4433:6:9",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "4441:6:9",
"type": ""
}
],
"src": "4255:1509:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5913:946:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5960:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5962:77:9"
},
"nodeType": "YulFunctionCall",
"src": "5962:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "5962:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5934:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5943:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5930:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5930:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5955:3:9",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5926:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5926:33:9"
},
"nodeType": "YulIf",
"src": "5923:120:9"
},
{
"nodeType": "YulBlock",
"src": "6053:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6068:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6082:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6072:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6097:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6132:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6143:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6128:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6128:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6152:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6107:20:9"
},
"nodeType": "YulFunctionCall",
"src": "6107:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6097:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6180:118:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6195:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6209:2:9",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6199:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6225:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6260:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6271:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6256:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6256:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6280:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6235:20:9"
},
"nodeType": "YulFunctionCall",
"src": "6235:53:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6225:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6308:118:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6323:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6337:2:9",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6327:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6353:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6388:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6399:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6384:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6384:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6408:7:9"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "6363:20:9"
},
"nodeType": "YulFunctionCall",
"src": "6363:53:9"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "6353:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6436:118:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6451:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6465:2:9",
"type": "",
"value": "96"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6455:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6481:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6516:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6527:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6512:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6512:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6536:7:9"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "6491:20:9"
},
"nodeType": "YulFunctionCall",
"src": "6491:53:9"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "6481:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6564:288:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6579:47:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6610:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6621:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6606:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6606:19:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6593:12:9"
},
"nodeType": "YulFunctionCall",
"src": "6593:33:9"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6583:6:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6673:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "6675:77:9"
},
"nodeType": "YulFunctionCall",
"src": "6675:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "6675:79:9"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6645:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6653:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6642:2:9"
},
"nodeType": "YulFunctionCall",
"src": "6642:30:9"
},
"nodeType": "YulIf",
"src": "6639:117:9"
},
{
"nodeType": "YulAssignment",
"src": "6770:72:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6814:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6825:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6810:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6810:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6834:7:9"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6780:29:9"
},
"nodeType": "YulFunctionCall",
"src": "6780:62:9"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "6770:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5851:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5862:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5874:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5882:6:9",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "5890:6:9",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "5898:6:9",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "5906:6:9",
"type": ""
}
],
"src": "5770:1089:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6945:388:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6991:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6993:77:9"
},
"nodeType": "YulFunctionCall",
"src": "6993:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "6993:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6966:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6975:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6962:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6962:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6987:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6958:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6958:32:9"
},
"nodeType": "YulIf",
"src": "6955:119:9"
},
{
"nodeType": "YulBlock",
"src": "7084:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7099:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7113:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7103:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7128:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7163:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7174:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7159:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7159:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7183:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "7138:20:9"
},
"nodeType": "YulFunctionCall",
"src": "7138:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7128:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "7211:115:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7226:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7240:2:9",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7230:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7256:60:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7288:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7299:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7284:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7284:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7308:7:9"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "7266:17:9"
},
"nodeType": "YulFunctionCall",
"src": "7266:50:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "7256:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6907:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6918:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6930:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6938:6:9",
"type": ""
}
],
"src": "6865:468:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7422:391:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7468:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "7470:77:9"
},
"nodeType": "YulFunctionCall",
"src": "7470:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "7470:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7443:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7452:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7439:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7439:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7464:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7435:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7435:32:9"
},
"nodeType": "YulIf",
"src": "7432:119:9"
},
{
"nodeType": "YulBlock",
"src": "7561:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7576:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7590:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7580:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7605:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7640:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7651:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7636:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7636:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7660:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "7615:20:9"
},
"nodeType": "YulFunctionCall",
"src": "7615:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7605:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "7688:118:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7703:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7717:2:9",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7707:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7733:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7768:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7779:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7764:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7764:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7788:7:9"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "7743:20:9"
},
"nodeType": "YulFunctionCall",
"src": "7743:53:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "7733:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7384:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7395:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7407:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "7415:6:9",
"type": ""
}
],
"src": "7339:474:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7952:761:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7998:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "8000:77:9"
},
"nodeType": "YulFunctionCall",
"src": "8000:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "8000:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7973:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7982:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7969:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7969:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7994:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7965:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7965:32:9"
},
"nodeType": "YulIf",
"src": "7962:119:9"
},
{
"nodeType": "YulBlock",
"src": "8091:302:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8106:45:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8137:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8148:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8133:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8133:17:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "8120:12:9"
},
"nodeType": "YulFunctionCall",
"src": "8120:31:9"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8110:6:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8198:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "8200:77:9"
},
"nodeType": "YulFunctionCall",
"src": "8200:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "8200:79:9"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8170:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8178:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8167:2:9"
},
"nodeType": "YulFunctionCall",
"src": "8167:30:9"
},
"nodeType": "YulIf",
"src": "8164:117:9"
},
{
"nodeType": "YulAssignment",
"src": "8295:88:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8355:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8366:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8351:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8351:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8375:7:9"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8305:45:9"
},
"nodeType": "YulFunctionCall",
"src": "8305:78:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8295:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "8403:303:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8418:46:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8449:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8460:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8445:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8445:18:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "8432:12:9"
},
"nodeType": "YulFunctionCall",
"src": "8432:32:9"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8422:6:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8511:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "8513:77:9"
},
"nodeType": "YulFunctionCall",
"src": "8513:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "8513:79:9"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8483:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8491:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8480:2:9"
},
"nodeType": "YulFunctionCall",
"src": "8480:30:9"
},
"nodeType": "YulIf",
"src": "8477:117:9"
},
{
"nodeType": "YulAssignment",
"src": "8608:88:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8668:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8679:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8664:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8664:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8688:7:9"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8618:45:9"
},
"nodeType": "YulFunctionCall",
"src": "8618:78:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "8608:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7914:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7925:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7937:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "7945:6:9",
"type": ""
}
],
"src": "7819:894:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8784:262:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8830:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "8832:77:9"
},
"nodeType": "YulFunctionCall",
"src": "8832:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "8832:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8805:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8814:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8801:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8801:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8826:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8797:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8797:32:9"
},
"nodeType": "YulIf",
"src": "8794:119:9"
},
{
"nodeType": "YulBlock",
"src": "8923:116:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8938:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8952:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8942:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8967:62:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9001:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9012:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8997:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8997:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9021:7:9"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "8977:19:9"
},
"nodeType": "YulFunctionCall",
"src": "8977:52:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8967:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8754:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "8765:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8777:6:9",
"type": ""
}
],
"src": "8719:327:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9128:273:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9174:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "9176:77:9"
},
"nodeType": "YulFunctionCall",
"src": "9176:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "9176:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9149:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9158:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9145:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9145:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9170:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "9141:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9141:32:9"
},
"nodeType": "YulIf",
"src": "9138:119:9"
},
{
"nodeType": "YulBlock",
"src": "9267:127:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9282:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9296:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9286:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9311:73:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9356:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9367:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9352:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9352:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9376:7:9"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "9321:30:9"
},
"nodeType": "YulFunctionCall",
"src": "9321:63:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9311:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9098:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "9109:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9121:6:9",
"type": ""
}
],
"src": "9052:349:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9473:263:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9519:83:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "9521:77:9"
},
"nodeType": "YulFunctionCall",
"src": "9521:79:9"
},
"nodeType": "YulExpressionStatement",
"src": "9521:79:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9494:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9503:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9490:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9490:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9515:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "9486:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9486:32:9"
},
"nodeType": "YulIf",
"src": "9483:119:9"
},
{
"nodeType": "YulBlock",
"src": "9612:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9627:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9641:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9631:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9656:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9691:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9702:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9687:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9687:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9711:7:9"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "9666:20:9"
},
"nodeType": "YulFunctionCall",
"src": "9666:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9656:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9443:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "9454:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9466:6:9",
"type": ""
}
],
"src": "9407:329:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9822:99:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9866:6:9"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9874:3:9"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "9832:33:9"
},
"nodeType": "YulFunctionCall",
"src": "9832:46:9"
},
"nodeType": "YulExpressionStatement",
"src": "9832:46:9"
},
{
"nodeType": "YulAssignment",
"src": "9887:28:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9905:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9910:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9901:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9901:14:9"
},
"variableNames": [
{
"name": "updatedPos",
"nodeType": "YulIdentifier",
"src": "9887:10:9"
}
]
}
]
},
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9795:6:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9803:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "updatedPos",
"nodeType": "YulTypedName",
"src": "9811:10:9",
"type": ""
}
],
"src": "9742:179:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9992:53:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10009:3:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10032:5:9"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "10014:17:9"
},
"nodeType": "YulFunctionCall",
"src": "10014:24:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10002:6:9"
},
"nodeType": "YulFunctionCall",
"src": "10002:37:9"
},
"nodeType": "YulExpressionStatement",
"src": "10002:37:9"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9980:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9987:3:9",
"type": ""
}
],
"src": "9927:118:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10205:608:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10215:68:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10277:5:9"
}
],
"functionName": {
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10229:47:9"
},
"nodeType": "YulFunctionCall",
"src": "10229:54:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10219:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10292:93:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10373:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10378:6:9"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10299:73:9"
},
"nodeType": "YulFunctionCall",
"src": "10299:86:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10292:3:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10394:71:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10459:5:9"
}
],
"functionName": {
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10409:49:9"
},
"nodeType": "YulFunctionCall",
"src": "10409:56:9"
},
"variables": [
{
"name": "baseRef",
"nodeType": "YulTypedName",
"src": "10398:7:9",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10474:21:9",
"value": {
"name": "baseRef",
"nodeType": "YulIdentifier",
"src": "10488:7:9"
},
"variables": [
{
"name": "srcPtr",
"nodeType": "YulTypedName",
"src": "10478:6:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10564:224:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10578:34:9",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "10605:6:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10599:5:9"
},
"nodeType": "YulFunctionCall",
"src": "10599:13:9"
},
"variables": [
{
"name": "elementValue0",
"nodeType": "YulTypedName",
"src": "10582:13:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10625:70:9",
"value": {
"arguments": [
{
"name": "elementValue0",
"nodeType": "YulIdentifier",
"src": "10676:13:9"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10691:3:9"
}
],
"functionName": {
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "10632:43:9"
},
"nodeType": "YulFunctionCall",
"src": "10632:63:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10625:3:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "10708:70:9",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "10771:6:9"
}
],
"functionName": {
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10718:52:9"
},
"nodeType": "YulFunctionCall",
"src": "10718:60:9"
},
"variableNames": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "10708:6:9"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10526:1:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10529:6:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10523:2:9"
},
"nodeType": "YulFunctionCall",
"src": "10523:13:9"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "10537:18:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10539:14:9",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10548:1:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10551:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10544:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10544:9:9"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10539:1:9"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "10508:14:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10510:10:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10519:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "10514:1:9",
"type": ""
}
]
}
]
},
"src": "10504:284:9"
},
{
"nodeType": "YulAssignment",
"src": "10797:10:9",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10804:3:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10797:3:9"
}
]
}
]
},
"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": "10184:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10191:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10200:3:9",
"type": ""
}
],
"src": "10081:732:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10878:50:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10895:3:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10915:5:9"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "10900:14:9"
},
"nodeType": "YulFunctionCall",
"src": "10900:21:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10888:6:9"
},
"nodeType": "YulFunctionCall",
"src": "10888:34:9"
},
"nodeType": "YulExpressionStatement",
"src": "10888:34:9"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10866:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10873:3:9",
"type": ""
}
],
"src": "10819:109:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11024:270:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11034:52:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11080:5:9"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "11048:31:9"
},
"nodeType": "YulFunctionCall",
"src": "11048:38:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11038:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11095:77:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11160:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11165:6:9"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11102:57:9"
},
"nodeType": "YulFunctionCall",
"src": "11102:70:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11095:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11207:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11214:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11203:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11203:16:9"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11221:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11226:6:9"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "11181:21:9"
},
"nodeType": "YulFunctionCall",
"src": "11181:52:9"
},
"nodeType": "YulExpressionStatement",
"src": "11181:52:9"
},
{
"nodeType": "YulAssignment",
"src": "11242:46:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11253:3:9"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11280:6:9"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "11258:21:9"
},
"nodeType": "YulFunctionCall",
"src": "11258:29:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11249:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11249:39:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11242:3:9"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11005:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11012:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11020:3:9",
"type": ""
}
],
"src": "10934:360:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11392:272:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11402:53:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11449:5:9"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "11416:32:9"
},
"nodeType": "YulFunctionCall",
"src": "11416:39:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11406:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11464:78:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11530:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11535:6:9"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11471:58:9"
},
"nodeType": "YulFunctionCall",
"src": "11471:71:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11464:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11577:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11584:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11573:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11573:16:9"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11591:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11596:6:9"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "11551:21:9"
},
"nodeType": "YulFunctionCall",
"src": "11551:52:9"
},
"nodeType": "YulExpressionStatement",
"src": "11551:52:9"
},
{
"nodeType": "YulAssignment",
"src": "11612:46:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11623:3:9"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11650:6:9"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "11628:21:9"
},
"nodeType": "YulFunctionCall",
"src": "11628:29:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11619:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11619:39:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11612:3:9"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11373:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11380:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11388:3:9",
"type": ""
}
],
"src": "11300:364:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11816:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11826:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11892:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11897:2:9",
"type": "",
"value": "52"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11833:58:9"
},
"nodeType": "YulFunctionCall",
"src": "11833:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11826:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11998:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed",
"nodeType": "YulIdentifier",
"src": "11909:88:9"
},
"nodeType": "YulFunctionCall",
"src": "11909:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "11909:93:9"
},
{
"nodeType": "YulAssignment",
"src": "12011:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12022:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12027:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12018:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12018:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12011:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11804:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11812:3:9",
"type": ""
}
],
"src": "11670:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12188:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12198:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12264:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12269:2:9",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12205:58:9"
},
"nodeType": "YulFunctionCall",
"src": "12205:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12198:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12370:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370",
"nodeType": "YulIdentifier",
"src": "12281:88:9"
},
"nodeType": "YulFunctionCall",
"src": "12281:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "12281:93:9"
},
{
"nodeType": "YulAssignment",
"src": "12383:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12394:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12399:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12390:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12390:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12383:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12176:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12184:3:9",
"type": ""
}
],
"src": "12042:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12560:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12570:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12636:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12641:2:9",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12577:58:9"
},
"nodeType": "YulFunctionCall",
"src": "12577:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12570:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12742:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503",
"nodeType": "YulIdentifier",
"src": "12653:88:9"
},
"nodeType": "YulFunctionCall",
"src": "12653:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "12653:93:9"
},
{
"nodeType": "YulAssignment",
"src": "12755:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12766:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12771:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12762:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12762:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12755:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12548:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12556:3:9",
"type": ""
}
],
"src": "12414:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12932:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12942:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13008:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13013:2:9",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12949:58:9"
},
"nodeType": "YulFunctionCall",
"src": "12949:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12942:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13114:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad",
"nodeType": "YulIdentifier",
"src": "13025:88:9"
},
"nodeType": "YulFunctionCall",
"src": "13025:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "13025:93:9"
},
{
"nodeType": "YulAssignment",
"src": "13127:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13138:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13143:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13134:3:9"
},
"nodeType": "YulFunctionCall",
"src": "13134:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13127:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12920:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12928:3:9",
"type": ""
}
],
"src": "12786:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13304:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13314:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13380:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13385:2:9",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13321:58:9"
},
"nodeType": "YulFunctionCall",
"src": "13321:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13314:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13486:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d",
"nodeType": "YulIdentifier",
"src": "13397:88:9"
},
"nodeType": "YulFunctionCall",
"src": "13397:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "13397:93:9"
},
{
"nodeType": "YulAssignment",
"src": "13499:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13510:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13515:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13506:3:9"
},
"nodeType": "YulFunctionCall",
"src": "13506:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13499:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13292:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13300:3:9",
"type": ""
}
],
"src": "13158:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13676:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13686:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13752:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13757:2:9",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13693:58:9"
},
"nodeType": "YulFunctionCall",
"src": "13693:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13686:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13858:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf",
"nodeType": "YulIdentifier",
"src": "13769:88:9"
},
"nodeType": "YulFunctionCall",
"src": "13769:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "13769:93:9"
},
{
"nodeType": "YulAssignment",
"src": "13871:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13882:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13887:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13878:3:9"
},
"nodeType": "YulFunctionCall",
"src": "13878:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13871:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13664:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13672:3:9",
"type": ""
}
],
"src": "13530:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14048:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14058:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14124:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14129:2:9",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14065:58:9"
},
"nodeType": "YulFunctionCall",
"src": "14065:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14058:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14230:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2",
"nodeType": "YulIdentifier",
"src": "14141:88:9"
},
"nodeType": "YulFunctionCall",
"src": "14141:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "14141:93:9"
},
{
"nodeType": "YulAssignment",
"src": "14243:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14254:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14259:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14250:3:9"
},
"nodeType": "YulFunctionCall",
"src": "14250:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14243:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14036:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14044:3:9",
"type": ""
}
],
"src": "13902:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14420:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14430:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14496:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14501:2:9",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14437:58:9"
},
"nodeType": "YulFunctionCall",
"src": "14437:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14430:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14602:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5",
"nodeType": "YulIdentifier",
"src": "14513:88:9"
},
"nodeType": "YulFunctionCall",
"src": "14513:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "14513:93:9"
},
{
"nodeType": "YulAssignment",
"src": "14615:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14626:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14631:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14622:3:9"
},
"nodeType": "YulFunctionCall",
"src": "14622:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14615:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14408:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14416:3:9",
"type": ""
}
],
"src": "14274:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14792:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14802:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14868:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14873:2:9",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14809:58:9"
},
"nodeType": "YulFunctionCall",
"src": "14809:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14802:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14974:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807",
"nodeType": "YulIdentifier",
"src": "14885:88:9"
},
"nodeType": "YulFunctionCall",
"src": "14885:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "14885:93:9"
},
{
"nodeType": "YulAssignment",
"src": "14987:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14998:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15003:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14994:3:9"
},
"nodeType": "YulFunctionCall",
"src": "14994:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14987:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14780:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14788:3:9",
"type": ""
}
],
"src": "14646:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15073:53:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15090:3:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15113:5:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "15095:17:9"
},
"nodeType": "YulFunctionCall",
"src": "15095:24:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15083:6:9"
},
"nodeType": "YulFunctionCall",
"src": "15083:37:9"
},
"nodeType": "YulExpressionStatement",
"src": "15083:37:9"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15061:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15068:3:9",
"type": ""
}
],
"src": "15018:108:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15197:53:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15214:3:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15237:5:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "15219:17:9"
},
"nodeType": "YulFunctionCall",
"src": "15219:24:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15207:6:9"
},
"nodeType": "YulFunctionCall",
"src": "15207:37:9"
},
"nodeType": "YulExpressionStatement",
"src": "15207:37:9"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15185:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15192:3:9",
"type": ""
}
],
"src": "15132:118:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15584:725:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15594:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15606:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15617:3:9",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15602:3:9"
},
"nodeType": "YulFunctionCall",
"src": "15602:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15594:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15675:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15688:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15699:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15684:3:9"
},
"nodeType": "YulFunctionCall",
"src": "15684:17:9"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "15631:43:9"
},
"nodeType": "YulFunctionCall",
"src": "15631:71:9"
},
"nodeType": "YulExpressionStatement",
"src": "15631:71:9"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "15756:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15769:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15780:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15765:3:9"
},
"nodeType": "YulFunctionCall",
"src": "15765:18:9"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "15712:43:9"
},
"nodeType": "YulFunctionCall",
"src": "15712:72:9"
},
"nodeType": "YulExpressionStatement",
"src": "15712:72:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15805:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15816:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15801:3:9"
},
"nodeType": "YulFunctionCall",
"src": "15801:18:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15825:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15831:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15821:3:9"
},
"nodeType": "YulFunctionCall",
"src": "15821:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15794:6:9"
},
"nodeType": "YulFunctionCall",
"src": "15794:48:9"
},
"nodeType": "YulExpressionStatement",
"src": "15794:48:9"
},
{
"nodeType": "YulAssignment",
"src": "15851:116:9",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "15953:6:9"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15962:4:9"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15859:93:9"
},
"nodeType": "YulFunctionCall",
"src": "15859:108:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15851:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15988:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15999:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15984:3:9"
},
"nodeType": "YulFunctionCall",
"src": "15984:18:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16008:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16014:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16004:3:9"
},
"nodeType": "YulFunctionCall",
"src": "16004:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15977:6:9"
},
"nodeType": "YulFunctionCall",
"src": "15977:48:9"
},
"nodeType": "YulExpressionStatement",
"src": "15977:48:9"
},
{
"nodeType": "YulAssignment",
"src": "16034:116:9",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "16136:6:9"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16145:4:9"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16042:93:9"
},
"nodeType": "YulFunctionCall",
"src": "16042:108:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16034:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16171:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16182:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16167:3:9"
},
"nodeType": "YulFunctionCall",
"src": "16167:19:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16192:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16198:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16188:3:9"
},
"nodeType": "YulFunctionCall",
"src": "16188:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16160:6:9"
},
"nodeType": "YulFunctionCall",
"src": "16160:49:9"
},
"nodeType": "YulExpressionStatement",
"src": "16160:49:9"
},
{
"nodeType": "YulAssignment",
"src": "16218:84:9",
"value": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "16288:6:9"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16297:4:9"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16226:61:9"
},
"nodeType": "YulFunctionCall",
"src": "16226:76:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16218:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15524:9:9",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "15536:6:9",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "15544:6:9",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "15552:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "15560:6:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15568:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15579:4:9",
"type": ""
}
],
"src": "15256:1053:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16543:523:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16553:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16565:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16576:3:9",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16561:3:9"
},
"nodeType": "YulFunctionCall",
"src": "16561:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16553:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "16634:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16647:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16658:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16643:3:9"
},
"nodeType": "YulFunctionCall",
"src": "16643:17:9"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "16590:43:9"
},
"nodeType": "YulFunctionCall",
"src": "16590:71:9"
},
"nodeType": "YulExpressionStatement",
"src": "16590:71:9"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "16715:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16728:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16739:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16724:3:9"
},
"nodeType": "YulFunctionCall",
"src": "16724:18:9"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "16671:43:9"
},
"nodeType": "YulFunctionCall",
"src": "16671:72:9"
},
"nodeType": "YulExpressionStatement",
"src": "16671:72:9"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "16797:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16810:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16821:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16806:3:9"
},
"nodeType": "YulFunctionCall",
"src": "16806:18:9"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "16753:43:9"
},
"nodeType": "YulFunctionCall",
"src": "16753:72:9"
},
"nodeType": "YulExpressionStatement",
"src": "16753:72:9"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "16879:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16892:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16903:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16888:3:9"
},
"nodeType": "YulFunctionCall",
"src": "16888:18:9"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "16835:43:9"
},
"nodeType": "YulFunctionCall",
"src": "16835:72:9"
},
"nodeType": "YulExpressionStatement",
"src": "16835:72:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16928:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16939:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16924:3:9"
},
"nodeType": "YulFunctionCall",
"src": "16924:19:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16949:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16955:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16945:3:9"
},
"nodeType": "YulFunctionCall",
"src": "16945:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16917:6:9"
},
"nodeType": "YulFunctionCall",
"src": "16917:49:9"
},
"nodeType": "YulExpressionStatement",
"src": "16917:49:9"
},
{
"nodeType": "YulAssignment",
"src": "16975:84:9",
"value": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "17045:6:9"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17054:4:9"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16983:61:9"
},
"nodeType": "YulFunctionCall",
"src": "16983:76:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16975:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16483:9:9",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "16495:6:9",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "16503:6:9",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "16511:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "16519:6:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "16527:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16538:4:9",
"type": ""
}
],
"src": "16315:751:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17220:225:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17230:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17242:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17253:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17238:3:9"
},
"nodeType": "YulFunctionCall",
"src": "17238:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17230:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17277:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17288:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17273:3:9"
},
"nodeType": "YulFunctionCall",
"src": "17273:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17296:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17302:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17292:3:9"
},
"nodeType": "YulFunctionCall",
"src": "17292:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17266:6:9"
},
"nodeType": "YulFunctionCall",
"src": "17266:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "17266:47:9"
},
{
"nodeType": "YulAssignment",
"src": "17322:116:9",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "17424:6:9"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17433:4:9"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17330:93:9"
},
"nodeType": "YulFunctionCall",
"src": "17330:108:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17322:4:9"
}
]
}
]
},
"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": "17192:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "17204:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17215:4:9",
"type": ""
}
],
"src": "17072:373:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17677:408:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17687:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17699:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17710:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17695:3:9"
},
"nodeType": "YulFunctionCall",
"src": "17695:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17687:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17734:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17745:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17730:3:9"
},
"nodeType": "YulFunctionCall",
"src": "17730:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17753:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17759:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17749:3:9"
},
"nodeType": "YulFunctionCall",
"src": "17749:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17723:6:9"
},
"nodeType": "YulFunctionCall",
"src": "17723:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "17723:47:9"
},
{
"nodeType": "YulAssignment",
"src": "17779:116:9",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "17881:6:9"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17890:4:9"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17787:93:9"
},
"nodeType": "YulFunctionCall",
"src": "17787:108:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17779:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17916:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17927:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17912:3:9"
},
"nodeType": "YulFunctionCall",
"src": "17912:18:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17936:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17942:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17932:3:9"
},
"nodeType": "YulFunctionCall",
"src": "17932:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17905:6:9"
},
"nodeType": "YulFunctionCall",
"src": "17905:48:9"
},
"nodeType": "YulExpressionStatement",
"src": "17905:48:9"
},
{
"nodeType": "YulAssignment",
"src": "17962:116:9",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "18064:6:9"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18073:4:9"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17970:93:9"
},
"nodeType": "YulFunctionCall",
"src": "17970:108:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17962:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17641:9:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "17653:6:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "17661:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17672:4:9",
"type": ""
}
],
"src": "17451:634:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18183:118:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18193:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18205:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18216:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18201:3:9"
},
"nodeType": "YulFunctionCall",
"src": "18201:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18193:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18267:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18280:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18291:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18276:3:9"
},
"nodeType": "YulFunctionCall",
"src": "18276:17:9"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "18229:37:9"
},
"nodeType": "YulFunctionCall",
"src": "18229:65:9"
},
"nodeType": "YulExpressionStatement",
"src": "18229:65:9"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18155:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18167:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18178:4:9",
"type": ""
}
],
"src": "18091:210:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18425:195:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18435:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18447:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18458:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18443:3:9"
},
"nodeType": "YulFunctionCall",
"src": "18443:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18435:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18482:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18493:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18478:3:9"
},
"nodeType": "YulFunctionCall",
"src": "18478:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18501:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18507:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18497:3:9"
},
"nodeType": "YulFunctionCall",
"src": "18497:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18471:6:9"
},
"nodeType": "YulFunctionCall",
"src": "18471:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "18471:47:9"
},
{
"nodeType": "YulAssignment",
"src": "18527:86:9",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18599:6:9"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18608:4:9"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18535:63:9"
},
"nodeType": "YulFunctionCall",
"src": "18535:78:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18527:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18397:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18409:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18420:4:9",
"type": ""
}
],
"src": "18307:313:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18797:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18807:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18819:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18830:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18815:3:9"
},
"nodeType": "YulFunctionCall",
"src": "18815:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18807:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18854:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18865:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18850:3:9"
},
"nodeType": "YulFunctionCall",
"src": "18850:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18873:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18879:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18869:3:9"
},
"nodeType": "YulFunctionCall",
"src": "18869:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18843:6:9"
},
"nodeType": "YulFunctionCall",
"src": "18843:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "18843:47:9"
},
{
"nodeType": "YulAssignment",
"src": "18899:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19033:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18907:124:9"
},
"nodeType": "YulFunctionCall",
"src": "18907:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18899:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18777:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18792:4:9",
"type": ""
}
],
"src": "18626:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19222:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19232:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19244:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19255:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19240:3:9"
},
"nodeType": "YulFunctionCall",
"src": "19240:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19232:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19279:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19290:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19275:3:9"
},
"nodeType": "YulFunctionCall",
"src": "19275:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19298:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19304:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19294:3:9"
},
"nodeType": "YulFunctionCall",
"src": "19294:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19268:6:9"
},
"nodeType": "YulFunctionCall",
"src": "19268:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "19268:47:9"
},
{
"nodeType": "YulAssignment",
"src": "19324:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19458:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19332:124:9"
},
"nodeType": "YulFunctionCall",
"src": "19332:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19324:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19202:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19217:4:9",
"type": ""
}
],
"src": "19051:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19647:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19657:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19669:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19680:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19665:3:9"
},
"nodeType": "YulFunctionCall",
"src": "19665:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19657:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19704:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19715:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19700:3:9"
},
"nodeType": "YulFunctionCall",
"src": "19700:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19723:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19729:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19719:3:9"
},
"nodeType": "YulFunctionCall",
"src": "19719:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19693:6:9"
},
"nodeType": "YulFunctionCall",
"src": "19693:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "19693:47:9"
},
{
"nodeType": "YulAssignment",
"src": "19749:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19883:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19757:124:9"
},
"nodeType": "YulFunctionCall",
"src": "19757:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19749:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19627:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19642:4:9",
"type": ""
}
],
"src": "19476:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20072:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20082:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20094:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20105:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20090:3:9"
},
"nodeType": "YulFunctionCall",
"src": "20090:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20082:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20129:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20140:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20125:3:9"
},
"nodeType": "YulFunctionCall",
"src": "20125:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20148:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20154:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20144:3:9"
},
"nodeType": "YulFunctionCall",
"src": "20144:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20118:6:9"
},
"nodeType": "YulFunctionCall",
"src": "20118:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "20118:47:9"
},
{
"nodeType": "YulAssignment",
"src": "20174:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20308:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20182:124:9"
},
"nodeType": "YulFunctionCall",
"src": "20182:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20174:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20052:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20067:4:9",
"type": ""
}
],
"src": "19901:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20497:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20507:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20519:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20530:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20515:3:9"
},
"nodeType": "YulFunctionCall",
"src": "20515:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20507:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20554:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20565:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20550:3:9"
},
"nodeType": "YulFunctionCall",
"src": "20550:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20573:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20579:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20569:3:9"
},
"nodeType": "YulFunctionCall",
"src": "20569:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20543:6:9"
},
"nodeType": "YulFunctionCall",
"src": "20543:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "20543:47:9"
},
{
"nodeType": "YulAssignment",
"src": "20599:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20733:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20607:124:9"
},
"nodeType": "YulFunctionCall",
"src": "20607:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20599:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20477:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20492:4:9",
"type": ""
}
],
"src": "20326:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20922:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20932:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20944:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20955:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20940:3:9"
},
"nodeType": "YulFunctionCall",
"src": "20940:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20932:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20979:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20990:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20975:3:9"
},
"nodeType": "YulFunctionCall",
"src": "20975:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20998:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21004:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20994:3:9"
},
"nodeType": "YulFunctionCall",
"src": "20994:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20968:6:9"
},
"nodeType": "YulFunctionCall",
"src": "20968:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "20968:47:9"
},
{
"nodeType": "YulAssignment",
"src": "21024:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21158:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21032:124:9"
},
"nodeType": "YulFunctionCall",
"src": "21032:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21024:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20902:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20917:4:9",
"type": ""
}
],
"src": "20751:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21347:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21357:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21369:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21380:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21365:3:9"
},
"nodeType": "YulFunctionCall",
"src": "21365:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21357:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21404:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21415:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21400:3:9"
},
"nodeType": "YulFunctionCall",
"src": "21400:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21423:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21429:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21419:3:9"
},
"nodeType": "YulFunctionCall",
"src": "21419:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21393:6:9"
},
"nodeType": "YulFunctionCall",
"src": "21393:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "21393:47:9"
},
{
"nodeType": "YulAssignment",
"src": "21449:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21583:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21457:124:9"
},
"nodeType": "YulFunctionCall",
"src": "21457:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21449:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21327:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21342:4:9",
"type": ""
}
],
"src": "21176:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21772:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21782:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21794:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21805:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21790:3:9"
},
"nodeType": "YulFunctionCall",
"src": "21790:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21782:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21829:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21840:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21825:3:9"
},
"nodeType": "YulFunctionCall",
"src": "21825:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21848:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21854:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21844:3:9"
},
"nodeType": "YulFunctionCall",
"src": "21844:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21818:6:9"
},
"nodeType": "YulFunctionCall",
"src": "21818:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "21818:47:9"
},
{
"nodeType": "YulAssignment",
"src": "21874:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22008:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21882:124:9"
},
"nodeType": "YulFunctionCall",
"src": "21882:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21874:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21752:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21767:4:9",
"type": ""
}
],
"src": "21601:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22197:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22207:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22219:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22230:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22215:3:9"
},
"nodeType": "YulFunctionCall",
"src": "22215:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22207:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22254:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22265:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22250:3:9"
},
"nodeType": "YulFunctionCall",
"src": "22250:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22273:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22279:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22269:3:9"
},
"nodeType": "YulFunctionCall",
"src": "22269:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22243:6:9"
},
"nodeType": "YulFunctionCall",
"src": "22243:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "22243:47:9"
},
{
"nodeType": "YulAssignment",
"src": "22299:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22433:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22307:124:9"
},
"nodeType": "YulFunctionCall",
"src": "22307:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22299:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22177:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22192:4:9",
"type": ""
}
],
"src": "22026:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22549:124:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22559:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22571:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22582:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22567:3:9"
},
"nodeType": "YulFunctionCall",
"src": "22567:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22559:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "22639:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22652:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22663:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22648:3:9"
},
"nodeType": "YulFunctionCall",
"src": "22648:17:9"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "22595:43:9"
},
"nodeType": "YulFunctionCall",
"src": "22595:71:9"
},
"nodeType": "YulExpressionStatement",
"src": "22595:71:9"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22521:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "22533:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22544:4:9",
"type": ""
}
],
"src": "22451:222:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22805:206:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22815:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22827:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22838:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22823:3:9"
},
"nodeType": "YulFunctionCall",
"src": "22823:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22815:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "22895:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22908:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22919:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22904:3:9"
},
"nodeType": "YulFunctionCall",
"src": "22904:17:9"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "22851:43:9"
},
"nodeType": "YulFunctionCall",
"src": "22851:71:9"
},
"nodeType": "YulExpressionStatement",
"src": "22851:71:9"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "22976:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22989:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23000:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22985:3:9"
},
"nodeType": "YulFunctionCall",
"src": "22985:18:9"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "22932:43:9"
},
"nodeType": "YulFunctionCall",
"src": "22932:72:9"
},
"nodeType": "YulExpressionStatement",
"src": "22932:72:9"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22769:9:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "22781:6:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "22789:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22800:4:9",
"type": ""
}
],
"src": "22679:332:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23058:88:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23068:30:9",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "23078:18:9"
},
"nodeType": "YulFunctionCall",
"src": "23078:20:9"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23068:6:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23127:6:9"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "23135:4:9"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "23107:19:9"
},
"nodeType": "YulFunctionCall",
"src": "23107:33:9"
},
"nodeType": "YulExpressionStatement",
"src": "23107:33:9"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "23042:4:9",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23051:6:9",
"type": ""
}
],
"src": "23017:129:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23192:35:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23202:19:9",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23218:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "23212:5:9"
},
"nodeType": "YulFunctionCall",
"src": "23212:9:9"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23202:6:9"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23185:6:9",
"type": ""
}
],
"src": "23152:75:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23315:229:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "23420:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "23422:16:9"
},
"nodeType": "YulFunctionCall",
"src": "23422:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "23422:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23392:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23400:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "23389:2:9"
},
"nodeType": "YulFunctionCall",
"src": "23389:30:9"
},
"nodeType": "YulIf",
"src": "23386:56:9"
},
{
"nodeType": "YulAssignment",
"src": "23452:25:9",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23464:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23472:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "23460:3:9"
},
"nodeType": "YulFunctionCall",
"src": "23460:17:9"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "23452:4:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "23514:23:9",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "23526:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23532:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23522:3:9"
},
"nodeType": "YulFunctionCall",
"src": "23522:15:9"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "23514:4:9"
}
]
}
]
},
"name": "array_allocation_size_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "23299:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "23310:4:9",
"type": ""
}
],
"src": "23233:311:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23632:229:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "23737:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "23739:16:9"
},
"nodeType": "YulFunctionCall",
"src": "23739:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "23739:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23709:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23717:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "23706:2:9"
},
"nodeType": "YulFunctionCall",
"src": "23706:30:9"
},
"nodeType": "YulIf",
"src": "23703:56:9"
},
{
"nodeType": "YulAssignment",
"src": "23769:25:9",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23781:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23789:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "23777:3:9"
},
"nodeType": "YulFunctionCall",
"src": "23777:17:9"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "23769:4:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "23831:23:9",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "23843:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23849:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23839:3:9"
},
"nodeType": "YulFunctionCall",
"src": "23839:15:9"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "23831:4:9"
}
]
}
]
},
"name": "array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "23616:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "23627:4:9",
"type": ""
}
],
"src": "23550:311:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23933:241:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "24038:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "24040:16:9"
},
"nodeType": "YulFunctionCall",
"src": "24040:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "24040:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24010:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24018:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "24007:2:9"
},
"nodeType": "YulFunctionCall",
"src": "24007:30:9"
},
"nodeType": "YulIf",
"src": "24004:56:9"
},
{
"nodeType": "YulAssignment",
"src": "24070:37:9",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24100:6:9"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "24078:21:9"
},
"nodeType": "YulFunctionCall",
"src": "24078:29:9"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "24070:4:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "24144:23:9",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "24156:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24162:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24152:3:9"
},
"nodeType": "YulFunctionCall",
"src": "24152:15:9"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "24144:4:9"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "23917:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "23928:4:9",
"type": ""
}
],
"src": "23867:307:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24252:60:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24262:11:9",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "24270:3:9"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "24262:4:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "24283:22:9",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "24295:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24300:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24291:3:9"
},
"nodeType": "YulFunctionCall",
"src": "24291:14:9"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "24283:4:9"
}
]
}
]
},
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "24239:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "24247:4:9",
"type": ""
}
],
"src": "24180:132:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24392:40:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24403:22:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "24419:5:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "24413:5:9"
},
"nodeType": "YulFunctionCall",
"src": "24413:12:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24403:6:9"
}
]
}
]
},
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "24375:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "24385:6:9",
"type": ""
}
],
"src": "24318:114:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24496:40:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24507:22:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "24523:5:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "24517:5:9"
},
"nodeType": "YulFunctionCall",
"src": "24517:12:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24507:6:9"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "24479:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "24489:6:9",
"type": ""
}
],
"src": "24438:98:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24601:40:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24612:22:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "24628:5:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "24622:5:9"
},
"nodeType": "YulFunctionCall",
"src": "24622:12:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24612:6:9"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "24584:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "24594:6:9",
"type": ""
}
],
"src": "24542:99:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24722:38:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24732:22:9",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "24744:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24749:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24740:3:9"
},
"nodeType": "YulFunctionCall",
"src": "24740:14:9"
},
"variableNames": [
{
"name": "next",
"nodeType": "YulIdentifier",
"src": "24732:4:9"
}
]
}
]
},
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "24709:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "next",
"nodeType": "YulTypedName",
"src": "24717:4:9",
"type": ""
}
],
"src": "24647:113:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24877:73:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24894:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24899:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24887:6:9"
},
"nodeType": "YulFunctionCall",
"src": "24887:19:9"
},
"nodeType": "YulExpressionStatement",
"src": "24887:19:9"
},
{
"nodeType": "YulAssignment",
"src": "24915:29:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24934:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24939:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24930:3:9"
},
"nodeType": "YulFunctionCall",
"src": "24930:14:9"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "24915:11:9"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "24849:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "24854:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "24865:11:9",
"type": ""
}
],
"src": "24766:184:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25051:73:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25068:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "25073:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25061:6:9"
},
"nodeType": "YulFunctionCall",
"src": "25061:19:9"
},
"nodeType": "YulExpressionStatement",
"src": "25061:19:9"
},
{
"nodeType": "YulAssignment",
"src": "25089:29:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25108:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25113:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25104:3:9"
},
"nodeType": "YulFunctionCall",
"src": "25104:14:9"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "25089:11:9"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25023:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "25028:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "25039:11:9",
"type": ""
}
],
"src": "24956:168:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25226:73:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25243:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "25248:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25236:6:9"
},
"nodeType": "YulFunctionCall",
"src": "25236:19:9"
},
"nodeType": "YulExpressionStatement",
"src": "25236:19:9"
},
{
"nodeType": "YulAssignment",
"src": "25264:29:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25283:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25288:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25279:3:9"
},
"nodeType": "YulFunctionCall",
"src": "25279:14:9"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "25264:11:9"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25198:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "25203:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "25214:11:9",
"type": ""
}
],
"src": "25130:169:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25349:261:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25359:25:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "25382:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "25364:17:9"
},
"nodeType": "YulFunctionCall",
"src": "25364:20:9"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "25359:1:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "25393:25:9",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25416:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "25398:17:9"
},
"nodeType": "YulFunctionCall",
"src": "25398:20:9"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25393:1:9"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "25556:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "25558:16:9"
},
"nodeType": "YulFunctionCall",
"src": "25558:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "25558:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "25477:1:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25484:66:9",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25552:1:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25480:3:9"
},
"nodeType": "YulFunctionCall",
"src": "25480:74:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "25474:2:9"
},
"nodeType": "YulFunctionCall",
"src": "25474:81:9"
},
"nodeType": "YulIf",
"src": "25471:107:9"
},
{
"nodeType": "YulAssignment",
"src": "25588:16:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "25599:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25602:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25595:3:9"
},
"nodeType": "YulFunctionCall",
"src": "25595:9:9"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "25588:3:9"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "25336:1:9",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "25339:1:9",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "25345:3:9",
"type": ""
}
],
"src": "25305:305:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25661:51:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25671:35:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "25700:5:9"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "25682:17:9"
},
"nodeType": "YulFunctionCall",
"src": "25682:24:9"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "25671:7:9"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "25643:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "25653:7:9",
"type": ""
}
],
"src": "25616:96:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25760:48:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25770:32:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "25795:5:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "25788:6:9"
},
"nodeType": "YulFunctionCall",
"src": "25788:13:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "25781:6:9"
},
"nodeType": "YulFunctionCall",
"src": "25781:21:9"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "25770:7:9"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "25742:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "25752:7:9",
"type": ""
}
],
"src": "25718:90:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25858:105:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25868:89:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "25883:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25890:66:9",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "25879:3:9"
},
"nodeType": "YulFunctionCall",
"src": "25879:78:9"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "25868:7:9"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "25840:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "25850:7:9",
"type": ""
}
],
"src": "25814:149:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26014:81:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26024:65:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26039:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26046:42:9",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "26035:3:9"
},
"nodeType": "YulFunctionCall",
"src": "26035:54:9"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "26024:7:9"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "25996:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "26006:7:9",
"type": ""
}
],
"src": "25969:126:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26146:32:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26156:16:9",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "26167:5:9"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "26156:7:9"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26128:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "26138:7:9",
"type": ""
}
],
"src": "26101:77:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26235:103:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "26258:3:9"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "26263:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26268:6:9"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "26245:12:9"
},
"nodeType": "YulFunctionCall",
"src": "26245:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "26245:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "26316:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26321:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26312:3:9"
},
"nodeType": "YulFunctionCall",
"src": "26312:16:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26330:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26305:6:9"
},
"nodeType": "YulFunctionCall",
"src": "26305:27:9"
},
"nodeType": "YulExpressionStatement",
"src": "26305:27:9"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "26217:3:9",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "26222:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "26227:6:9",
"type": ""
}
],
"src": "26184:154:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26393:258:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "26403:10:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "26412:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "26407:1:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "26472:63:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "26497:3:9"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "26502:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26493:3:9"
},
"nodeType": "YulFunctionCall",
"src": "26493:11:9"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "26516:3:9"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "26521:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26512:3:9"
},
"nodeType": "YulFunctionCall",
"src": "26512:11:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "26506:5:9"
},
"nodeType": "YulFunctionCall",
"src": "26506:18:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26486:6:9"
},
"nodeType": "YulFunctionCall",
"src": "26486:39:9"
},
"nodeType": "YulExpressionStatement",
"src": "26486:39:9"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "26433:1:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26436:6:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "26430:2:9"
},
"nodeType": "YulFunctionCall",
"src": "26430:13:9"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "26444:19:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26446:15:9",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "26455:1:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26458:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26451:3:9"
},
"nodeType": "YulFunctionCall",
"src": "26451:10:9"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "26446:1:9"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "26426:3:9",
"statements": []
},
"src": "26422:113:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26569:76:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "26619:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26624:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26615:3:9"
},
"nodeType": "YulFunctionCall",
"src": "26615:16:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26633:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26608:6:9"
},
"nodeType": "YulFunctionCall",
"src": "26608:27:9"
},
"nodeType": "YulExpressionStatement",
"src": "26608:27:9"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "26550:1:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26553:6:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "26547:2:9"
},
"nodeType": "YulFunctionCall",
"src": "26547:13:9"
},
"nodeType": "YulIf",
"src": "26544:101:9"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "26375:3:9",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "26380:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "26385:6:9",
"type": ""
}
],
"src": "26344:307:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26708:269:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26718:22:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "26732:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26738:1:9",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "26728:3:9"
},
"nodeType": "YulFunctionCall",
"src": "26728:12:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26718:6:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "26749:38:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "26779:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26785:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "26775:3:9"
},
"nodeType": "YulFunctionCall",
"src": "26775:12:9"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "26753:18:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "26826:51:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26840:27:9",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26854:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26862:4:9",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "26850:3:9"
},
"nodeType": "YulFunctionCall",
"src": "26850:17:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26840:6:9"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "26806:18:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26799:6:9"
},
"nodeType": "YulFunctionCall",
"src": "26799:26:9"
},
"nodeType": "YulIf",
"src": "26796:81:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26929:42:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "26943:16:9"
},
"nodeType": "YulFunctionCall",
"src": "26943:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "26943:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "26893:18:9"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26916:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26924:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "26913:2:9"
},
"nodeType": "YulFunctionCall",
"src": "26913:14:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "26890:2:9"
},
"nodeType": "YulFunctionCall",
"src": "26890:38:9"
},
"nodeType": "YulIf",
"src": "26887:84:9"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "26692:4:9",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "26701:6:9",
"type": ""
}
],
"src": "26657:320:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27026:238:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "27036:58:9",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27058:6:9"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "27088:4:9"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "27066:21:9"
},
"nodeType": "YulFunctionCall",
"src": "27066:27:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27054:3:9"
},
"nodeType": "YulFunctionCall",
"src": "27054:40:9"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "27040:10:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "27205:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "27207:16:9"
},
"nodeType": "YulFunctionCall",
"src": "27207:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "27207:18:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "27148:10:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27160:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "27145:2:9"
},
"nodeType": "YulFunctionCall",
"src": "27145:34:9"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "27184:10:9"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27196:6:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "27181:2:9"
},
"nodeType": "YulFunctionCall",
"src": "27181:22:9"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "27142:2:9"
},
"nodeType": "YulFunctionCall",
"src": "27142:62:9"
},
"nodeType": "YulIf",
"src": "27139:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27243:2:9",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "27247:10:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27236:6:9"
},
"nodeType": "YulFunctionCall",
"src": "27236:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "27236:22:9"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27012:6:9",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "27020:4:9",
"type": ""
}
],
"src": "26983:281:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27313:190:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27323:33:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27350:5:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "27332:17:9"
},
"nodeType": "YulFunctionCall",
"src": "27332:24:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27323:5:9"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "27446:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "27448:16:9"
},
"nodeType": "YulFunctionCall",
"src": "27448:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "27448:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27371:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27378:66:9",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "27368:2:9"
},
"nodeType": "YulFunctionCall",
"src": "27368:77:9"
},
"nodeType": "YulIf",
"src": "27365:103:9"
},
{
"nodeType": "YulAssignment",
"src": "27477:20:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27488:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27495:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27484:3:9"
},
"nodeType": "YulFunctionCall",
"src": "27484:13:9"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "27477:3:9"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27299:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "27309:3:9",
"type": ""
}
],
"src": "27270:233:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27537:152:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27554:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27557:77:9",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27547:6:9"
},
"nodeType": "YulFunctionCall",
"src": "27547:88:9"
},
"nodeType": "YulExpressionStatement",
"src": "27547:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27651:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27654:4:9",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27644:6:9"
},
"nodeType": "YulFunctionCall",
"src": "27644:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "27644:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27675:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27678:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "27668:6:9"
},
"nodeType": "YulFunctionCall",
"src": "27668:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "27668:15:9"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "27509:180:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27723:152:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27740:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27743:77:9",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27733:6:9"
},
"nodeType": "YulFunctionCall",
"src": "27733:88:9"
},
"nodeType": "YulExpressionStatement",
"src": "27733:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27837:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27840:4:9",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27830:6:9"
},
"nodeType": "YulFunctionCall",
"src": "27830:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "27830:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27861:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27864:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "27854:6:9"
},
"nodeType": "YulFunctionCall",
"src": "27854:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "27854:15:9"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "27695:180:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27909:152:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27926:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27929:77:9",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27919:6:9"
},
"nodeType": "YulFunctionCall",
"src": "27919:88:9"
},
"nodeType": "YulExpressionStatement",
"src": "27919:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28023:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28026:4:9",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28016:6:9"
},
"nodeType": "YulFunctionCall",
"src": "28016:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "28016:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28047:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28050:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28040:6:9"
},
"nodeType": "YulFunctionCall",
"src": "28040:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "28040:15:9"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "27881:180:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28095:152:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28112:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28115:77:9",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28105:6:9"
},
"nodeType": "YulFunctionCall",
"src": "28105:88:9"
},
"nodeType": "YulExpressionStatement",
"src": "28105:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28209:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28212:4:9",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28202:6:9"
},
"nodeType": "YulFunctionCall",
"src": "28202:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "28202:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28233:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28236:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28226:6:9"
},
"nodeType": "YulFunctionCall",
"src": "28226:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "28226:15:9"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "28067:180:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28292:144:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "28329:101:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28358:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28361:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28364:1:9",
"type": "",
"value": "4"
}
],
"functionName": {
"name": "returndatacopy",
"nodeType": "YulIdentifier",
"src": "28343:14:9"
},
"nodeType": "YulFunctionCall",
"src": "28343:23:9"
},
"nodeType": "YulExpressionStatement",
"src": "28343:23:9"
},
{
"nodeType": "YulAssignment",
"src": "28379:41:9",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28417:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "28411:5:9"
},
"nodeType": "YulFunctionCall",
"src": "28411:8:9"
}
],
"functionName": {
"name": "shift_right_224_unsigned",
"nodeType": "YulIdentifier",
"src": "28386:24:9"
},
"nodeType": "YulFunctionCall",
"src": "28386:34:9"
},
"variableNames": [
{
"name": "sig",
"nodeType": "YulIdentifier",
"src": "28379:3:9"
}
]
}
]
},
"condition": {
"arguments": [
{
"arguments": [],
"functionName": {
"name": "returndatasize",
"nodeType": "YulIdentifier",
"src": "28308:14:9"
},
"nodeType": "YulFunctionCall",
"src": "28308:16:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28326:1:9",
"type": "",
"value": "3"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "28305:2:9"
},
"nodeType": "YulFunctionCall",
"src": "28305:23:9"
},
"nodeType": "YulIf",
"src": "28302:128:9"
}
]
},
"name": "return_data_selector",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "sig",
"nodeType": "YulTypedName",
"src": "28288:3:9",
"type": ""
}
],
"src": "28253:183:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28531:28:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28548:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28551:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28541:6:9"
},
"nodeType": "YulFunctionCall",
"src": "28541:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "28541:12:9"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "28442:117:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28654:28:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28671:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28674:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28664:6:9"
},
"nodeType": "YulFunctionCall",
"src": "28664:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "28664:12:9"
}
]
},
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulFunctionDefinition",
"src": "28565:117:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28777:28:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28794:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28797:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28787:6:9"
},
"nodeType": "YulFunctionCall",
"src": "28787:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "28787:12:9"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "28688:117:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28900:28:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28917:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28920:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28910:6:9"
},
"nodeType": "YulFunctionCall",
"src": "28910:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "28910:12:9"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "28811:117:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29023:28:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29040:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29043:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29033:6:9"
},
"nodeType": "YulFunctionCall",
"src": "29033:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "29033:12:9"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "28934:117:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29105:54:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29115:38:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29133:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29140:2:9",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29129:3:9"
},
"nodeType": "YulFunctionCall",
"src": "29129:14:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29149:2:9",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "29145:3:9"
},
"nodeType": "YulFunctionCall",
"src": "29145:7:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "29125:3:9"
},
"nodeType": "YulFunctionCall",
"src": "29125:28:9"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "29115:6:9"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29088:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "29098:6:9",
"type": ""
}
],
"src": "29057:102:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29218:53:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29228:36:9",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29253:3:9",
"type": "",
"value": "224"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29258:5:9"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "29249:3:9"
},
"nodeType": "YulFunctionCall",
"src": "29249:15:9"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "29228:8:9"
}
]
}
]
},
"name": "shift_right_224_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29199:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "29209:8:9",
"type": ""
}
],
"src": "29165:106:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29383:133:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29405:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29413:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29401:3:9"
},
"nodeType": "YulFunctionCall",
"src": "29401:14:9"
},
{
"hexValue": "455243313135353a207472616e7366657220746f206e6f6e2045524331313535",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29417:34:9",
"type": "",
"value": "ERC1155: transfer to non ERC1155"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29394:6:9"
},
"nodeType": "YulFunctionCall",
"src": "29394:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "29394:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29473:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29481:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29469:3:9"
},
"nodeType": "YulFunctionCall",
"src": "29469:15:9"
},
{
"hexValue": "526563656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29486:22:9",
"type": "",
"value": "Receiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29462:6:9"
},
"nodeType": "YulFunctionCall",
"src": "29462:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "29462:47:9"
}
]
},
"name": "store_literal_in_memory_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "29375:6:9",
"type": ""
}
],
"src": "29277:239:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29628:128:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29650:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29658:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29646:3:9"
},
"nodeType": "YulFunctionCall",
"src": "29646:14:9"
},
{
"hexValue": "455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29662:34:9",
"type": "",
"value": "ERC1155: caller is not token own"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29639:6:9"
},
"nodeType": "YulFunctionCall",
"src": "29639:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "29639:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29718:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29726:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29714:3:9"
},
"nodeType": "YulFunctionCall",
"src": "29714:15:9"
},
{
"hexValue": "6572206e6f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29731:17:9",
"type": "",
"value": "er nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29707:6:9"
},
"nodeType": "YulFunctionCall",
"src": "29707:42:9"
},
"nodeType": "YulExpressionStatement",
"src": "29707:42:9"
}
]
},
"name": "store_literal_in_memory_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "29620:6:9",
"type": ""
}
],
"src": "29522:234:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29868:121:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29890:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29898:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29886:3:9"
},
"nodeType": "YulFunctionCall",
"src": "29886:14:9"
},
{
"hexValue": "455243313135353a204552433131353552656365697665722072656a65637465",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29902:34:9",
"type": "",
"value": "ERC1155: ERC1155Receiver rejecte"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29879:6:9"
},
"nodeType": "YulFunctionCall",
"src": "29879:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "29879:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29958:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29966:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29954:3:9"
},
"nodeType": "YulFunctionCall",
"src": "29954:15:9"
},
{
"hexValue": "6420746f6b656e73",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29971:10:9",
"type": "",
"value": "d tokens"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29947:6:9"
},
"nodeType": "YulFunctionCall",
"src": "29947:35:9"
},
"nodeType": "YulExpressionStatement",
"src": "29947:35:9"
}
]
},
"name": "store_literal_in_memory_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "29860:6:9",
"type": ""
}
],
"src": "29762:227:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30101:123:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30123:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30131:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30119:3:9"
},
"nodeType": "YulFunctionCall",
"src": "30119:14:9"
},
{
"hexValue": "455243313135353a2061646472657373207a65726f206973206e6f7420612076",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30135:34:9",
"type": "",
"value": "ERC1155: address zero is not a v"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30112:6:9"
},
"nodeType": "YulFunctionCall",
"src": "30112:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "30112:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30191:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30199:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30187:3:9"
},
"nodeType": "YulFunctionCall",
"src": "30187:15:9"
},
{
"hexValue": "616c6964206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30204:12:9",
"type": "",
"value": "alid owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30180:6:9"
},
"nodeType": "YulFunctionCall",
"src": "30180:37:9"
},
"nodeType": "YulExpressionStatement",
"src": "30180:37:9"
}
]
},
"name": "store_literal_in_memory_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "30093:6:9",
"type": ""
}
],
"src": "29995:229:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30336:118:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30358:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30366:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30354:3:9"
},
"nodeType": "YulFunctionCall",
"src": "30354:14:9"
},
{
"hexValue": "455243313135353a207472616e7366657220746f20746865207a65726f206164",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30370:34:9",
"type": "",
"value": "ERC1155: transfer to the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30347:6:9"
},
"nodeType": "YulFunctionCall",
"src": "30347:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "30347:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30426:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30434:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30422:3:9"
},
"nodeType": "YulFunctionCall",
"src": "30422:15:9"
},
{
"hexValue": "6472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30439:7:9",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30415:6:9"
},
"nodeType": "YulFunctionCall",
"src": "30415:32:9"
},
"nodeType": "YulExpressionStatement",
"src": "30415:32:9"
}
]
},
"name": "store_literal_in_memory_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "30328:6:9",
"type": ""
}
],
"src": "30230:224:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30566:123:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30588:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30596:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30584:3:9"
},
"nodeType": "YulFunctionCall",
"src": "30584:14:9"
},
{
"hexValue": "455243313135353a20696e73756666696369656e742062616c616e636520666f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30600:34:9",
"type": "",
"value": "ERC1155: insufficient balance fo"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30577:6:9"
},
"nodeType": "YulFunctionCall",
"src": "30577:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "30577:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30656:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30664:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30652:3:9"
},
"nodeType": "YulFunctionCall",
"src": "30652:15:9"
},
{
"hexValue": "72207472616e73666572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30669:12:9",
"type": "",
"value": "r transfer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30645:6:9"
},
"nodeType": "YulFunctionCall",
"src": "30645:37:9"
},
"nodeType": "YulExpressionStatement",
"src": "30645:37:9"
}
]
},
"name": "store_literal_in_memory_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "30558:6:9",
"type": ""
}
],
"src": "30460:229:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30801:122:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30823:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30831:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30819:3:9"
},
"nodeType": "YulFunctionCall",
"src": "30819:14:9"
},
{
"hexValue": "455243313135353a2073657474696e6720617070726f76616c20737461747573",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30835:34:9",
"type": "",
"value": "ERC1155: setting approval status"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30812:6:9"
},
"nodeType": "YulFunctionCall",
"src": "30812:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "30812:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30891:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30899:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30887:3:9"
},
"nodeType": "YulFunctionCall",
"src": "30887:15:9"
},
{
"hexValue": "20666f722073656c66",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30904:11:9",
"type": "",
"value": " for self"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30880:6:9"
},
"nodeType": "YulFunctionCall",
"src": "30880:36:9"
},
"nodeType": "YulExpressionStatement",
"src": "30880:36:9"
}
]
},
"name": "store_literal_in_memory_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "30793:6:9",
"type": ""
}
],
"src": "30695:228:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31035:122:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31057:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31065:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31053:3:9"
},
"nodeType": "YulFunctionCall",
"src": "31053:14:9"
},
{
"hexValue": "455243313135353a206163636f756e747320616e6420696473206c656e677468",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31069:34:9",
"type": "",
"value": "ERC1155: accounts and ids length"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31046:6:9"
},
"nodeType": "YulFunctionCall",
"src": "31046:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "31046:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31125:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31133:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31121:3:9"
},
"nodeType": "YulFunctionCall",
"src": "31121:15:9"
},
{
"hexValue": "206d69736d61746368",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31138:11:9",
"type": "",
"value": " mismatch"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31114:6:9"
},
"nodeType": "YulFunctionCall",
"src": "31114:36:9"
},
"nodeType": "YulExpressionStatement",
"src": "31114:36:9"
}
]
},
"name": "store_literal_in_memory_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31027:6:9",
"type": ""
}
],
"src": "30929:228:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31269:121:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31291:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31299:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31287:3:9"
},
"nodeType": "YulFunctionCall",
"src": "31287:14:9"
},
{
"hexValue": "455243313135353a2069647320616e6420616d6f756e7473206c656e67746820",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31303:34:9",
"type": "",
"value": "ERC1155: ids and amounts length "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31280:6:9"
},
"nodeType": "YulFunctionCall",
"src": "31280:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "31280:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31359:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31367:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31355:3:9"
},
"nodeType": "YulFunctionCall",
"src": "31355:15:9"
},
{
"hexValue": "6d69736d61746368",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31372:10:9",
"type": "",
"value": "mismatch"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31348:6:9"
},
"nodeType": "YulFunctionCall",
"src": "31348:35:9"
},
"nodeType": "YulExpressionStatement",
"src": "31348:35:9"
}
]
},
"name": "store_literal_in_memory_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31261:6:9",
"type": ""
}
],
"src": "31163:227:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31439:668:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "31479:9:9",
"statements": [
{
"nodeType": "YulLeave",
"src": "31481:5:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [],
"functionName": {
"name": "returndatasize",
"nodeType": "YulIdentifier",
"src": "31455:14:9"
},
"nodeType": "YulFunctionCall",
"src": "31455:16:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31473:4:9",
"type": "",
"value": "0x44"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "31452:2:9"
},
"nodeType": "YulFunctionCall",
"src": "31452:26:9"
},
"nodeType": "YulIf",
"src": "31449:39:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "31498:32:9",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "31510:18:9"
},
"nodeType": "YulFunctionCall",
"src": "31510:20:9"
},
"variables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "31502:4:9",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "31554:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31560:1:9",
"type": "",
"value": "4"
},
{
"arguments": [
{
"arguments": [],
"functionName": {
"name": "returndatasize",
"nodeType": "YulIdentifier",
"src": "31567:14:9"
},
"nodeType": "YulFunctionCall",
"src": "31567:16:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31585:1:9",
"type": "",
"value": "4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "31563:3:9"
},
"nodeType": "YulFunctionCall",
"src": "31563:24:9"
}
],
"functionName": {
"name": "returndatacopy",
"nodeType": "YulIdentifier",
"src": "31539:14:9"
},
"nodeType": "YulFunctionCall",
"src": "31539:49:9"
},
"nodeType": "YulExpressionStatement",
"src": "31539:49:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "31598:25:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "31618:4:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "31612:5:9"
},
"nodeType": "YulFunctionCall",
"src": "31612:11:9"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "31602:6:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "31749:29:9",
"statements": [
{
"nodeType": "YulLeave",
"src": "31763:5:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "31654:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31662:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "31651:2:9"
},
"nodeType": "YulFunctionCall",
"src": "31651:30:9"
},
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "31702:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31710:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31698:3:9"
},
"nodeType": "YulFunctionCall",
"src": "31698:17:9"
},
{
"arguments": [],
"functionName": {
"name": "returndatasize",
"nodeType": "YulIdentifier",
"src": "31717:14:9"
},
"nodeType": "YulFunctionCall",
"src": "31717:16:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "31695:2:9"
},
"nodeType": "YulFunctionCall",
"src": "31695:39:9"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "31635:2:9"
},
"nodeType": "YulFunctionCall",
"src": "31635:113:9"
},
"nodeType": "YulIf",
"src": "31632:146:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "31788:28:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "31803:4:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "31809:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31799:3:9"
},
"nodeType": "YulFunctionCall",
"src": "31799:17:9"
},
"variables": [
{
"name": "msg",
"nodeType": "YulTypedName",
"src": "31792:3:9",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "31825:24:9",
"value": {
"arguments": [
{
"name": "msg",
"nodeType": "YulIdentifier",
"src": "31845:3:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "31839:5:9"
},
"nodeType": "YulFunctionCall",
"src": "31839:10:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "31829:6:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "31892:9:9",
"statements": [
{
"nodeType": "YulLeave",
"src": "31894:5:9"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "31864:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31872:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "31861:2:9"
},
"nodeType": "YulFunctionCall",
"src": "31861:30:9"
},
"nodeType": "YulIf",
"src": "31858:43:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "31911:38:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "msg",
"nodeType": "YulIdentifier",
"src": "31930:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31935:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31926:3:9"
},
"nodeType": "YulFunctionCall",
"src": "31926:14:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "31942:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31922:3:9"
},
"nodeType": "YulFunctionCall",
"src": "31922:27:9"
},
"variables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "31915:3:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "32006:9:9",
"statements": [
{
"nodeType": "YulLeave",
"src": "32008:5:9"
}
]
},
"condition": {
"arguments": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "31964:3:9"
},
{
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "31973:4:9"
},
{
"arguments": [
{
"arguments": [],
"functionName": {
"name": "returndatasize",
"nodeType": "YulIdentifier",
"src": "31983:14:9"
},
"nodeType": "YulFunctionCall",
"src": "31983:16:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32001:1:9",
"type": "",
"value": "4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "31979:3:9"
},
"nodeType": "YulFunctionCall",
"src": "31979:24:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31969:3:9"
},
"nodeType": "YulFunctionCall",
"src": "31969:35:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "31961:2:9"
},
"nodeType": "YulFunctionCall",
"src": "31961:44:9"
},
"nodeType": "YulIf",
"src": "31958:57:9"
},
{
"expression": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "32045:4:9"
},
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "32055:6:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32067:4:9",
"type": "",
"value": "0x20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "32073:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32063:3:9"
},
"nodeType": "YulFunctionCall",
"src": "32063:17:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32051:3:9"
},
"nodeType": "YulFunctionCall",
"src": "32051:30:9"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "32025:19:9"
},
"nodeType": "YulFunctionCall",
"src": "32025:57:9"
},
"nodeType": "YulExpressionStatement",
"src": "32025:57:9"
},
{
"nodeType": "YulAssignment",
"src": "32091:10:9",
"value": {
"name": "msg",
"nodeType": "YulIdentifier",
"src": "32098:3:9"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "32091:3:9"
}
]
}
]
},
"name": "try_decode_error_message",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "31435:3:9",
"type": ""
}
],
"src": "31396:711:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32156:79:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "32213:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32222:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32225:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "32215:6:9"
},
"nodeType": "YulFunctionCall",
"src": "32215:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "32215:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32179:5:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32204:5:9"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "32186:17:9"
},
"nodeType": "YulFunctionCall",
"src": "32186:24:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "32176:2:9"
},
"nodeType": "YulFunctionCall",
"src": "32176:35:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "32169:6:9"
},
"nodeType": "YulFunctionCall",
"src": "32169:43:9"
},
"nodeType": "YulIf",
"src": "32166:63:9"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "32149:5:9",
"type": ""
}
],
"src": "32113:122:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32281:76:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "32335:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32344:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32347:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "32337:6:9"
},
"nodeType": "YulFunctionCall",
"src": "32337:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "32337:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32304:5:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32326:5:9"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "32311:14:9"
},
"nodeType": "YulFunctionCall",
"src": "32311:21:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "32301:2:9"
},
"nodeType": "YulFunctionCall",
"src": "32301:32:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "32294:6:9"
},
"nodeType": "YulFunctionCall",
"src": "32294:40:9"
},
"nodeType": "YulIf",
"src": "32291:60:9"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "32274:5:9",
"type": ""
}
],
"src": "32241:116:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32405:78:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "32461:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32470:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32473:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "32463:6:9"
},
"nodeType": "YulFunctionCall",
"src": "32463:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "32463:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32428:5:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32452:5:9"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "32435:16:9"
},
"nodeType": "YulFunctionCall",
"src": "32435:23:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "32425:2:9"
},
"nodeType": "YulFunctionCall",
"src": "32425:34:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "32418:6:9"
},
"nodeType": "YulFunctionCall",
"src": "32418:42:9"
},
"nodeType": "YulIf",
"src": "32415:62:9"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "32398:5:9",
"type": ""
}
],
"src": "32363:120:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32532:79:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "32589:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32598:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32601:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "32591:6:9"
},
"nodeType": "YulFunctionCall",
"src": "32591:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "32591:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32555:5:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32580:5:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "32562:17:9"
},
"nodeType": "YulFunctionCall",
"src": "32562:24:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "32552:2:9"
},
"nodeType": "YulFunctionCall",
"src": "32552:35:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "32545:6:9"
},
"nodeType": "YulFunctionCall",
"src": "32545:43:9"
},
"nodeType": "YulIf",
"src": "32542:63:9"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "32525:5:9",
"type": ""
}
],
"src": "32489:122:9"
}
]
},
"contents": "{\n\n // address[]\n function abi_decode_available_length_t_array$_t_address_$dyn_memory_ptr(offset, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_array$_t_address_$dyn_memory_ptr(length))\n let dst := array\n\n mstore(array, length)\n dst := add(array, 0x20)\n\n let src := offset\n if gt(add(src, mul(length, 0x20)), end) {\n revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef()\n }\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n\n let elementPos := src\n\n mstore(dst, abi_decode_t_address(elementPos, end))\n dst := add(dst, 0x20)\n src := add(src, 0x20)\n }\n }\n\n // uint256[]\n function abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr(offset, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr(length))\n let dst := array\n\n mstore(array, length)\n dst := add(array, 0x20)\n\n let src := offset\n if gt(add(src, mul(length, 0x20)), end) {\n revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef()\n }\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n\n let elementPos := src\n\n mstore(dst, abi_decode_t_uint256(elementPos, end))\n dst := add(dst, 0x20)\n src := add(src, 0x20)\n }\n }\n\n function abi_decode_available_length_t_bytes_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_bytes_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n // address[]\n function abi_decode_t_array$_t_address_$dyn_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_array$_t_address_$dyn_memory_ptr(add(offset, 0x20), length, end)\n }\n\n // uint256[]\n function abi_decode_t_array$_t_uint256_$dyn_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_array$_t_uint256_$dyn_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_bool(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n 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_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4 {\n if slt(sub(dataEnd, headStart), 160) { 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 := calldataload(add(headStart, 64))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value2 := abi_decode_t_array$_t_uint256_$dyn_memory_ptr(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_array$_t_uint256_$dyn_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 128))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value4 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4 {\n if slt(sub(dataEnd, headStart), 160) { 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 := 96\n\n value3 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 128))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value4 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_array$_t_address_$dyn_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_array$_t_uint256_$dyn_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_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 abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\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_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 52)\n store_literal_in_memory_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 47)\n store_literal_in_memory_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n store_literal_in_memory_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 42)\n store_literal_in_memory_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 42)\n store_literal_in_memory_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n store_literal_in_memory_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807(pos)\n end := add(pos, 64)\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_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart , value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 160)\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 mstore(add(headStart, 64), sub(tail, headStart))\n tail := abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value2, tail)\n\n mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value3, tail)\n\n mstore(add(headStart, 128), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value4, tail)\n\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart , value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 160)\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 abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n mstore(add(headStart, 128), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value4, tail)\n\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 abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\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 mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value1, tail)\n\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed__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_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370__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_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503__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_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad__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_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d__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_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf__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_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2__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_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5__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_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807__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_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_array$_t_address_$dyn_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := mul(length, 0x20)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := mul(length, 0x20)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_allocation_size_t_bytes_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function 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 array_length_t_array$_t_uint256_$dyn_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_nextElement_t_array$_t_uint256_$dyn_memory_ptr(ptr) -> next {\n next := add(ptr, 0x20)\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_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function 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 cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function return_data_selector() -> sig {\n if gt(returndatasize(), 3) {\n returndatacopy(0, 0, 4)\n sig := shift_right_224_unsigned(mload(0))\n }\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function shift_right_224_unsigned(value) -> newValue {\n newValue :=\n\n shr(224, value)\n\n }\n\n function store_literal_in_memory_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: transfer to non ERC1155\")\n\n mstore(add(memPtr, 32), \"Receiver implementer\")\n\n }\n\n function store_literal_in_memory_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: caller is not token own\")\n\n mstore(add(memPtr, 32), \"er nor approved\")\n\n }\n\n function store_literal_in_memory_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: ERC1155Receiver rejecte\")\n\n mstore(add(memPtr, 32), \"d tokens\")\n\n }\n\n function store_literal_in_memory_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: address zero is not a v\")\n\n mstore(add(memPtr, 32), \"alid owner\")\n\n }\n\n function store_literal_in_memory_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: transfer to the zero ad\")\n\n mstore(add(memPtr, 32), \"dress\")\n\n }\n\n function store_literal_in_memory_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: insufficient balance fo\")\n\n mstore(add(memPtr, 32), \"r transfer\")\n\n }\n\n function store_literal_in_memory_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: setting approval status\")\n\n mstore(add(memPtr, 32), \" for self\")\n\n }\n\n function store_literal_in_memory_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: accounts and ids length\")\n\n mstore(add(memPtr, 32), \" mismatch\")\n\n }\n\n function store_literal_in_memory_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: ids and amounts length \")\n\n mstore(add(memPtr, 32), \"mismatch\")\n\n }\n\n function try_decode_error_message() -> ret {\n if lt(returndatasize(), 0x44) { leave }\n\n let data := allocate_unbounded()\n returndatacopy(data, 4, sub(returndatasize(), 4))\n\n let offset := mload(data)\n if or(\n gt(offset, 0xffffffffffffffff),\n gt(add(offset, 0x24), returndatasize())\n ) {\n leave\n }\n\n let msg := add(data, offset)\n let length := mload(msg)\n if gt(length, 0xffffffffffffffff) { leave }\n\n let end := add(add(msg, 0x20), length)\n if gt(end, add(data, sub(returndatasize(), 4))) { leave }\n\n finalize_allocation(data, add(offset, add(0x20, length)))\n ret := msg\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 9,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100b35760003560e01c8063a22cb46511610071578063a22cb465146101b2578063af7e5db3146101ce578063e56a68d9146101ec578063e80499b31461020a578063e985e9c514610228578063f242432a14610258576100b3565b8062fdd58e146100b857806301ffc9a7146100e85780630e89341c1461011857806314f7b228146101485780632eb2c2d6146101665780634e1273f414610182575b600080fd5b6100d260048036038101906100cd91906117df565b610274565b6040516100df9190611df5565b60405180910390f35b61010260048036038101906100fd9190611897565b61033d565b60405161010f9190611c98565b60405180910390f35b610132600480360381019061012d91906118f1565b61041f565b60405161013f9190611cb3565b60405180910390f35b6101506104b3565b60405161015d9190611df5565b60405180910390f35b610180600480360381019061017b9190611639565b6104b8565b005b61019c6004803603810190610197919061181f565b610559565b6040516101a99190611c3f565b60405180910390f35b6101cc60048036038101906101c7919061179f565b610672565b005b6101d6610688565b6040516101e39190611df5565b60405180910390f35b6101f461068d565b6040516102019190611df5565b60405180910390f35b610212610692565b60405161021f9190611df5565b60405180910390f35b610242600480360381019061023d91906115f9565b610697565b60405161024f9190611c98565b60405180910390f35b610272600480360381019061026d9190611708565b61072b565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156102e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102dc90611d35565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061040857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104185750610417826107ef565b5b9050919050565b60606002805461042e90612064565b80601f016020809104026020016040519081016040528092919081815260200182805461045a90612064565b80156104a75780601f1061047c576101008083540402835291602001916104a7565b820191906000526020600020905b81548152906001019060200180831161048a57829003601f168201915b50505050509050919050565b600081565b6104c0610859565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610506575061050585610500610859565b610697565b5b610545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053c90611cf5565b60405180910390fd5b6105528585858585610861565b5050505050565b6060815183511461059f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059690611db5565b60405180910390fd5b6000835167ffffffffffffffff8111156105bc576105bb61219d565b5b6040519080825280602002602001820160405280156105ea5781602001602082028036833780820191505090505b50905060005b84518110156106675761063785828151811061060f5761060e61216e565b5b602002602001015185838151811061062a5761062961216e565b5b6020026020010151610274565b82828151811061064a5761064961216e565b5b60200260200101818152505080610660906120c7565b90506105f0565b508091505092915050565b61068461067d610859565b8383610b83565b5050565b600281565b600181565b600381565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610733610859565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610779575061077885610773610859565b610697565b5b6107b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107af90611cf5565b60405180910390fd5b6107c58585858585610cf0565b5050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b81518351146108a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089c90611dd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c90611d55565b60405180910390fd5b600061091f610859565b905061092f818787878787610f8c565b60005b8451811015610ae05760008582815181106109505761094f61216e565b5b60200260200101519050600085838151811061096f5761096e61216e565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0790611d75565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ac59190611f58565b9250508190555050505080610ad9906120c7565b9050610932565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610b57929190611c61565b60405180910390a4610b6d818787878787610f94565b610b7b818787878787610f9c565b505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990611d95565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ce39190611c98565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5790611d55565b60405180910390fd5b6000610d6a610859565b90506000610d7785611183565b90506000610d8485611183565b9050610d94838989858589610f8c565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015610e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2290611d75565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee09190611f58565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051610f5d929190611e10565b60405180910390a4610f73848a8a86868a610f94565b610f81848a8a8a8a8a6111fd565b505050505050505050565b505050505050565b505050505050565b610fbb8473ffffffffffffffffffffffffffffffffffffffff166107cc565b1561117b578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611001959493929190611b7d565b602060405180830381600087803b15801561101b57600080fd5b505af192505050801561104c57506040513d601f19601f8201168201806040525081019061104991906118c4565b60015b6110f2576110586121cc565b806308c379a014156110b5575061106d6124ec565b8061107857506110b7565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac9190611cb3565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990611cd5565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117090611d15565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156111a2576111a161219d565b5b6040519080825280602002602001820160405280156111d05781602001602082028036833780820191505090505b50905082816000815181106111e8576111e761216e565b5b60200260200101818152505080915050919050565b61121c8473ffffffffffffffffffffffffffffffffffffffff166107cc565b156113dc578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611262959493929190611be5565b602060405180830381600087803b15801561127c57600080fd5b505af19250505080156112ad57506040513d601f19601f820116820180604052508101906112aa91906118c4565b60015b611353576112b96121cc565b806308c379a0141561131657506112ce6124ec565b806112d95750611318565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d9190611cb3565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90611cd5565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190611d15565b60405180910390fd5b505b505050505050565b60006113f76113f284611e5e565b611e39565b9050808382526020820190508285602086028201111561141a576114196121f3565b5b60005b8581101561144a57816114308882611506565b84526020840193506020830192505060018101905061141d565b5050509392505050565b600061146761146284611e8a565b611e39565b9050808382526020820190508285602086028201111561148a576114896121f3565b5b60005b858110156114ba57816114a088826115e4565b84526020840193506020830192505060018101905061148d565b5050509392505050565b60006114d76114d284611eb6565b611e39565b9050828152602081018484840111156114f3576114f26121f8565b5b6114fe848285612022565b509392505050565b60008135905061151581612582565b92915050565b600082601f8301126115305761152f6121ee565b5b81356115408482602086016113e4565b91505092915050565b600082601f83011261155e5761155d6121ee565b5b813561156e848260208601611454565b91505092915050565b60008135905061158681612599565b92915050565b60008135905061159b816125b0565b92915050565b6000815190506115b0816125b0565b92915050565b600082601f8301126115cb576115ca6121ee565b5b81356115db8482602086016114c4565b91505092915050565b6000813590506115f3816125c7565b92915050565b600080604083850312156116105761160f612202565b5b600061161e85828601611506565b925050602061162f85828601611506565b9150509250929050565b600080600080600060a0868803121561165557611654612202565b5b600061166388828901611506565b955050602061167488828901611506565b945050604086013567ffffffffffffffff811115611695576116946121fd565b5b6116a188828901611549565b935050606086013567ffffffffffffffff8111156116c2576116c16121fd565b5b6116ce88828901611549565b925050608086013567ffffffffffffffff8111156116ef576116ee6121fd565b5b6116fb888289016115b6565b9150509295509295909350565b600080600080600060a0868803121561172457611723612202565b5b600061173288828901611506565b955050602061174388828901611506565b9450506040611754888289016115e4565b9350506060611765888289016115e4565b925050608086013567ffffffffffffffff811115611786576117856121fd565b5b611792888289016115b6565b9150509295509295909350565b600080604083850312156117b6576117b5612202565b5b60006117c485828601611506565b92505060206117d585828601611577565b9150509250929050565b600080604083850312156117f6576117f5612202565b5b600061180485828601611506565b9250506020611815858286016115e4565b9150509250929050565b6000806040838503121561183657611835612202565b5b600083013567ffffffffffffffff811115611854576118536121fd565b5b6118608582860161151b565b925050602083013567ffffffffffffffff811115611881576118806121fd565b5b61188d85828601611549565b9150509250929050565b6000602082840312156118ad576118ac612202565b5b60006118bb8482850161158c565b91505092915050565b6000602082840312156118da576118d9612202565b5b60006118e8848285016115a1565b91505092915050565b60006020828403121561190757611906612202565b5b6000611915848285016115e4565b91505092915050565b600061192a8383611b5f565b60208301905092915050565b61193f81611fae565b82525050565b600061195082611ef7565b61195a8185611f25565b935061196583611ee7565b8060005b8381101561199657815161197d888261191e565b975061198883611f18565b925050600181019050611969565b5085935050505092915050565b6119ac81611fc0565b82525050565b60006119bd82611f02565b6119c78185611f36565b93506119d7818560208601612031565b6119e081612207565b840191505092915050565b60006119f682611f0d565b611a008185611f47565b9350611a10818560208601612031565b611a1981612207565b840191505092915050565b6000611a31603483611f47565b9150611a3c82612225565b604082019050919050565b6000611a54602f83611f47565b9150611a5f82612274565b604082019050919050565b6000611a77602883611f47565b9150611a82826122c3565b604082019050919050565b6000611a9a602a83611f47565b9150611aa582612312565b604082019050919050565b6000611abd602583611f47565b9150611ac882612361565b604082019050919050565b6000611ae0602a83611f47565b9150611aeb826123b0565b604082019050919050565b6000611b03602983611f47565b9150611b0e826123ff565b604082019050919050565b6000611b26602983611f47565b9150611b318261244e565b604082019050919050565b6000611b49602883611f47565b9150611b548261249d565b604082019050919050565b611b6881612018565b82525050565b611b7781612018565b82525050565b600060a082019050611b926000830188611936565b611b9f6020830187611936565b8181036040830152611bb18186611945565b90508181036060830152611bc58185611945565b90508181036080830152611bd981846119b2565b90509695505050505050565b600060a082019050611bfa6000830188611936565b611c076020830187611936565b611c146040830186611b6e565b611c216060830185611b6e565b8181036080830152611c3381846119b2565b90509695505050505050565b60006020820190508181036000830152611c598184611945565b905092915050565b60006040820190508181036000830152611c7b8185611945565b90508181036020830152611c8f8184611945565b90509392505050565b6000602082019050611cad60008301846119a3565b92915050565b60006020820190508181036000830152611ccd81846119eb565b905092915050565b60006020820190508181036000830152611cee81611a24565b9050919050565b60006020820190508181036000830152611d0e81611a47565b9050919050565b60006020820190508181036000830152611d2e81611a6a565b9050919050565b60006020820190508181036000830152611d4e81611a8d565b9050919050565b60006020820190508181036000830152611d6e81611ab0565b9050919050565b60006020820190508181036000830152611d8e81611ad3565b9050919050565b60006020820190508181036000830152611dae81611af6565b9050919050565b60006020820190508181036000830152611dce81611b19565b9050919050565b60006020820190508181036000830152611dee81611b3c565b9050919050565b6000602082019050611e0a6000830184611b6e565b92915050565b6000604082019050611e256000830185611b6e565b611e326020830184611b6e565b9392505050565b6000611e43611e54565b9050611e4f8282612096565b919050565b6000604051905090565b600067ffffffffffffffff821115611e7957611e7861219d565b5b602082029050602081019050919050565b600067ffffffffffffffff821115611ea557611ea461219d565b5b602082029050602081019050919050565b600067ffffffffffffffff821115611ed157611ed061219d565b5b611eda82612207565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000611f6382612018565b9150611f6e83612018565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611fa357611fa2612110565b5b828201905092915050565b6000611fb982611ff8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561204f578082015181840152602081019050612034565b8381111561205e576000848401525b50505050565b6000600282049050600182168061207c57607f821691505b602082108114156120905761208f61213f565b5b50919050565b61209f82612207565b810181811067ffffffffffffffff821117156120be576120bd61219d565b5b80604052505050565b60006120d282612018565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561210557612104612110565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156121eb5760046000803e6121e8600051612218565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600060443d10156124fc5761257f565b612504611e54565b60043d036004823e80513d602482011167ffffffffffffffff8211171561252c57505061257f565b808201805167ffffffffffffffff81111561254a575050505061257f565b80602083010160043d03850181111561256757505050505061257f565b61257682602001850186612096565b82955050505050505b90565b61258b81611fae565b811461259657600080fd5b50565b6125a281611fc0565b81146125ad57600080fd5b50565b6125b981611fcc565b81146125c457600080fd5b50565b6125d081612018565b81146125db57600080fd5b5056fea26469706673582212202dfe27d4441c486a68e4ff0c97a2f5f950b5d55c9764c6a0e4e36402a54af50464736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xB3 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xA22CB465 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x1B2 JUMPI DUP1 PUSH4 0xAF7E5DB3 EQ PUSH2 0x1CE JUMPI DUP1 PUSH4 0xE56A68D9 EQ PUSH2 0x1EC JUMPI DUP1 PUSH4 0xE80499B3 EQ PUSH2 0x20A JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x228 JUMPI DUP1 PUSH4 0xF242432A EQ PUSH2 0x258 JUMPI PUSH2 0xB3 JUMP JUMPDEST DUP1 PUSH3 0xFDD58E EQ PUSH2 0xB8 JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xE8 JUMPI DUP1 PUSH4 0xE89341C EQ PUSH2 0x118 JUMPI DUP1 PUSH4 0x14F7B228 EQ PUSH2 0x148 JUMPI DUP1 PUSH4 0x2EB2C2D6 EQ PUSH2 0x166 JUMPI DUP1 PUSH4 0x4E1273F4 EQ PUSH2 0x182 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xCD SWAP2 SWAP1 PUSH2 0x17DF JUMP JUMPDEST PUSH2 0x274 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xDF SWAP2 SWAP1 PUSH2 0x1DF5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x102 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xFD SWAP2 SWAP1 PUSH2 0x1897 JUMP JUMPDEST PUSH2 0x33D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10F SWAP2 SWAP1 PUSH2 0x1C98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x132 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12D SWAP2 SWAP1 PUSH2 0x18F1 JUMP JUMPDEST PUSH2 0x41F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13F SWAP2 SWAP1 PUSH2 0x1CB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x150 PUSH2 0x4B3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15D SWAP2 SWAP1 PUSH2 0x1DF5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x180 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17B SWAP2 SWAP1 PUSH2 0x1639 JUMP JUMPDEST PUSH2 0x4B8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x19C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x197 SWAP2 SWAP1 PUSH2 0x181F JUMP JUMPDEST PUSH2 0x559 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A9 SWAP2 SWAP1 PUSH2 0x1C3F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C7 SWAP2 SWAP1 PUSH2 0x179F JUMP JUMPDEST PUSH2 0x672 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1D6 PUSH2 0x688 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1E3 SWAP2 SWAP1 PUSH2 0x1DF5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F4 PUSH2 0x68D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x201 SWAP2 SWAP1 PUSH2 0x1DF5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x212 PUSH2 0x692 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21F SWAP2 SWAP1 PUSH2 0x1DF5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x242 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x23D SWAP2 SWAP1 PUSH2 0x15F9 JUMP JUMPDEST PUSH2 0x697 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x24F SWAP2 SWAP1 PUSH2 0x1C98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x272 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x1708 JUMP JUMPDEST PUSH2 0x72B JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2E5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2DC SWAP1 PUSH2 0x1D35 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP4 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 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xD9B67A2600000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x408 JUMPI POP PUSH32 0xE89341C00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x418 JUMPI POP PUSH2 0x417 DUP3 PUSH2 0x7EF JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD PUSH2 0x42E SWAP1 PUSH2 0x2064 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 0x45A SWAP1 PUSH2 0x2064 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4A7 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x47C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x4A7 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 0x48A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 JUMP JUMPDEST PUSH2 0x4C0 PUSH2 0x859 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x506 JUMPI POP PUSH2 0x505 DUP6 PUSH2 0x500 PUSH2 0x859 JUMP JUMPDEST PUSH2 0x697 JUMP JUMPDEST JUMPDEST PUSH2 0x545 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x53C SWAP1 PUSH2 0x1CF5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x552 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0x861 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MLOAD DUP4 MLOAD EQ PUSH2 0x59F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x596 SWAP1 PUSH2 0x1DB5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5BC JUMPI PUSH2 0x5BB PUSH2 0x219D 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 0x5EA JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x667 JUMPI PUSH2 0x637 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x60F JUMPI PUSH2 0x60E PUSH2 0x216E JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP6 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x62A JUMPI PUSH2 0x629 PUSH2 0x216E JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x274 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x64A JUMPI PUSH2 0x649 PUSH2 0x216E JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 PUSH2 0x660 SWAP1 PUSH2 0x20C7 JUMP JUMPDEST SWAP1 POP PUSH2 0x5F0 JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x684 PUSH2 0x67D PUSH2 0x859 JUMP JUMPDEST DUP4 DUP4 PUSH2 0xB83 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMP JUMPDEST PUSH1 0x3 DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x733 PUSH2 0x859 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x779 JUMPI POP PUSH2 0x778 DUP6 PUSH2 0x773 PUSH2 0x859 JUMP JUMPDEST PUSH2 0x697 JUMP JUMPDEST JUMPDEST PUSH2 0x7B8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7AF SWAP1 PUSH2 0x1CF5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7C5 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0xCF0 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 MLOAD DUP4 MLOAD EQ PUSH2 0x8A5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x89C SWAP1 PUSH2 0x1DD5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x915 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x90C SWAP1 PUSH2 0x1D55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x91F PUSH2 0x859 JUMP JUMPDEST SWAP1 POP PUSH2 0x92F DUP2 DUP8 DUP8 DUP8 DUP8 DUP8 PUSH2 0xF8C JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0xAE0 JUMPI PUSH1 0x0 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x950 JUMPI PUSH2 0x94F PUSH2 0x216E JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x0 DUP6 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x96F JUMPI PUSH2 0x96E PUSH2 0x216E JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xA10 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA07 SWAP1 PUSH2 0x1D75 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP13 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP12 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 0xAC5 SWAP2 SWAP1 PUSH2 0x1F58 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP POP DUP1 PUSH2 0xAD9 SWAP1 PUSH2 0x20C7 JUMP JUMPDEST SWAP1 POP PUSH2 0x932 JUMP JUMPDEST POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x4A39DC06D4C0DBC64B70AF90FD698A233A518AA5D07E595D983B8C0526C8F7FB DUP8 DUP8 PUSH1 0x40 MLOAD PUSH2 0xB57 SWAP3 SWAP2 SWAP1 PUSH2 0x1C61 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0xB6D DUP2 DUP8 DUP8 DUP8 DUP8 DUP8 PUSH2 0xF94 JUMP JUMPDEST PUSH2 0xB7B DUP2 DUP8 DUP8 DUP8 DUP8 DUP8 PUSH2 0xF9C JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xBF2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBE9 SWAP1 PUSH2 0x1D95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 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 0xCE3 SWAP2 SWAP1 PUSH2 0x1C98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xD60 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD57 SWAP1 PUSH2 0x1D55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xD6A PUSH2 0x859 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xD77 DUP6 PUSH2 0x1183 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xD84 DUP6 PUSH2 0x1183 JUMP JUMPDEST SWAP1 POP PUSH2 0xD94 DUP4 DUP10 DUP10 DUP6 DUP6 DUP10 PUSH2 0xF8C JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP11 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP6 DUP2 LT ISZERO PUSH2 0xE2B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE22 SWAP1 PUSH2 0x1D75 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP6 DUP2 SUB PUSH1 0x0 DUP1 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP6 PUSH1 0x0 DUP1 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP11 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 0xEE0 SWAP2 SWAP1 PUSH2 0x1F58 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xC3D58168C5AE7397731D063D5BBF3D657854427343F4C083240F7AACAA2D0F62 DUP11 DUP11 PUSH1 0x40 MLOAD PUSH2 0xF5D SWAP3 SWAP2 SWAP1 PUSH2 0x1E10 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0xF73 DUP5 DUP11 DUP11 DUP7 DUP7 DUP11 PUSH2 0xF94 JUMP JUMPDEST PUSH2 0xF81 DUP5 DUP11 DUP11 DUP11 DUP11 DUP11 PUSH2 0x11FD JUMP JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0xFBB DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x7CC JUMP JUMPDEST ISZERO PUSH2 0x117B JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xBC197C81 DUP8 DUP8 DUP7 DUP7 DUP7 PUSH1 0x40 MLOAD DUP7 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1001 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1B7D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x101B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x104C 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 0x1049 SWAP2 SWAP1 PUSH2 0x18C4 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x10F2 JUMPI PUSH2 0x1058 PUSH2 0x21CC JUMP JUMPDEST DUP1 PUSH4 0x8C379A0 EQ ISZERO PUSH2 0x10B5 JUMPI POP PUSH2 0x106D PUSH2 0x24EC JUMP JUMPDEST DUP1 PUSH2 0x1078 JUMPI POP PUSH2 0x10B7 JUMP JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10AC SWAP2 SWAP1 PUSH2 0x1CB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10E9 SWAP1 PUSH2 0x1CD5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH4 0xBC197C81 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ PUSH2 0x1179 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1170 SWAP1 PUSH2 0x1D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x1 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x11A2 JUMPI PUSH2 0x11A1 PUSH2 0x219D 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 0x11D0 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 DUP3 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x11E8 JUMPI PUSH2 0x11E7 PUSH2 0x216E JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x121C DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x7CC JUMP JUMPDEST ISZERO PUSH2 0x13DC JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xF23A6E61 DUP8 DUP8 DUP7 DUP7 DUP7 PUSH1 0x40 MLOAD DUP7 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1262 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1BE5 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x127C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x12AD 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 0x12AA SWAP2 SWAP1 PUSH2 0x18C4 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1353 JUMPI PUSH2 0x12B9 PUSH2 0x21CC JUMP JUMPDEST DUP1 PUSH4 0x8C379A0 EQ ISZERO PUSH2 0x1316 JUMPI POP PUSH2 0x12CE PUSH2 0x24EC JUMP JUMPDEST DUP1 PUSH2 0x12D9 JUMPI POP PUSH2 0x1318 JUMP JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x130D SWAP2 SWAP1 PUSH2 0x1CB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x134A SWAP1 PUSH2 0x1CD5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH4 0xF23A6E61 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ PUSH2 0x13DA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13D1 SWAP1 PUSH2 0x1D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x13F7 PUSH2 0x13F2 DUP5 PUSH2 0x1E5E JUMP JUMPDEST PUSH2 0x1E39 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP DUP3 DUP6 PUSH1 0x20 DUP7 MUL DUP3 ADD GT ISZERO PUSH2 0x141A JUMPI PUSH2 0x1419 PUSH2 0x21F3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x144A JUMPI DUP2 PUSH2 0x1430 DUP9 DUP3 PUSH2 0x1506 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x20 DUP4 ADD SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x141D JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1467 PUSH2 0x1462 DUP5 PUSH2 0x1E8A JUMP JUMPDEST PUSH2 0x1E39 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP DUP3 DUP6 PUSH1 0x20 DUP7 MUL DUP3 ADD GT ISZERO PUSH2 0x148A JUMPI PUSH2 0x1489 PUSH2 0x21F3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x14BA JUMPI DUP2 PUSH2 0x14A0 DUP9 DUP3 PUSH2 0x15E4 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x20 DUP4 ADD SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x148D JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x14D7 PUSH2 0x14D2 DUP5 PUSH2 0x1EB6 JUMP JUMPDEST PUSH2 0x1E39 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x14F3 JUMPI PUSH2 0x14F2 PUSH2 0x21F8 JUMP JUMPDEST JUMPDEST PUSH2 0x14FE DUP5 DUP3 DUP6 PUSH2 0x2022 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1515 DUP2 PUSH2 0x2582 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1530 JUMPI PUSH2 0x152F PUSH2 0x21EE JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1540 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x13E4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x155E JUMPI PUSH2 0x155D PUSH2 0x21EE JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x156E DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1454 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1586 DUP2 PUSH2 0x2599 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x159B DUP2 PUSH2 0x25B0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x15B0 DUP2 PUSH2 0x25B0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x15CB JUMPI PUSH2 0x15CA PUSH2 0x21EE JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x15DB DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x14C4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x15F3 DUP2 PUSH2 0x25C7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1610 JUMPI PUSH2 0x160F PUSH2 0x2202 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x161E DUP6 DUP3 DUP7 ADD PUSH2 0x1506 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x162F DUP6 DUP3 DUP7 ADD PUSH2 0x1506 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x1655 JUMPI PUSH2 0x1654 PUSH2 0x2202 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1663 DUP9 DUP3 DUP10 ADD PUSH2 0x1506 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0x1674 DUP9 DUP3 DUP10 ADD PUSH2 0x1506 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1695 JUMPI PUSH2 0x1694 PUSH2 0x21FD JUMP JUMPDEST JUMPDEST PUSH2 0x16A1 DUP9 DUP3 DUP10 ADD PUSH2 0x1549 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x16C2 JUMPI PUSH2 0x16C1 PUSH2 0x21FD JUMP JUMPDEST JUMPDEST PUSH2 0x16CE DUP9 DUP3 DUP10 ADD PUSH2 0x1549 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x16EF JUMPI PUSH2 0x16EE PUSH2 0x21FD JUMP JUMPDEST JUMPDEST PUSH2 0x16FB DUP9 DUP3 DUP10 ADD PUSH2 0x15B6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x1724 JUMPI PUSH2 0x1723 PUSH2 0x2202 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1732 DUP9 DUP3 DUP10 ADD PUSH2 0x1506 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0x1743 DUP9 DUP3 DUP10 ADD PUSH2 0x1506 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH2 0x1754 DUP9 DUP3 DUP10 ADD PUSH2 0x15E4 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 PUSH2 0x1765 DUP9 DUP3 DUP10 ADD PUSH2 0x15E4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1786 JUMPI PUSH2 0x1785 PUSH2 0x21FD JUMP JUMPDEST JUMPDEST PUSH2 0x1792 DUP9 DUP3 DUP10 ADD PUSH2 0x15B6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x17B6 JUMPI PUSH2 0x17B5 PUSH2 0x2202 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x17C4 DUP6 DUP3 DUP7 ADD PUSH2 0x1506 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x17D5 DUP6 DUP3 DUP7 ADD PUSH2 0x1577 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x17F6 JUMPI PUSH2 0x17F5 PUSH2 0x2202 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1804 DUP6 DUP3 DUP7 ADD PUSH2 0x1506 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1815 DUP6 DUP3 DUP7 ADD PUSH2 0x15E4 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1836 JUMPI PUSH2 0x1835 PUSH2 0x2202 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1854 JUMPI PUSH2 0x1853 PUSH2 0x21FD JUMP JUMPDEST JUMPDEST PUSH2 0x1860 DUP6 DUP3 DUP7 ADD PUSH2 0x151B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1881 JUMPI PUSH2 0x1880 PUSH2 0x21FD JUMP JUMPDEST JUMPDEST PUSH2 0x188D DUP6 DUP3 DUP7 ADD PUSH2 0x1549 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x18AD JUMPI PUSH2 0x18AC PUSH2 0x2202 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x18BB DUP5 DUP3 DUP6 ADD PUSH2 0x158C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x18DA JUMPI PUSH2 0x18D9 PUSH2 0x2202 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x18E8 DUP5 DUP3 DUP6 ADD PUSH2 0x15A1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1907 JUMPI PUSH2 0x1906 PUSH2 0x2202 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1915 DUP5 DUP3 DUP6 ADD PUSH2 0x15E4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x192A DUP4 DUP4 PUSH2 0x1B5F JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x193F DUP2 PUSH2 0x1FAE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1950 DUP3 PUSH2 0x1EF7 JUMP JUMPDEST PUSH2 0x195A DUP2 DUP6 PUSH2 0x1F25 JUMP JUMPDEST SWAP4 POP PUSH2 0x1965 DUP4 PUSH2 0x1EE7 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1996 JUMPI DUP2 MLOAD PUSH2 0x197D DUP9 DUP3 PUSH2 0x191E JUMP JUMPDEST SWAP8 POP PUSH2 0x1988 DUP4 PUSH2 0x1F18 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x1969 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x19AC DUP2 PUSH2 0x1FC0 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19BD DUP3 PUSH2 0x1F02 JUMP JUMPDEST PUSH2 0x19C7 DUP2 DUP6 PUSH2 0x1F36 JUMP JUMPDEST SWAP4 POP PUSH2 0x19D7 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2031 JUMP JUMPDEST PUSH2 0x19E0 DUP2 PUSH2 0x2207 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19F6 DUP3 PUSH2 0x1F0D JUMP JUMPDEST PUSH2 0x1A00 DUP2 DUP6 PUSH2 0x1F47 JUMP JUMPDEST SWAP4 POP PUSH2 0x1A10 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2031 JUMP JUMPDEST PUSH2 0x1A19 DUP2 PUSH2 0x2207 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A31 PUSH1 0x34 DUP4 PUSH2 0x1F47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1A3C DUP3 PUSH2 0x2225 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A54 PUSH1 0x2F DUP4 PUSH2 0x1F47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1A5F DUP3 PUSH2 0x2274 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A77 PUSH1 0x28 DUP4 PUSH2 0x1F47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1A82 DUP3 PUSH2 0x22C3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A9A PUSH1 0x2A DUP4 PUSH2 0x1F47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1AA5 DUP3 PUSH2 0x2312 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1ABD PUSH1 0x25 DUP4 PUSH2 0x1F47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1AC8 DUP3 PUSH2 0x2361 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1AE0 PUSH1 0x2A DUP4 PUSH2 0x1F47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1AEB DUP3 PUSH2 0x23B0 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B03 PUSH1 0x29 DUP4 PUSH2 0x1F47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B0E DUP3 PUSH2 0x23FF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B26 PUSH1 0x29 DUP4 PUSH2 0x1F47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B31 DUP3 PUSH2 0x244E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B49 PUSH1 0x28 DUP4 PUSH2 0x1F47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B54 DUP3 PUSH2 0x249D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1B68 DUP2 PUSH2 0x2018 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1B77 DUP2 PUSH2 0x2018 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x1B92 PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x1936 JUMP JUMPDEST PUSH2 0x1B9F PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x1936 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x1BB1 DUP2 DUP7 PUSH2 0x1945 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1BC5 DUP2 DUP6 PUSH2 0x1945 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0x1BD9 DUP2 DUP5 PUSH2 0x19B2 JUMP JUMPDEST SWAP1 POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x1BFA PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x1936 JUMP JUMPDEST PUSH2 0x1C07 PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x1936 JUMP JUMPDEST PUSH2 0x1C14 PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x1B6E JUMP JUMPDEST PUSH2 0x1C21 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x1B6E JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0x1C33 DUP2 DUP5 PUSH2 0x19B2 JUMP JUMPDEST SWAP1 POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C59 DUP2 DUP5 PUSH2 0x1945 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C7B DUP2 DUP6 PUSH2 0x1945 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x1C8F DUP2 DUP5 PUSH2 0x1945 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1CAD PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x19A3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1CCD DUP2 DUP5 PUSH2 0x19EB JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1CEE DUP2 PUSH2 0x1A24 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D0E DUP2 PUSH2 0x1A47 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D2E DUP2 PUSH2 0x1A6A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D4E DUP2 PUSH2 0x1A8D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D6E DUP2 PUSH2 0x1AB0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D8E DUP2 PUSH2 0x1AD3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1DAE DUP2 PUSH2 0x1AF6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1DCE DUP2 PUSH2 0x1B19 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1DEE DUP2 PUSH2 0x1B3C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1E0A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1B6E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x1E25 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x1B6E JUMP JUMPDEST PUSH2 0x1E32 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1B6E JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E43 PUSH2 0x1E54 JUMP JUMPDEST SWAP1 POP PUSH2 0x1E4F DUP3 DUP3 PUSH2 0x2096 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1E79 JUMPI PUSH2 0x1E78 PUSH2 0x219D JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1EA5 JUMPI PUSH2 0x1EA4 PUSH2 0x219D JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1ED1 JUMPI PUSH2 0x1ED0 PUSH2 0x219D JUMP JUMPDEST JUMPDEST PUSH2 0x1EDA DUP3 PUSH2 0x2207 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F63 DUP3 PUSH2 0x2018 JUMP JUMPDEST SWAP2 POP PUSH2 0x1F6E DUP4 PUSH2 0x2018 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1FA3 JUMPI PUSH2 0x1FA2 PUSH2 0x2110 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1FB9 DUP3 PUSH2 0x1FF8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x204F JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2034 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x205E JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x207C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x2090 JUMPI PUSH2 0x208F PUSH2 0x213F JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x209F DUP3 PUSH2 0x2207 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x20BE JUMPI PUSH2 0x20BD PUSH2 0x219D JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x20D2 DUP3 PUSH2 0x2018 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x2105 JUMPI PUSH2 0x2104 PUSH2 0x2110 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x3 RETURNDATASIZE GT ISZERO PUSH2 0x21EB JUMPI PUSH1 0x4 PUSH1 0x0 DUP1 RETURNDATACOPY PUSH2 0x21E8 PUSH1 0x0 MLOAD PUSH2 0x2218 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0xE0 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x455243313135353A207472616E7366657220746F206E6F6E2045524331313535 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x526563656976657220696D706C656D656E746572000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A2063616C6C6572206973206E6F7420746F6B656E206F776E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6572206E6F7220617070726F7665640000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A204552433131353552656365697665722072656A65637465 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6420746F6B656E73000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A2061646472657373207A65726F206973206E6F7420612076 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C6964206F776E657200000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A207472616E7366657220746F20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A20696E73756666696369656E742062616C616E636520666F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x72207472616E7366657200000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A2073657474696E6720617070726F76616C20737461747573 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x20666F722073656C660000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A206163636F756E747320616E6420696473206C656E677468 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x206D69736D617463680000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A2069647320616E6420616D6F756E7473206C656E67746820 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6D69736D61746368000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x44 RETURNDATASIZE LT ISZERO PUSH2 0x24FC JUMPI PUSH2 0x257F JUMP JUMPDEST PUSH2 0x2504 PUSH2 0x1E54 JUMP JUMPDEST PUSH1 0x4 RETURNDATASIZE SUB PUSH1 0x4 DUP3 RETURNDATACOPY DUP1 MLOAD RETURNDATASIZE PUSH1 0x24 DUP3 ADD GT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x252C JUMPI POP POP PUSH2 0x257F JUMP JUMPDEST DUP1 DUP3 ADD DUP1 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x254A JUMPI POP POP POP POP PUSH2 0x257F JUMP JUMPDEST DUP1 PUSH1 0x20 DUP4 ADD ADD PUSH1 0x4 RETURNDATASIZE SUB DUP6 ADD DUP2 GT ISZERO PUSH2 0x2567 JUMPI POP POP POP POP POP PUSH2 0x257F JUMP JUMPDEST PUSH2 0x2576 DUP3 PUSH1 0x20 ADD DUP6 ADD DUP7 PUSH2 0x2096 JUMP JUMPDEST DUP3 SWAP6 POP POP POP POP POP POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH2 0x258B DUP2 PUSH2 0x1FAE JUMP JUMPDEST DUP2 EQ PUSH2 0x2596 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x25A2 DUP2 PUSH2 0x1FC0 JUMP JUMPDEST DUP2 EQ PUSH2 0x25AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x25B9 DUP2 PUSH2 0x1FCC JUMP JUMPDEST DUP2 EQ PUSH2 0x25C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x25D0 DUP2 PUSH2 0x2018 JUMP JUMPDEST DUP2 EQ PUSH2 0x25DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2D INVALID 0x27 0xD4 DIFFICULTY SHR BASEFEE PUSH11 0x68E4FF0C97A2F5F950B5D5 0x5C SWAP8 PUSH5 0xC6A0E4E364 MUL 0xA5 0x4A CREATE2 DIV PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "127:586:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2185:227:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1236:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1940:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;167:36:8;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4065:427:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2569:508;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3145:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;262:46:8;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;209:47;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;314;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3365:166:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3598:395;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2185:227;2271:7;2317:1;2298:21;;:7;:21;;;;2290:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2383:9;:13;2393:2;2383:13;;;;;;;;;;;:22;2397:7;2383:22;;;;;;;;;;;;;;;;2376:29;;2185:227;;;;:::o;1236:305::-;1338:4;1388:26;1373:41;;;:11;:41;;;;:109;;;;1445:37;1430:52;;;:11;:52;;;;1373:109;:161;;;;1498:36;1522:11;1498:23;:36::i;:::-;1373:161;1354:180;;1236:305;;;:::o;1940:103::-;2000:13;2032:4;2025:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1940:103;;;:::o;167:36:8:-;202:1;167:36;:::o;4065:427:0:-;4298:12;:10;:12::i;:::-;4290:20;;:4;:20;;;:60;;;;4314:36;4331:4;4337:12;:10;:12::i;:::-;4314:16;:36::i;:::-;4290:60;4269:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;4433:52;4456:4;4462:2;4466:3;4471:7;4480:4;4433:22;:52::i;:::-;4065:427;;;;;:::o;2569:508::-;2720:16;2779:3;:10;2760:8;:15;:29;2752:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;2846:30;2893:8;:15;2879:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2846:63;;2925:9;2920:120;2944:8;:15;2940:1;:19;2920:120;;;2999:30;3009:8;3018:1;3009:11;;;;;;;;:::i;:::-;;;;;;;;3022:3;3026:1;3022:6;;;;;;;;:::i;:::-;;;;;;;;2999:9;:30::i;:::-;2980:13;2994:1;2980:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;2961:3;;;;:::i;:::-;;;2920:120;;;;3057:13;3050:20;;;2569:508;;;;:::o;3145:153::-;3239:52;3258:12;:10;:12::i;:::-;3272:8;3282;3239:18;:52::i;:::-;3145:153;;:::o;262:46:8:-;307:1;262:46;:::o;209:47::-;255:1;209:47;:::o;314:::-;360:1;314:47;:::o;3365:166:0:-;3464:4;3487:18;:27;3506:7;3487:27;;;;;;;;;;;;;;;:37;3515:8;3487:37;;;;;;;;;;;;;;;;;;;;;;;;;3480:44;;3365:166;;;;:::o;3598:395::-;3806:12;:10;:12::i;:::-;3798:20;;:4;:20;;;:60;;;;3822:36;3839:4;3845:12;:10;:12::i;:::-;3822:16;:36::i;:::-;3798:60;3777:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;3941:45;3959:4;3965:2;3969;3973:6;3981:4;3941:17;:45::i;:::-;3598:395;;;;;:::o;1175:320:4:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;829:155:6:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;640:96:5:-;693:7;719:10;712:17;;640:96;:::o;6235:1115:0:-;6455:7;:14;6441:3;:10;:28;6433:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;6546:1;6532:16;;:2;:16;;;;6524:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;6601:16;6620:12;:10;:12::i;:::-;6601:31;;6643:60;6664:8;6674:4;6680:2;6684:3;6689:7;6698:4;6643:20;:60::i;:::-;6719:9;6714:411;6738:3;:10;6734:1;:14;6714:411;;;6769:10;6782:3;6786:1;6782:6;;;;;;;;:::i;:::-;;;;;;;;6769:19;;6802:14;6819:7;6827:1;6819:10;;;;;;;;:::i;:::-;;;;;;;;6802:27;;6844:19;6866:9;:13;6876:2;6866:13;;;;;;;;;;;:19;6880:4;6866:19;;;;;;;;;;;;;;;;6844:41;;6922:6;6907:11;:21;;6899:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;7053:6;7039:11;:20;7017:9;:13;7027:2;7017:13;;;;;;;;;;;:19;7031:4;7017:19;;;;;;;;;;;;;;;:42;;;;7108:6;7087:9;:13;7097:2;7087:13;;;;;;;;;;;:17;7101:2;7087:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;6755:370;;;6750:3;;;;:::i;:::-;;;6714:411;;;;7170:2;7140:47;;7164:4;7140:47;;7154:8;7140:47;;;7174:3;7179:7;7140:47;;;;;;;:::i;:::-;;;;;;;;7198:59;7218:8;7228:4;7234:2;7238:3;7243:7;7252:4;7198:19;:59::i;:::-;7268:75;7304:8;7314:4;7320:2;7324:3;7329:7;7338:4;7268:35;:75::i;:::-;6423:927;6235:1115;;;;;:::o;12912:323::-;13062:8;13053:17;;:5;:17;;;;13045:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13164:8;13126:18;:25;13145:5;13126:25;;;;;;;;;;;;;;;:35;13152:8;13126:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;13209:8;13187:41;;13202:5;13187:41;;;13219:8;13187:41;;;;;;:::i;:::-;;;;;;;;12912:323;;;:::o;4942:947::-;5137:1;5123:16;;:2;:16;;;;5115:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;5192:16;5211:12;:10;:12::i;:::-;5192:31;;5233:20;5256:21;5274:2;5256:17;:21::i;:::-;5233:44;;5287:24;5314:25;5332:6;5314:17;:25::i;:::-;5287:52;;5350:60;5371:8;5381:4;5387:2;5391:3;5396:7;5405:4;5350:20;:60::i;:::-;5421:19;5443:9;:13;5453:2;5443:13;;;;;;;;;;;:19;5457:4;5443:19;;;;;;;;;;;;;;;;5421:41;;5495:6;5480:11;:21;;5472:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;5618:6;5604:11;:20;5582:9;:13;5592:2;5582:13;;;;;;;;;;;:19;5596:4;5582:19;;;;;;;;;;;;;;;:42;;;;5665:6;5644:9;:13;5654:2;5644:13;;;;;;;;;;;:17;5658:2;5644:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;5718:2;5687:46;;5712:4;5687:46;;5702:8;5687:46;;;5722:2;5726:6;5687:46;;;;;;;:::i;:::-;;;;;;;;5744:59;5764:8;5774:4;5780:2;5784:3;5789:7;5798:4;5744:19;:59::i;:::-;5814:68;5845:8;5855:4;5861:2;5865;5869:6;5877:4;5814:30;:68::i;:::-;5105:784;;;;4942:947;;;;;:::o;14171:214::-;;;;;;;:::o;15318:213::-;;;;;;;:::o;16268:792::-;16500:15;:2;:13;;;:15::i;:::-;16496:558;;;16552:2;16535:43;;;16579:8;16589:4;16595:3;16600:7;16609:4;16535:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;16531:513;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;16920:6;16913:14;;;;;;;;;;;:::i;:::-;;;;;;;;16531:513;;;16967:62;;;;;;;;;;:::i;:::-;;;;;;;;16531:513;16705:48;;;16693:60;;;:8;:60;;;;16689:157;;16777:50;;;;;;;;;;:::i;:::-;;;;;;;;16689:157;16615:245;16496:558;16268:792;;;;;;:::o;17066:193::-;17132:16;17160:22;17199:1;17185:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17160:41;;17222:7;17211:5;17217:1;17211:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;17247:5;17240:12;;;17066:193;;;:::o;15537:725::-;15744:15;:2;:13;;;:15::i;:::-;15740:516;;;15796:2;15779:38;;;15818:8;15828:4;15834:2;15838:6;15846:4;15779:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;15775:471;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;16122:6;16115:14;;;;;;;;;;;:::i;:::-;;;;;;;;15775:471;;;16169:62;;;;;;;;;;:::i;:::-;;;;;;;;15775:471;15912:43;;;15900:55;;;:8;:55;;;;15896:152;;15979:50;;;;;;;;;;:::i;:::-;;;;;;;;15896:152;15852:210;15740:516;15537:725;;;;;;:::o;24:722:9:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:139::-;1959:5;1997:6;1984:20;1975:29;;2013:33;2040:5;2013:33;:::i;:::-;1913:139;;;;:::o;2075:370::-;2146:5;2195:3;2188:4;2180:6;2176:17;2172:27;2162:122;;2203:79;;:::i;:::-;2162:122;2320:6;2307:20;2345:94;2435:3;2427:6;2420:4;2412:6;2408:17;2345:94;:::i;:::-;2336:103;;2152:293;2075:370;;;;:::o;2468:::-;2539:5;2588:3;2581:4;2573:6;2569:17;2565:27;2555:122;;2596:79;;:::i;:::-;2555:122;2713:6;2700:20;2738:94;2828:3;2820:6;2813:4;2805:6;2801:17;2738:94;:::i;:::-;2729:103;;2545:293;2468:370;;;;:::o;2844:133::-;2887:5;2925:6;2912:20;2903:29;;2941:30;2965:5;2941:30;:::i;:::-;2844:133;;;;:::o;2983:137::-;3028:5;3066:6;3053:20;3044:29;;3082:32;3108:5;3082:32;:::i;:::-;2983:137;;;;:::o;3126:141::-;3182:5;3213:6;3207:13;3198:22;;3229:32;3255:5;3229:32;:::i;:::-;3126:141;;;;:::o;3286:338::-;3341:5;3390:3;3383:4;3375:6;3371:17;3367:27;3357:122;;3398:79;;:::i;:::-;3357:122;3515:6;3502:20;3540:78;3614:3;3606:6;3599:4;3591:6;3587:17;3540:78;:::i;:::-;3531:87;;3347:277;3286:338;;;;:::o;3630:139::-;3676:5;3714:6;3701:20;3692:29;;3730:33;3757:5;3730:33;:::i;:::-;3630:139;;;;:::o;3775:474::-;3843:6;3851;3900:2;3888:9;3879:7;3875:23;3871:32;3868:119;;;3906:79;;:::i;:::-;3868:119;4026:1;4051:53;4096:7;4087:6;4076:9;4072:22;4051:53;:::i;:::-;4041:63;;3997:117;4153:2;4179:53;4224:7;4215:6;4204:9;4200:22;4179:53;:::i;:::-;4169:63;;4124:118;3775:474;;;;;:::o;4255:1509::-;4409:6;4417;4425;4433;4441;4490:3;4478:9;4469:7;4465:23;4461:33;4458:120;;;4497:79;;:::i;:::-;4458:120;4617:1;4642:53;4687:7;4678:6;4667:9;4663:22;4642:53;:::i;:::-;4632:63;;4588:117;4744:2;4770:53;4815:7;4806:6;4795:9;4791:22;4770:53;:::i;:::-;4760:63;;4715:118;4900:2;4889:9;4885:18;4872:32;4931:18;4923:6;4920:30;4917:117;;;4953:79;;:::i;:::-;4917:117;5058:78;5128:7;5119:6;5108:9;5104:22;5058:78;:::i;:::-;5048:88;;4843:303;5213:2;5202:9;5198:18;5185:32;5244:18;5236:6;5233:30;5230:117;;;5266:79;;:::i;:::-;5230:117;5371:78;5441:7;5432:6;5421:9;5417:22;5371:78;:::i;:::-;5361:88;;5156:303;5526:3;5515:9;5511:19;5498:33;5558:18;5550:6;5547:30;5544:117;;;5580:79;;:::i;:::-;5544:117;5685:62;5739:7;5730:6;5719:9;5715:22;5685:62;:::i;:::-;5675:72;;5469:288;4255:1509;;;;;;;;:::o;5770:1089::-;5874:6;5882;5890;5898;5906;5955:3;5943:9;5934:7;5930:23;5926:33;5923:120;;;5962:79;;:::i;:::-;5923:120;6082:1;6107:53;6152:7;6143:6;6132:9;6128:22;6107:53;:::i;:::-;6097:63;;6053:117;6209:2;6235:53;6280:7;6271:6;6260:9;6256:22;6235:53;:::i;:::-;6225:63;;6180:118;6337:2;6363:53;6408:7;6399:6;6388:9;6384:22;6363:53;:::i;:::-;6353:63;;6308:118;6465:2;6491:53;6536:7;6527:6;6516:9;6512:22;6491:53;:::i;:::-;6481:63;;6436:118;6621:3;6610:9;6606:19;6593:33;6653:18;6645:6;6642:30;6639:117;;;6675:79;;:::i;:::-;6639:117;6780:62;6834:7;6825:6;6814:9;6810:22;6780:62;:::i;:::-;6770:72;;6564:288;5770:1089;;;;;;;;:::o;6865:468::-;6930:6;6938;6987:2;6975:9;6966:7;6962:23;6958:32;6955:119;;;6993:79;;:::i;:::-;6955:119;7113:1;7138:53;7183:7;7174:6;7163:9;7159:22;7138:53;:::i;:::-;7128:63;;7084:117;7240:2;7266:50;7308:7;7299:6;7288:9;7284:22;7266:50;:::i;:::-;7256:60;;7211:115;6865:468;;;;;:::o;7339:474::-;7407:6;7415;7464:2;7452:9;7443:7;7439:23;7435:32;7432:119;;;7470:79;;:::i;:::-;7432:119;7590:1;7615:53;7660:7;7651:6;7640:9;7636:22;7615:53;:::i;:::-;7605:63;;7561:117;7717:2;7743:53;7788:7;7779:6;7768:9;7764:22;7743:53;:::i;:::-;7733:63;;7688:118;7339:474;;;;;:::o;7819:894::-;7937:6;7945;7994:2;7982:9;7973:7;7969:23;7965:32;7962:119;;;8000:79;;:::i;:::-;7962:119;8148:1;8137:9;8133:17;8120:31;8178:18;8170:6;8167:30;8164:117;;;8200:79;;:::i;:::-;8164:117;8305:78;8375:7;8366:6;8355:9;8351:22;8305:78;:::i;:::-;8295:88;;8091:302;8460:2;8449:9;8445:18;8432:32;8491:18;8483:6;8480:30;8477:117;;;8513:79;;:::i;:::-;8477:117;8618:78;8688:7;8679:6;8668:9;8664:22;8618:78;:::i;:::-;8608:88;;8403:303;7819:894;;;;;:::o;8719:327::-;8777:6;8826:2;8814:9;8805:7;8801:23;8797:32;8794:119;;;8832:79;;:::i;:::-;8794:119;8952:1;8977:52;9021:7;9012:6;9001:9;8997:22;8977:52;:::i;:::-;8967:62;;8923:116;8719:327;;;;:::o;9052:349::-;9121:6;9170:2;9158:9;9149:7;9145:23;9141:32;9138:119;;;9176:79;;:::i;:::-;9138:119;9296:1;9321:63;9376:7;9367:6;9356:9;9352:22;9321:63;:::i;:::-;9311:73;;9267:127;9052:349;;;;:::o;9407:329::-;9466:6;9515:2;9503:9;9494:7;9490:23;9486:32;9483:119;;;9521:79;;:::i;:::-;9483:119;9641:1;9666:53;9711:7;9702:6;9691:9;9687:22;9666:53;:::i;:::-;9656:63;;9612:117;9407:329;;;;:::o;9742:179::-;9811:10;9832:46;9874:3;9866:6;9832:46;:::i;:::-;9910:4;9905:3;9901:14;9887:28;;9742:179;;;;:::o;9927:118::-;10014:24;10032:5;10014:24;:::i;:::-;10009:3;10002:37;9927:118;;:::o;10081:732::-;10200:3;10229:54;10277:5;10229:54;:::i;:::-;10299:86;10378:6;10373:3;10299:86;:::i;:::-;10292:93;;10409:56;10459:5;10409:56;:::i;:::-;10488:7;10519:1;10504:284;10529:6;10526:1;10523:13;10504:284;;;10605:6;10599:13;10632:63;10691:3;10676:13;10632:63;:::i;:::-;10625:70;;10718:60;10771:6;10718:60;:::i;:::-;10708:70;;10564:224;10551:1;10548;10544:9;10539:14;;10504:284;;;10508:14;10804:3;10797:10;;10205:608;;;10081:732;;;;:::o;10819:109::-;10900:21;10915:5;10900:21;:::i;:::-;10895:3;10888:34;10819:109;;:::o;10934:360::-;11020:3;11048:38;11080:5;11048:38;:::i;:::-;11102:70;11165:6;11160:3;11102:70;:::i;:::-;11095:77;;11181:52;11226:6;11221:3;11214:4;11207:5;11203:16;11181:52;:::i;:::-;11258:29;11280:6;11258:29;:::i;:::-;11253:3;11249:39;11242:46;;11024:270;10934:360;;;;:::o;11300:364::-;11388:3;11416:39;11449:5;11416:39;:::i;:::-;11471:71;11535:6;11530:3;11471:71;:::i;:::-;11464:78;;11551:52;11596:6;11591:3;11584:4;11577:5;11573:16;11551:52;:::i;:::-;11628:29;11650:6;11628:29;:::i;:::-;11623:3;11619:39;11612:46;;11392:272;11300:364;;;;:::o;11670:366::-;11812:3;11833:67;11897:2;11892:3;11833:67;:::i;:::-;11826:74;;11909:93;11998:3;11909:93;:::i;:::-;12027:2;12022:3;12018:12;12011:19;;11670:366;;;:::o;12042:::-;12184:3;12205:67;12269:2;12264:3;12205:67;:::i;:::-;12198:74;;12281:93;12370:3;12281:93;:::i;:::-;12399:2;12394:3;12390:12;12383:19;;12042:366;;;:::o;12414:::-;12556:3;12577:67;12641:2;12636:3;12577:67;:::i;:::-;12570:74;;12653:93;12742:3;12653:93;:::i;:::-;12771:2;12766:3;12762:12;12755:19;;12414:366;;;:::o;12786:::-;12928:3;12949:67;13013:2;13008:3;12949:67;:::i;:::-;12942:74;;13025:93;13114:3;13025:93;:::i;:::-;13143:2;13138:3;13134:12;13127:19;;12786:366;;;:::o;13158:::-;13300:3;13321:67;13385:2;13380:3;13321:67;:::i;:::-;13314:74;;13397:93;13486:3;13397:93;:::i;:::-;13515:2;13510:3;13506:12;13499:19;;13158:366;;;:::o;13530:::-;13672:3;13693:67;13757:2;13752:3;13693:67;:::i;:::-;13686:74;;13769:93;13858:3;13769:93;:::i;:::-;13887:2;13882:3;13878:12;13871:19;;13530:366;;;:::o;13902:::-;14044:3;14065:67;14129:2;14124:3;14065:67;:::i;:::-;14058:74;;14141:93;14230:3;14141:93;:::i;:::-;14259:2;14254:3;14250:12;14243:19;;13902:366;;;:::o;14274:::-;14416:3;14437:67;14501:2;14496:3;14437:67;:::i;:::-;14430:74;;14513:93;14602:3;14513:93;:::i;:::-;14631:2;14626:3;14622:12;14615:19;;14274:366;;;:::o;14646:::-;14788:3;14809:67;14873:2;14868:3;14809:67;:::i;:::-;14802:74;;14885:93;14974:3;14885:93;:::i;:::-;15003:2;14998:3;14994:12;14987:19;;14646:366;;;:::o;15018:108::-;15095:24;15113:5;15095:24;:::i;:::-;15090:3;15083:37;15018:108;;:::o;15132:118::-;15219:24;15237:5;15219:24;:::i;:::-;15214:3;15207:37;15132:118;;:::o;15256:1053::-;15579:4;15617:3;15606:9;15602:19;15594:27;;15631:71;15699:1;15688:9;15684:17;15675:6;15631:71;:::i;:::-;15712:72;15780:2;15769:9;15765:18;15756:6;15712:72;:::i;:::-;15831:9;15825:4;15821:20;15816:2;15805:9;15801:18;15794:48;15859:108;15962:4;15953:6;15859:108;:::i;:::-;15851:116;;16014:9;16008:4;16004:20;15999:2;15988:9;15984:18;15977:48;16042:108;16145:4;16136:6;16042:108;:::i;:::-;16034:116;;16198:9;16192:4;16188:20;16182:3;16171:9;16167:19;16160:49;16226:76;16297:4;16288:6;16226:76;:::i;:::-;16218:84;;15256:1053;;;;;;;;:::o;16315:751::-;16538:4;16576:3;16565:9;16561:19;16553:27;;16590:71;16658:1;16647:9;16643:17;16634:6;16590:71;:::i;:::-;16671:72;16739:2;16728:9;16724:18;16715:6;16671:72;:::i;:::-;16753;16821:2;16810:9;16806:18;16797:6;16753:72;:::i;:::-;16835;16903:2;16892:9;16888:18;16879:6;16835:72;:::i;:::-;16955:9;16949:4;16945:20;16939:3;16928:9;16924:19;16917:49;16983:76;17054:4;17045:6;16983:76;:::i;:::-;16975:84;;16315:751;;;;;;;;:::o;17072:373::-;17215:4;17253:2;17242:9;17238:18;17230:26;;17302:9;17296:4;17292:20;17288:1;17277:9;17273:17;17266:47;17330:108;17433:4;17424:6;17330:108;:::i;:::-;17322:116;;17072:373;;;;:::o;17451:634::-;17672:4;17710:2;17699:9;17695:18;17687:26;;17759:9;17753:4;17749:20;17745:1;17734:9;17730:17;17723:47;17787:108;17890:4;17881:6;17787:108;:::i;:::-;17779:116;;17942:9;17936:4;17932:20;17927:2;17916:9;17912:18;17905:48;17970:108;18073:4;18064:6;17970:108;:::i;:::-;17962:116;;17451:634;;;;;:::o;18091:210::-;18178:4;18216:2;18205:9;18201:18;18193:26;;18229:65;18291:1;18280:9;18276:17;18267:6;18229:65;:::i;:::-;18091:210;;;;:::o;18307:313::-;18420:4;18458:2;18447:9;18443:18;18435:26;;18507:9;18501:4;18497:20;18493:1;18482:9;18478:17;18471:47;18535:78;18608:4;18599:6;18535:78;:::i;:::-;18527:86;;18307:313;;;;:::o;18626:419::-;18792:4;18830:2;18819:9;18815:18;18807:26;;18879:9;18873:4;18869:20;18865:1;18854:9;18850:17;18843:47;18907:131;19033:4;18907:131;:::i;:::-;18899:139;;18626:419;;;:::o;19051:::-;19217:4;19255:2;19244:9;19240:18;19232:26;;19304:9;19298:4;19294:20;19290:1;19279:9;19275:17;19268:47;19332:131;19458:4;19332:131;:::i;:::-;19324:139;;19051:419;;;:::o;19476:::-;19642:4;19680:2;19669:9;19665:18;19657:26;;19729:9;19723:4;19719:20;19715:1;19704:9;19700:17;19693:47;19757:131;19883:4;19757:131;:::i;:::-;19749:139;;19476:419;;;:::o;19901:::-;20067:4;20105:2;20094:9;20090:18;20082:26;;20154:9;20148:4;20144:20;20140:1;20129:9;20125:17;20118:47;20182:131;20308:4;20182:131;:::i;:::-;20174:139;;19901:419;;;:::o;20326:::-;20492:4;20530:2;20519:9;20515:18;20507:26;;20579:9;20573:4;20569:20;20565:1;20554:9;20550:17;20543:47;20607:131;20733:4;20607:131;:::i;:::-;20599:139;;20326:419;;;:::o;20751:::-;20917:4;20955:2;20944:9;20940:18;20932:26;;21004:9;20998:4;20994:20;20990:1;20979:9;20975:17;20968:47;21032:131;21158:4;21032:131;:::i;:::-;21024:139;;20751:419;;;:::o;21176:::-;21342:4;21380:2;21369:9;21365:18;21357:26;;21429:9;21423:4;21419:20;21415:1;21404:9;21400:17;21393:47;21457:131;21583:4;21457:131;:::i;:::-;21449:139;;21176:419;;;:::o;21601:::-;21767:4;21805:2;21794:9;21790:18;21782:26;;21854:9;21848:4;21844:20;21840:1;21829:9;21825:17;21818:47;21882:131;22008:4;21882:131;:::i;:::-;21874:139;;21601:419;;;:::o;22026:::-;22192:4;22230:2;22219:9;22215:18;22207:26;;22279:9;22273:4;22269:20;22265:1;22254:9;22250:17;22243:47;22307:131;22433:4;22307:131;:::i;:::-;22299:139;;22026:419;;;:::o;22451:222::-;22544:4;22582:2;22571:9;22567:18;22559:26;;22595:71;22663:1;22652:9;22648:17;22639:6;22595:71;:::i;:::-;22451:222;;;;:::o;22679:332::-;22800:4;22838:2;22827:9;22823:18;22815:26;;22851:71;22919:1;22908:9;22904:17;22895:6;22851:71;:::i;:::-;22932:72;23000:2;22989:9;22985:18;22976:6;22932:72;:::i;:::-;22679:332;;;;;:::o;23017:129::-;23051:6;23078:20;;:::i;:::-;23068:30;;23107:33;23135:4;23127:6;23107:33;:::i;:::-;23017:129;;;:::o;23152:75::-;23185:6;23218:2;23212:9;23202:19;;23152:75;:::o;23233:311::-;23310:4;23400:18;23392:6;23389:30;23386:56;;;23422:18;;:::i;:::-;23386:56;23472:4;23464:6;23460:17;23452:25;;23532:4;23526;23522:15;23514:23;;23233:311;;;:::o;23550:::-;23627:4;23717:18;23709:6;23706:30;23703:56;;;23739:18;;:::i;:::-;23703:56;23789:4;23781:6;23777:17;23769:25;;23849:4;23843;23839:15;23831:23;;23550:311;;;:::o;23867:307::-;23928:4;24018:18;24010:6;24007:30;24004:56;;;24040:18;;:::i;:::-;24004:56;24078:29;24100:6;24078:29;:::i;:::-;24070:37;;24162:4;24156;24152:15;24144:23;;23867:307;;;:::o;24180:132::-;24247:4;24270:3;24262:11;;24300:4;24295:3;24291:14;24283:22;;24180:132;;;:::o;24318:114::-;24385:6;24419:5;24413:12;24403:22;;24318:114;;;:::o;24438:98::-;24489:6;24523:5;24517:12;24507:22;;24438:98;;;:::o;24542:99::-;24594:6;24628:5;24622:12;24612:22;;24542:99;;;:::o;24647:113::-;24717:4;24749;24744:3;24740:14;24732:22;;24647:113;;;:::o;24766:184::-;24865:11;24899:6;24894:3;24887:19;24939:4;24934:3;24930:14;24915:29;;24766:184;;;;:::o;24956:168::-;25039:11;25073:6;25068:3;25061:19;25113:4;25108:3;25104:14;25089:29;;24956:168;;;;:::o;25130:169::-;25214:11;25248:6;25243:3;25236:19;25288:4;25283:3;25279:14;25264:29;;25130:169;;;;:::o;25305:305::-;25345:3;25364:20;25382:1;25364:20;:::i;:::-;25359:25;;25398:20;25416:1;25398:20;:::i;:::-;25393:25;;25552:1;25484:66;25480:74;25477:1;25474:81;25471:107;;;25558:18;;:::i;:::-;25471:107;25602:1;25599;25595:9;25588:16;;25305:305;;;;:::o;25616:96::-;25653:7;25682:24;25700:5;25682:24;:::i;:::-;25671:35;;25616:96;;;:::o;25718:90::-;25752:7;25795:5;25788:13;25781:21;25770:32;;25718:90;;;:::o;25814:149::-;25850:7;25890:66;25883:5;25879:78;25868:89;;25814:149;;;:::o;25969:126::-;26006:7;26046:42;26039:5;26035:54;26024:65;;25969:126;;;:::o;26101:77::-;26138:7;26167:5;26156:16;;26101:77;;;:::o;26184:154::-;26268:6;26263:3;26258;26245:30;26330:1;26321:6;26316:3;26312:16;26305:27;26184:154;;;:::o;26344:307::-;26412:1;26422:113;26436:6;26433:1;26430:13;26422:113;;;26521:1;26516:3;26512:11;26506:18;26502:1;26497:3;26493:11;26486:39;26458:2;26455:1;26451:10;26446:15;;26422:113;;;26553:6;26550:1;26547:13;26544:101;;;26633:1;26624:6;26619:3;26615:16;26608:27;26544:101;26393:258;26344:307;;;:::o;26657:320::-;26701:6;26738:1;26732:4;26728:12;26718:22;;26785:1;26779:4;26775:12;26806:18;26796:81;;26862:4;26854:6;26850:17;26840:27;;26796:81;26924:2;26916:6;26913:14;26893:18;26890:38;26887:84;;;26943:18;;:::i;:::-;26887:84;26708:269;26657:320;;;:::o;26983:281::-;27066:27;27088:4;27066:27;:::i;:::-;27058:6;27054:40;27196:6;27184:10;27181:22;27160:18;27148:10;27145:34;27142:62;27139:88;;;27207:18;;:::i;:::-;27139:88;27247:10;27243:2;27236:22;27026:238;26983:281;;:::o;27270:233::-;27309:3;27332:24;27350:5;27332:24;:::i;:::-;27323:33;;27378:66;27371:5;27368:77;27365:103;;;27448:18;;:::i;:::-;27365:103;27495:1;27488:5;27484:13;27477:20;;27270:233;;;:::o;27509:180::-;27557:77;27554:1;27547:88;27654:4;27651:1;27644:15;27678:4;27675:1;27668:15;27695:180;27743:77;27740:1;27733:88;27840:4;27837:1;27830:15;27864:4;27861:1;27854:15;27881:180;27929:77;27926:1;27919:88;28026:4;28023:1;28016:15;28050:4;28047:1;28040:15;28067:180;28115:77;28112:1;28105:88;28212:4;28209:1;28202:15;28236:4;28233:1;28226:15;28253:183;28288:3;28326:1;28308:16;28305:23;28302:128;;;28364:1;28361;28358;28343:23;28386:34;28417:1;28411:8;28386:34;:::i;:::-;28379:41;;28302:128;28253:183;:::o;28442:117::-;28551:1;28548;28541:12;28565:117;28674:1;28671;28664:12;28688:117;28797:1;28794;28787:12;28811:117;28920:1;28917;28910:12;28934:117;29043:1;29040;29033:12;29057:102;29098:6;29149:2;29145:7;29140:2;29133:5;29129:14;29125:28;29115:38;;29057:102;;;:::o;29165:106::-;29209:8;29258:5;29253:3;29249:15;29228:36;;29165:106;;;:::o;29277:239::-;29417:34;29413:1;29405:6;29401:14;29394:58;29486:22;29481:2;29473:6;29469:15;29462:47;29277:239;:::o;29522:234::-;29662:34;29658:1;29650:6;29646:14;29639:58;29731:17;29726:2;29718:6;29714:15;29707:42;29522:234;:::o;29762:227::-;29902:34;29898:1;29890:6;29886:14;29879:58;29971:10;29966:2;29958:6;29954:15;29947:35;29762:227;:::o;29995:229::-;30135:34;30131:1;30123:6;30119:14;30112:58;30204:12;30199:2;30191:6;30187:15;30180:37;29995:229;:::o;30230:224::-;30370:34;30366:1;30358:6;30354:14;30347:58;30439:7;30434:2;30426:6;30422:15;30415:32;30230:224;:::o;30460:229::-;30600:34;30596:1;30588:6;30584:14;30577:58;30669:12;30664:2;30656:6;30652:15;30645:37;30460:229;:::o;30695:228::-;30835:34;30831:1;30823:6;30819:14;30812:58;30904:11;30899:2;30891:6;30887:15;30880:36;30695:228;:::o;30929:::-;31069:34;31065:1;31057:6;31053:14;31046:58;31138:11;31133:2;31125:6;31121:15;31114:36;30929:228;:::o;31163:227::-;31303:34;31299:1;31291:6;31287:14;31280:58;31372:10;31367:2;31359:6;31355:15;31348:35;31163:227;:::o;31396:711::-;31435:3;31473:4;31455:16;31452:26;31449:39;;;31481:5;;31449:39;31510:20;;:::i;:::-;31585:1;31567:16;31563:24;31560:1;31554:4;31539:49;31618:4;31612:11;31717:16;31710:4;31702:6;31698:17;31695:39;31662:18;31654:6;31651:30;31635:113;31632:146;;;31763:5;;;;31632:146;31809:6;31803:4;31799:17;31845:3;31839:10;31872:18;31864:6;31861:30;31858:43;;;31894:5;;;;;;31858:43;31942:6;31935:4;31930:3;31926:14;31922:27;32001:1;31983:16;31979:24;31973:4;31969:35;31964:3;31961:44;31958:57;;;32008:5;;;;;;;31958:57;32025;32073:6;32067:4;32063:17;32055:6;32051:30;32045:4;32025:57;:::i;:::-;32098:3;32091:10;;31439:668;;;;;31396:711;;:::o;32113:122::-;32186:24;32204:5;32186:24;:::i;:::-;32179:5;32176:35;32166:63;;32225:1;32222;32215:12;32166:63;32113:122;:::o;32241:116::-;32311:21;32326:5;32311:21;:::i;:::-;32304:5;32301:32;32291:60;;32347:1;32344;32337:12;32291:60;32241:116;:::o;32363:120::-;32435:23;32452:5;32435:23;:::i;:::-;32428:5;32425:34;32415:62;;32473:1;32470;32463:12;32415:62;32363:120;:::o;32489:122::-;32562:24;32580:5;32562:24;:::i;:::-;32555:5;32552:35;32542:63;;32601:1;32598;32591:12;32542:63;32489:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1949600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"IS_PROFILE_NEGATIVE()": "395",
"IS_PROFILE_NEUTRAL()": "351",
"IS_PROFILE_POSITIVE()": "373",
"WARNINGS()": "396",
"balanceOf(address,uint256)": "infinite",
"balanceOfBatch(address[],uint256[])": "infinite",
"isApprovedForAll(address,address)": "infinite",
"safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)": "infinite",
"safeTransferFrom(address,address,uint256,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "infinite",
"supportsInterface(bytes4)": "796",
"uri(uint256)": "infinite"
}
},
"methodIdentifiers": {
"IS_PROFILE_NEGATIVE()": "e80499b3",
"IS_PROFILE_NEUTRAL()": "af7e5db3",
"IS_PROFILE_POSITIVE()": "e56a68d9",
"WARNINGS()": "14f7b228",
"balanceOf(address,uint256)": "00fdd58e",
"balanceOfBatch(address[],uint256[])": "4e1273f4",
"isApprovedForAll(address,address)": "e985e9c5",
"safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)": "2eb2c2d6",
"safeTransferFrom(address,address,uint256,uint256,bytes)": "f242432a",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"uri(uint256)": "0e89341c"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "account",
"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": "operator",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256[]",
"name": "ids",
"type": "uint256[]"
},
{
"indexed": false,
"internalType": "uint256[]",
"name": "values",
"type": "uint256[]"
}
],
"name": "TransferBatch",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "TransferSingle",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "string",
"name": "value",
"type": "string"
},
{
"indexed": true,
"internalType": "uint256",
"name": "id",
"type": "uint256"
}
],
"name": "URI",
"type": "event"
},
{
"inputs": [],
"name": "IS_PROFILE_NEGATIVE",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "IS_PROFILE_NEUTRAL",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "IS_PROFILE_POSITIVE",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "WARNINGS",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "id",
"type": "uint256"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address[]",
"name": "accounts",
"type": "address[]"
},
{
"internalType": "uint256[]",
"name": "ids",
"type": "uint256[]"
}
],
"name": "balanceOfBatch",
"outputs": [
{
"internalType": "uint256[]",
"name": "",
"type": "uint256[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256[]",
"name": "ids",
"type": "uint256[]"
},
{
"internalType": "uint256[]",
"name": "amounts",
"type": "uint256[]"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "safeBatchTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "uri",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "account",
"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": "operator",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256[]",
"name": "ids",
"type": "uint256[]"
},
{
"indexed": false,
"internalType": "uint256[]",
"name": "values",
"type": "uint256[]"
}
],
"name": "TransferBatch",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "TransferSingle",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "string",
"name": "value",
"type": "string"
},
{
"indexed": true,
"internalType": "uint256",
"name": "id",
"type": "uint256"
}
],
"name": "URI",
"type": "event"
},
{
"inputs": [],
"name": "IS_PROFILE_NEGATIVE",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "IS_PROFILE_NEUTRAL",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "IS_PROFILE_POSITIVE",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "WARNINGS",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "id",
"type": "uint256"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address[]",
"name": "accounts",
"type": "address[]"
},
{
"internalType": "uint256[]",
"name": "ids",
"type": "uint256[]"
}
],
"name": "balanceOfBatch",
"outputs": [
{
"internalType": "uint256[]",
"name": "",
"type": "uint256[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256[]",
"name": "ids",
"type": "uint256[]"
},
{
"internalType": "uint256[]",
"name": "amounts",
"type": "uint256[]"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "safeBatchTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "uri",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"balanceOf(address,uint256)": {
"details": "See {IERC1155-balanceOf}. Requirements: - `account` cannot be the zero address."
},
"balanceOfBatch(address[],uint256[])": {
"details": "See {IERC1155-balanceOfBatch}. Requirements: - `accounts` and `ids` must have the same length."
},
"isApprovedForAll(address,address)": {
"details": "See {IERC1155-isApprovedForAll}."
},
"safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)": {
"details": "See {IERC1155-safeBatchTransferFrom}."
},
"safeTransferFrom(address,address,uint256,uint256,bytes)": {
"details": "See {IERC1155-safeTransferFrom}."
},
"setApprovalForAll(address,bool)": {
"details": "See {IERC1155-setApprovalForAll}."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
},
"uri(uint256)": {
"details": "See {IERC1155MetadataURI-uri}. This implementation returns the same URI for *all* token types. It relies on the token type ID substitution mechanism https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. Clients calling this function must replace the `\\{id\\}` substring with the actual token type ID."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/FeedbackToken.sol": "FeedbackToken"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/token/ERC1155/ERC1155.sol": {
"keccak256": "0x447a21c87433c0f11252912313a96f3454629ef88cca7a4eefbb283b3ec409f9",
"license": "MIT",
"urls": [
"bzz-raw://67d35750fb5ced798b82b8ab085eb5f71529b0d4f72152d182b5bebdc770b20d",
"dweb:/ipfs/QmUqmyzRZxaLvSXig87HFZgiUxv9ivc2VqfAbxEw7rx32d"
]
},
"@openzeppelin/contracts/token/ERC1155/IERC1155.sol": {
"keccak256": "0x6392f2cfe3a5ee802227fe7a2dfd47096d881aec89bddd214b35c5b46d3cd941",
"license": "MIT",
"urls": [
"bzz-raw://bd9c47a375639888e726a99da718890ba16d17d7ad9eacb0ccc892d46d1b3ee0",
"dweb:/ipfs/Qmb41W5RUjy2sWg49A2rMnxekSeEk6SvGyJL5tyCCSr7un"
]
},
"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol": {
"keccak256": "0xeb373f1fdc7b755c6a750123a9b9e3a8a02c1470042fd6505d875000a80bde0b",
"license": "MIT",
"urls": [
"bzz-raw://0e28648f994abf1d6bc345644a361cc0b7efa544f8bc0c8ec26011fed85a91ec",
"dweb:/ipfs/QmVVE7AiRjKaQYYji7TkjmTeVzGpNmms5eoxqTCfvvpj6D"
]
},
"@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol": {
"keccak256": "0xa66d18b9a85458d28fc3304717964502ae36f7f8a2ff35bc83f6f85d74b03574",
"license": "MIT",
"urls": [
"bzz-raw://e46c80ea068989111d6103e5521223f9ef337e93de76deed8b03f75c6f7b2797",
"dweb:/ipfs/QmNoSE6knNfFncdDDLTb3fGR6oSQty1srG96Vsx3E9wQdw"
]
},
"@openzeppelin/contracts/utils/Address.sol": {
"keccak256": "0xd6153ce99bcdcce22b124f755e72553295be6abcd63804cfdffceb188b8bef10",
"license": "MIT",
"urls": [
"bzz-raw://35c47bece3c03caaa07fab37dd2bb3413bfbca20db7bd9895024390e0a469487",
"dweb:/ipfs/QmPGWT2x3QHcKxqe6gRmAkdakhbaRgx3DLzcakHz5M4eXG"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
"@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/FeedbackToken.sol": {
"keccak256": "0x67cabcb15df7644db4e20d1e43009855f2cdd5c6bb5bdd23bdbd82830f9d5f9b",
"license": "UNLICENSED",
"urls": [
"bzz-raw://c8c19e3f22287b0f820b01f025947827aa515024028872ba4ef399ccbf4a6965",
"dweb:/ipfs/QmexVJGWGy9T14cgFk8B7R3a6d32uvSsQfpgHVtV9HYcn5"
]
}
},
"version": 1
}
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.0;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
contract FeedbackToken is ERC1155 {
uint256 public constant WARNINGS = 0;
uint256 public constant IS_PROFILE_POSITIVE = 1;
uint256 public constant IS_PROFILE_NEUTRAL = 2;
uint256 public constant IS_PROFILE_NEGATIVE = 3;
address public managerAddress;
modifier onlyManager() {
require(msg.sender == managerAddress);
_;
}
// TODO: ERC1155 contains metadata uri.
constructor() ERC1155("") {
// _mint input = to, id, amount, data
// TODO: refactor to batch minting
_mint(msg.sender, WARNINGS, 1000, "");
_mint(msg.sender, IS_PROFILE_POSITIVE, 1000, "");
_mint(msg.sender, IS_PROFILE_NEUTRAL, 1000, "");
_mint(msg.sender, IS_PROFILE_NEGATIVE, 1000, "");
}
function safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) public virtual override onlyManager {
super.safeTransferFrom(from, to, id, amount);
// require(
// from == _msgSender() || isApprovedForAll(from, _msgSender()),
// "ERC1155: caller is not token owner nor approved"
// );
// _safeTransferFrom(from, to, id, amount, data);
}
}
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract MainToken is ERC20 {
constructor(uint _initialSupply) ERC20("MainToken", "MT") {
// Assume that msg.sender is ManagerContract.
_mint(msg.sender, _initialSupply);
}
}
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract UtilityToken is ERC20 {
address public managerAddress;
uint internal _totalSupply;
mapping(address => uint256) internal _balances;
event TransferFee(address indexed from, address indexed to, uint256 value);
event Reset(address indexed reseter, uint amount);
constructor(uint _initialSupply) ERC20("UtilityToken", "UT") {
// Assume that msg.sender is ManagerContract.
managerAddress = msg.sender;
_mint(managerAddress, _initialSupply);
}
// .transfer OR ._beforeTokenTransfer
// https://docs.openzeppelin.com/contracts/4.x/extending-contracts#using-hooks
function _transfer(
address from,
address to,
uint amount
) override internal virtual {
super._transfer(from, to, amount * 90 / 100);
super._transfer(from, managerAddress, amount * 10/100);
emit TransferFee(from, managerAddress, amount * 10/100);
}
// Hard Reset
function _beforeReset() internal virtual {}
function _afterReset() internal virtual {}
function _reset(uint _initialSupply) internal virtual {
_beforeReset();
// delete _balances;
// emit Reset(msg.sender(), _totalSupply);
_totalSupply = 0;
_mint(msg.sender, _initialSupply);
_afterReset();
// TODO: allowances mapping 도 다 리셋해야 함.
}
function reset(uint _initialSupply) public virtual returns(bool) {
_reset(_initialSupply);
return true;
}
}
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.)

This file has been truncated, but you can view the full file.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_44": {
"entryPoint": null,
"id": 44,
"parameterSlots": 2,
"returnSlots": 0
},
"@_731": {
"entryPoint": null,
"id": 731,
"parameterSlots": 1,
"returnSlots": 0
},
"@_afterTokenTransfer_584": {
"entryPoint": 622,
"id": 584,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_573": {
"entryPoint": 617,
"id": 573,
"parameterSlots": 3,
"returnSlots": 0
},
"@_mint_402": {
"entryPoint": 240,
"id": 402,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_t_uint256_fromMemory": {
"entryPoint": 803,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256_fromMemory": {
"entryPoint": 826,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 876,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 915,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 932,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 966,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 995,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1012,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1105,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1115,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 1169,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1216,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1263,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e": {
"entryPoint": 1268,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 1309,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:3568:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "70:80:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "80:22:5",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "95:6:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "89:5:5"
},
"nodeType": "YulFunctionCall",
"src": "89:13:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "80:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "138:5:5"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "111:26:5"
},
"nodeType": "YulFunctionCall",
"src": "111:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "111:33:5"
}
]
},
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "48:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "56:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "64:5:5",
"type": ""
}
],
"src": "7:143:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "233:274:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "279:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "281:77:5"
},
"nodeType": "YulFunctionCall",
"src": "281:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "281:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "254:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "263:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "250:3:5"
},
"nodeType": "YulFunctionCall",
"src": "250:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "275:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "246:3:5"
},
"nodeType": "YulFunctionCall",
"src": "246:32:5"
},
"nodeType": "YulIf",
"src": "243:119:5"
},
{
"nodeType": "YulBlock",
"src": "372:128:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "387:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "401:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "391:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "416:74:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "462:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "473:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "458:3:5"
},
"nodeType": "YulFunctionCall",
"src": "458:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "482:7:5"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "426:31:5"
},
"nodeType": "YulFunctionCall",
"src": "426:64:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "416:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "203:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "214:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "226:6:5",
"type": ""
}
],
"src": "156:351:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "659:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "669:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "735:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "740:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "676:58:5"
},
"nodeType": "YulFunctionCall",
"src": "676:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "669:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "841:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulIdentifier",
"src": "752:88:5"
},
"nodeType": "YulFunctionCall",
"src": "752:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "752:93:5"
},
{
"nodeType": "YulAssignment",
"src": "854:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "865:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "870:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "861:3:5"
},
"nodeType": "YulFunctionCall",
"src": "861:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "854:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "647:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "655:3:5",
"type": ""
}
],
"src": "513:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "950:53:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "967:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "990:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "972:17:5"
},
"nodeType": "YulFunctionCall",
"src": "972:24:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "960:6:5"
},
"nodeType": "YulFunctionCall",
"src": "960:37:5"
},
"nodeType": "YulExpressionStatement",
"src": "960:37:5"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "938:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "945:3:5",
"type": ""
}
],
"src": "885:118:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1180:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1190:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1202:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1213:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1198:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1198:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1190:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1237:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1248:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1233:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1233:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1256:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1262:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1252:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1252:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1226:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1226:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "1226:47:5"
},
{
"nodeType": "YulAssignment",
"src": "1282:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1416:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1290:124:5"
},
"nodeType": "YulFunctionCall",
"src": "1290:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
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