Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hamzahkhan/4c40e279bb359389f93b232045d79c79 to your computer and use it in GitHub Desktop.
Save hamzahkhan/4c40e279bb359389f93b232045d79c79 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
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
REMIX EXAMPLE PROJECT
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer.
It contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity.
SCRIPTS
The 'scripts' folder contains example async/await scripts for deploying the 'Storage' contract.
For the deployment of any other contract, 'contractName' and 'constructorArgs' should be updated (along with other code if required).
Scripts have full access to the web3.js and ethers.js libraries.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
*/
contract Storage {
uint256 number;
/**
* @dev Store value in variable
* @param num value to store
*/
function store(uint256 num) public {
number = num;
}
/**
* @dev Return value
* @return value of 'number'
*/
function retrieve() public view returns (uint256){
return number;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Owner
* @dev Set & change owner
*/
contract Owner {
address private owner;
// event for EVM logging
event OwnerSet(address indexed oldOwner, address indexed newOwner);
// modifier to check if caller is owner
modifier isOwner() {
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
require(msg.sender == owner, "Caller is not owner");
_;
}
/**
* @dev Set contract deployer as owner
*/
constructor() {
owner = msg.sender; // 'msg.sender' is sender of current call, contract deployer for a constructor
emit OwnerSet(address(0), owner);
}
/**
* @dev Change owner
* @param newOwner address of new owner
*/
function changeOwner(address newOwner) public isOwner {
emit OwnerSet(owner, newOwner);
owner = newOwner;
}
/**
* @dev Return owner address
* @return address of owner
*/
function getOwner() external view returns (address) {
return owner;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Ballot
* @dev Implements voting process along with vote delegation
*/
contract Ballot {
struct Voter {
uint weight; // weight is accumulated by delegation
bool voted; // if true, that person already voted
address delegate; // person delegated to
uint vote; // index of the voted proposal
}
struct Proposal {
// If you can limit the length to a certain number of bytes,
// always use one of bytes1 to bytes32 because they are much cheaper
bytes32 name; // short name (up to 32 bytes)
uint voteCount; // number of accumulated votes
}
address public chairperson;
mapping(address => Voter) public voters;
Proposal[] public proposals;
/**
* @dev Create a new ballot to choose one of 'proposalNames'.
* @param proposalNames names of proposals
*/
constructor(bytes32[] memory proposalNames) {
chairperson = msg.sender;
voters[chairperson].weight = 1;
for (uint i = 0; i < proposalNames.length; i++) {
// 'Proposal({...})' creates a temporary
// Proposal object and 'proposals.push(...)'
// appends it to the end of 'proposals'.
proposals.push(Proposal({
name: proposalNames[i],
voteCount: 0
}));
}
}
/**
* @dev Give 'voter' the right to vote on this ballot. May only be called by 'chairperson'.
* @param voter address of voter
*/
function giveRightToVote(address voter) public {
require(
msg.sender == chairperson,
"Only chairperson can give right to vote."
);
require(
!voters[voter].voted,
"The voter already voted."
);
require(voters[voter].weight == 0);
voters[voter].weight = 1;
}
/**
* @dev Delegate your vote to the voter 'to'.
* @param to address to which vote is delegated
*/
function delegate(address to) public {
Voter storage sender = voters[msg.sender];
require(!sender.voted, "You already voted.");
require(to != msg.sender, "Self-delegation is disallowed.");
while (voters[to].delegate != address(0)) {
to = voters[to].delegate;
// We found a loop in the delegation, not allowed.
require(to != msg.sender, "Found loop in delegation.");
}
sender.voted = true;
sender.delegate = to;
Voter storage delegate_ = voters[to];
if (delegate_.voted) {
// If the delegate already voted,
// directly add to the number of votes
proposals[delegate_.vote].voteCount += sender.weight;
} else {
// If the delegate did not vote yet,
// add to her weight.
delegate_.weight += sender.weight;
}
}
/**
* @dev Give your vote (including votes delegated to you) to proposal 'proposals[proposal].name'.
* @param proposal index of proposal in the proposals array
*/
function vote(uint proposal) public {
Voter storage sender = voters[msg.sender];
require(sender.weight != 0, "Has no right to vote");
require(!sender.voted, "Already voted.");
sender.voted = true;
sender.vote = proposal;
// If 'proposal' is out of the range of the array,
// this will throw automatically and revert all
// changes.
proposals[proposal].voteCount += sender.weight;
}
/**
* @dev Computes the winning proposal taking all previous votes into account.
* @return winningProposal_ index of winning proposal in the proposals array
*/
function winningProposal() public view
returns (uint winningProposal_)
{
uint winningVoteCount = 0;
for (uint p = 0; p < proposals.length; p++) {
if (proposals[p].voteCount > winningVoteCount) {
winningVoteCount = proposals[p].voteCount;
winningProposal_ = p;
}
}
}
/**
* @dev Calls winningProposal() function to get the index of the winner contained in the proposals array and then
* @return winnerName_ the name of the winner
*/
function winnerName() public view
returns (bytes32 winnerName_)
{
winnerName_ = proposals[winningProposal()].name;
}
}
/**
*Submitted for verification at snowtrace.io on 2021-11-05
*/
/**
*Submitted for verification at FtmScan.com on 2021-10-02
*/
// SPDX-License-Identifier: agpl-3.0
pragma solidity 0.7.6;
// Part: Address
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')`
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
// solhint-disable-next-line no-inline-assembly
assembly {
codehash := extcodehash(account)
}
return (codehash != accountHash && codehash != 0x0);
}
/**
* @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');
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{value: amount}('');
require(success, 'Address: unable to send value, recipient may have reverted');
}
}
// Part: Context
/*
* @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 GSN 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 payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// Part: ILendingPoolAddressesProvider
/**
* @title LendingPoolAddressesProvider contract
* @dev Main registry of addresses part of or connected to the protocol, including permissioned roles
* - Acting also as factory of proxies and admin of those, so with right to change its implementations
* - Owned by the Aave Governance
* @author Aave
**/
interface ILendingPoolAddressesProvider {
event MarketIdSet(string newMarketId);
event LendingPoolUpdated(address indexed newAddress);
event ConfigurationAdminUpdated(address indexed newAddress);
event EmergencyAdminUpdated(address indexed newAddress);
event LendingPoolConfiguratorUpdated(address indexed newAddress);
event LendingPoolCollateralManagerUpdated(address indexed newAddress);
event PriceOracleUpdated(address indexed newAddress);
event LendingRateOracleUpdated(address indexed newAddress);
event ProxyCreated(bytes32 id, address indexed newAddress);
event AddressSet(bytes32 id, address indexed newAddress, bool hasProxy);
function getMarketId() external view returns (string memory);
function setMarketId(string calldata marketId) external;
function setAddress(bytes32 id, address newAddress) external;
function setAddressAsProxy(bytes32 id, address impl) external;
function getAddress(bytes32 id) external view returns (address);
function getLendingPool() external view returns (address);
function setLendingPoolImpl(address pool) external;
function getLendingPoolConfigurator() external view returns (address);
function setLendingPoolConfiguratorImpl(address configurator) external;
function getLendingPoolCollateralManager() external view returns (address);
function setLendingPoolCollateralManager(address manager) external;
function getPoolAdmin() external view returns (address);
function setPoolAdmin(address admin) external;
function getEmergencyAdmin() external view returns (address);
function setEmergencyAdmin(address admin) external;
function getPriceOracle() external view returns (address);
function setPriceOracle(address priceOracle) external;
function getLendingRateOracle() external view returns (address);
function setLendingRateOracle(address lendingRateOracle) external;
}
// Part: Proxy
/**
* @title Proxy
* @dev Implements delegation of calls to other contracts, with proper
* forwarding of return values and bubbling of failures.
* It defines a fallback function that delegates all calls to the address
* returned by the abstract _implementation() internal function.
*/
abstract contract Proxy {
/**
* @dev Fallback function.
* Implemented entirely in `_fallback`.
*/
fallback() external payable {
_fallback();
}
/**
* @return The Address of the implementation.
*/
function _implementation() internal view virtual returns (address);
/**
* @dev Delegates execution to an implementation contract.
* This is a low level function that doesn't return to its internal call site.
* It will return to the external caller whatever the implementation returns.
* @param implementation Address to delegate.
*/
function _delegate(address implementation) internal {
//solium-disable-next-line
assembly {
// Copy msg.data. We take full control of memory in this inline assembly
// block because it will not return to Solidity code. We overwrite the
// Solidity scratch pad at memory position 0.
calldatacopy(0, 0, calldatasize())
// Call the implementation.
// out and outsize are 0 because we don't know the size yet.
let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)
// Copy the returned data.
returndatacopy(0, 0, returndatasize())
switch result
// delegatecall returns 0 on error.
case 0 {
revert(0, returndatasize())
}
default {
return(0, returndatasize())
}
}
}
/**
* @dev Function that is run as the first thing in the fallback function.
* Can be redefined in derived contracts to add functionality.
* Redefinitions must call super._willFallback().
*/
function _willFallback() internal virtual {}
/**
* @dev fallback implementation.
* Extracted to enable manual triggering.
*/
function _fallback() internal {
_willFallback();
_delegate(_implementation());
}
}
// Part: BaseUpgradeabilityProxy
/**
* @title BaseUpgradeabilityProxy
* @dev This contract implements a proxy that allows to change the
* implementation address to which it will delegate.
* Such a change is called an implementation upgrade.
*/
contract BaseUpgradeabilityProxy is Proxy {
/**
* @dev Emitted when the implementation is upgraded.
* @param implementation Address of the new implementation.
*/
event Upgraded(address indexed implementation);
/**
* @dev Storage slot with the address of the current implementation.
* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
* validated in the constructor.
*/
bytes32 internal constant IMPLEMENTATION_SLOT =
0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
/**
* @dev Returns the current implementation.
* @return impl Address of the current implementation
*/
function _implementation() internal view override returns (address impl) {
bytes32 slot = IMPLEMENTATION_SLOT;
//solium-disable-next-line
assembly {
impl := sload(slot)
}
}
/**
* @dev Upgrades the proxy to a new implementation.
* @param newImplementation Address of the new implementation.
*/
function _upgradeTo(address newImplementation) internal {
_setImplementation(newImplementation);
emit Upgraded(newImplementation);
}
/**
* @dev Sets the implementation address of the proxy.
* @param newImplementation Address of the new implementation.
*/
function _setImplementation(address newImplementation) internal {
require(
Address.isContract(newImplementation),
'Cannot set a proxy implementation to a non-contract address'
);
bytes32 slot = IMPLEMENTATION_SLOT;
//solium-disable-next-line
assembly {
sstore(slot, newImplementation)
}
}
}
// Part: Ownable
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), 'Ownable: caller is not the owner');
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), 'Ownable: new owner is the zero address');
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// Part: BaseImmutableAdminUpgradeabilityProxy
/**
* @title BaseImmutableAdminUpgradeabilityProxy
* @author Aave, inspired by the OpenZeppelin upgradeability proxy pattern
* @dev This contract combines an upgradeability proxy with an authorization
* mechanism for administrative tasks. The admin role is stored in an immutable, which
* helps saving transactions costs
* All external functions in this contract must be guarded by the
* `ifAdmin` modifier. See ethereum/solidity#3864 for a Solidity
* feature proposal that would enable this to be done automatically.
*/
contract BaseImmutableAdminUpgradeabilityProxy is BaseUpgradeabilityProxy {
address immutable ADMIN;
constructor(address admin) {
ADMIN = admin;
}
modifier ifAdmin() {
if (msg.sender == ADMIN) {
_;
} else {
_fallback();
}
}
/**
* @return The address of the proxy admin.
*/
function admin() external ifAdmin returns (address) {
return ADMIN;
}
/**
* @return The address of the implementation.
*/
function implementation() external ifAdmin returns (address) {
return _implementation();
}
/**
* @dev Upgrade the backing implementation of the proxy.
* Only the admin can call this function.
* @param newImplementation Address of the new implementation.
*/
function upgradeTo(address newImplementation) external ifAdmin {
_upgradeTo(newImplementation);
}
/**
* @dev Upgrade the backing implementation of the proxy and call a function
* on the new implementation.
* This is useful to initialize the proxied contract.
* @param newImplementation Address of the new implementation.
* @param data Data to send as msg.data in the low level call.
* It should include the signature and the parameters of the function to be called, as described in
* https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
*/
function upgradeToAndCall(address newImplementation, bytes calldata data)
external
payable
ifAdmin
{
_upgradeTo(newImplementation);
(bool success, ) = newImplementation.delegatecall(data);
require(success);
}
/**
* @dev Only fall back when the sender is not the admin.
*/
function _willFallback() internal virtual override {
require(msg.sender != ADMIN, 'Cannot call fallback function from the proxy admin');
super._willFallback();
}
}
// Part: InitializableUpgradeabilityProxy
/**
* @title InitializableUpgradeabilityProxy
* @dev Extends BaseUpgradeabilityProxy with an initializer for initializing
* implementation and init data.
*/
contract InitializableUpgradeabilityProxy is BaseUpgradeabilityProxy {
/**
* @dev Contract initializer.
* @param _logic Address of the initial implementation.
* @param _data Data to send as msg.data to the implementation to initialize the proxied contract.
* It should include the signature and the parameters of the function to be called, as described in
* https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
* This parameter is optional, if no data is given the initialization call to proxied contract will be skipped.
*/
function initialize(address _logic, bytes memory _data) public payable {
require(_implementation() == address(0));
assert(IMPLEMENTATION_SLOT == bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1));
_setImplementation(_logic);
if (_data.length > 0) {
(bool success, ) = _logic.delegatecall(_data);
require(success);
}
}
}
// Part: InitializableImmutableAdminUpgradeabilityProxy
/**
* @title InitializableAdminUpgradeabilityProxy
* @dev Extends BaseAdminUpgradeabilityProxy with an initializer function
*/
contract InitializableImmutableAdminUpgradeabilityProxy is
BaseImmutableAdminUpgradeabilityProxy,
InitializableUpgradeabilityProxy
{
constructor(address admin) BaseImmutableAdminUpgradeabilityProxy(admin) {}
/**
* @dev Only fall back when the sender is not the admin.
*/
function _willFallback() internal override(BaseImmutableAdminUpgradeabilityProxy, Proxy) {
BaseImmutableAdminUpgradeabilityProxy._willFallback();
}
}
// File: LendingPoolAddressesProvider.sol
/**
* @title LendingPoolAddressesProvider contract
* @dev Main registry of addresses part of or connected to the protocol, including permissioned roles
* - Acting also as factory of proxies and admin of those, so with right to change its implementations
* - Owned by the Aave Governance
* @author Aave
**/
contract LendingPoolAddressesProvider is Ownable, ILendingPoolAddressesProvider {
string private _marketId;
mapping(bytes32 => address) private _addresses;
bytes32 private constant LENDING_POOL = 'LENDING_POOL';
bytes32 private constant LENDING_POOL_CONFIGURATOR = 'LENDING_POOL_CONFIGURATOR';
bytes32 private constant POOL_ADMIN = 'POOL_ADMIN';
bytes32 private constant EMERGENCY_ADMIN = 'EMERGENCY_ADMIN';
bytes32 private constant LENDING_POOL_COLLATERAL_MANAGER = 'COLLATERAL_MANAGER';
bytes32 private constant PRICE_ORACLE = 'PRICE_ORACLE';
bytes32 private constant LENDING_RATE_ORACLE = 'LENDING_RATE_ORACLE';
constructor(string memory marketId) {
_setMarketId(marketId);
}
/**
* @dev Returns the id of the Aave market to which this contracts points to
* @return The market id
**/
function getMarketId() external view override returns (string memory) {
return _marketId;
}
/**
* @dev Allows to set the market which this LendingPoolAddressesProvider represents
* @param marketId The market id
*/
function setMarketId(string memory marketId) external override onlyOwner {
_setMarketId(marketId);
}
/**
* @dev General function to update the implementation of a proxy registered with
* certain `id`. If there is no proxy registered, it will instantiate one and
* set as implementation the `implementationAddress`
* IMPORTANT Use this function carefully, only for ids that don't have an explicit
* setter function, in order to avoid unexpected consequences
* @param id The id
* @param implementationAddress The address of the new implementation
*/
function setAddressAsProxy(bytes32 id, address implementationAddress)
external
override
onlyOwner
{
_updateImpl(id, implementationAddress);
emit AddressSet(id, implementationAddress, true);
}
/**
* @dev Sets an address for an id replacing the address saved in the addresses map
* IMPORTANT Use this function carefully, as it will do a hard replacement
* @param id The id
* @param newAddress The address to set
*/
function setAddress(bytes32 id, address newAddress) external override onlyOwner {
_addresses[id] = newAddress;
emit AddressSet(id, newAddress, false);
}
/**
* @dev Returns an address by id
* @return The address
*/
function getAddress(bytes32 id) public view override returns (address) {
return _addresses[id];
}
/**
* @dev Returns the address of the LendingPool proxy
* @return The LendingPool proxy address
**/
function getLendingPool() external view override returns (address) {
return getAddress(LENDING_POOL);
}
/**
* @dev Updates the implementation of the LendingPool, or creates the proxy
* setting the new `pool` implementation on the first time calling it
* @param pool The new LendingPool implementation
**/
function setLendingPoolImpl(address pool) external override onlyOwner {
_updateImpl(LENDING_POOL, pool);
emit LendingPoolUpdated(pool);
}
/**
* @dev Returns the address of the LendingPoolConfigurator proxy
* @return The LendingPoolConfigurator proxy address
**/
function getLendingPoolConfigurator() external view override returns (address) {
return getAddress(LENDING_POOL_CONFIGURATOR);
}
/**
* @dev Updates the implementation of the LendingPoolConfigurator, or creates the proxy
* setting the new `configurator` implementation on the first time calling it
* @param configurator The new LendingPoolConfigurator implementation
**/
function setLendingPoolConfiguratorImpl(address configurator) external override onlyOwner {
_updateImpl(LENDING_POOL_CONFIGURATOR, configurator);
emit LendingPoolConfiguratorUpdated(configurator);
}
/**
* @dev Returns the address of the LendingPoolCollateralManager. Since the manager is used
* through delegateCall within the LendingPool contract, the proxy contract pattern does not work properly hence
* the addresses are changed directly
* @return The address of the LendingPoolCollateralManager
**/
function getLendingPoolCollateralManager() external view override returns (address) {
return getAddress(LENDING_POOL_COLLATERAL_MANAGER);
}
/**
* @dev Updates the address of the LendingPoolCollateralManager
* @param manager The new LendingPoolCollateralManager address
**/
function setLendingPoolCollateralManager(address manager) external override onlyOwner {
_addresses[LENDING_POOL_COLLATERAL_MANAGER] = manager;
emit LendingPoolCollateralManagerUpdated(manager);
}
/**
* @dev The functions below are getters/setters of addresses that are outside the context
* of the protocol hence the upgradable proxy pattern is not used
**/
function getPoolAdmin() external view override returns (address) {
return getAddress(POOL_ADMIN);
}
function setPoolAdmin(address admin) external override onlyOwner {
_addresses[POOL_ADMIN] = admin;
emit ConfigurationAdminUpdated(admin);
}
function getEmergencyAdmin() external view override returns (address) {
return getAddress(EMERGENCY_ADMIN);
}
function setEmergencyAdmin(address emergencyAdmin) external override onlyOwner {
_addresses[EMERGENCY_ADMIN] = emergencyAdmin;
emit EmergencyAdminUpdated(emergencyAdmin);
}
function getPriceOracle() external view override returns (address) {
return getAddress(PRICE_ORACLE);
}
function setPriceOracle(address priceOracle) external override onlyOwner {
_addresses[PRICE_ORACLE] = priceOracle;
emit PriceOracleUpdated(priceOracle);
}
function getLendingRateOracle() external view override returns (address) {
return getAddress(LENDING_RATE_ORACLE);
}
function setLendingRateOracle(address lendingRateOracle) external override onlyOwner {
_addresses[LENDING_RATE_ORACLE] = lendingRateOracle;
emit LendingRateOracleUpdated(lendingRateOracle);
}
/**
* @dev Internal function to update the implementation of a specific proxied component of the protocol
* - If there is no proxy registered in the given `id`, it creates the proxy setting `newAdress`
* as implementation and calls the initialize() function on the proxy
* - If there is already a proxy registered, it just updates the implementation to `newAddress` and
* calls the initialize() function via upgradeToAndCall() in the proxy
* @param id The id of the proxy to be updated
* @param newAddress The address of the new implementation
**/
function _updateImpl(bytes32 id, address newAddress) internal {
address payable proxyAddress = payable(_addresses[id]);
InitializableImmutableAdminUpgradeabilityProxy proxy =
InitializableImmutableAdminUpgradeabilityProxy(proxyAddress);
bytes memory params = abi.encodeWithSignature('initialize(address)', address(this));
if (proxyAddress == address(0)) {
proxy = new InitializableImmutableAdminUpgradeabilityProxy(address(this));
proxy.initialize(newAddress, params);
_addresses[id] = address(proxy);
emit ProxyCreated(id, address(proxy));
} else {
proxy.upgradeToAndCall(newAddress, params);
}
}
function _setMarketId(string memory marketId) internal {
_marketId = marketId;
emit MarketIdSet(marketId);
}
}
/**
*Submitted for verification at snowtrace.io on 2021-11-07
*/
/**
*Submitted for verification at snowtrace.io on 2021-11-05
*/
/**
*Submitted for verification at FtmScan.com on 2021-10-02
*/
// SPDX-License-Identifier: agpl-3.0
pragma solidity 0.7.6;
// Part: Address
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')`
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
// solhint-disable-next-line no-inline-assembly
assembly {
codehash := extcodehash(account)
}
return (codehash != accountHash && codehash != 0x0);
}
/**
* @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');
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{value: amount}('');
require(success, 'Address: unable to send value, recipient may have reverted');
}
}
// Part: Context
/*
* @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 GSN 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 payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// Part: ILendingPoolAddressesProvider
/**
* @title LendingPoolAddressesProvider contract
* @dev Main registry of addresses part of or connected to the protocol, including permissioned roles
* - Acting also as factory of proxies and admin of those, so with right to change its implementations
* - Owned by the Aave Governance
* @author Aave
**/
interface ILendingPoolAddressesProvider {
event MarketIdSet(string newMarketId);
event LendingPoolUpdated(address indexed newAddress);
event ConfigurationAdminUpdated(address indexed newAddress);
event EmergencyAdminUpdated(address indexed newAddress);
event LendingPoolConfiguratorUpdated(address indexed newAddress);
event LendingPoolCollateralManagerUpdated(address indexed newAddress);
event PriceOracleUpdated(address indexed newAddress);
event LendingRateOracleUpdated(address indexed newAddress);
event ProxyCreated(bytes32 id, address indexed newAddress);
event AddressSet(bytes32 id, address indexed newAddress, bool hasProxy);
function getMarketId() external view returns (string memory);
function setMarketId(string calldata marketId) external;
function setAddress(bytes32 id, address newAddress) external;
function setAddressAsProxy(bytes32 id, address impl) external;
function getAddress(bytes32 id) external view returns (address);
function getLendingPool() external view returns (address);
function setLendingPoolImpl(address pool) external;
function getLendingPoolConfigurator() external view returns (address);
function setLendingPoolConfiguratorImpl(address configurator) external;
function getLendingPoolCollateralManager() external view returns (address);
function setLendingPoolCollateralManager(address manager) external;
function getPoolAdmin() external view returns (address);
function setPoolAdmin(address admin) external;
function getEmergencyAdmin() external view returns (address);
function setEmergencyAdmin(address admin) external;
function getPriceOracle() external view returns (address);
function setPriceOracle(address priceOracle) external;
function getLendingRateOracle() external view returns (address);
function setLendingRateOracle(address lendingRateOracle) external;
}
// Part: Proxy
/**
* @title Proxy
* @dev Implements delegation of calls to other contracts, with proper
* forwarding of return values and bubbling of failures.
* It defines a fallback function that delegates all calls to the address
* returned by the abstract _implementation() internal function.
*/
abstract contract Proxy {
/**
* @dev Fallback function.
* Implemented entirely in `_fallback`.
*/
fallback() external payable {
_fallback();
}
/**
* @return The Address of the implementation.
*/
function _implementation() internal view virtual returns (address);
/**
* @dev Delegates execution to an implementation contract.
* This is a low level function that doesn't return to its internal call site.
* It will return to the external caller whatever the implementation returns.
* @param implementation Address to delegate.
*/
function _delegate(address implementation) internal {
//solium-disable-next-line
assembly {
// Copy msg.data. We take full control of memory in this inline assembly
// block because it will not return to Solidity code. We overwrite the
// Solidity scratch pad at memory position 0.
calldatacopy(0, 0, calldatasize())
// Call the implementation.
// out and outsize are 0 because we don't know the size yet.
let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)
// Copy the returned data.
returndatacopy(0, 0, returndatasize())
switch result
// delegatecall returns 0 on error.
case 0 {
revert(0, returndatasize())
}
default {
return(0, returndatasize())
}
}
}
/**
* @dev Function that is run as the first thing in the fallback function.
* Can be redefined in derived contracts to add functionality.
* Redefinitions must call super._willFallback().
*/
function _willFallback() internal virtual {}
/**
* @dev fallback implementation.
* Extracted to enable manual triggering.
*/
function _fallback() internal {
_willFallback();
_delegate(_implementation());
}
}
// Part: BaseUpgradeabilityProxy
/**
* @title BaseUpgradeabilityProxy
* @dev This contract implements a proxy that allows to change the
* implementation address to which it will delegate.
* Such a change is called an implementation upgrade.
*/
contract BaseUpgradeabilityProxy is Proxy {
/**
* @dev Emitted when the implementation is upgraded.
* @param implementation Address of the new implementation.
*/
event Upgraded(address indexed implementation);
/**
* @dev Storage slot with the address of the current implementation.
* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
* validated in the constructor.
*/
bytes32 internal constant IMPLEMENTATION_SLOT =
0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
/**
* @dev Returns the current implementation.
* @return impl Address of the current implementation
*/
function _implementation() internal view override returns (address impl) {
bytes32 slot = IMPLEMENTATION_SLOT;
//solium-disable-next-line
assembly {
impl := sload(slot)
}
}
/**
* @dev Upgrades the proxy to a new implementation.
* @param newImplementation Address of the new implementation.
*/
function _upgradeTo(address newImplementation) internal {
_setImplementation(newImplementation);
emit Upgraded(newImplementation);
}
/**
* @dev Sets the implementation address of the proxy.
* @param newImplementation Address of the new implementation.
*/
function _setImplementation(address newImplementation) internal {
require(
Address.isContract(newImplementation),
'Cannot set a proxy implementation to a non-contract address'
);
bytes32 slot = IMPLEMENTATION_SLOT;
//solium-disable-next-line
assembly {
sstore(slot, newImplementation)
}
}
}
// Part: Ownable
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), 'Ownable: caller is not the owner');
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), 'Ownable: new owner is the zero address');
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// Part: BaseImmutableAdminUpgradeabilityProxy
/**
* @title BaseImmutableAdminUpgradeabilityProxy
* @author Aave, inspired by the OpenZeppelin upgradeability proxy pattern
* @dev This contract combines an upgradeability proxy with an authorization
* mechanism for administrative tasks. The admin role is stored in an immutable, which
* helps saving transactions costs
* All external functions in this contract must be guarded by the
* `ifAdmin` modifier. See ethereum/solidity#3864 for a Solidity
* feature proposal that would enable this to be done automatically.
*/
contract BaseImmutableAdminUpgradeabilityProxy is BaseUpgradeabilityProxy {
address immutable ADMIN;
constructor(address admin) {
ADMIN = admin;
}
modifier ifAdmin() {
if (msg.sender == ADMIN) {
_;
} else {
_fallback();
}
}
/**
* @return The address of the proxy admin.
*/
function admin() external ifAdmin returns (address) {
return ADMIN;
}
/**
* @return The address of the implementation.
*/
function implementation() external ifAdmin returns (address) {
return _implementation();
}
/**
* @dev Upgrade the backing implementation of the proxy.
* Only the admin can call this function.
* @param newImplementation Address of the new implementation.
*/
function upgradeTo(address newImplementation) external ifAdmin {
_upgradeTo(newImplementation);
}
/**
* @dev Upgrade the backing implementation of the proxy and call a function
* on the new implementation.
* This is useful to initialize the proxied contract.
* @param newImplementation Address of the new implementation.
* @param data Data to send as msg.data in the low level call.
* It should include the signature and the parameters of the function to be called, as described in
* https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
*/
function upgradeToAndCall(address newImplementation, bytes calldata data)
external
payable
ifAdmin
{
_upgradeTo(newImplementation);
(bool success, ) = newImplementation.delegatecall(data);
require(success);
}
/**
* @dev Only fall back when the sender is not the admin.
*/
function _willFallback() internal virtual override {
require(msg.sender != ADMIN, 'Cannot call fallback function from the proxy admin');
super._willFallback();
}
}
// Part: InitializableUpgradeabilityProxy
/**
* @title InitializableUpgradeabilityProxy
* @dev Extends BaseUpgradeabilityProxy with an initializer for initializing
* implementation and init data.
*/
contract InitializableUpgradeabilityProxy is BaseUpgradeabilityProxy {
/**
* @dev Contract initializer.
* @param _logic Address of the initial implementation.
* @param _data Data to send as msg.data to the implementation to initialize the proxied contract.
* It should include the signature and the parameters of the function to be called, as described in
* https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
* This parameter is optional, if no data is given the initialization call to proxied contract will be skipped.
*/
function initialize(address _logic, bytes memory _data) public payable {
require(_implementation() == address(0));
assert(IMPLEMENTATION_SLOT == bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1));
_setImplementation(_logic);
if (_data.length > 0) {
(bool success, ) = _logic.delegatecall(_data);
require(success);
}
}
}
// Part: InitializableImmutableAdminUpgradeabilityProxy
/**
* @title InitializableAdminUpgradeabilityProxy
* @dev Extends BaseAdminUpgradeabilityProxy with an initializer function
*/
contract InitializableImmutableAdminUpgradeabilityProxy is
BaseImmutableAdminUpgradeabilityProxy,
InitializableUpgradeabilityProxy
{
constructor(address admin) BaseImmutableAdminUpgradeabilityProxy(admin) {}
/**
* @dev Only fall back when the sender is not the admin.
*/
function _willFallback() internal override(BaseImmutableAdminUpgradeabilityProxy, Proxy) {
BaseImmutableAdminUpgradeabilityProxy._willFallback();
}
}
// File: LendingPoolAddressesProvider.sol
/**
* @title LendingPoolAddressesProvider contract
* @dev Main registry of addresses part of or connected to the protocol, including permissioned roles
* - Acting also as factory of proxies and admin of those, so with right to change its implementations
* - Owned by the Aave Governance
* @author Aave
**/
contract LendingPoolAddressesProvider is Ownable, ILendingPoolAddressesProvider {
string private _marketId;
mapping(bytes32 => address) private _addresses;
bytes32 private constant LENDING_POOL = 'LENDING_POOL';
bytes32 private constant LENDING_POOL_CONFIGURATOR = 'LENDING_POOL_CONFIGURATOR';
bytes32 private constant POOL_ADMIN = 'POOL_ADMIN';
bytes32 private constant EMERGENCY_ADMIN = 'EMERGENCY_ADMIN';
bytes32 private constant LENDING_POOL_COLLATERAL_MANAGER = 'COLLATERAL_MANAGER';
bytes32 private constant PRICE_ORACLE = 'PRICE_ORACLE';
bytes32 private constant LENDING_RATE_ORACLE = 'LENDING_RATE_ORACLE';
constructor(string memory marketId) {
_setMarketId(marketId);
}
/**
* @dev Returns the id of the Aave market to which this contracts points to
* @return The market id
**/
function getMarketId() external view override returns (string memory) {
return _marketId;
}
/**
* @dev Allows to set the market which this LendingPoolAddressesProvider represents
* @param marketId The market id
*/
function setMarketId(string memory marketId) external override onlyOwner {
_setMarketId(marketId);
}
/**
* @dev General function to update the implementation of a proxy registered with
* certain `id`. If there is no proxy registered, it will instantiate one and
* set as implementation the `implementationAddress`
* IMPORTANT Use this function carefully, only for ids that don't have an explicit
* setter function, in order to avoid unexpected consequences
* @param id The id
* @param implementationAddress The address of the new implementation
*/
function setAddressAsProxy(bytes32 id, address implementationAddress)
external
override
onlyOwner
{
_updateImpl(id, implementationAddress);
emit AddressSet(id, implementationAddress, true);
}
/**
* @dev Sets an address for an id replacing the address saved in the addresses map
* IMPORTANT Use this function carefully, as it will do a hard replacement
* @param id The id
* @param newAddress The address to set
*/
function setAddress(bytes32 id, address newAddress) external override onlyOwner {
_addresses[id] = newAddress;
emit AddressSet(id, newAddress, false);
}
/**
* @dev Returns an address by id
* @return The address
*/
function getAddress(bytes32 id) public view override returns (address) {
return _addresses[id];
}
/**
* @dev Returns the address of the LendingPool proxy
* @return The LendingPool proxy address
**/
function getLendingPool() external view override returns (address) {
return getAddress(LENDING_POOL);
}
/**
* @dev Updates the implementation of the LendingPool, or creates the proxy
* setting the new `pool` implementation on the first time calling it
* @param pool The new LendingPool implementation
**/
function setLendingPoolImpl(address pool) external override onlyOwner {
_updateImpl(LENDING_POOL, pool);
emit LendingPoolUpdated(pool);
}
/**
* @dev Returns the address of the LendingPoolConfigurator proxy
* @return The LendingPoolConfigurator proxy address
**/
function getLendingPoolConfigurator() external view override returns (address) {
return getAddress(LENDING_POOL_CONFIGURATOR);
}
/**
* @dev Updates the implementation of the LendingPoolConfigurator, or creates the proxy
* setting the new `configurator` implementation on the first time calling it
* @param configurator The new LendingPoolConfigurator implementation
**/
function setLendingPoolConfiguratorImpl(address configurator) external override onlyOwner {
_updateImpl(LENDING_POOL_CONFIGURATOR, configurator);
emit LendingPoolConfiguratorUpdated(configurator);
}
/**
* @dev Returns the address of the LendingPoolCollateralManager. Since the manager is used
* through delegateCall within the LendingPool contract, the proxy contract pattern does not work properly hence
* the addresses are changed directly
* @return The address of the LendingPoolCollateralManager
**/
function getLendingPoolCollateralManager() external view override returns (address) {
return getAddress(LENDING_POOL_COLLATERAL_MANAGER);
}
/**
* @dev Updates the address of the LendingPoolCollateralManager
* @param manager The new LendingPoolCollateralManager address
**/
function setLendingPoolCollateralManager(address manager) external override onlyOwner {
_addresses[LENDING_POOL_COLLATERAL_MANAGER] = manager;
emit LendingPoolCollateralManagerUpdated(manager);
}
/**
* @dev The functions below are getters/setters of addresses that are outside the context
* of the protocol hence the upgradable proxy pattern is not used
**/
function getPoolAdmin() external view override returns (address) {
return getAddress(POOL_ADMIN);
}
function setPoolAdmin(address admin) external override onlyOwner {
_addresses[POOL_ADMIN] = admin;
emit ConfigurationAdminUpdated(admin);
}
function getEmergencyAdmin() external view override returns (address) {
return getAddress(EMERGENCY_ADMIN);
}
function setEmergencyAdmin(address emergencyAdmin) external override onlyOwner {
_addresses[EMERGENCY_ADMIN] = emergencyAdmin;
emit EmergencyAdminUpdated(emergencyAdmin);
}
function getPriceOracle() external view override returns (address) {
return getAddress(PRICE_ORACLE);
}
function setPriceOracle(address priceOracle) external override onlyOwner {
_addresses[PRICE_ORACLE] = priceOracle;
emit PriceOracleUpdated(priceOracle);
}
function getLendingRateOracle() external view override returns (address) {
return getAddress(LENDING_RATE_ORACLE);
}
function setLendingRateOracle(address lendingRateOracle) external override onlyOwner {
_addresses[LENDING_RATE_ORACLE] = lendingRateOracle;
emit LendingRateOracleUpdated(lendingRateOracle);
}
/**
* @dev Internal function to update the implementation of a specific proxied component of the protocol
* - If there is no proxy registered in the given `id`, it creates the proxy setting `newAdress`
* as implementation and calls the initialize() function on the proxy
* - If there is already a proxy registered, it just updates the implementation to `newAddress` and
* calls the initialize() function via upgradeToAndCall() in the proxy
* @param id The id of the proxy to be updated
* @param newAddress The address of the new implementation
**/
function _updateImpl(bytes32 id, address newAddress) internal {
address payable proxyAddress = payable(_addresses[id]);
InitializableImmutableAdminUpgradeabilityProxy proxy =
InitializableImmutableAdminUpgradeabilityProxy(proxyAddress);
bytes memory params = abi.encodeWithSignature('initialize(address)', address(this));
if (proxyAddress == address(0)) {
proxy = new InitializableImmutableAdminUpgradeabilityProxy(address(this));
proxy.initialize(newAddress, params);
_addresses[id] = address(proxy);
emit ProxyCreated(id, address(proxy));
} else {
proxy.upgradeToAndCall(newAddress, params);
}
}
function _setMarketId(string memory marketId) internal {
_marketId = marketId;
emit MarketIdSet(marketId);
}
}
// this line is added to create a gist. Empty file is not allowed.
/**
*Submitted for verification at snowtrace.io on 2021-11-05
*/
/**
*Submitted for verification at FtmScan.com on 2021-10-06
*/
// SPDX-License-Identifier: agpl-3.0
pragma solidity 0.7.6;
// Part: Context
/*
* @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 GSN 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 payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// Part: ILendingRateOracle
/**
* @title ILendingRateOracle interface
* @notice Interface for the Aave borrow rate oracle. Provides the average market borrow rate to be used as a base for the stable borrow rate calculations
**/
interface ILendingRateOracle {
/**
@dev returns the market borrow rate in ray
**/
function getMarketBorrowRate(address asset) external view returns (uint256);
/**
@dev sets the market borrow rate. Rate value must be in ray
**/
function setMarketBorrowRate(address asset, uint256 rate) external;
}
// Part: Ownable
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), 'Ownable: caller is not the owner');
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), 'Ownable: new owner is the zero address');
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// File: LendingRateOracle.sol
contract LendingRateOracle is ILendingRateOracle, Ownable {
mapping(address => uint256) borrowRates;
mapping(address => uint256) liquidityRates;
function getMarketBorrowRate(address _asset) external view override returns (uint256) {
return borrowRates[_asset];
}
function setMarketBorrowRate(address _asset, uint256 _rate) external override onlyOwner {
borrowRates[_asset] = _rate;
}
function getMarketLiquidityRate(address _asset) external view returns (uint256) {
return liquidityRates[_asset];
}
function setMarketLiquidityRate(address _asset, uint256 _rate) external onlyOwner {
liquidityRates[_asset] = _rate;
}
}
// this line is added to create a gist. Empty file is not allowed.
{
"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": {},
"generatedSources": [],
"linkReferences": {},
"object": "60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220688235950b68a6aaade825ac820b49c415f861704acf9c2b6d4df0b95f617d6964736f6c63430008070033",
"opcodes": "PUSH1 0x56 PUSH1 0x50 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x43 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH9 0x8235950B68A6AAADE8 0x25 0xAC DUP3 SIGNEXTEND 0x49 0xC4 ISZERO 0xF8 PUSH2 0x704A 0xCF SWAP13 0x2B PUSH14 0x4DF0B95F617D6964736F6C634300 ADDMOD SMOD STOP CALLER ",
"sourceMap": "4745:7729:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220688235950b68a6aaade825ac820b49c415f861704acf9c2b6d4df0b95f617d6964736f6c63430008070033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH9 0x8235950B68A6AAADE8 0x25 0xAC DUP3 SIGNEXTEND 0x49 0xC4 ISZERO 0xF8 PUSH2 0x704A 0xCF SWAP13 0x2B PUSH14 0x4DF0B95F617D6964736F6C634300 ADDMOD SMOD STOP CALLER ",
"sourceMap": "4745:7729:0:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17200",
"executionCost": "97",
"totalCost": "17297"
},
"internal": {
"functionCall(address,bytes memory)": "infinite",
"functionCall(address,bytes memory,string memory)": "infinite",
"functionCallWithValue(address,bytes memory,uint256)": "infinite",
"functionCallWithValue(address,bytes memory,uint256,string memory)": "infinite",
"functionDelegateCall(address,bytes memory)": "infinite",
"functionDelegateCall(address,bytes memory,string memory)": "infinite",
"functionStaticCall(address,bytes memory)": "infinite",
"functionStaticCall(address,bytes memory,string memory)": "infinite",
"isContract(address)": "infinite",
"sendValue(address payable,uint256)": "infinite",
"verifyCallResult(bool,bytes memory,string memory)": "infinite"
}
},
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"details": "Collection of functions related to the address type",
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/MinterContract.sol": "Address"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/MinterContract.sol": {
"keccak256": "0x3b8c848ada24a98c8f4f0101949d303368207375a381f1e5edc1d176a0203497",
"license": "MIT",
"urls": [
"bzz-raw://fdfc0e7d5775379cd21d3435af90adb13a4d7285b186c0b61ea96606ef7153f6",
"dweb:/ipfs/QmZ72mm57TVnB1QLcFpeStcU9fSUucWJhTMnpQALxGhHtX"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"details": "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.",
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/MinterContract.sol": "Context"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/MinterContract.sol": {
"keccak256": "0x3b8c848ada24a98c8f4f0101949d303368207375a381f1e5edc1d176a0203497",
"license": "MIT",
"urls": [
"bzz-raw://fdfc0e7d5775379cd21d3435af90adb13a4d7285b186c0b61ea96606ef7153f6",
"dweb:/ipfs/QmZ72mm57TVnB1QLcFpeStcU9fSUucWJhTMnpQALxGhHtX"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220514462ce61c5dfc31df23a9ea03bdd09b98d1e9ba4ab026f84b3bca2fd8a560564736f6c63430008070033",
"opcodes": "PUSH1 0x56 PUSH1 0x50 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x43 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MLOAD DIFFICULTY PUSH3 0xCE61C5 0xDF 0xC3 SAR CALLCODE GASPRICE SWAP15 LOG0 EXTCODESIZE 0xDD MULMOD 0xB9 DUP14 0x1E SWAP12 LOG4 0xAB MUL PUSH16 0x84B3BCA2FD8A560564736F6C63430008 SMOD STOP CALLER ",
"sourceMap": "493:971:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220514462ce61c5dfc31df23a9ea03bdd09b98d1e9ba4ab026f84b3bca2fd8a560564736f6c63430008070033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MLOAD DIFFICULTY PUSH3 0xCE61C5 0xDF 0xC3 SAR CALLCODE GASPRICE SWAP15 LOG0 EXTCODESIZE 0xDD MULMOD 0xB9 DUP14 0x1E SWAP12 LOG4 0xAB MUL PUSH16 0x84B3BCA2FD8A560564736F6C63430008 SMOD STOP CALLER ",
"sourceMap": "493:971:0:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17200",
"executionCost": "97",
"totalCost": "17297"
},
"internal": {
"current(struct Counters.Counter storage pointer)": "infinite",
"decrement(struct Counters.Counter storage pointer)": "infinite",
"increment(struct Counters.Counter storage pointer)": "infinite",
"reset(struct Counters.Counter storage pointer)": "infinite"
}
},
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"author": "Matt Condon (@shrugs)",
"details": "Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number of elements in a mapping, issuing ERC721 ids, or counting request ids. Include with `using Counters for Counters.Counter;`",
"kind": "dev",
"methods": {},
"title": "Counters",
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/MinterContract.sol": "Counters"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/MinterContract.sol": {
"keccak256": "0x3b8c848ada24a98c8f4f0101949d303368207375a381f1e5edc1d176a0203497",
"license": "MIT",
"urls": [
"bzz-raw://fdfc0e7d5775379cd21d3435af90adb13a4d7285b186c0b61ea96606ef7153f6",
"dweb:/ipfs/QmZ72mm57TVnB1QLcFpeStcU9fSUucWJhTMnpQALxGhHtX"
]
}
},
"version": 1
}
// this line is added to create a gist. Empty file is not allowed.
/**
*Submitted for verification at snowtrace.io on 2021-11-05
*/
/**
*Submitted for verification at FtmScan.com on 2021-10-02
*/
// SPDX-License-Identifier: agpl-3.0
pragma solidity 0.7.6;
// Part: Context
/*
* @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 GSN 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 payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// Part: Errors
/**
* @title Errors library
* @author Aave
* @notice Defines the error messages emitted by the different contracts of the Aave protocol
* @dev Error messages prefix glossary:
* - VL = ValidationLogic
* - MATH = Math libraries
* - CT = Common errors between tokens (AToken, VariableDebtToken and StableDebtToken)
* - AT = AToken
* - SDT = StableDebtToken
* - VDT = VariableDebtToken
* - LP = LendingPool
* - LPAPR = LendingPoolAddressesProviderRegistry
* - LPC = LendingPoolConfiguration
* - RL = ReserveLogic
* - LPCM = LendingPoolCollateralManager
* - P = Pausable
*/
library Errors {
//common errors
string public constant CALLER_NOT_POOL_ADMIN = '33'; // 'The caller must be the pool admin'
string public constant BORROW_ALLOWANCE_NOT_ENOUGH = '59'; // User borrows on behalf, but allowance are too small
//contract specific errors
string public constant VL_INVALID_AMOUNT = '1'; // 'Amount must be greater than 0'
string public constant VL_NO_ACTIVE_RESERVE = '2'; // 'Action requires an active reserve'
string public constant VL_RESERVE_FROZEN = '3'; // 'Action cannot be performed because the reserve is frozen'
string public constant VL_CURRENT_AVAILABLE_LIQUIDITY_NOT_ENOUGH = '4'; // 'The current liquidity is not enough'
string public constant VL_NOT_ENOUGH_AVAILABLE_USER_BALANCE = '5'; // 'User cannot withdraw more than the available balance'
string public constant VL_TRANSFER_NOT_ALLOWED = '6'; // 'Transfer cannot be allowed.'
string public constant VL_BORROWING_NOT_ENABLED = '7'; // 'Borrowing is not enabled'
string public constant VL_INVALID_INTEREST_RATE_MODE_SELECTED = '8'; // 'Invalid interest rate mode selected'
string public constant VL_COLLATERAL_BALANCE_IS_0 = '9'; // 'The collateral balance is 0'
string public constant VL_HEALTH_FACTOR_LOWER_THAN_LIQUIDATION_THRESHOLD = '10'; // 'Health factor is lesser than the liquidation threshold'
string public constant VL_COLLATERAL_CANNOT_COVER_NEW_BORROW = '11'; // 'There is not enough collateral to cover a new borrow'
string public constant VL_STABLE_BORROWING_NOT_ENABLED = '12'; // stable borrowing not enabled
string public constant VL_COLLATERAL_SAME_AS_BORROWING_CURRENCY = '13'; // collateral is (mostly) the same currency that is being borrowed
string public constant VL_AMOUNT_BIGGER_THAN_MAX_LOAN_SIZE_STABLE = '14'; // 'The requested amount is greater than the max loan size in stable rate mode
string public constant VL_NO_DEBT_OF_SELECTED_TYPE = '15'; // 'for repayment of stable debt, the user needs to have stable debt, otherwise, he needs to have variable debt'
string public constant VL_NO_EXPLICIT_AMOUNT_TO_REPAY_ON_BEHALF = '16'; // 'To repay on behalf of an user an explicit amount to repay is needed'
string public constant VL_NO_STABLE_RATE_LOAN_IN_RESERVE = '17'; // 'User does not have a stable rate loan in progress on this reserve'
string public constant VL_NO_VARIABLE_RATE_LOAN_IN_RESERVE = '18'; // 'User does not have a variable rate loan in progress on this reserve'
string public constant VL_UNDERLYING_BALANCE_NOT_GREATER_THAN_0 = '19'; // 'The underlying balance needs to be greater than 0'
string public constant VL_DEPOSIT_ALREADY_IN_USE = '20'; // 'User deposit is already being used as collateral'
string public constant LP_NOT_ENOUGH_STABLE_BORROW_BALANCE = '21'; // 'User does not have any stable rate loan for this reserve'
string public constant LP_INTEREST_RATE_REBALANCE_CONDITIONS_NOT_MET = '22'; // 'Interest rate rebalance conditions were not met'
string public constant LP_LIQUIDATION_CALL_FAILED = '23'; // 'Liquidation call failed'
string public constant LP_NOT_ENOUGH_LIQUIDITY_TO_BORROW = '24'; // 'There is not enough liquidity available to borrow'
string public constant LP_REQUESTED_AMOUNT_TOO_SMALL = '25'; // 'The requested amount is too small for a FlashLoan.'
string public constant LP_INCONSISTENT_PROTOCOL_ACTUAL_BALANCE = '26'; // 'The actual balance of the protocol is inconsistent'
string public constant LP_CALLER_NOT_LENDING_POOL_CONFIGURATOR = '27'; // 'The caller of the function is not the lending pool configurator'
string public constant LP_INCONSISTENT_FLASHLOAN_PARAMS = '28';
string public constant CT_CALLER_MUST_BE_LENDING_POOL = '29'; // 'The caller of this function must be a lending pool'
string public constant CT_CANNOT_GIVE_ALLOWANCE_TO_HIMSELF = '30'; // 'User cannot give allowance to himself'
string public constant CT_TRANSFER_AMOUNT_NOT_GT_0 = '31'; // 'Transferred amount needs to be greater than zero'
string public constant RL_RESERVE_ALREADY_INITIALIZED = '32'; // 'Reserve has already been initialized'
string public constant LPC_RESERVE_LIQUIDITY_NOT_0 = '34'; // 'The liquidity of the reserve needs to be 0'
string public constant LPC_INVALID_ATOKEN_POOL_ADDRESS = '35'; // 'The liquidity of the reserve needs to be 0'
string public constant LPC_INVALID_STABLE_DEBT_TOKEN_POOL_ADDRESS = '36'; // 'The liquidity of the reserve needs to be 0'
string public constant LPC_INVALID_VARIABLE_DEBT_TOKEN_POOL_ADDRESS = '37'; // 'The liquidity of the reserve needs to be 0'
string public constant LPC_INVALID_STABLE_DEBT_TOKEN_UNDERLYING_ADDRESS = '38'; // 'The liquidity of the reserve needs to be 0'
string public constant LPC_INVALID_VARIABLE_DEBT_TOKEN_UNDERLYING_ADDRESS = '39'; // 'The liquidity of the reserve needs to be 0'
string public constant LPC_INVALID_ADDRESSES_PROVIDER_ID = '40'; // 'The liquidity of the reserve needs to be 0'
string public constant LPC_INVALID_CONFIGURATION = '75'; // 'Invalid risk parameters for the reserve'
string public constant LPC_CALLER_NOT_EMERGENCY_ADMIN = '76'; // 'The caller must be the emergency admin'
string public constant LPAPR_PROVIDER_NOT_REGISTERED = '41'; // 'Provider is not registered'
string public constant LPCM_HEALTH_FACTOR_NOT_BELOW_THRESHOLD = '42'; // 'Health factor is not below the threshold'
string public constant LPCM_COLLATERAL_CANNOT_BE_LIQUIDATED = '43'; // 'The collateral chosen cannot be liquidated'
string public constant LPCM_SPECIFIED_CURRENCY_NOT_BORROWED_BY_USER = '44'; // 'User did not borrow the specified currency'
string public constant LPCM_NOT_ENOUGH_LIQUIDITY_TO_LIQUIDATE = '45'; // "There isn't enough liquidity available to liquidate"
string public constant LPCM_NO_ERRORS = '46'; // 'No errors'
string public constant LP_INVALID_FLASHLOAN_MODE = '47'; //Invalid flashloan mode selected
string public constant MATH_MULTIPLICATION_OVERFLOW = '48';
string public constant MATH_ADDITION_OVERFLOW = '49';
string public constant MATH_DIVISION_BY_ZERO = '50';
string public constant RL_LIQUIDITY_INDEX_OVERFLOW = '51'; // Liquidity index overflows uint128
string public constant RL_VARIABLE_BORROW_INDEX_OVERFLOW = '52'; // Variable borrow index overflows uint128
string public constant RL_LIQUIDITY_RATE_OVERFLOW = '53'; // Liquidity rate overflows uint128
string public constant RL_VARIABLE_BORROW_RATE_OVERFLOW = '54'; // Variable borrow rate overflows uint128
string public constant RL_STABLE_BORROW_RATE_OVERFLOW = '55'; // Stable borrow rate overflows uint128
string public constant CT_INVALID_MINT_AMOUNT = '56'; //invalid amount to mint
string public constant LP_FAILED_REPAY_WITH_COLLATERAL = '57';
string public constant CT_INVALID_BURN_AMOUNT = '58'; //invalid amount to burn
string public constant LP_FAILED_COLLATERAL_SWAP = '60';
string public constant LP_INVALID_EQUAL_ASSETS_TO_SWAP = '61';
string public constant LP_REENTRANCY_NOT_ALLOWED = '62';
string public constant LP_CALLER_MUST_BE_AN_ATOKEN = '63';
string public constant LP_IS_PAUSED = '64'; // 'Pool is paused'
string public constant LP_NO_MORE_RESERVES_ALLOWED = '65';
string public constant LP_INVALID_FLASH_LOAN_EXECUTOR_RETURN = '66';
string public constant RC_INVALID_LTV = '67';
string public constant RC_INVALID_LIQ_THRESHOLD = '68';
string public constant RC_INVALID_LIQ_BONUS = '69';
string public constant RC_INVALID_DECIMALS = '70';
string public constant RC_INVALID_RESERVE_FACTOR = '71';
string public constant LPAPR_INVALID_ADDRESSES_PROVIDER_ID = '72';
string public constant VL_INCONSISTENT_FLASHLOAN_PARAMS = '73';
string public constant LP_INCONSISTENT_PARAMS_LENGTH = '74';
string public constant UL_INVALID_INDEX = '77';
string public constant LP_NOT_CONTRACT = '78';
string public constant SDT_STABLE_DEBT_OVERFLOW = '79';
string public constant SDT_BURN_EXCEEDS_BALANCE = '80';
enum CollateralManagerErrors {
NO_ERROR,
NO_COLLATERAL_AVAILABLE,
COLLATERAL_CANNOT_BE_LIQUIDATED,
CURRRENCY_NOT_BORROWED,
HEALTH_FACTOR_ABOVE_THRESHOLD,
NOT_ENOUGH_LIQUIDITY,
NO_ACTIVE_RESERVE,
HEALTH_FACTOR_LOWER_THAN_LIQUIDATION_THRESHOLD,
INVALID_EQUAL_ASSETS_TO_SWAP,
FROZEN_RESERVE
}
}
// Part: ILendingPoolAddressesProviderRegistry
/**
* @title LendingPoolAddressesProviderRegistry contract
* @dev Main registry of LendingPoolAddressesProvider of multiple Aave protocol's markets
* - Used for indexing purposes of Aave protocol's markets
* - The id assigned to a LendingPoolAddressesProvider refers to the market it is connected with,
* for example with `0` for the Aave main market and `1` for the next created
* @author Aave
**/
interface ILendingPoolAddressesProviderRegistry {
event AddressesProviderRegistered(address indexed newAddress);
event AddressesProviderUnregistered(address indexed newAddress);
function getAddressesProvidersList() external view returns (address[] memory);
function getAddressesProviderIdByAddress(address addressesProvider)
external
view
returns (uint256);
function registerAddressesProvider(address provider, uint256 id) external;
function unregisterAddressesProvider(address provider) external;
}
// Part: Ownable
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), 'Ownable: caller is not the owner');
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), 'Ownable: new owner is the zero address');
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// File: LendingPoolAddressesProviderRegistry.sol
/**
* @title LendingPoolAddressesProviderRegistry contract
* @dev Main registry of LendingPoolAddressesProvider of multiple Aave protocol's markets
* - Used for indexing purposes of Aave protocol's markets
* - The id assigned to a LendingPoolAddressesProvider refers to the market it is connected with,
* for example with `0` for the Aave main market and `1` for the next created
* @author Aave
**/
contract LendingPoolAddressesProviderRegistry is Ownable, ILendingPoolAddressesProviderRegistry {
mapping(address => uint256) private _addressesProviders;
address[] private _addressesProvidersList;
/**
* @dev Returns the list of registered addresses provider
* @return The list of addresses provider, potentially containing address(0) elements
**/
function getAddressesProvidersList() external view override returns (address[] memory) {
address[] memory addressesProvidersList = _addressesProvidersList;
uint256 maxLength = addressesProvidersList.length;
address[] memory activeProviders = new address[](maxLength);
for (uint256 i = 0; i < maxLength; i++) {
if (_addressesProviders[addressesProvidersList[i]] > 0) {
activeProviders[i] = addressesProvidersList[i];
}
}
return activeProviders;
}
/**
* @dev Registers an addresses provider
* @param provider The address of the new LendingPoolAddressesProvider
* @param id The id for the new LendingPoolAddressesProvider, referring to the market it belongs to
**/
function registerAddressesProvider(address provider, uint256 id) external override onlyOwner {
require(id != 0, Errors.LPAPR_INVALID_ADDRESSES_PROVIDER_ID);
_addressesProviders[provider] = id;
_addToAddressesProvidersList(provider);
emit AddressesProviderRegistered(provider);
}
/**
* @dev Removes a LendingPoolAddressesProvider from the list of registered addresses provider
* @param provider The LendingPoolAddressesProvider address
**/
function unregisterAddressesProvider(address provider) external override onlyOwner {
require(_addressesProviders[provider] > 0, Errors.LPAPR_PROVIDER_NOT_REGISTERED);
_addressesProviders[provider] = 0;
emit AddressesProviderUnregistered(provider);
}
/**
* @dev Returns the id on a registered LendingPoolAddressesProvider
* @return The id or 0 if the LendingPoolAddressesProvider is not registered
*/
function getAddressesProviderIdByAddress(address addressesProvider)
external
view
override
returns (uint256)
{
return _addressesProviders[addressesProvider];
}
function _addToAddressesProvidersList(address provider) internal {
uint256 providersCount = _addressesProvidersList.length;
for (uint256 i = 0; i < providersCount; i++) {
if (_addressesProvidersList[i] == provider) {
return;
}
}
_addressesProvidersList.push(provider);
}
}
This file has been truncated, but you can view the full file.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_166": {
"entryPoint": null,
"id": 166,
"parameterSlots": 2,
"returnSlots": 0
},
"@_2049": {
"entryPoint": null,
"id": 2049,
"parameterSlots": 2,
"returnSlots": 0
},
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_1758": {
"entryPoint": 324,
"id": 1758,
"parameterSlots": 0,
"returnSlots": 1
},
"@_setOwner_102": {
"entryPoint": 332,
"id": 102,
"parameterSlots": 1,
"returnSlots": 0
},
"@owner_32": {
"entryPoint": 699,
"id": 32,
"parameterSlots": 0,
"returnSlots": 1
},
"@setBaseURI_2061": {
"entryPoint": 528,
"id": 2061,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr_fromMemory": {
"entryPoint": 916,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr_fromMemory": {
"entryPoint": 991,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 1042,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1175,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1214,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1248,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 1279,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1289,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1343,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 1360,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 1414,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1468,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1522,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1569,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 1616,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1621,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 1626,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1631,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 1636,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 1653,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5253:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "102:326:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "112:75:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "179:6:13"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "137:41:13"
},
"nodeType": "YulFunctionCall",
"src": "137:49:13"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "121:15:13"
},
"nodeType": "YulFunctionCall",
"src": "121:66:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "112:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "203:5:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "210:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "196:6:13"
},
"nodeType": "YulFunctionCall",
"src": "196:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "196:21:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "226:27:13",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "241:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "248:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "237:3:13"
},
"nodeType": "YulFunctionCall",
"src": "237:16:13"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "230:3:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "291:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "293:77:13"
},
"nodeType": "YulFunctionCall",
"src": "293:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "293:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "272:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "277:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "268:3:13"
},
"nodeType": "YulFunctionCall",
"src": "268:16:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "286:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "265:2:13"
},
"nodeType": "YulFunctionCall",
"src": "265:25:13"
},
"nodeType": "YulIf",
"src": "262:112:13"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "405:3:13"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "410:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "415:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "383:21:13"
},
"nodeType": "YulFunctionCall",
"src": "383:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "383:39:13"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "75:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "80:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "88:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "96:5:13",
"type": ""
}
],
"src": "7:421:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "521:282:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "570:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "572:77:13"
},
"nodeType": "YulFunctionCall",
"src": "572:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "572:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "549:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "557:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "545:3:13"
},
"nodeType": "YulFunctionCall",
"src": "545:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "564:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "541:3:13"
},
"nodeType": "YulFunctionCall",
"src": "541:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "534:6:13"
},
"nodeType": "YulFunctionCall",
"src": "534:35:13"
},
"nodeType": "YulIf",
"src": "531:122:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "662:27:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "682:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "676:5:13"
},
"nodeType": "YulFunctionCall",
"src": "676:13:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "666:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "698:99:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "770:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "778:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "766:3:13"
},
"nodeType": "YulFunctionCall",
"src": "766:17:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "785:6:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "793:3:13"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "707:58:13"
},
"nodeType": "YulFunctionCall",
"src": "707:90:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "698:5:13"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "499:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "507:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "515:5:13",
"type": ""
}
],
"src": "448:355:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "923:739:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "969:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "971:77:13"
},
"nodeType": "YulFunctionCall",
"src": "971:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "971:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "944:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "953:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "940:3:13"
},
"nodeType": "YulFunctionCall",
"src": "940:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "965:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "936:3:13"
},
"nodeType": "YulFunctionCall",
"src": "936:32:13"
},
"nodeType": "YulIf",
"src": "933:119:13"
},
{
"nodeType": "YulBlock",
"src": "1062:291:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1077:38:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1101:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1112:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1097:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1097:17:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1091:5:13"
},
"nodeType": "YulFunctionCall",
"src": "1091:24:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1081:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1162:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1164:77:13"
},
"nodeType": "YulFunctionCall",
"src": "1164:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "1164:79:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1134:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1142:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1131:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1131:30:13"
},
"nodeType": "YulIf",
"src": "1128:117:13"
},
{
"nodeType": "YulAssignment",
"src": "1259:84:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1315:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1326:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1311:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1311:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1335:7:13"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1269:41:13"
},
"nodeType": "YulFunctionCall",
"src": "1269:74:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1259:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1363:292:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1378:39:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1402:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1413:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1398:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1398:18:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1392:5:13"
},
"nodeType": "YulFunctionCall",
"src": "1392:25:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1382:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1464:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1466:77:13"
},
"nodeType": "YulFunctionCall",
"src": "1466:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "1466:79:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1436:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1444:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1433:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1433:30:13"
},
"nodeType": "YulIf",
"src": "1430:117:13"
},
{
"nodeType": "YulAssignment",
"src": "1561:84:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1617:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1628:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1613:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1613:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1637:7:13"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1571:41:13"
},
"nodeType": "YulFunctionCall",
"src": "1571:74:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1561:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "885:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "896:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "908:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "916:6:13",
"type": ""
}
],
"src": "809:853:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1814:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1824:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1890:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1895:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1831:58:13"
},
"nodeType": "YulFunctionCall",
"src": "1831:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1824:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1996:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "1907:88:13"
},
"nodeType": "YulFunctionCall",
"src": "1907:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "1907:93:13"
},
{
"nodeType": "YulAssignment",
"src": "2009:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2020:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2025:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2016:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2016:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2009:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1802:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1810:3:13",
"type": ""
}
],
"src": "1668:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2211:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2221:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2233:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2244:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2229:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2229:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2221:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2268:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2279:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2264:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2264:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2287:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2293:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2283:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2283:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2257:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2257:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "2257:47:13"
},
{
"nodeType": "YulAssignment",
"src": "2313:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2447:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2321:124:13"
},
"nodeType": "YulFunctionCall",
"src": "2321:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2313:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2191:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2206:4:13",
"type": ""
}
],
"src": "2040:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2506:88:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2516:30:13",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "2526:18:13"
},
"nodeType": "YulFunctionCall",
"src": "2526:20:13"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2516:6:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2575:6:13"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2583:4:13"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "2555:19:13"
},
"nodeType": "YulFunctionCall",
"src": "2555:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "2555:33:13"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2490:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2499:6:13",
"type": ""
}
],
"src": "2465:129:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2640:35:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2650:19:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2666:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2660:5:13"
},
"nodeType": "YulFunctionCall",
"src": "2660:9:13"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2650:6:13"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2633:6:13",
"type": ""
}
],
"src": "2600:75:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2748:241:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2853:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2855:16:13"
},
"nodeType": "YulFunctionCall",
"src": "2855:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "2855:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2825:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2833:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2822:2:13"
},
"nodeType": "YulFunctionCall",
"src": "2822:30:13"
},
"nodeType": "YulIf",
"src": "2819:56:13"
},
{
"nodeType": "YulAssignment",
"src": "2885:37:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2915:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2893:21:13"
},
"nodeType": "YulFunctionCall",
"src": "2893:29:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2885:4:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2959:23:13",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2971:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2977:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2967:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2967:15:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2959:4:13"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2732:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2743:4:13",
"type": ""
}
],
"src": "2681:308:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3091:73:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3108:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3113:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3101:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3101:19:13"
},
"nodeType": "YulExpressionStatement",
"src": "3101:19:13"
},
{
"nodeType": "YulAssignment",
"src": "3129:29:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3148:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3153:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3144:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3144:14:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "3129:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3063:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3068:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "3079:11:13",
"type": ""
}
],
"src": "2995:169:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3219:258:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3229:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3238:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "3233:1:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3298:63:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3323:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3328:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3319:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3319:11:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3342:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3347:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3338:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3338:11:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3332:5:13"
},
"nodeType": "YulFunctionCall",
"src": "3332:18:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3312:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3312:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "3312:39:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3259:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3262:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3256:2:13"
},
"nodeType": "YulFunctionCall",
"src": "3256:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "3270:19:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3272:15:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3281:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3284:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3277:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3277:10:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3272:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "3252:3:13",
"statements": []
},
"src": "3248:113:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3395:76:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3445:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3450:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3441:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3441:16:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3459:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3434:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3434:27:13"
},
"nodeType": "YulExpressionStatement",
"src": "3434:27:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3376:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3379:6:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3373:2:13"
},
"nodeType": "YulFunctionCall",
"src": "3373:13:13"
},
"nodeType": "YulIf",
"src": "3370:101:13"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3201:3:13",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "3206:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3211:6:13",
"type": ""
}
],
"src": "3170:307:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3534:269:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3544:22:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3558:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3564:1:13",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "3554:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3554:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3544:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3575:38:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3605:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3611:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3601:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3601:12:13"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "3579:18:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3652:51:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3666:27:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3680:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3688:4:13",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3676:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3676:17:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3666:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "3632:18:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3625:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3625:26:13"
},
"nodeType": "YulIf",
"src": "3622:81:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3755:42:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "3769:16:13"
},
"nodeType": "YulFunctionCall",
"src": "3769:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "3769:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "3719:18:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3742:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3750:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3739:2:13"
},
"nodeType": "YulFunctionCall",
"src": "3739:14:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3716:2:13"
},
"nodeType": "YulFunctionCall",
"src": "3716:38:13"
},
"nodeType": "YulIf",
"src": "3713:84:13"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3518:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3527:6:13",
"type": ""
}
],
"src": "3483:320:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3852:238:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3862:58:13",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3884:6:13"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3914:4:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "3892:21:13"
},
"nodeType": "YulFunctionCall",
"src": "3892:27:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3880:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3880:40:13"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "3866:10:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4031:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4033:16:13"
},
"nodeType": "YulFunctionCall",
"src": "4033:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "4033:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3974:10:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3986:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3971:2:13"
},
"nodeType": "YulFunctionCall",
"src": "3971:34:13"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "4010:10:13"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4022:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4007:2:13"
},
"nodeType": "YulFunctionCall",
"src": "4007:22:13"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3968:2:13"
},
"nodeType": "YulFunctionCall",
"src": "3968:62:13"
},
"nodeType": "YulIf",
"src": "3965:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4069:2:13",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "4073:10:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4062:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4062:22:13"
},
"nodeType": "YulExpressionStatement",
"src": "4062:22:13"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3838:6:13",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3846:4:13",
"type": ""
}
],
"src": "3809:281:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4124:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4141:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4144:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4134:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4134:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "4134:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4238:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4241:4:13",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4231:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4231:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "4231:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4262:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4265:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4255:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4255:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "4255:15:13"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "4096:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4310:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4327:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4330:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4320:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4320:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "4320:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4424:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4427:4:13",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4417:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4417:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "4417:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4448:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4451:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4441:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4441:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "4441:15:13"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "4282:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4557:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4574:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4577:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4567:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4567:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "4567:12:13"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "4468:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4680:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4697:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4700:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4690:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4690:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "4690:12:13"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "4591:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4803:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4820:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4823:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4813:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4813:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "4813:12:13"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "4714:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4926:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4943:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4946:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4936:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4936:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "4936:12:13"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "4837:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5008:54:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5018:38:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5036:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5043:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5032:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5032:14:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5052:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "5048:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5048:7:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5028:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5028:28:13"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "5018:6:13"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4991:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "5001:6:13",
"type": ""
}
],
"src": "4960:102:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5174:76:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5196:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5204:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5192:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5192:14:13"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5208:34:13",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5185:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5185:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "5185:58:13"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "5166:6:13",
"type": ""
}
],
"src": "5068:182:13"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr_fromMemory(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_memory_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := mload(offset)\n array := abi_decode_available_length_t_string_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function 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_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function 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_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n}\n",
"id": 13,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040526000600b60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162004f1038038062004f10833981810160405281019062000052919062000412565b6040518060400160405280600d81526020017f447973746f50756e6b73205632000000000000000000000000000000000000008152506040518060400160405280600581526020017f445953544f000000000000000000000000000000000000000000000000000000815250620000de620000d26200014460201b60201c565b6200014c60201b60201c565b8160019080519060200190620000f6929190620002e4565b5080600290805190602001906200010f929190620002e4565b50505062000123826200021060201b60201c565b80600e90805190602001906200013b929190620002e4565b5050506200069e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002206200014460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000246620002bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200029f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029690620004be565b60405180910390fd5b80600d9080519060200190620002b7929190620002e4565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002f29062000586565b90600052602060002090601f01602090048101928262000316576000855562000362565b82601f106200033157805160ff191683800117855562000362565b8280016001018555821562000362579182015b828111156200036157825182559160200191906001019062000344565b5b50905062000371919062000375565b5090565b5b808211156200039057600081600090555060010162000376565b5090565b6000620003ab620003a58462000509565b620004e0565b905082815260208101848484011115620003ca57620003c962000655565b5b620003d784828562000550565b509392505050565b600082601f830112620003f757620003f662000650565b5b81516200040984826020860162000394565b91505092915050565b600080604083850312156200042c576200042b6200065f565b5b600083015167ffffffffffffffff8111156200044d576200044c6200065a565b5b6200045b85828601620003df565b925050602083015167ffffffffffffffff8111156200047f576200047e6200065a565b5b6200048d85828601620003df565b9150509250929050565b6000620004a66020836200053f565b9150620004b38262000675565b602082019050919050565b60006020820190508181036000830152620004d98162000497565b9050919050565b6000620004ec620004ff565b9050620004fa8282620005bc565b919050565b6000604051905090565b600067ffffffffffffffff82111562000527576200052662000621565b5b620005328262000664565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200057057808201518184015260208101905062000553565b8381111562000580576000848401525b50505050565b600060028204905060018216806200059f57607f821691505b60208210811415620005b657620005b5620005f2565b5b50919050565b620005c78262000664565b810181811067ffffffffffffffff82111715620005e957620005e862000621565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61486280620006ae6000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063b2075a3b116100a0578063ca373a8b1161006f578063ca373a8b146106c8578063d348b409146106e4578063e8a3d4851461070f578063e985e9c51461073a578063f2fde38b14610777576101ee565b8063b2075a3b1461060e578063b66a0e5d1461064b578063b88d4fde14610662578063c87b56dd1461068b576101ee565b806395d89b41116100dc57806395d89b41146105785780639d0ce7fc146105a3578063a15daffc146105ce578063a22cb465146105e5576101ee565b8063715018a6146104ef5780638462151c14610506578063853828b6146105435780638da5cb5b1461054d576101ee565b806342842e0e1161018557806355f804b31161015457806355f804b3146104235780636352211e1461044c5780636d1879ca1461048957806370a08231146104b2576101ee565b806342842e0e1461037d5780634a3cd688146103a65780634f6ccce7146103cf57806355367ba91461040c576101ee565b806318160ddd116101c157806318160ddd146102c15780631c8b232d146102ec57806323b872dd146103175780632f745c5914610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061318a565b6107a0565b604051610227919061388c565b60405180910390f35b34801561023c57600080fd5b5061024561081a565b60405161025291906138a7565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d919061322d565b6108ac565b60405161028f9190613803565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba919061314a565b610931565b005b3480156102cd57600080fd5b506102d6610a49565b6040516102e39190613c29565b60405180910390f35b3480156102f857600080fd5b50610301610a56565b60405161030e919061388c565b60405180910390f35b34801561032357600080fd5b5061033e60048036038101906103399190613034565b610a69565b005b34801561034c57600080fd5b506103676004803603810190610362919061314a565b610ac9565b6040516103749190613c29565b60405180910390f35b34801561038957600080fd5b506103a4600480360381019061039f9190613034565b610b6e565b005b3480156103b257600080fd5b506103cd60048036038101906103c8919061322d565b610b8e565b005b3480156103db57600080fd5b506103f660048036038101906103f1919061322d565b610d01565b6040516104039190613c29565b60405180910390f35b34801561041857600080fd5b50610421610d72565b005b34801561042f57600080fd5b5061044a600480360381019061044591906131e4565b610e0b565b005b34801561045857600080fd5b50610473600480360381019061046e919061322d565b610ea1565b6040516104809190613803565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab919061314a565b610f53565b005b3480156104be57600080fd5b506104d960048036038101906104d49190612fc7565b611017565b6040516104e69190613c29565b60405180910390f35b3480156104fb57600080fd5b506105046110cf565b005b34801561051257600080fd5b5061052d60048036038101906105289190612fc7565b611157565b60405161053a919061386a565b60405180910390f35b61054b611261565b005b34801561055957600080fd5b5061056261131d565b60405161056f9190613803565b60405180910390f35b34801561058457600080fd5b5061058d611346565b60405161059a91906138a7565b60405180910390f35b3480156105af57600080fd5b506105b86113d8565b6040516105c59190613c29565b60405180910390f35b3480156105da57600080fd5b506105e36113de565b005b3480156105f157600080fd5b5061060c6004803603810190610607919061310a565b6115c3565b005b34801561061a57600080fd5b5061063560048036038101906106309190612fc7565b611744565b6040516106429190613c29565b60405180910390f35b34801561065757600080fd5b5061066061178d565b005b34801561066e57600080fd5b5061068960048036038101906106849190613087565b611826565b005b34801561069757600080fd5b506106b260048036038101906106ad919061322d565b611888565b6040516106bf91906138a7565b60405180910390f35b6106e260048036038101906106dd919061322d565b6118bc565b005b3480156106f057600080fd5b506106f9611a3c565b6040516107069190613c29565b60405180910390f35b34801561071b57600080fd5b50610724611b79565b60405161073191906138a7565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190612ff4565b611c0b565b60405161076e919061388c565b60405180910390f35b34801561078357600080fd5b5061079e60048036038101906107999190612fc7565b611c9f565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610813575061081282611d97565b5b9050919050565b60606001805461082990613f27565b80601f016020809104026020016040519081016040528092919081815260200182805461085590613f27565b80156108a25780601f10610877576101008083540402835291602001916108a2565b820191906000526020600020905b81548152906001019060200180831161088557829003601f168201915b5050505050905090565b60006108b782611e79565b6108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed90613b09565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093c82610ea1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a490613b69565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109cc611ee5565b73ffffffffffffffffffffffffffffffffffffffff1614806109fb57506109fa816109f5611ee5565b611c0b565b5b610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3190613a29565b60405180910390fd5b610a448383611eed565b505050565b6000600980549050905090565b600b60009054906101000a900460ff1681565b610a7a610a74611ee5565b82611fa6565b610ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab090613bc9565b60405180910390fd5b610ac4838383612084565b505050565b6000610ad483611017565b8210610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c906138e9565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b8983838360405180602001604052806000815250611826565b505050565b610b96611ee5565b73ffffffffffffffffffffffffffffffffffffffff16610bb461131d565b73ffffffffffffffffffffffffffffffffffffffff1614610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0190613b29565b60405180910390fd5b6000610c14610a49565b9050608282610c21610a49565b610c2b9190613d5c565b1115610c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c63906138c9565b60405180910390fd5b60001515600b60009054906101000a900460ff16151514610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb990613a89565b60405180910390fd5b60005b82811015610cfc57610ce9610cd861131d565b8284610ce49190613d5c565b6122e0565b8080610cf490613f8a565b915050610cc5565b505050565b6000610d0b610a49565b8210610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4390613be9565b60405180910390fd5b60098281548110610d6057610d5f6140c0565b5b90600052602060002001549050919050565b610d7a611ee5565b73ffffffffffffffffffffffffffffffffffffffff16610d9861131d565b73ffffffffffffffffffffffffffffffffffffffff1614610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590613b29565b60405180910390fd5b6000600b60006101000a81548160ff021916908315150217905550565b610e13611ee5565b73ffffffffffffffffffffffffffffffffffffffff16610e3161131d565b73ffffffffffffffffffffffffffffffffffffffff1614610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90613b29565b60405180910390fd5b80600d9080519060200190610e9d929190612ddb565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4190613a69565b60405180910390fd5b80915050919050565b610f5b611ee5565b73ffffffffffffffffffffffffffffffffffffffff16610f7961131d565b73ffffffffffffffffffffffffffffffffffffffff1614610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc690613b29565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90613a49565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110d7611ee5565b73ffffffffffffffffffffffffffffffffffffffff166110f561131d565b73ffffffffffffffffffffffffffffffffffffffff161461114b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114290613b29565b60405180910390fd5b61115560006122fe565b565b6060600061116483611017565b905060008114156111c157600067ffffffffffffffff81111561118a576111896140ef565b5b6040519080825280602002602001820160405280156111b85781602001602082028036833780820191505090505b5091505061125c565b60008167ffffffffffffffff8111156111dd576111dc6140ef565b5b60405190808252806020026020018201604052801561120b5781602001602082028036833780820191505090505b50905060005b82811015611255576112238582610ac9565b828281518110611236576112356140c0565b5b602002602001018181525050808061124d90613f8a565b915050611211565b8193505050505b919050565b611269611ee5565b73ffffffffffffffffffffffffffffffffffffffff1661128761131d565b73ffffffffffffffffffffffffffffffffffffffff16146112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d490613b29565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061131b57600080fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461135590613f27565b80601f016020809104026020016040519081016040528092919081815260200182805461138190613f27565b80156113ce5780601f106113a3576101008083540402835291602001916113ce565b820191906000526020600020905b8154815290600101906020018083116113b157829003601f168201915b5050505050905090565b61081d81565b61081d6113e9610a49565b10611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142090613ae9565b60405180910390fd5b60011515600b60009054906101000a900460ff1615151461147f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147690613a09565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f890613ba9565b60405180910390fd5b60003390506000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060005b818110156115795761156683611561610a49565b6122e0565b808061157190613f8a565b91505061154d565b506000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6115cb611ee5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611639576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611630906139a9565b60405180910390fd5b8060066000611646611ee5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116f3611ee5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611738919061388c565b60405180910390a35050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611795611ee5565b73ffffffffffffffffffffffffffffffffffffffff166117b361131d565b73ffffffffffffffffffffffffffffffffffffffff1614611809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180090613b29565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b611837611831611ee5565b83611fa6565b611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d90613bc9565b60405180910390fd5b611882848484846123c2565b50505050565b6060600d6118958361241e565b6040516020016118a69291906137df565b6040516020818303038152906040529050919050565b61081d6118c7610a49565b10611907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fe90613b89565b60405180910390fd5b600081118015611918575060148111155b611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e906139e9565b60405180910390fd5b61081d81611963610a49565b61196d9190613d5c565b11156119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a590613969565b60405180910390fd5b806119b7611a3c565b6119c19190613de3565b341015611a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fa90613aa9565b60405180910390fd5b60005b81811015611a38576000611a18610a49565b9050611a2433826122e0565b508080611a3090613f8a565b915050611a06565b5050565b600060011515600b60009054906101000a900460ff16151514611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b90613c09565b60405180910390fd5b61081d611a9f610a49565b10611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad690613b89565b60405180910390fd5b6000611ae9610a49565b90506107d08110611b055767016345785d8a0000915050611b76565b6106838110611b1f5767011c37937e080000915050611b76565b6105368110611b385766d529ae9e860000915050611b76565b6103e98110611b5157668e1bc9bf040000915050611b76565b6101f58110611b6a57666a94d74f430000915050611b76565b66470de4df8200009150505b90565b6060600e8054611b8890613f27565b80601f0160208091040260200160405190810160405280929190818152602001828054611bb490613f27565b8015611c015780601f10611bd657610100808354040283529160200191611c01565b820191906000526020600020905b815481529060010190602001808311611be457829003601f168201915b5050505050905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ca7611ee5565b73ffffffffffffffffffffffffffffffffffffffff16611cc561131d565b73ffffffffffffffffffffffffffffffffffffffff1614611d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1290613b29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8290613929565b60405180910390fd5b611d94816122fe565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e6257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e725750611e718261257f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f6083610ea1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fb182611e79565b611ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe7906139c9565b60405180910390fd5b6000611ffb83610ea1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061206a57508373ffffffffffffffffffffffffffffffffffffffff16612052846108ac565b73ffffffffffffffffffffffffffffffffffffffff16145b8061207b575061207a8185611c0b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120a482610ea1565b73ffffffffffffffffffffffffffffffffffffffff16146120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f190613b49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561216a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216190613989565b60405180910390fd5b6121758383836125e9565b612180600082611eed565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d09190613e3d565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122279190613d5c565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6122fa8282604051806020016040528060008152506126fd565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123cd848484612084565b6123d984848484612758565b612418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240f90613909565b60405180910390fd5b50505050565b60606000821415612466576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061257a565b600082905060005b6000821461249857808061248190613f8a565b915050600a826124919190613db2565b915061246e565b60008167ffffffffffffffff8111156124b4576124b36140ef565b5b6040519080825280601f01601f1916602001820160405280156124e65781602001600182028036833780820191505090505b5090505b60008514612573576001826124ff9190613e3d565b9150600a8561250e9190613fd3565b603061251a9190613d5c565b60f81b8183815181106125305761252f6140c0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561256c9190613db2565b94506124ea565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6125f48383836128ef565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561263757612632816128f4565b612676565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461267557612674838261293d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126b9576126b481612aaa565b6126f8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146126f7576126f68282612b7b565b5b5b505050565b6127078383612bfa565b6127146000848484612758565b612753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274a90613909565b60405180910390fd5b505050565b60006127798473ffffffffffffffffffffffffffffffffffffffff16612dc8565b156128e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127a2611ee5565b8786866040518563ffffffff1660e01b81526004016127c4949392919061381e565b602060405180830381600087803b1580156127de57600080fd5b505af192505050801561280f57506040513d601f19601f8201168201806040525081019061280c91906131b7565b60015b612892573d806000811461283f576040519150601f19603f3d011682016040523d82523d6000602084013e612844565b606091505b5060008151141561288a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288190613909565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128e7565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161294a84611017565b6129549190613e3d565b9050600060086000848152602001908152602001600020549050818114612a39576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612abe9190613e3d565b90506000600a6000848152602001908152602001600020549050600060098381548110612aee57612aed6140c0565b5b906000526020600020015490508060098381548110612b1057612b0f6140c0565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612b5f57612b5e614091565b5b6001900381819060005260206000200160009055905550505050565b6000612b8683611017565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6190613ac9565b60405180910390fd5b612c7381611e79565b15612cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caa90613949565b60405180910390fd5b612cbf600083836125e9565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d0f9190613d5c565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612de790613f27565b90600052602060002090601f016020900481019282612e095760008555612e50565b82601f10612e2257805160ff1916838001178555612e50565b82800160010185558215612e50579182015b82811115612e4f578251825591602001919060010190612e34565b5b509050612e5d9190612e61565b5090565b5b80821115612e7a576000816000905550600101612e62565b5090565b6000612e91612e8c84613c69565b613c44565b905082815260208101848484011115612ead57612eac614123565b5b612eb8848285613ee5565b509392505050565b6000612ed3612ece84613c9a565b613c44565b905082815260208101848484011115612eef57612eee614123565b5b612efa848285613ee5565b509392505050565b600081359050612f11816147d0565b92915050565b600081359050612f26816147e7565b92915050565b600081359050612f3b816147fe565b92915050565b600081519050612f50816147fe565b92915050565b600082601f830112612f6b57612f6a61411e565b5b8135612f7b848260208601612e7e565b91505092915050565b600082601f830112612f9957612f9861411e565b5b8135612fa9848260208601612ec0565b91505092915050565b600081359050612fc181614815565b92915050565b600060208284031215612fdd57612fdc61412d565b5b6000612feb84828501612f02565b91505092915050565b6000806040838503121561300b5761300a61412d565b5b600061301985828601612f02565b925050602061302a85828601612f02565b9150509250929050565b60008060006060848603121561304d5761304c61412d565b5b600061305b86828701612f02565b935050602061306c86828701612f02565b925050604061307d86828701612fb2565b9150509250925092565b600080600080608085870312156130a1576130a061412d565b5b60006130af87828801612f02565b94505060206130c087828801612f02565b93505060406130d187828801612fb2565b925050606085013567ffffffffffffffff8111156130f2576130f1614128565b5b6130fe87828801612f56565b91505092959194509250565b600080604083850312156131215761312061412d565b5b600061312f85828601612f02565b925050602061314085828601612f17565b9150509250929050565b600080604083850312156131615761316061412d565b5b600061316f85828601612f02565b925050602061318085828601612fb2565b9150509250929050565b6000602082840312156131a05761319f61412d565b5b60006131ae84828501612f2c565b91505092915050565b6000602082840312156131cd576131cc61412d565b5b60006131db84828501612f41565b91505092915050565b6000602082840312156131fa576131f961412d565b5b600082013567ffffffffffffffff81111561321857613217614128565b5b61322484828501612f84565b91505092915050565b6000602082840312156132435761324261412d565b5b600061325184828501612fb2565b91505092915050565b600061326683836137c1565b60208301905092915050565b61327b81613e71565b82525050565b600061328c82613cf0565b6132968185613d1e565b93506132a183613ccb565b8060005b838110156132d25781516132b9888261325a565b97506132c483613d11565b9250506001810190506132a5565b5085935050505092915050565b6132e881613e83565b82525050565b60006132f982613cfb565b6133038185613d2f565b9350613313818560208601613ef4565b61331c81614132565b840191505092915050565b600061333282613d06565b61333c8185613d40565b935061334c818560208601613ef4565b61335581614132565b840191505092915050565b600061336b82613d06565b6133758185613d51565b9350613385818560208601613ef4565b80840191505092915050565b6000815461339e81613f27565b6133a88186613d51565b945060018216600081146133c357600181146133d457613407565b60ff19831686528186019350613407565b6133dd85613cdb565b60005b838110156133ff578154818901526001820191506020810190506133e0565b838801955050505b50505092915050565b600061341d601783613d40565b915061342882614143565b602082019050919050565b6000613440602b83613d40565b915061344b8261416c565b604082019050919050565b6000613463603283613d40565b915061346e826141bb565b604082019050919050565b6000613486602683613d40565b91506134918261420a565b604082019050919050565b60006134a9601c83613d40565b91506134b482614259565b602082019050919050565b60006134cc601283613d40565b91506134d782614282565b602082019050919050565b60006134ef602483613d40565b91506134fa826142ab565b604082019050919050565b6000613512601983613d40565b915061351d826142fa565b602082019050919050565b6000613535602c83613d40565b915061354082614323565b604082019050919050565b6000613558602d83613d40565b915061356382614372565b604082019050919050565b600061357b601c83613d40565b9150613586826143c1565b602082019050919050565b600061359e603883613d40565b91506135a9826143ea565b604082019050919050565b60006135c1602a83613d40565b91506135cc82614439565b604082019050919050565b60006135e4602983613d40565b91506135ef82614488565b604082019050919050565b6000613607601883613d40565b9150613612826144d7565b602082019050919050565b600061362a602383613d40565b915061363582614500565b604082019050919050565b600061364d602083613d40565b91506136588261454f565b602082019050919050565b6000613670600883613d40565b915061367b82614578565b602082019050919050565b6000613693602c83613d40565b915061369e826145a1565b604082019050919050565b60006136b6602083613d40565b91506136c1826145f0565b602082019050919050565b60006136d9602983613d40565b91506136e482614619565b604082019050919050565b60006136fc602183613d40565b915061370782614668565b604082019050919050565b600061371f601683613d40565b915061372a826146b7565b602082019050919050565b6000613742600983613d40565b915061374d826146e0565b602082019050919050565b6000613765603183613d40565b915061377082614709565b604082019050919050565b6000613788602c83613d40565b915061379382614758565b604082019050919050565b60006137ab601383613d40565b91506137b6826147a7565b602082019050919050565b6137ca81613edb565b82525050565b6137d981613edb565b82525050565b60006137eb8285613391565b91506137f78284613360565b91508190509392505050565b60006020820190506138186000830184613272565b92915050565b60006080820190506138336000830187613272565b6138406020830186613272565b61384d60408301856137d0565b818103606083015261385f81846132ee565b905095945050505050565b600060208201905081810360008301526138848184613281565b905092915050565b60006020820190506138a160008301846132df565b92915050565b600060208201905081810360008301526138c18184613327565b905092915050565b600060208201905081810360008301526138e281613410565b9050919050565b6000602082019050818103600083015261390281613433565b9050919050565b6000602082019050818103600083015261392281613456565b9050919050565b6000602082019050818103600083015261394281613479565b9050919050565b600060208201905081810360008301526139628161349c565b9050919050565b60006020820190508181036000830152613982816134bf565b9050919050565b600060208201905081810360008301526139a2816134e2565b9050919050565b600060208201905081810360008301526139c281613505565b9050919050565b600060208201905081810360008301526139e281613528565b9050919050565b60006020820190508181036000830152613a028161354b565b9050919050565b60006020820190508181036000830152613a228161356e565b9050919050565b60006020820190508181036000830152613a4281613591565b9050919050565b60006020820190508181036000830152613a62816135b4565b9050919050565b60006020820190508181036000830152613a82816135d7565b9050919050565b60006020820190508181036000830152613aa2816135fa565b9050919050565b60006020820190508181036000830152613ac28161361d565b9050919050565b60006020820190508181036000830152613ae281613640565b9050919050565b60006020820190508181036000830152613b0281613663565b9050919050565b60006020820190508181036000830152613b2281613686565b9050919050565b60006020820190508181036000830152613b42816136a9565b9050919050565b60006020820190508181036000830152613b62816136cc565b9050919050565b60006020820190508181036000830152613b82816136ef565b9050919050565b60006020820190508181036000830152613ba281613712565b9050919050565b60006020820190508181036000830152613bc281613735565b9050919050565b60006020820190508181036000830152613be281613758565b9050919050565b60006020820190508181036000830152613c028161377b565b9050919050565b60006020820190508181036000830152613c228161379e565b9050919050565b6000602082019050613c3e60008301846137d0565b92915050565b6000613c4e613c5f565b9050613c5a8282613f59565b919050565b6000604051905090565b600067ffffffffffffffff821115613c8457613c836140ef565b5b613c8d82614132565b9050602081019050919050565b600067ffffffffffffffff821115613cb557613cb46140ef565b5b613cbe82614132565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d6782613edb565b9150613d7283613edb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613da757613da6614004565b5b828201905092915050565b6000613dbd82613edb565b9150613dc883613edb565b925082613dd857613dd7614033565b5b828204905092915050565b6000613dee82613edb565b9150613df983613edb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e3257613e31614004565b5b828202905092915050565b6000613e4882613edb565b9150613e5383613edb565b925082821015613e6657613e65614004565b5b828203905092915050565b6000613e7c82613ebb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f12578082015181840152602081019050613ef7565b83811115613f21576000848401525b50505050565b60006002820490506001821680613f3f57607f821691505b60208210811415613f5357613f52614062565b5b50919050565b613f6282614132565b810181811067ffffffffffffffff82111715613f8157613f806140ef565b5b80604052505050565b6000613f9582613edb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fc857613fc7614004565b5b600182019050919050565b6000613fde82613edb565b9150613fe983613edb565b925082613ff957613ff8614033565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45786365656465642061697264726f7020737570706c79000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f45786365656473204d41585f5350554e4b530000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f752063616e206d696e74206d696e696d756d20312c206d6178696d756d2060008201527f323020447973746f50756e6b7300000000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f7420616c7265616479207374617274656400000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920737461727465640000000000000000600082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53616c6520656e64000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920656e64656400000000000000000000600082015250565b7f4e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c65206861736e2774207374617274656400000000000000000000000000600082015250565b6147d981613e71565b81146147e457600080fd5b50565b6147f081613e83565b81146147fb57600080fd5b50565b61480781613e8f565b811461481257600080fd5b50565b61481e81613edb565b811461482957600080fd5b5056fea264697066735822122006b7b976488d3d6ac9ce617ed1ec6ebd9b1f192c4bd3ae95af6d56560a43d71b64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 PUSH1 0xB PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH3 0x2C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x4F10 CODESIZE SUB DUP1 PUSH3 0x4F10 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x52 SWAP2 SWAP1 PUSH3 0x412 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xD DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x447973746F50756E6B7320563200000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x445953544F000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH3 0xDE PUSH3 0xD2 PUSH3 0x144 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x14C PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP2 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xF6 SWAP3 SWAP2 SWAP1 PUSH3 0x2E4 JUMP JUMPDEST POP DUP1 PUSH1 0x2 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x10F SWAP3 SWAP2 SWAP1 PUSH3 0x2E4 JUMP JUMPDEST POP POP POP PUSH3 0x123 DUP3 PUSH3 0x210 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0xE SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x13B SWAP3 SWAP2 SWAP1 PUSH3 0x2E4 JUMP JUMPDEST POP POP POP PUSH3 0x69E JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH3 0x220 PUSH3 0x144 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0x246 PUSH3 0x2BB PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH3 0x29F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x296 SWAP1 PUSH3 0x4BE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x2B7 SWAP3 SWAP2 SWAP1 PUSH3 0x2E4 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x2F2 SWAP1 PUSH3 0x586 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x316 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x362 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x331 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x362 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x362 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x361 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x344 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x371 SWAP2 SWAP1 PUSH3 0x375 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x390 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x376 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x3AB PUSH3 0x3A5 DUP5 PUSH3 0x509 JUMP JUMPDEST PUSH3 0x4E0 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x3CA JUMPI PUSH3 0x3C9 PUSH3 0x655 JUMP JUMPDEST JUMPDEST PUSH3 0x3D7 DUP5 DUP3 DUP6 PUSH3 0x550 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x3F7 JUMPI PUSH3 0x3F6 PUSH3 0x650 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x409 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x394 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x42C JUMPI PUSH3 0x42B PUSH3 0x65F JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x44D JUMPI PUSH3 0x44C PUSH3 0x65A JUMP JUMPDEST JUMPDEST PUSH3 0x45B DUP6 DUP3 DUP7 ADD PUSH3 0x3DF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x47F JUMPI PUSH3 0x47E PUSH3 0x65A JUMP JUMPDEST JUMPDEST PUSH3 0x48D DUP6 DUP3 DUP7 ADD PUSH3 0x3DF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4A6 PUSH1 0x20 DUP4 PUSH3 0x53F JUMP JUMPDEST SWAP2 POP PUSH3 0x4B3 DUP3 PUSH3 0x675 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x4D9 DUP2 PUSH3 0x497 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4EC PUSH3 0x4FF JUMP JUMPDEST SWAP1 POP PUSH3 0x4FA DUP3 DUP3 PUSH3 0x5BC JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x527 JUMPI PUSH3 0x526 PUSH3 0x621 JUMP JUMPDEST JUMPDEST PUSH3 0x532 DUP3 PUSH3 0x664 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x570 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x553 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x580 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 0x59F JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x5B6 JUMPI PUSH3 0x5B5 PUSH3 0x5F2 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x5C7 DUP3 PUSH3 0x664 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x5E9 JUMPI PUSH3 0x5E8 PUSH3 0x621 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x4862 DUP1 PUSH3 0x6AE PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1EE JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x10D JUMPI DUP1 PUSH4 0xB2075A3B GT PUSH2 0xA0 JUMPI DUP1 PUSH4 0xCA373A8B GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xCA373A8B EQ PUSH2 0x6C8 JUMPI DUP1 PUSH4 0xD348B409 EQ PUSH2 0x6E4 JUMPI DUP1 PUSH4 0xE8A3D485 EQ PUSH2 0x70F JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x73A JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x777 JUMPI PUSH2 0x1EE JUMP JUMPDEST DUP1 PUSH4 0xB2075A3B EQ PUSH2 0x60E JUMPI DUP1 PUSH4 0xB66A0E5D EQ PUSH2 0x64B JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x662 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x68B JUMPI PUSH2 0x1EE JUMP JUMPDEST DUP1 PUSH4 0x95D89B41 GT PUSH2 0xDC JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x578 JUMPI DUP1 PUSH4 0x9D0CE7FC EQ PUSH2 0x5A3 JUMPI DUP1 PUSH4 0xA15DAFFC EQ PUSH2 0x5CE JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x5E5 JUMPI PUSH2 0x1EE JUMP JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x4EF JUMPI DUP1 PUSH4 0x8462151C EQ PUSH2 0x506 JUMPI DUP1 PUSH4 0x853828B6 EQ PUSH2 0x543 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x54D JUMPI PUSH2 0x1EE JUMP JUMPDEST DUP1 PUSH4 0x42842E0E GT PUSH2 0x185 JUMPI DUP1 PUSH4 0x55F804B3 GT PUSH2 0x154 JUMPI DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x423 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x44C JUMPI DUP1 PUSH4 0x6D1879CA EQ PUSH2 0x489 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x4B2 JUMPI PUSH2 0x1EE JUMP JUMPDEST DUP1 PUSH4 0x42842E0E EQ PUSH2 0x37D JUMPI DUP1 PUSH4 0x4A3CD688 EQ PUSH2 0x3A6 JUMPI DUP1 PUSH4 0x4F6CCCE7 EQ PUSH2 0x3CF JUMPI DUP1 PUSH4 0x55367BA9 EQ PUSH2 0x40C JUMPI PUSH2 0x1EE JUMP JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0x1C1 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x2C1 JUMPI DUP1 PUSH4 0x1C8B232D EQ PUSH2 0x2EC JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x317 JUMPI DUP1 PUSH4 0x2F745C59 EQ PUSH2 0x340 JUMPI PUSH2 0x1EE JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x1F3 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x230 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x25B JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x298 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x21A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x215 SWAP2 SWAP1 PUSH2 0x318A JUMP JUMPDEST PUSH2 0x7A0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x227 SWAP2 SWAP1 PUSH2 0x388C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x23C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x245 PUSH2 0x81A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x252 SWAP2 SWAP1 PUSH2 0x38A7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x267 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x282 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x27D SWAP2 SWAP1 PUSH2 0x322D JUMP JUMPDEST PUSH2 0x8AC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x28F SWAP2 SWAP1 PUSH2 0x3803 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2A4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2BF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2BA SWAP2 SWAP1 PUSH2 0x314A JUMP JUMPDEST PUSH2 0x931 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2CD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D6 PUSH2 0xA49 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2E3 SWAP2 SWAP1 PUSH2 0x3C29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x301 PUSH2 0xA56 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x30E SWAP2 SWAP1 PUSH2 0x388C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x323 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x33E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x339 SWAP2 SWAP1 PUSH2 0x3034 JUMP JUMPDEST PUSH2 0xA69 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x34C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x367 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x362 SWAP2 SWAP1 PUSH2 0x314A JUMP JUMPDEST PUSH2 0xAC9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x374 SWAP2 SWAP1 PUSH2 0x3C29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x389 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3A4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x39F SWAP2 SWAP1 PUSH2 0x3034 JUMP JUMPDEST PUSH2 0xB6E JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3B2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3CD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3C8 SWAP2 SWAP1 PUSH2 0x322D JUMP JUMPDEST PUSH2 0xB8E JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3F6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3F1 SWAP2 SWAP1 PUSH2 0x322D JUMP JUMPDEST PUSH2 0xD01 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x403 SWAP2 SWAP1 PUSH2 0x3C29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x418 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x421 PUSH2 0xD72 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x42F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x445 SWAP2 SWAP1 PUSH2 0x31E4 JUMP JUMPDEST PUSH2 0xE0B JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x458 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x473 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x46E SWAP2 SWAP1 PUSH2 0x322D JUMP JUMPDEST PUSH2 0xEA1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP2 SWAP1 PUSH2 0x3803 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x495 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4B0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4AB SWAP2 SWAP1 PUSH2 0x314A JUMP JUMPDEST PUSH2 0xF53 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4D9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4D4 SWAP2 SWAP1 PUSH2 0x2FC7 JUMP JUMPDEST PUSH2 0x1017 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4E6 SWAP2 SWAP1 PUSH2 0x3C29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4FB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x504 PUSH2 0x10CF JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x512 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x52D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x528 SWAP2 SWAP1 PUSH2 0x2FC7 JUMP JUMPDEST PUSH2 0x1157 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x53A SWAP2 SWAP1 PUSH2 0x386A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x54B PUSH2 0x1261 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x559 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x562 PUSH2 0x131D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x56F SWAP2 SWAP1 PUSH2 0x3803 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x584 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x58D PUSH2 0x1346 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x59A SWAP2 SWAP1 PUSH2 0x38A7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5B8 PUSH2 0x13D8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5C5 SWAP2 SWAP1 PUSH2 0x3C29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5DA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5E3 PUSH2 0x13DE JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x60C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x607 SWAP2 SWAP1 PUSH2 0x310A JUMP JUMPDEST PUSH2 0x15C3 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x61A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x635 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x630 SWAP2 SWAP1 PUSH2 0x2FC7 JUMP JUMPDEST PUSH2 0x1744 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x642 SWAP2 SWAP1 PUSH2 0x3C29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x657 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x660 PUSH2 0x178D JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x66E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x689 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x684 SWAP2 SWAP1 PUSH2 0x3087 JUMP JUMPDEST PUSH2 0x1826 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x697 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x6B2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6AD SWAP2 SWAP1 PUSH2 0x322D JUMP JUMPDEST PUSH2 0x1888 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6BF SWAP2 SWAP1 PUSH2 0x38A7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x6E2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6DD SWAP2 SWAP1 PUSH2 0x322D JUMP JUMPDEST PUSH2 0x18BC JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x6F9 PUSH2 0x1A3C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x706 SWAP2 SWAP1 PUSH2 0x3C29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x71B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x724 PUSH2 0x1B79 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x731 SWAP2 SWAP1 PUSH2 0x38A7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x746 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x761 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x75C SWAP2 SWAP1 PUSH2 0x2FF4 JUMP JUMPDEST PUSH2 0x1C0B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x76E SWAP2 SWAP1 PUSH2 0x388C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x783 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x79E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x799 SWAP2 SWAP1 PUSH2 0x2FC7 JUMP JUMPDEST PUSH2 0x1C9F JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH32 0x780E9D6300000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x813 JUMPI POP PUSH2 0x812 DUP3 PUSH2 0x1D97 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x829 SWAP1 PUSH2 0x3F27 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 0x855 SWAP1 PUSH2 0x3F27 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x8A2 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x877 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x8A2 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 0x885 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8B7 DUP3 PUSH2 0x1E79 JUMP JUMPDEST PUSH2 0x8F6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8ED SWAP1 PUSH2 0x3B09 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x5 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x93C DUP3 PUSH2 0xEA1 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x9AD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9A4 SWAP1 PUSH2 0x3B69 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x9CC PUSH2 0x1EE5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x9FB JUMPI POP PUSH2 0x9FA DUP2 PUSH2 0x9F5 PUSH2 0x1EE5 JUMP JUMPDEST PUSH2 0x1C0B JUMP JUMPDEST JUMPDEST PUSH2 0xA3A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA31 SWAP1 PUSH2 0x3A29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA44 DUP4 DUP4 PUSH2 0x1EED JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x9 DUP1 SLOAD SWAP1 POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0xA7A PUSH2 0xA74 PUSH2 0x1EE5 JUMP JUMPDEST DUP3 PUSH2 0x1FA6 JUMP JUMPDEST PUSH2 0xAB9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAB0 SWAP1 PUSH2 0x3BC9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xAC4 DUP4 DUP4 DUP4 PUSH2 0x2084 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAD4 DUP4 PUSH2 0x1017 JUMP JUMPDEST DUP3 LT PUSH2 0xB15 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB0C SWAP1 PUSH2 0x38E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x7 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xB89 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1826 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xB96 PUSH2 0x1EE5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xBB4 PUSH2 0x131D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xC0A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC01 SWAP1 PUSH2 0x3B29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xC14 PUSH2 0xA49 JUMP JUMPDEST SWAP1 POP PUSH1 0x82 DUP3 PUSH2 0xC21 PUSH2 0xA49 JUMP JUMPDEST PUSH2 0xC2B SWAP2 SWAP1 PUSH2 0x3D5C JUMP JUMPDEST GT ISZERO PUSH2 0xC6C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC63 SWAP1 PUSH2 0x38C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 ISZERO ISZERO PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0xCC2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCB9 SWAP1 PUSH2 0x3A89 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xCFC JUMPI PUSH2 0xCE9 PUSH2 0xCD8 PUSH2 0x131D JUMP JUMPDEST DUP3 DUP5 PUSH2 0xCE4 SWAP2 SWAP1 PUSH2 0x3D5C JUMP JUMPDEST PUSH2 0x22E0 JUMP JUMPDEST DUP1 DUP1 PUSH2 0xCF4 SWAP1 PUSH2 0x3F8A JUMP JUMPDEST SWAP2 POP POP PUSH2 0xCC5 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD0B PUSH2 0xA49 JUMP JUMPDEST DUP3 LT PUSH2 0xD4C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD43 SWAP1 PUSH2 0x3BE9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x9 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xD60 JUMPI PUSH2 0xD5F PUSH2 0x40C0 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xD7A PUSH2 0x1EE5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD98 PUSH2 0x131D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xDEE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDE5 SWAP1 PUSH2 0x3B29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xB PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0xE13 PUSH2 0x1EE5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xE31 PUSH2 0x131D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xE87 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE7E SWAP1 PUSH2 0x3B29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0xE9D SWAP3 SWAP2 SWAP1 PUSH2 0x2DDB JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x3 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF4A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF41 SWAP1 PUSH2 0x3A69 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xF5B PUSH2 0x1EE5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xF79 PUSH2 0x131D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xFCF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFC6 SWAP1 PUSH2 0x3B29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xC PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1088 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x107F SWAP1 PUSH2 0x3A49 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x10D7 PUSH2 0x1EE5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x10F5 PUSH2 0x131D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x114B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1142 SWAP1 PUSH2 0x3B29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1155 PUSH1 0x0 PUSH2 0x22FE JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x1164 DUP4 PUSH2 0x1017 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 EQ ISZERO PUSH2 0x11C1 JUMPI PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x118A JUMPI PUSH2 0x1189 PUSH2 0x40EF 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 0x11B8 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP2 POP POP PUSH2 0x125C JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x11DD JUMPI PUSH2 0x11DC PUSH2 0x40EF 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 0x120B JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1255 JUMPI PUSH2 0x1223 DUP6 DUP3 PUSH2 0xAC9 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1236 JUMPI PUSH2 0x1235 PUSH2 0x40C0 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 DUP1 PUSH2 0x124D SWAP1 PUSH2 0x3F8A JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1211 JUMP JUMPDEST DUP2 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1269 PUSH2 0x1EE5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1287 PUSH2 0x131D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x12DD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12D4 SWAP1 PUSH2 0x3B29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC SELFBALANCE SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP PUSH2 0x131B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD PUSH2 0x1355 SWAP1 PUSH2 0x3F27 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 0x1381 SWAP1 PUSH2 0x3F27 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x13CE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x13A3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x13CE 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 0x13B1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x81D DUP2 JUMP JUMPDEST PUSH2 0x81D PUSH2 0x13E9 PUSH2 0xA49 JUMP JUMPDEST LT PUSH2 0x1429 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1420 SWAP1 PUSH2 0x3AE9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 ISZERO ISZERO PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0x147F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1476 SWAP1 PUSH2 0x3A09 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xC PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD GT PUSH2 0x1501 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14F8 SWAP1 PUSH2 0x3BA9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 CALLER SWAP1 POP PUSH1 0x0 PUSH1 0xC PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1579 JUMPI PUSH2 0x1566 DUP4 PUSH2 0x1561 PUSH2 0xA49 JUMP JUMPDEST PUSH2 0x22E0 JUMP JUMPDEST DUP1 DUP1 PUSH2 0x1571 SWAP1 PUSH2 0x3F8A JUMP JUMPDEST SWAP2 POP POP PUSH2 0x154D JUMP JUMPDEST POP PUSH1 0x0 PUSH1 0xC PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH2 0x15CB PUSH2 0x1EE5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1639 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1630 SWAP1 PUSH2 0x39A9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x6 PUSH1 0x0 PUSH2 0x1646 PUSH2 0x1EE5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x16F3 PUSH2 0x1EE5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1738 SWAP2 SWAP1 PUSH2 0x388C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xC PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1795 PUSH2 0x1EE5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x17B3 PUSH2 0x131D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1809 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1800 SWAP1 PUSH2 0x3B29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0xB PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0x1837 PUSH2 0x1831 PUSH2 0x1EE5 JUMP JUMPDEST DUP4 PUSH2 0x1FA6 JUMP JUMPDEST PUSH2 0x1876 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x186D SWAP1 PUSH2 0x3BC9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1882 DUP5 DUP5 DUP5 DUP5 PUSH2 0x23C2 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0xD PUSH2 0x1895 DUP4 PUSH2 0x241E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x18A6 SWAP3 SWAP2 SWAP1 PUSH2 0x37DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x81D PUSH2 0x18C7 PUSH2 0xA49 JUMP JUMPDEST LT PUSH2 0x1907 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18FE SWAP1 PUSH2 0x3B89 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP2 GT DUP1 ISZERO PUSH2 0x1918 JUMPI POP PUSH1 0x14 DUP2 GT ISZERO JUMPDEST PUSH2 0x1957 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x194E SWAP1 PUSH2 0x39E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x81D DUP2 PUSH2 0x1963 PUSH2 0xA49 JUMP JUMPDEST PUSH2 0x196D SWAP2 SWAP1 PUSH2 0x3D5C JUMP JUMPDEST GT ISZERO PUSH2 0x19AE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x19A5 SWAP1 PUSH2 0x3969 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH2 0x19B7 PUSH2 0x1A3C JUMP JUMPDEST PUSH2 0x19C1 SWAP2 SWAP1 PUSH2 0x3DE3 JUMP JUMPDEST CALLVALUE LT ISZERO PUSH2 0x1A03 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x19FA SWAP1 PUSH2 0x3AA9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1A38 JUMPI PUSH1 0x0 PUSH2 0x1A18 PUSH2 0xA49 JUMP JUMPDEST SWAP1 POP PUSH2 0x1A24 CALLER DUP3 PUSH2 0x22E0 JUMP JUMPDEST POP DUP1 DUP1 PUSH2 0x1A30 SWAP1 PUSH2 0x3F8A JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1A06 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 ISZERO ISZERO PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0x1A94 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A8B SWAP1 PUSH2 0x3C09 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x81D PUSH2 0x1A9F PUSH2 0xA49 JUMP JUMPDEST LT PUSH2 0x1ADF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1AD6 SWAP1 PUSH2 0x3B89 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1AE9 PUSH2 0xA49 JUMP JUMPDEST SWAP1 POP PUSH2 0x7D0 DUP2 LT PUSH2 0x1B05 JUMPI PUSH8 0x16345785D8A0000 SWAP2 POP POP PUSH2 0x1B76 JUMP JUMPDEST PUSH2 0x683 DUP2 LT PUSH2 0x1B1F JUMPI PUSH8 0x11C37937E080000 SWAP2 POP POP PUSH2 0x1B76 JUMP JUMPDEST PUSH2 0x536 DUP2 LT PUSH2 0x1B38 JUMPI PUSH7 0xD529AE9E860000 SWAP2 POP POP PUSH2 0x1B76 JUMP JUMPDEST PUSH2 0x3E9 DUP2 LT PUSH2 0x1B51 JUMPI PUSH7 0x8E1BC9BF040000 SWAP2 POP POP PUSH2 0x1B76 JUMP JUMPDEST PUSH2 0x1F5 DUP2 LT PUSH2 0x1B6A JUMPI PUSH7 0x6A94D74F430000 SWAP2 POP POP PUSH2 0x1B76 JUMP JUMPDEST PUSH7 0x470DE4DF820000 SWAP2 POP POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0xE DUP1 SLOAD PUSH2 0x1B88 SWAP1 PUSH2 0x3F27 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 0x1BB4 SWAP1 PUSH2 0x3F27 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1C01 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1BD6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1C01 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 0x1BE4 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 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 0x1CA7 PUSH2 0x1EE5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1CC5 PUSH2 0x131D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1D1B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D12 SWAP1 PUSH2 0x3B29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1D8B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D82 SWAP1 PUSH2 0x3929 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1D94 DUP2 PUSH2 0x22FE JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x1E62 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x1E72 JUMPI POP PUSH2 0x1E71 DUP3 PUSH2 0x257F JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x3 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x5 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1F60 DUP4 PUSH2 0xEA1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1FB1 DUP3 PUSH2 0x1E79 JUMP JUMPDEST PUSH2 0x1FF0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1FE7 SWAP1 PUSH2 0x39C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1FFB DUP4 PUSH2 0xEA1 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x206A JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2052 DUP5 PUSH2 0x8AC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH2 0x207B JUMPI POP PUSH2 0x207A DUP2 DUP6 PUSH2 0x1C0B JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x20A4 DUP3 PUSH2 0xEA1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x20FA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20F1 SWAP1 PUSH2 0x3B49 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x216A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2161 SWAP1 PUSH2 0x3989 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2175 DUP4 DUP4 DUP4 PUSH2 0x25E9 JUMP JUMPDEST PUSH2 0x2180 PUSH1 0x0 DUP3 PUSH2 0x1EED JUMP JUMPDEST PUSH1 0x1 PUSH1 0x4 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x21D0 SWAP2 SWAP1 PUSH2 0x3E3D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x4 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2227 SWAP2 SWAP1 PUSH2 0x3D5C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x3 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH2 0x22FA DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x26FD JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x23CD DUP5 DUP5 DUP5 PUSH2 0x2084 JUMP JUMPDEST PUSH2 0x23D9 DUP5 DUP5 DUP5 DUP5 PUSH2 0x2758 JUMP JUMPDEST PUSH2 0x2418 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x240F SWAP1 PUSH2 0x3909 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x2466 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x257A JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x2498 JUMPI DUP1 DUP1 PUSH2 0x2481 SWAP1 PUSH2 0x3F8A JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x2491 SWAP2 SWAP1 PUSH2 0x3DB2 JUMP JUMPDEST SWAP2 POP PUSH2 0x246E JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x24B4 JUMPI PUSH2 0x24B3 PUSH2 0x40EF JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x24E6 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x2573 JUMPI PUSH1 0x1 DUP3 PUSH2 0x24FF SWAP2 SWAP1 PUSH2 0x3E3D JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x250E SWAP2 SWAP1 PUSH2 0x3FD3 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x251A SWAP2 SWAP1 PUSH2 0x3D5C JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x2530 JUMPI PUSH2 0x252F PUSH2 0x40C0 JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x256C SWAP2 SWAP1 PUSH2 0x3DB2 JUMP JUMPDEST SWAP5 POP PUSH2 0x24EA JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x25F4 DUP4 DUP4 DUP4 PUSH2 0x28EF JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2637 JUMPI PUSH2 0x2632 DUP2 PUSH2 0x28F4 JUMP JUMPDEST PUSH2 0x2676 JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2675 JUMPI PUSH2 0x2674 DUP4 DUP3 PUSH2 0x293D JUMP JUMPDEST JUMPDEST JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x26B9 JUMPI PUSH2 0x26B4 DUP2 PUSH2 0x2AAA JUMP JUMPDEST PUSH2 0x26F8 JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x26F7 JUMPI PUSH2 0x26F6 DUP3 DUP3 PUSH2 0x2B7B JUMP JUMPDEST JUMPDEST JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x2707 DUP4 DUP4 PUSH2 0x2BFA JUMP JUMPDEST PUSH2 0x2714 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x2758 JUMP JUMPDEST PUSH2 0x2753 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x274A SWAP1 PUSH2 0x3909 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2779 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2DC8 JUMP JUMPDEST ISZERO PUSH2 0x28E2 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x27A2 PUSH2 0x1EE5 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x27C4 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x381E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x27DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x280F 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 0x280C SWAP2 SWAP1 PUSH2 0x31B7 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2892 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x283F JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x2844 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x288A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2881 SWAP1 PUSH2 0x3909 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP PUSH2 0x28E7 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x9 DUP1 SLOAD SWAP1 POP PUSH1 0xA PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x9 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH2 0x294A DUP5 PUSH2 0x1017 JUMP JUMPDEST PUSH2 0x2954 SWAP2 SWAP1 PUSH2 0x3E3D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x8 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 EQ PUSH2 0x2A39 JUMPI PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP1 PUSH1 0x7 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x8 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMPDEST PUSH1 0x8 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH1 0x7 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x9 DUP1 SLOAD SWAP1 POP PUSH2 0x2ABE SWAP2 SWAP1 PUSH2 0x3E3D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP PUSH1 0x0 PUSH1 0x9 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x2AEE JUMPI PUSH2 0x2AED PUSH2 0x40C0 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP DUP1 PUSH1 0x9 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x2B10 JUMPI PUSH2 0x2B0F PUSH2 0x40C0 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0xA PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0xA PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH1 0x9 DUP1 SLOAD DUP1 PUSH2 0x2B5F JUMPI PUSH2 0x2B5E PUSH2 0x4091 JUMP JUMPDEST JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B86 DUP4 PUSH2 0x1017 JUMP JUMPDEST SWAP1 POP DUP2 PUSH1 0x7 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x8 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2C6A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2C61 SWAP1 PUSH2 0x3AC9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2C73 DUP2 PUSH2 0x1E79 JUMP JUMPDEST ISZERO PUSH2 0x2CB3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2CAA SWAP1 PUSH2 0x3949 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2CBF PUSH1 0x0 DUP4 DUP4 PUSH2 0x25E9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x4 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2D0F SWAP2 SWAP1 PUSH2 0x3D5C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x3 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 EXTCODESIZE SWAP1 POP PUSH1 0x0 DUP2 GT SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2DE7 SWAP1 PUSH2 0x3F27 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2E09 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x2E50 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2E22 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x2E50 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x2E50 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x2E4F JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2E34 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x2E5D SWAP2 SWAP1 PUSH2 0x2E61 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x2E7A JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x2E62 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E91 PUSH2 0x2E8C DUP5 PUSH2 0x3C69 JUMP JUMPDEST PUSH2 0x3C44 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x2EAD JUMPI PUSH2 0x2EAC PUSH2 0x4123 JUMP JUMPDEST JUMPDEST PUSH2 0x2EB8 DUP5 DUP3 DUP6 PUSH2 0x3EE5 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2ED3 PUSH2 0x2ECE DUP5 PUSH2 0x3C9A JUMP JUMPDEST PUSH2 0x3C44 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x2EEF JUMPI PUSH2 0x2EEE PUSH2 0x4123 JUMP JUMPDEST JUMPDEST PUSH2 0x2EFA DUP5 DUP3 DUP6 PUSH2 0x3EE5 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2F11 DUP2 PUSH2 0x47D0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2F26 DUP2 PUSH2 0x47E7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2F3B DUP2 PUSH2 0x47FE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x2F50 DUP2 PUSH2 0x47FE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2F6B JUMPI PUSH2 0x2F6A PUSH2 0x411E JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2F7B DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2E7E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2F99 JUMPI PUSH2 0x2F98 PUSH2 0x411E JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2FA9 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2EC0 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2FC1 DUP2 PUSH2 0x4815 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2FDD JUMPI PUSH2 0x2FDC PUSH2 0x412D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2FEB DUP5 DUP3 DUP6 ADD PUSH2 0x2F02 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x300B JUMPI PUSH2 0x300A PUSH2 0x412D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3019 DUP6 DUP3 DUP7 ADD PUSH2 0x2F02 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x302A DUP6 DUP3 DUP7 ADD PUSH2 0x2F02 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x304D JUMPI PUSH2 0x304C PUSH2 0x412D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x305B DUP7 DUP3 DUP8 ADD PUSH2 0x2F02 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x306C DUP7 DUP3 DUP8 ADD PUSH2 0x2F02 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x307D DUP7 DUP3 DUP8 ADD PUSH2 0x2FB2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x30A1 JUMPI PUSH2 0x30A0 PUSH2 0x412D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x30AF DUP8 DUP3 DUP9 ADD PUSH2 0x2F02 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x30C0 DUP8 DUP3 DUP9 ADD PUSH2 0x2F02 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x30D1 DUP8 DUP3 DUP9 ADD PUSH2 0x2FB2 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x30F2 JUMPI PUSH2 0x30F1 PUSH2 0x4128 JUMP JUMPDEST JUMPDEST PUSH2 0x30FE DUP8 DUP3 DUP9 ADD PUSH2 0x2F56 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3121 JUMPI PUSH2 0x3120 PUSH2 0x412D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x312F DUP6 DUP3 DUP7 ADD PUSH2 0x2F02 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x3140 DUP6 DUP3 DUP7 ADD PUSH2 0x2F17 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3161 JUMPI PUSH2 0x3160 PUSH2 0x412D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x316F DUP6 DUP3 DUP7 ADD PUSH2 0x2F02 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x3180 DUP6 DUP3 DUP7 ADD PUSH2 0x2FB2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x31A0 JUMPI PUSH2 0x319F PUSH2 0x412D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x31AE DUP5 DUP3 DUP6 ADD PUSH2 0x2F2C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x31CD JUMPI PUSH2 0x31CC PUSH2 0x412D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x31DB DUP5 DUP3 DUP6 ADD PUSH2 0x2F41 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x31FA JUMPI PUSH2 0x31F9 PUSH2 0x412D JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3218 JUMPI PUSH2 0x3217 PUSH2 0x4128 JUMP JUMPDEST JUMPDEST PUSH2 0x3224 DUP5 DUP3 DUP6 ADD PUSH2 0x2F84 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3243 JUMPI PUSH2 0x3242 PUSH2 0x412D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3251 DUP5 DUP3 DUP6 ADD PUSH2 0x2FB2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3266 DUP4 DUP4 PUSH2 0x37C1 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x327B DUP2 PUSH2 0x3E71 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x328C DUP3 PUSH2 0x3CF0 JUMP JUMPDEST PUSH2 0x3296 DUP2 DUP6 PUSH2 0x3D1E JUMP JUMPDEST SWAP4 POP PUSH2 0x32A1 DUP4 PUSH2 0x3CCB JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x32D2 JUMPI DUP2 MLOAD PUSH2 0x32B9 DUP9 DUP3 PUSH2 0x325A JUMP JUMPDEST SWAP8 POP PUSH2 0x32C4 DUP4 PUSH2 0x3D11 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x32A5 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x32E8 DUP2 PUSH2 0x3E83 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32F9 DUP3 PUSH2 0x3CFB JUMP JUMPDEST PUSH2 0x3303 DUP2 DUP6 PUSH2 0x3D2F JUMP JUMPDEST SWAP4 POP PUSH2 0x3313 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3EF4 JUMP JUMPDEST PUSH2 0x331C DUP2 PUSH2 0x4132 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3332 DUP3 PUSH2 0x3D06 JUMP JUMPDEST PUSH2 0x333C DUP2 DUP6 PUSH2 0x3D40 JUMP JUMPDEST SWAP4 POP PUSH2 0x334C DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3EF4 JUMP JUMPDEST PUSH2 0x3355 DUP2 PUSH2 0x4132 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x336B DUP3 PUSH2 0x3D06 JUMP JUMPDEST PUSH2 0x3375 DUP2 DUP6 PUSH2 0x3D51 JUMP JUMPDEST SWAP4 POP PUSH2 0x3385 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3EF4 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SLOAD PUSH2 0x339E DUP2 PUSH2 0x3F27 JUMP JUMPDEST PUSH2 0x33A8 DUP2 DUP7 PUSH2 0x3D51 JUMP JUMPDEST SWAP5 POP PUSH1 0x1 DUP3 AND PUSH1 0x0 DUP2 EQ PUSH2 0x33C3 JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x33D4 JUMPI PUSH2 0x3407 JUMP JUMPDEST PUSH1 0xFF NOT DUP4 AND DUP7 MSTORE DUP2 DUP7 ADD SWAP4 POP PUSH2 0x3407 JUMP JUMPDEST PUSH2 0x33DD DUP6 PUSH2 0x3CDB JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x33FF JUMPI DUP2 SLOAD DUP2 DUP10 ADD MSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x33E0 JUMP JUMPDEST DUP4 DUP9 ADD SWAP6 POP POP POP JUMPDEST POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x341D PUSH1 0x17 DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x3428 DUP3 PUSH2 0x4143 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3440 PUSH1 0x2B DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x344B DUP3 PUSH2 0x416C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3463 PUSH1 0x32 DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x346E DUP3 PUSH2 0x41BB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3486 PUSH1 0x26 DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x3491 DUP3 PUSH2 0x420A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34A9 PUSH1 0x1C DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x34B4 DUP3 PUSH2 0x4259 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34CC PUSH1 0x12 DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x34D7 DUP3 PUSH2 0x4282 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34EF PUSH1 0x24 DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x34FA DUP3 PUSH2 0x42AB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3512 PUSH1 0x19 DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x351D DUP3 PUSH2 0x42FA JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3535 PUSH1 0x2C DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x3540 DUP3 PUSH2 0x4323 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3558 PUSH1 0x2D DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x3563 DUP3 PUSH2 0x4372 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x357B PUSH1 0x1C DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x3586 DUP3 PUSH2 0x43C1 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x359E PUSH1 0x38 DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x35A9 DUP3 PUSH2 0x43EA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35C1 PUSH1 0x2A DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x35CC DUP3 PUSH2 0x4439 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35E4 PUSH1 0x29 DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x35EF DUP3 PUSH2 0x4488 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3607 PUSH1 0x18 DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x3612 DUP3 PUSH2 0x44D7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x362A PUSH1 0x23 DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x3635 DUP3 PUSH2 0x4500 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x364D PUSH1 0x20 DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x3658 DUP3 PUSH2 0x454F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3670 PUSH1 0x8 DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x367B DUP3 PUSH2 0x4578 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3693 PUSH1 0x2C DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x369E DUP3 PUSH2 0x45A1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36B6 PUSH1 0x20 DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x36C1 DUP3 PUSH2 0x45F0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36D9 PUSH1 0x29 DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x36E4 DUP3 PUSH2 0x4619 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36FC PUSH1 0x21 DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x3707 DUP3 PUSH2 0x4668 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x371F PUSH1 0x16 DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x372A DUP3 PUSH2 0x46B7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3742 PUSH1 0x9 DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x374D DUP3 PUSH2 0x46E0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3765 PUSH1 0x31 DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x3770 DUP3 PUSH2 0x4709 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3788 PUSH1 0x2C DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x3793 DUP3 PUSH2 0x4758 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x37AB PUSH1 0x13 DUP4 PUSH2 0x3D40 JUMP JUMPDEST SWAP2 POP PUSH2 0x37B6 DUP3 PUSH2 0x47A7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x37CA DUP2 PUSH2 0x3EDB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x37D9 DUP2 PUSH2 0x3EDB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x37EB DUP3 DUP6 PUSH2 0x3391 JUMP JUMPDEST SWAP2 POP PUSH2 0x37F7 DUP3 DUP5 PUSH2 0x3360 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3818 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3272 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x3833 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x3272 JUMP JUMPDEST PUSH2 0x3840 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x3272 JUMP JUMPDEST PUSH2 0x384D PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x37D0 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x385F DUP2 DUP5 PUSH2 0x32EE JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3884 DUP2 DUP5 PUSH2 0x3281 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x38A1 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x32DF 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 0x38C1 DUP2 DUP5 PUSH2 0x3327 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 0x38E2 DUP2 PUSH2 0x3410 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 0x3902 DUP2 PUSH2 0x3433 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 0x3922 DUP2 PUSH2 0x3456 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 0x3942 DUP2 PUSH2 0x3479 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 0x3962 DUP2 PUSH2 0x349C 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 0x3982 DUP2 PUSH2 0x34BF 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 0x39A2 DUP2 PUSH2 0x34E2 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 0x39C2 DUP2 PUSH2 0x3505 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 0x39E2 DUP2 PUSH2 0x3528 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 0x3A02 DUP2 PUSH2 0x354B 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 0x3A22 DUP2 PUSH2 0x356E 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 0x3A42 DUP2 PUSH2 0x3591 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 0x3A62 DUP2 PUSH2 0x35B4 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 0x3A82 DUP2 PUSH2 0x35D7 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 0x3AA2 DUP2 PUSH2 0x35FA 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 0x3AC2 DUP2 PUSH2 0x361D 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 0x3AE2 DUP2 PUSH2 0x3640 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 0x3B02 DUP2 PUSH2 0x3663 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 0x3B22 DUP2 PUSH2 0x3686 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 0x3B42 DUP2 PUSH2 0x36A9 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 0x3B62 DUP2 PUSH2 0x36CC 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 0x3B82 DUP2 PUSH2 0x36EF 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 0x3BA2 DUP2 PUSH2 0x3712 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 0x3BC2 DUP2 PUSH2 0x3735 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 0x3BE2 DUP2 PUSH2 0x3758 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 0x3C02 DUP2 PUSH2 0x377B 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 0x3C22 DUP2 PUSH2 0x379E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3C3E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x37D0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C4E PUSH2 0x3C5F JUMP JUMPDEST SWAP1 POP PUSH2 0x3C5A DUP3 DUP3 PUSH2 0x3F59 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 0x3C84 JUMPI PUSH2 0x3C83 PUSH2 0x40EF JUMP JUMPDEST JUMPDEST PUSH2 0x3C8D DUP3 PUSH2 0x4132 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x3CB5 JUMPI PUSH2 0x3CB4 PUSH2 0x40EF JUMP JUMPDEST JUMPDEST PUSH2 0x3CBE DUP3 PUSH2 0x4132 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 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 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 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D67 DUP3 PUSH2 0x3EDB JUMP JUMPDEST SWAP2 POP PUSH2 0x3D72 DUP4 PUSH2 0x3EDB JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x3DA7 JUMPI PUSH2 0x3DA6 PUSH2 0x4004 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3DBD DUP3 PUSH2 0x3EDB JUMP JUMPDEST SWAP2 POP PUSH2 0x3DC8 DUP4 PUSH2 0x3EDB JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3DD8 JUMPI PUSH2 0x3DD7 PUSH2 0x4033 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3DEE DUP3 PUSH2 0x3EDB JUMP JUMPDEST SWAP2 POP PUSH2 0x3DF9 DUP4 PUSH2 0x3EDB JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x3E32 JUMPI PUSH2 0x3E31 PUSH2 0x4004 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E48 DUP3 PUSH2 0x3EDB JUMP JUMPDEST SWAP2 POP PUSH2 0x3E53 DUP4 PUSH2 0x3EDB JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x3E66 JUMPI PUSH2 0x3E65 PUSH2 0x4004 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E7C DUP3 PUSH2 0x3EBB 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 0x3F12 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x3EF7 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x3F21 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 0x3F3F JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x3F53 JUMPI PUSH2 0x3F52 PUSH2 0x4062 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3F62 DUP3 PUSH2 0x4132 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x3F81 JUMPI PUSH2 0x3F80 PUSH2 0x40EF JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3F95 DUP3 PUSH2 0x3EDB JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x3FC8 JUMPI PUSH2 0x3FC7 PUSH2 0x4004 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3FDE DUP3 PUSH2 0x3EDB JUMP JUMPDEST SWAP2 POP PUSH2 0x3FE9 DUP4 PUSH2 0x3EDB JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3FF9 JUMPI PUSH2 0x3FF8 PUSH2 0x4033 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45786365656465642061697264726F7020737570706C79000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243373231456E756D657261626C653A206F776E657220696E646578206F75 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x74206F6620626F756E6473000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45786365656473204D41585F5350554E4B530000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x596F752063616E206D696E74206D696E696D756D20312C206D6178696D756D20 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x323020447973746F50756E6B7300000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x53616C6520686173206E6F7420616C7265616479207374617274656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x53616C652068617320616C726561647920737461727465640000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45746865722076616C75652073656E742069732062656C6F7720746865207072 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6963650000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x53616C6520656E64000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x73206E6F74206F776E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x53616C652068617320616C726561647920656E64656400000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4E6F74206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243373231456E756D657261626C653A20676C6F62616C20696E646578206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7574206F6620626F756E64730000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x53616C65206861736E2774207374617274656400000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x47D9 DUP2 PUSH2 0x3E71 JUMP JUMPDEST DUP2 EQ PUSH2 0x47E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x47F0 DUP2 PUSH2 0x3E83 JUMP JUMPDEST DUP2 EQ PUSH2 0x47FB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x4807 DUP2 PUSH2 0x3E8F JUMP JUMPDEST DUP2 EQ PUSH2 0x4812 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x481E DUP2 PUSH2 0x3EDB JUMP JUMPDEST DUP2 EQ PUSH2 0x4829 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MOD 0xB7 0xB9 PUSH23 0x488D3D6AC9CE617ED1EC6EBD9B1F192C4BD3AE95AF6D56 JUMP EXP NUMBER 0xD7 SHL PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "277:4731:12:-:0;;;407:5;378:34;;;;;;;;;;;;;;;;;;;;549:189;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1316:113:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;867:23:0;877:12;:10;;;:12;;:::i;:::-;867:9;;;:23;;:::i;:::-;1390:5:1;1382;:13;;;;;;;;;;;;:::i;:::-;;1415:7;1405;:17;;;;;;;;;;;;:::i;:::-;;1316:113;;663:24:12::1;674:12;663:10;;;:24;;:::i;:::-;716:15;697:16;:34;;;;;;;;;;;;:::i;:::-;;549:189:::0;;277:4731;;587:96:8;640:7;666:10;659:17;;587:96;:::o;2041:169:0:-;2096:16;2115:6;;;;;;;;;;;2096:25;;2140:8;2131:6;;:17;;;;;;;;;;;;;;;;;;2194:8;2163:40;;2184:8;2163:40;;;;;;;;;;;;2086:124;2041:169;:::o;744:100:12:-;1196:12:0;:10;;;:12;;:::i;:::-;1185:23;;:7;:5;;;:7;;:::i;:::-;:23;;;1177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;830:7:12::1;814:13;:23;;;;;;;;;;;;:::i;:::-;;744:100:::0;:::o;973:85:0:-;1019:7;1045:6;;;;;;;;;;;1038:13;;973:85;:::o;277:4731:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:421:13:-;96:5;121:66;137:49;179:6;137:49;:::i;:::-;121:66;:::i;:::-;112:75;;210:6;203:5;196:21;248:4;241:5;237:16;286:3;277:6;272:3;268:16;265:25;262:112;;;293:79;;:::i;:::-;262:112;383:39;415:6;410:3;405;383:39;:::i;:::-;102:326;7:421;;;;;:::o;448:355::-;515:5;564:3;557:4;549:6;545:17;541:27;531:122;;572:79;;:::i;:::-;531:122;682:6;676:13;707:90;793:3;785:6;778:4;770:6;766:17;707:90;:::i;:::-;698:99;;521:282;448:355;;;;:::o;809:853::-;908:6;916;965:2;953:9;944:7;940:23;936:32;933:119;;;971:79;;:::i;:::-;933:119;1112:1;1101:9;1097:17;1091:24;1142:18;1134:6;1131:30;1128:117;;;1164:79;;:::i;:::-;1128:117;1269:74;1335:7;1326:6;1315:9;1311:22;1269:74;:::i;:::-;1259:84;;1062:291;1413:2;1402:9;1398:18;1392:25;1444:18;1436:6;1433:30;1430:117;;;1466:79;;:::i;:::-;1430:117;1571:74;1637:7;1628:6;1617:9;1613:22;1571:74;:::i;:::-;1561:84;;1363:292;809:853;;;;;:::o;1668:366::-;1810:3;1831:67;1895:2;1890:3;1831:67;:::i;:::-;1824:74;;1907:93;1996:3;1907:93;:::i;:::-;2025:2;2020:3;2016:12;2009:19;;1668:366;;;:::o;2040:419::-;2206:4;2244:2;2233:9;2229:18;2221:26;;2293:9;2287:4;2283:20;2279:1;2268:9;2264:17;2257:47;2321:131;2447:4;2321:131;:::i;:::-;2313:139;;2040:419;;;:::o;2465:129::-;2499:6;2526:20;;:::i;:::-;2516:30;;2555:33;2583:4;2575:6;2555:33;:::i;:::-;2465:129;;;:::o;2600:75::-;2633:6;2666:2;2660:9;2650:19;;2600:75;:::o;2681:308::-;2743:4;2833:18;2825:6;2822:30;2819:56;;;2855:18;;:::i;:::-;2819:56;2893:29;2915:6;2893:29;:::i;:::-;2885:37;;2977:4;2971;2967:15;2959:23;;2681:308;;;:::o;2995:169::-;3079:11;3113:6;3108:3;3101:19;3153:4;3148:3;3144:14;3129:29;;2995:169;;;;:::o;3170:307::-;3238:1;3248:113;3262:6;3259:1;3256:13;3248:113;;;3347:1;3342:3;3338:11;3332:18;3328:1;3323:3;3319:11;3312:39;3284:2;3281:1;3277:10;3272:15;;3248:113;;;3379:6;3376:1;3373:13;3370:101;;;3459:1;3450:6;3445:3;3441:16;3434:27;3370:101;3219:258;3170:307;;;:::o;3483:320::-;3527:6;3564:1;3558:4;3554:12;3544:22;;3611:1;3605:4;3601:12;3632:18;3622:81;;3688:4;3680:6;3676:17;3666:27;;3622:81;3750:2;3742:6;3739:14;3719:18;3716:38;3713:84;;;3769:18;;:::i;:::-;3713:84;3534:269;3483:320;;;:::o;3809:281::-;3892:27;3914:4;3892:27;:::i;:::-;3884:6;3880:40;4022:6;4010:10;4007:22;3986:18;3974:10;3971:34;3968:62;3965:88;;;4033:18;;:::i;:::-;3965:88;4073:10;4069:2;4062:22;3852:238;3809:281;;:::o;4096:180::-;4144:77;4141:1;4134:88;4241:4;4238:1;4231:15;4265:4;4262:1;4255:15;4282:180;4330:77;4327:1;4320:88;4427:4;4424:1;4417:15;4451:4;4448:1;4441:15;4468:117;4577:1;4574;4567:12;4591:117;4700:1;4697;4690:12;4714:117;4823:1;4820;4813:12;4837:117;4946:1;4943;4936:12;4960:102;5001:6;5052:2;5048:7;5043:2;5036:5;5032:14;5028:28;5018:38;;4960:102;;;:::o;5068:182::-;5208:34;5204:1;5196:6;5192:14;5185:58;5068:182;:::o;277:4731:12:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@MAX_SPUNKS_2018": {
"entryPoint": 5080,
"id": 2018,
"parameterSlots": 0,
"returnSlots": 0
},
"@_addTokenToAllTokensEnumeration_1279": {
"entryPoint": 10484,
"id": 1279,
"parameterSlots": 1,
"returnSlots": 0
},
"@_addTokenToOwnerEnumeration_1259": {
"entryPoint": 11131,
"id": 1259,
"parameterSlots": 2,
"returnSlots": 0
},
"@_approve_845": {
"entryPoint": 7917,
"id": 845,
"parameterSlots": 2,
"returnSlots": 0
},
"@_beforeTokenTransfer_1229": {
"entryPoint": 9705,
"id": 1229,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_918": {
"entryPoint": 10479,
"id": 918,
"parameterSlots": 3,
"returnSlots": 0
},
"@_checkOnERC721Received_907": {
"entryPoint": 10072,
"id": 907,
"parameterSlots": 4,
"returnSlots": 1
},
"@_exists_559": {
"entryPoint": 7801,
"id": 559,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_600": {
"entryPoint": 8102,
"id": 600,
"parameterSlots": 2,
"returnSlots": 1
},
"@_mint_701": {
"entryPoint": 11258,
"id": 701,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_1758": {
"entryPoint": 7909,
"id": 1758,
"parameterSlots": 0,
"returnSlots": 1
},
"@_removeTokenFromAllTokensEnumeration_1390": {
"entryPoint": 10922,
"id": 1390,
"parameterSlots": 1,
"returnSlots": 0
},
"@_removeTokenFromOwnerEnumeration_1342": {
"entryPoint": 10557,
"id": 1342,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_615": {
"entryPoint": 8928,
"id": 615,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_644": {
"entryPoint": 9981,
"id": 644,
"parameterSlots": 3,
"returnSlots": 0
},
"@_safeTransfer_541": {
"entryPoint": 9154,
"id": 541,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setOwner_102": {
"entryPoint": 8958,
"id": 102,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_821": {
"entryPoint": 8324,
"id": 821,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_363": {
"entryPoint": 2353,
"id": 363,
"parameterSlots": 2,
"returnSlots": 0
},
"@authClaim_2127": {
"entryPoint": 3923,
"id": 2127,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_221": {
"entryPoint": 4119,
"id": 221,
"parameterSlots": 1,
"returnSlots": 1
},
"@calculatePrice_2255": {
"entryPoint": 6716,
"id": 2255,
"parameterSlots": 0,
"returnSlots": 1
},
"@claimDystoPunk_2503": {
"entryPoint": 5086,
"id": 2503,
"parameterSlots": 0,
"returnSlots": 0
},
"@contractURI_2099": {
"entryPoint": 7033,
"id": 2099,
"parameterSlots": 0,
"returnSlots": 1
},
"@getApproved_384": {
"entryPoint": 2220,
"id": 384,
"parameterSlots": 1,
"returnSlots": 1
},
"@getDystoPunk_2324": {
"entryPoint": 6332,
"id": 2324,
"parameterSlots": 1,
"returnSlots": 0
},
"@hasSaleStarted_2021": {
"entryPoint": 2646,
"id": 2021,
"parameterSlots": 0,
"returnSlots": 0
},
"@isApprovedForAll_436": {
"entryPoint": 7179,
"id": 436,
"parameterSlots": 2,
"returnSlots": 1
},
"@isAuthClaim_2111": {
"entryPoint": 5956,
"id": 2111,
"parameterSlots": 1,
"returnSlots": 1
},
"@isContract_1469": {
"entryPoint": 11720,
"id": 1469,
"parameterSlots": 1,
"returnSlots": 1
},
"@name_259": {
"entryPoint": 2074,
"id": 259,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_249": {
"entryPoint": 3745,
"id": 249,
"parameterSlots": 1,
"returnSlots": 1
},
"@owner_32": {
"entryPoint": 4893,
"id": 32,
"parameterSlots": 0,
"returnSlots": 1
},
"@pauseSale_2344": {
"entryPoint": 3442,
"id": 2344,
"parameterSlots": 0,
"returnSlots": 0
},
"@renounceOwnership_60": {
"entryPoint": 4303,
"id": 60,
"parameterSlots": 0,
"returnSlots": 0
},
"@reserveAirdrop_2418": {
"entryPoint": 2958,
"id": 2418,
"parameterSlots": 1,
"returnSlots": 0
},
"@safeTransferFrom_482": {
"entryPoint": 2926,
"id": 482,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_512": {
"entryPoint": 6182,
"id": 512,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_418": {
"entryPoint": 5571,
"id": 418,
"parameterSlots": 2,
"returnSlots": 0
},
"@setBaseURI_2061": {
"entryPoint": 3595,
"id": 2061,
"parameterSlots": 1,
"returnSlots": 0
},
"@startSale_2334": {
"entryPoint": 6029,
"id": 2334,
"parameterSlots": 0,
"returnSlots": 0
},
"@supportsInterface_1103": {
"entryPoint": 1952,
"id": 1103,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_197": {
"entryPoint": 7575,
"id": 197,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_1994": {
"entryPoint": 9599,
"id": 1994,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_269": {
"entryPoint": 4934,
"id": 269,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_1853": {
"entryPoint": 9246,
"id": 1853,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenByIndex_1165": {
"entryPoint": 3329,
"id": 1165,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenOfOwnerByIndex_1131": {
"entryPoint": 2761,
"id": 1131,
"parameterSlots": 2,
"returnSlots": 1
},
"@tokenURI_2091": {
"entryPoint": 6280,
"id": 2091,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokensOfOwner_2191": {
"entryPoint": 4439,
"id": 2191,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_1142": {
"entryPoint": 2633,
"id": 1142,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_463": {
"entryPoint": 2665,
"id": 463,
"parameterSlots": 3,
"returnSlots": 0
},
"@transferOwnership_83": {
"entryPoint": 7327,
"id": 83,
"parameterSlots": 1,
"returnSlots": 0
},
"@withdrawAll_2365": {
"entryPoint": 4705,
"id": 2365,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 11902,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 11968,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 12034,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 12055,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 12076,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 12097,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 12118,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 12164,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 12210,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 12231,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 12276,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 12340,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 12423,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 12554,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 12618,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 12682,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 12727,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 12772,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 12845,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encodeUpdatedPos_t_uint256_to_t_uint256": {
"entryPoint": 12890,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 12914,
"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": 12929,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 13023,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 13038,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13095,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 13152,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 13201,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0ebdb3ee29062e062d5a891cb99928a6f1eb24832fa38cb33cf5cfc5f8c83c25_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13328,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13363,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13398,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13433,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13468,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_2acef9ba1e45187b0efd0eb9366eaa9d4fb900c967d0b86b2bc076cb99c6e641_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13503,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13538,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13573,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13608,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_625b538c155ca312eb94fa672da77a4e4fa005cf4021acfb75b90a4f338ee527_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13643,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_690daf95a635cfafdc295c4f9236910efd322a92390049f32b6648f75bcad436_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13678,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13713,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13748,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13783,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_80a6ed2a2d761f9e74dba4f5dfd4e0aa8e6a5cde6d7f29c656cea668e6dcf6a9_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13818,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_84aad3058d1ccb6a9d9d3a0e38e47a2035130e03c464b9b76344f6355bda1fc6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13853,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13888,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8aab7d0dc20d5122688637339e74bd0507f41dcf556393407bd1a9b61f293417_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13923,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13958,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13993,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14028,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14063,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b97b1b2a9c46e4a4cf5f37aa4a2b6d077755ddf5dccd4452c4e059ce2e5520c5_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14098,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c266efca4f4ed37612271196433531dcbb4fca89a694d568d1e290e32feb1682_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14133,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14168,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14203,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_e99ebb1883af9c289deeb7aae6d1696029b3eb801ae7c4ff6e70c1d154dd1278_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14238,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256": {
"entryPoint": 14273,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 14288,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_storage_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 14303,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 14339,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed": {
"entryPoint": 14366,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
"entryPoint": 14442,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 14476,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14503,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0ebdb3ee29062e062d5a891cb99928a6f1eb24832fa38cb33cf5cfc5f8c83c25__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14537,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14569,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14601,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14633,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14665,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2acef9ba1e45187b0efd0eb9366eaa9d4fb900c967d0b86b2bc076cb99c6e641__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14697,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14729,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14761,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14793,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_625b538c155ca312eb94fa672da77a4e4fa005cf4021acfb75b90a4f338ee527__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14825,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_690daf95a635cfafdc295c4f9236910efd322a92390049f32b6648f75bcad436__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14857,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14889,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14921,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14953,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_80a6ed2a2d761f9e74dba4f5dfd4e0aa8e6a5cde6d7f29c656cea668e6dcf6a9__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14985,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_84aad3058d1ccb6a9d9d3a0e38e47a2035130e03c464b9b76344f6355bda1fc6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15017,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15049,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8aab7d0dc20d5122688637339e74bd0507f41dcf556393407bd1a9b61f293417__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15081,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15113,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15145,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15177,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15209,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b97b1b2a9c46e4a4cf5f37aa4a2b6d077755ddf5dccd4452c4e059ce2e5520c5__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15241,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c266efca4f4ed37612271196433531dcbb4fca89a694d568d1e290e32feb1682__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15273,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15305,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15337,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_e99ebb1883af9c289deeb7aae6d1696029b3eb801ae7c4ff6e70c1d154dd1278__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15369,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 15401,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 15428,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 15455,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 15465,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 15514,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 15563,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 15579,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 15600,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 15611,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 15622,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_nextElement_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 15633,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack": {
"entryPoint": 15646,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 15663,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 15680,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 15697,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 15708,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 15794,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 15843,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 15933,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 15985,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 16003,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 16015,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 16059,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 16091,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 16101,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 16116,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 16167,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 16217,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"increment_t_uint256": {
"entryPoint": 16266,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 16339,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 16388,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 16435,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 16482,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x31": {
"entryPoint": 16529,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 16576,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 16623,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 16670,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 16675,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 16680,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 16685,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 16690,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_0ebdb3ee29062e062d5a891cb99928a6f1eb24832fa38cb33cf5cfc5f8c83c25": {
"entryPoint": 16707,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c": {
"entryPoint": 16748,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e": {
"entryPoint": 16827,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 16906,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57": {
"entryPoint": 16985,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_2acef9ba1e45187b0efd0eb9366eaa9d4fb900c967d0b86b2bc076cb99c6e641": {
"entryPoint": 17026,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4": {
"entryPoint": 17067,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05": {
"entryPoint": 17146,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c": {
"entryPoint": 17187,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_625b538c155ca312eb94fa672da77a4e4fa005cf4021acfb75b90a4f338ee527": {
"entryPoint": 17266,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_690daf95a635cfafdc295c4f9236910efd322a92390049f32b6648f75bcad436": {
"entryPoint": 17345,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d": {
"entryPoint": 17386,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba": {
"entryPoint": 17465,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397": {
"entryPoint": 17544,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_80a6ed2a2d761f9e74dba4f5dfd4e0aa8e6a5cde6d7f29c656cea668e6dcf6a9": {
"entryPoint": 17623,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_84aad3058d1ccb6a9d9d3a0e38e47a2035130e03c464b9b76344f6355bda1fc6": {
"entryPoint": 17664,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6": {
"entryPoint": 17743,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8aab7d0dc20d5122688637339e74bd0507f41dcf556393407bd1a9b61f293417": {
"entryPoint": 17784,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d": {
"entryPoint": 17825,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 17904,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950": {
"entryPoint": 17945,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942": {
"entryPoint": 18024,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b97b1b2a9c46e4a4cf5f37aa4a2b6d077755ddf5dccd4452c4e059ce2e5520c5": {
"entryPoint": 18103,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c266efca4f4ed37612271196433531dcbb4fca89a694d568d1e290e32feb1682": {
"entryPoint": 18144,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2": {
"entryPoint": 18185,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc": {
"entryPoint": 18264,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_e99ebb1883af9c289deeb7aae6d1696029b3eb801ae7c4ff6e70c1d154dd1278": {
"entryPoint": 18343,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 18384,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 18407,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 18430,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 18453,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:47840:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "90:327:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "100:74:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "166:6:13"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "125:40:13"
},
"nodeType": "YulFunctionCall",
"src": "125:48:13"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "109:15:13"
},
"nodeType": "YulFunctionCall",
"src": "109:65:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "100:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "190:5:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "197:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "183:6:13"
},
"nodeType": "YulFunctionCall",
"src": "183:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "183:21:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "213:27:13",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "228:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "235:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "224:3:13"
},
"nodeType": "YulFunctionCall",
"src": "224:16:13"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "217:3:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "278:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "280:77:13"
},
"nodeType": "YulFunctionCall",
"src": "280:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "280:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "259:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "264:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "255:3:13"
},
"nodeType": "YulFunctionCall",
"src": "255:16:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "273:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "252:2:13"
},
"nodeType": "YulFunctionCall",
"src": "252:25:13"
},
"nodeType": "YulIf",
"src": "249:112:13"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "394:3:13"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "399:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "404:6:13"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "370:23:13"
},
"nodeType": "YulFunctionCall",
"src": "370:41:13"
},
"nodeType": "YulExpressionStatement",
"src": "370:41:13"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "63:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "68:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "76:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "84:5:13",
"type": ""
}
],
"src": "7:410:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "507:328:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "517:75:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "584:6:13"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "542:41:13"
},
"nodeType": "YulFunctionCall",
"src": "542:49:13"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "526:15:13"
},
"nodeType": "YulFunctionCall",
"src": "526:66:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "517:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "608:5:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "615:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "601:6:13"
},
"nodeType": "YulFunctionCall",
"src": "601:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "601:21:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "631:27:13",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "646:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "653:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "642:3:13"
},
"nodeType": "YulFunctionCall",
"src": "642:16:13"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "635:3:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "696:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "698:77:13"
},
"nodeType": "YulFunctionCall",
"src": "698:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "698:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "677:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "682:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "673:3:13"
},
"nodeType": "YulFunctionCall",
"src": "673:16:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "691:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "670:2:13"
},
"nodeType": "YulFunctionCall",
"src": "670:25:13"
},
"nodeType": "YulIf",
"src": "667:112:13"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "812:3:13"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "817:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "822:6:13"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "788:23:13"
},
"nodeType": "YulFunctionCall",
"src": "788:41:13"
},
"nodeType": "YulExpressionStatement",
"src": "788:41:13"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "480:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "485:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "493:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "501:5:13",
"type": ""
}
],
"src": "423:412:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "893:87:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "903:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "925:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "912:12:13"
},
"nodeType": "YulFunctionCall",
"src": "912:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "903:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "968:5:13"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "941:26:13"
},
"nodeType": "YulFunctionCall",
"src": "941:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "941:33:13"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "871:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "879:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "887:5:13",
"type": ""
}
],
"src": "841:139:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1035:84:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1045:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1067:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1054:12:13"
},
"nodeType": "YulFunctionCall",
"src": "1054:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1045:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1107:5:13"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "1083:23:13"
},
"nodeType": "YulFunctionCall",
"src": "1083:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "1083:30:13"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1013:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1021:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1029:5:13",
"type": ""
}
],
"src": "986:133:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1176:86:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1186:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1208:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1195:12:13"
},
"nodeType": "YulFunctionCall",
"src": "1195:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1186:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1250:5:13"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1224:25:13"
},
"nodeType": "YulFunctionCall",
"src": "1224:32:13"
},
"nodeType": "YulExpressionStatement",
"src": "1224:32:13"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1154:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1162:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1170:5:13",
"type": ""
}
],
"src": "1125:137:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1330:79:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1340:22:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1355:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1349:5:13"
},
"nodeType": "YulFunctionCall",
"src": "1349:13:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1340:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1397:5:13"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1371:25:13"
},
"nodeType": "YulFunctionCall",
"src": "1371:32:13"
},
"nodeType": "YulExpressionStatement",
"src": "1371:32:13"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1308:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1316:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1324:5:13",
"type": ""
}
],
"src": "1268:141:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1489:277:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1538:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "1540:77:13"
},
"nodeType": "YulFunctionCall",
"src": "1540:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "1540:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1517:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1525:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1513:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1513:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1532:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1509:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1509:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1502:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1502:35:13"
},
"nodeType": "YulIf",
"src": "1499:122:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1630:34:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1657:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1644:12:13"
},
"nodeType": "YulFunctionCall",
"src": "1644:20:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1634:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1673:87:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1733:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1741:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1729:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1729:17:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1748:6:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1756:3:13"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1682:46:13"
},
"nodeType": "YulFunctionCall",
"src": "1682:78:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1673:5:13"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1467:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1475:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1483:5:13",
"type": ""
}
],
"src": "1428:338:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1848:278:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1897:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "1899:77:13"
},
"nodeType": "YulFunctionCall",
"src": "1899:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "1899:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1876:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1884:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1872:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1872:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1891:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1868:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1868:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1861:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1861:35:13"
},
"nodeType": "YulIf",
"src": "1858:122:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1989:34:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2016:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2003:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2003:20:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1993:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2032:88:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2093:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2101:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2089:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2089:17:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2108:6:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2116:3:13"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2041:47:13"
},
"nodeType": "YulFunctionCall",
"src": "2041:79:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2032:5:13"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1826:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1834:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1842:5:13",
"type": ""
}
],
"src": "1786:340:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2184:87:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2194:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2216:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2203:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2203:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2194:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2259:5:13"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2232:26:13"
},
"nodeType": "YulFunctionCall",
"src": "2232:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "2232:33:13"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2162:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2170:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2178:5:13",
"type": ""
}
],
"src": "2132:139:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2343:263:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2389:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2391:77:13"
},
"nodeType": "YulFunctionCall",
"src": "2391:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "2391:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2364:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2373:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2360:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2360:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2385:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2356:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2356:32:13"
},
"nodeType": "YulIf",
"src": "2353:119:13"
},
{
"nodeType": "YulBlock",
"src": "2482:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2497:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2511:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2501:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2526:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2561:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2572:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2557:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2557:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2581:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2536:20:13"
},
"nodeType": "YulFunctionCall",
"src": "2536:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2526:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2313:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2324:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2336:6:13",
"type": ""
}
],
"src": "2277:329:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2695:391:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2741:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2743:77:13"
},
"nodeType": "YulFunctionCall",
"src": "2743:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "2743:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2716:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2725:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2712:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2712:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2737:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2708:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2708:32:13"
},
"nodeType": "YulIf",
"src": "2705:119:13"
},
{
"nodeType": "YulBlock",
"src": "2834:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2849:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2863:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2853:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2878:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2913:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2924:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2909:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2909:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2933:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2888:20:13"
},
"nodeType": "YulFunctionCall",
"src": "2888:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2878:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2961:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2976:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2990:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2980:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3006:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3041:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3052:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3037:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3037:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3061:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3016:20:13"
},
"nodeType": "YulFunctionCall",
"src": "3016:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3006:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2657:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2668:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2680:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2688:6:13",
"type": ""
}
],
"src": "2612:474:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3192:519:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3238:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3240:77:13"
},
"nodeType": "YulFunctionCall",
"src": "3240:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "3240:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3213:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3222:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3209:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3209:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3234:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3205:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3205:32:13"
},
"nodeType": "YulIf",
"src": "3202:119:13"
},
{
"nodeType": "YulBlock",
"src": "3331:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3346:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3360:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3350:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3375:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3410:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3421:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3406:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3406:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3430:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3385:20:13"
},
"nodeType": "YulFunctionCall",
"src": "3385:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3375:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3458:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3473:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3487:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3477:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3503:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3538:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3549:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3534:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3534:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3558:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3513:20:13"
},
"nodeType": "YulFunctionCall",
"src": "3513:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3503:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3586:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3601:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3615:2:13",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3605:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3631:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3666:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3677:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3662:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3662:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3686:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3641:20:13"
},
"nodeType": "YulFunctionCall",
"src": "3641:53:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3631:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3146:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3157:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3169:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3177:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3185:6:13",
"type": ""
}
],
"src": "3092:619:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3843:817:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3890:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3892:77:13"
},
"nodeType": "YulFunctionCall",
"src": "3892:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "3892:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3864:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3873:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3860:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3860:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3885:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3856:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3856:33:13"
},
"nodeType": "YulIf",
"src": "3853:120:13"
},
{
"nodeType": "YulBlock",
"src": "3983:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3998:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4012:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4002:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4027:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4062:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4073:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4058:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4058:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4082:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4037:20:13"
},
"nodeType": "YulFunctionCall",
"src": "4037:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4027:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4110:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4125:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4139:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4129:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4155:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4190:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4201:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4186:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4186:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4210:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4165:20:13"
},
"nodeType": "YulFunctionCall",
"src": "4165:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4155:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4238:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4253:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4267:2:13",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4257:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4283:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4318:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4329:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4314:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4314:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4338:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4293:20:13"
},
"nodeType": "YulFunctionCall",
"src": "4293:53:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4283:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4366:287:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4381:46:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4412:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4423:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4408:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4408:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4395:12:13"
},
"nodeType": "YulFunctionCall",
"src": "4395:32:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4385:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4474:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "4476:77:13"
},
"nodeType": "YulFunctionCall",
"src": "4476:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "4476:79:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4446:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4454:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4443:2:13"
},
"nodeType": "YulFunctionCall",
"src": "4443:30:13"
},
"nodeType": "YulIf",
"src": "4440:117:13"
},
{
"nodeType": "YulAssignment",
"src": "4571:72:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4615:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4626:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4611:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4611:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4635:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4581:29:13"
},
"nodeType": "YulFunctionCall",
"src": "4581:62:13"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "4571:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3789:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3800:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3812:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3820:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3828:6:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "3836:6:13",
"type": ""
}
],
"src": "3717:943:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4746:388:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4792:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4794:77:13"
},
"nodeType": "YulFunctionCall",
"src": "4794:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "4794:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4767:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4776:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4763:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4763:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4788:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4759:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4759:32:13"
},
"nodeType": "YulIf",
"src": "4756:119:13"
},
{
"nodeType": "YulBlock",
"src": "4885:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4900:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4914:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4904:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4929:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4964:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4975:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4960:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4960:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4984:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4939:20:13"
},
"nodeType": "YulFunctionCall",
"src": "4939:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4929:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5012:115:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5027:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5041:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5031:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5057:60:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5089:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5100:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5085:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5085:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5109:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "5067:17:13"
},
"nodeType": "YulFunctionCall",
"src": "5067:50:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5057:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4708:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4719:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4731:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4739:6:13",
"type": ""
}
],
"src": "4666:468:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5223:391:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5269:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5271:77:13"
},
"nodeType": "YulFunctionCall",
"src": "5271:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "5271:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5244:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5253:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5240:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5240:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5265:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5236:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5236:32:13"
},
"nodeType": "YulIf",
"src": "5233:119:13"
},
{
"nodeType": "YulBlock",
"src": "5362:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5377:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5391:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5381:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5406:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5441:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5452:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5437:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5437:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5461:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5416:20:13"
},
"nodeType": "YulFunctionCall",
"src": "5416:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5406:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5489:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5504:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5518:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5508:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5534:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5569:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5580:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5565:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5565:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5589:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5544:20:13"
},
"nodeType": "YulFunctionCall",
"src": "5544:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5534:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5185:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5196:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5208:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5216:6:13",
"type": ""
}
],
"src": "5140:474:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5685:262:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5731:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5733:77:13"
},
"nodeType": "YulFunctionCall",
"src": "5733:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "5733:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5706:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5715:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5702:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5702:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5727:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5698:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5698:32:13"
},
"nodeType": "YulIf",
"src": "5695:119:13"
},
{
"nodeType": "YulBlock",
"src": "5824:116:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5839:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5853:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5843:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5868:62:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5902:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5913:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5898:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5898:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5922:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "5878:19:13"
},
"nodeType": "YulFunctionCall",
"src": "5878:52:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5868:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5655:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5666:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5678:6:13",
"type": ""
}
],
"src": "5620:327:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6029:273:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6075:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6077:77:13"
},
"nodeType": "YulFunctionCall",
"src": "6077:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "6077:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6050:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6059:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6046:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6046:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6071:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6042:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6042:32:13"
},
"nodeType": "YulIf",
"src": "6039:119:13"
},
{
"nodeType": "YulBlock",
"src": "6168:127:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6183:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6197:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6187:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6212:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6257:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6268:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6253:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6253:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6277:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "6222:30:13"
},
"nodeType": "YulFunctionCall",
"src": "6222:63:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6212:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5999:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6010:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6022:6:13",
"type": ""
}
],
"src": "5953:349:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6384:433:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6430:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6432:77:13"
},
"nodeType": "YulFunctionCall",
"src": "6432:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "6432:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6405:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6414:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6401:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6401:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6426:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6397:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6397:32:13"
},
"nodeType": "YulIf",
"src": "6394:119:13"
},
{
"nodeType": "YulBlock",
"src": "6523:287:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6538:45:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6569:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6580:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6565:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6565:17:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6552:12:13"
},
"nodeType": "YulFunctionCall",
"src": "6552:31:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6542:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6630:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "6632:77:13"
},
"nodeType": "YulFunctionCall",
"src": "6632:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "6632:79:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6602:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6610:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6599:2:13"
},
"nodeType": "YulFunctionCall",
"src": "6599:30:13"
},
"nodeType": "YulIf",
"src": "6596:117:13"
},
{
"nodeType": "YulAssignment",
"src": "6727:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6772:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6783:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6768:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6768:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6792:7:13"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6737:30:13"
},
"nodeType": "YulFunctionCall",
"src": "6737:63:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6727:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6354:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6365:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6377:6:13",
"type": ""
}
],
"src": "6308:509:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6889:263:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6935:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6937:77:13"
},
"nodeType": "YulFunctionCall",
"src": "6937:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "6937:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6910:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6919:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6906:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6906:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6931:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6902:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6902:32:13"
},
"nodeType": "YulIf",
"src": "6899:119:13"
},
{
"nodeType": "YulBlock",
"src": "7028:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7043:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7057:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7047:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7072:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7107:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7118:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7103:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7103:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7127:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "7082:20:13"
},
"nodeType": "YulFunctionCall",
"src": "7082:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7072:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6859:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6870:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6882:6:13",
"type": ""
}
],
"src": "6823:329:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7238:99:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7282:6:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7290:3:13"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "7248:33:13"
},
"nodeType": "YulFunctionCall",
"src": "7248:46:13"
},
"nodeType": "YulExpressionStatement",
"src": "7248:46:13"
},
{
"nodeType": "YulAssignment",
"src": "7303:28:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7321:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7326:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7317:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7317:14:13"
},
"variableNames": [
{
"name": "updatedPos",
"nodeType": "YulIdentifier",
"src": "7303:10:13"
}
]
}
]
},
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7211:6:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7219:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updatedPos",
"nodeType": "YulTypedName",
"src": "7227:10:13",
"type": ""
}
],
"src": "7158:179:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7408:53:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7425:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7448:5:13"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "7430:17:13"
},
"nodeType": "YulFunctionCall",
"src": "7430:24:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7418:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7418:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "7418:37:13"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7396:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7403:3:13",
"type": ""
}
],
"src": "7343:118:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7621:608:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7631:68:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7693:5:13"
}
],
"functionName": {
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7645:47:13"
},
"nodeType": "YulFunctionCall",
"src": "7645:54:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7635:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7708:93:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7789:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7794:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7715:73:13"
},
"nodeType": "YulFunctionCall",
"src": "7715:86:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7708:3:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7810:71:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7875:5:13"
}
],
"functionName": {
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7825:49:13"
},
"nodeType": "YulFunctionCall",
"src": "7825:56:13"
},
"variables": [
{
"name": "baseRef",
"nodeType": "YulTypedName",
"src": "7814:7:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7890:21:13",
"value": {
"name": "baseRef",
"nodeType": "YulIdentifier",
"src": "7904:7:13"
},
"variables": [
{
"name": "srcPtr",
"nodeType": "YulTypedName",
"src": "7894:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7980:224:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7994:34:13",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "8021:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "8015:5:13"
},
"nodeType": "YulFunctionCall",
"src": "8015:13:13"
},
"variables": [
{
"name": "elementValue0",
"nodeType": "YulTypedName",
"src": "7998:13:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8041:70:13",
"value": {
"arguments": [
{
"name": "elementValue0",
"nodeType": "YulIdentifier",
"src": "8092:13:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8107:3:13"
}
],
"functionName": {
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "8048:43:13"
},
"nodeType": "YulFunctionCall",
"src": "8048:63:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8041:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8124:70:13",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "8187:6:13"
}
],
"functionName": {
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8134:52:13"
},
"nodeType": "YulFunctionCall",
"src": "8134:60:13"
},
"variableNames": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "8124:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7942:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7945:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7939:2:13"
},
"nodeType": "YulFunctionCall",
"src": "7939:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "7953:18:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7955:14:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7964:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7967:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7960:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7960:9:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7955:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "7924:14:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7926:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7935:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "7930:1:13",
"type": ""
}
]
}
]
},
"src": "7920:284:13"
},
{
"nodeType": "YulAssignment",
"src": "8213:10:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8220:3:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8213:3:13"
}
]
}
]
},
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7600:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7607:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7616:3:13",
"type": ""
}
],
"src": "7497:732:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8294:50:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8311:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8331:5:13"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "8316:14:13"
},
"nodeType": "YulFunctionCall",
"src": "8316:21:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8304:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8304:34:13"
},
"nodeType": "YulExpressionStatement",
"src": "8304:34:13"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8282:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8289:3:13",
"type": ""
}
],
"src": "8235:109:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8440:270:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8450:52:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8496:5:13"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8464:31:13"
},
"nodeType": "YulFunctionCall",
"src": "8464:38:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8454:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8511:77:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8576:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8581:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8518:57:13"
},
"nodeType": "YulFunctionCall",
"src": "8518:70:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8511:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8623:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8630:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8619:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8619:16:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8637:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8642:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "8597:21:13"
},
"nodeType": "YulFunctionCall",
"src": "8597:52:13"
},
"nodeType": "YulExpressionStatement",
"src": "8597:52:13"
},
{
"nodeType": "YulAssignment",
"src": "8658:46:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8669:3:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8696:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "8674:21:13"
},
"nodeType": "YulFunctionCall",
"src": "8674:29:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8665:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8665:39:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8658:3:13"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8421:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8428:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8436:3:13",
"type": ""
}
],
"src": "8350:360:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8808:272:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8818:53:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8865:5:13"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8832:32:13"
},
"nodeType": "YulFunctionCall",
"src": "8832:39:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8822:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8880:78:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8946:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8951:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8887:58:13"
},
"nodeType": "YulFunctionCall",
"src": "8887:71:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8880:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8993:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9000:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8989:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8989:16:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9007:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9012:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "8967:21:13"
},
"nodeType": "YulFunctionCall",
"src": "8967:52:13"
},
"nodeType": "YulExpressionStatement",
"src": "8967:52:13"
},
{
"nodeType": "YulAssignment",
"src": "9028:46:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9039:3:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9066:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "9044:21:13"
},
"nodeType": "YulFunctionCall",
"src": "9044:29:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9035:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9035:39:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9028:3:13"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8789:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8796:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8804:3:13",
"type": ""
}
],
"src": "8716:364:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9196:267:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9206:53:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9253:5:13"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9220:32:13"
},
"nodeType": "YulFunctionCall",
"src": "9220:39:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9210:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9268:96:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9352:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9357:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "9275:76:13"
},
"nodeType": "YulFunctionCall",
"src": "9275:89:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9268:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9399:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9406:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9395:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9395:16:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9413:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9418:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "9373:21:13"
},
"nodeType": "YulFunctionCall",
"src": "9373:52:13"
},
"nodeType": "YulExpressionStatement",
"src": "9373:52:13"
},
{
"nodeType": "YulAssignment",
"src": "9434:23:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9445:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9450:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9441:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9441:16:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9434:3:13"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9177:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9184:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9192:3:13",
"type": ""
}
],
"src": "9086:377:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9600:738:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9610:29:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9633:5:13"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "9627:5:13"
},
"nodeType": "YulFunctionCall",
"src": "9627:12:13"
},
"variables": [
{
"name": "slotValue",
"nodeType": "YulTypedName",
"src": "9614:9:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "9648:50:13",
"value": {
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "9688:9:13"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "9662:25:13"
},
"nodeType": "YulFunctionCall",
"src": "9662:36:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9652:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9707:96:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9791:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9796:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "9714:76:13"
},
"nodeType": "YulFunctionCall",
"src": "9714:89:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9707:3:13"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "9852:130:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9905:3:13"
},
{
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "9914:9:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9929:4:13",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "9925:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9925:9:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "9910:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9910:25:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9898:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9898:38:13"
},
"nodeType": "YulExpressionStatement",
"src": "9898:38:13"
},
{
"nodeType": "YulAssignment",
"src": "9949:23:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9960:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9965:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9956:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9956:16:13"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "9949:3:13"
}
]
}
]
},
"nodeType": "YulCase",
"src": "9845:137:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9850:1:13",
"type": "",
"value": "0"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "9998:334:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10043:53:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10090:5:13"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "10058:31:13"
},
"nodeType": "YulFunctionCall",
"src": "10058:38:13"
},
"variables": [
{
"name": "dataPos",
"nodeType": "YulTypedName",
"src": "10047:7:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10109:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10118:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "10113:1:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10176:110:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10205:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10210:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10201:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10201:11:13"
},
{
"arguments": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "10220:7:13"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "10214:5:13"
},
"nodeType": "YulFunctionCall",
"src": "10214:14:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10194:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10194:35:13"
},
"nodeType": "YulExpressionStatement",
"src": "10194:35:13"
},
{
"nodeType": "YulAssignment",
"src": "10246:26:13",
"value": {
"arguments": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "10261:7:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10270:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10257:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10257:15:13"
},
"variableNames": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "10246:7:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10143:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10146:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10140:2:13"
},
"nodeType": "YulFunctionCall",
"src": "10140:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "10154:21:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10156:17:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10165:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10168:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10161:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10161:12:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10156:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "10136:3:13",
"statements": []
},
"src": "10132:154:13"
},
{
"nodeType": "YulAssignment",
"src": "10299:23:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10310:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10315:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10306:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10306:16:13"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "10299:3:13"
}
]
}
]
},
"nodeType": "YulCase",
"src": "9991:341:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9996:1:13",
"type": "",
"value": "1"
}
}
],
"expression": {
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "9823:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9834:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "9819:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9819:17:13"
},
"nodeType": "YulSwitch",
"src": "9812:520:13"
}
]
},
"name": "abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9581:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9588:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "9596:3:13",
"type": ""
}
],
"src": "9493:845:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10490:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10500:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10566:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10571:2:13",
"type": "",
"value": "23"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10507:58:13"
},
"nodeType": "YulFunctionCall",
"src": "10507:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10500:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10672:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_0ebdb3ee29062e062d5a891cb99928a6f1eb24832fa38cb33cf5cfc5f8c83c25",
"nodeType": "YulIdentifier",
"src": "10583:88:13"
},
"nodeType": "YulFunctionCall",
"src": "10583:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "10583:93:13"
},
{
"nodeType": "YulAssignment",
"src": "10685:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10696:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10701:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10692:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10692:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10685:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0ebdb3ee29062e062d5a891cb99928a6f1eb24832fa38cb33cf5cfc5f8c83c25_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10478:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10486:3:13",
"type": ""
}
],
"src": "10344:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10862:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10872:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10938:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10943:2:13",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10879:58:13"
},
"nodeType": "YulFunctionCall",
"src": "10879:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10872:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11044:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c",
"nodeType": "YulIdentifier",
"src": "10955:88:13"
},
"nodeType": "YulFunctionCall",
"src": "10955:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "10955:93:13"
},
{
"nodeType": "YulAssignment",
"src": "11057:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11068:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11073:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11064:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11064:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11057:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10850:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10858:3:13",
"type": ""
}
],
"src": "10716:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11234:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11244:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11310:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11315:2:13",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11251:58:13"
},
"nodeType": "YulFunctionCall",
"src": "11251:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11244:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11416:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "11327:88:13"
},
"nodeType": "YulFunctionCall",
"src": "11327:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "11327:93:13"
},
{
"nodeType": "YulAssignment",
"src": "11429:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11440:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11445:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11436:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11436:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11429:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11222:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11230:3:13",
"type": ""
}
],
"src": "11088:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11606:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11616:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11682:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11687:2:13",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11623:58:13"
},
"nodeType": "YulFunctionCall",
"src": "11623:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11616:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11788:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "11699:88:13"
},
"nodeType": "YulFunctionCall",
"src": "11699:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "11699:93:13"
},
{
"nodeType": "YulAssignment",
"src": "11801:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11812:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11817:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11808:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11808:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11801:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11594:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11602:3:13",
"type": ""
}
],
"src": "11460:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11978:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11988:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12054:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12059:2:13",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11995:58:13"
},
"nodeType": "YulFunctionCall",
"src": "11995:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11988:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12160:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulIdentifier",
"src": "12071:88:13"
},
"nodeType": "YulFunctionCall",
"src": "12071:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "12071:93:13"
},
{
"nodeType": "YulAssignment",
"src": "12173:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12184:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12189:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12180:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12180:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12173:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11966:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11974:3:13",
"type": ""
}
],
"src": "11832:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12350:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12360:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12426:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12431:2:13",
"type": "",
"value": "18"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12367:58:13"
},
"nodeType": "YulFunctionCall",
"src": "12367:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12360:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12532:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_2acef9ba1e45187b0efd0eb9366eaa9d4fb900c967d0b86b2bc076cb99c6e641",
"nodeType": "YulIdentifier",
"src": "12443:88:13"
},
"nodeType": "YulFunctionCall",
"src": "12443:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "12443:93:13"
},
{
"nodeType": "YulAssignment",
"src": "12545:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12556:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12561:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12552:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12552:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12545:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2acef9ba1e45187b0efd0eb9366eaa9d4fb900c967d0b86b2bc076cb99c6e641_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12338:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12346:3:13",
"type": ""
}
],
"src": "12204:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12722:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12732:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12798:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12803:2:13",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12739:58:13"
},
"nodeType": "YulFunctionCall",
"src": "12739:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12732:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12904:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "12815:88:13"
},
"nodeType": "YulFunctionCall",
"src": "12815:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "12815:93:13"
},
{
"nodeType": "YulAssignment",
"src": "12917:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12928:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12933:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12924:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12924:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12917:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12710:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12718:3:13",
"type": ""
}
],
"src": "12576:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13094:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13104:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13170:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13175:2:13",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13111:58:13"
},
"nodeType": "YulFunctionCall",
"src": "13111:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13104:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13276:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulIdentifier",
"src": "13187:88:13"
},
"nodeType": "YulFunctionCall",
"src": "13187:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "13187:93:13"
},
{
"nodeType": "YulAssignment",
"src": "13289:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13300:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13305:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13296:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13296:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13289:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13082:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13090:3:13",
"type": ""
}
],
"src": "12948:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13466:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13476:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13542:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13547:2:13",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13483:58:13"
},
"nodeType": "YulFunctionCall",
"src": "13483:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13476:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13648:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulIdentifier",
"src": "13559:88:13"
},
"nodeType": "YulFunctionCall",
"src": "13559:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "13559:93:13"
},
{
"nodeType": "YulAssignment",
"src": "13661:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13672:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13677:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13668:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13668:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13661:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13454:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13462:3:13",
"type": ""
}
],
"src": "13320:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13838:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13848:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13914:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13919:2:13",
"type": "",
"value": "45"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13855:58:13"
},
"nodeType": "YulFunctionCall",
"src": "13855:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13848:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14020:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_625b538c155ca312eb94fa672da77a4e4fa005cf4021acfb75b90a4f338ee527",
"nodeType": "YulIdentifier",
"src": "13931:88:13"
},
"nodeType": "YulFunctionCall",
"src": "13931:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "13931:93:13"
},
{
"nodeType": "YulAssignment",
"src": "14033:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14044:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14049:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14040:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14040:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14033:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_625b538c155ca312eb94fa672da77a4e4fa005cf4021acfb75b90a4f338ee527_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13826:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13834:3:13",
"type": ""
}
],
"src": "13692:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14210:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14220:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14286:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14291:2:13",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14227:58:13"
},
"nodeType": "YulFunctionCall",
"src": "14227:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14220:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14392:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_690daf95a635cfafdc295c4f9236910efd322a92390049f32b6648f75bcad436",
"nodeType": "YulIdentifier",
"src": "14303:88:13"
},
"nodeType": "YulFunctionCall",
"src": "14303:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "14303:93:13"
},
{
"nodeType": "YulAssignment",
"src": "14405:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14416:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14421:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14412:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14412:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14405:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_690daf95a635cfafdc295c4f9236910efd322a92390049f32b6648f75bcad436_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14198:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14206:3:13",
"type": ""
}
],
"src": "14064:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14582:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14592:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14658:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14663:2:13",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14599:58:13"
},
"nodeType": "YulFunctionCall",
"src": "14599:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14592:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14764:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulIdentifier",
"src": "14675:88:13"
},
"nodeType": "YulFunctionCall",
"src": "14675:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "14675:93:13"
},
{
"nodeType": "YulAssignment",
"src": "14777:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14788:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14793:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14784:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14784:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14777:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14570:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14578:3:13",
"type": ""
}
],
"src": "14436:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14954:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14964:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15030:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15035:2:13",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14971:58:13"
},
"nodeType": "YulFunctionCall",
"src": "14971:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14964:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15136:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulIdentifier",
"src": "15047:88:13"
},
"nodeType": "YulFunctionCall",
"src": "15047:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "15047:93:13"
},
{
"nodeType": "YulAssignment",
"src": "15149:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15160:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15165:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15156:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15156:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15149:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14942:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14950:3:13",
"type": ""
}
],
"src": "14808:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15326:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15336:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15402:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15407:2:13",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15343:58:13"
},
"nodeType": "YulFunctionCall",
"src": "15343:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15336:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15508:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulIdentifier",
"src": "15419:88:13"
},
"nodeType": "YulFunctionCall",
"src": "15419:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "15419:93:13"
},
{
"nodeType": "YulAssignment",
"src": "15521:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15532:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15537:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15528:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15528:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15521:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15314:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15322:3:13",
"type": ""
}
],
"src": "15180:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15698:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15708:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15774:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15779:2:13",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15715:58:13"
},
"nodeType": "YulFunctionCall",
"src": "15715:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15708:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15880:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_80a6ed2a2d761f9e74dba4f5dfd4e0aa8e6a5cde6d7f29c656cea668e6dcf6a9",
"nodeType": "YulIdentifier",
"src": "15791:88:13"
},
"nodeType": "YulFunctionCall",
"src": "15791:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "15791:93:13"
},
{
"nodeType": "YulAssignment",
"src": "15893:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15904:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15909:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15900:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15900:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15893:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_80a6ed2a2d761f9e74dba4f5dfd4e0aa8e6a5cde6d7f29c656cea668e6dcf6a9_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15686:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15694:3:13",
"type": ""
}
],
"src": "15552:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16070:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16080:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16146:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16151:2:13",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16087:58:13"
},
"nodeType": "YulFunctionCall",
"src": "16087:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16080:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16252:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_84aad3058d1ccb6a9d9d3a0e38e47a2035130e03c464b9b76344f6355bda1fc6",
"nodeType": "YulIdentifier",
"src": "16163:88:13"
},
"nodeType": "YulFunctionCall",
"src": "16163:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "16163:93:13"
},
{
"nodeType": "YulAssignment",
"src": "16265:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16276:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16281:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16272:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16272:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16265:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_84aad3058d1ccb6a9d9d3a0e38e47a2035130e03c464b9b76344f6355bda1fc6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16058:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16066:3:13",
"type": ""
}
],
"src": "15924:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16442:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16452:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16518:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16523:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16459:58:13"
},
"nodeType": "YulFunctionCall",
"src": "16459:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16452:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16624:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulIdentifier",
"src": "16535:88:13"
},
"nodeType": "YulFunctionCall",
"src": "16535:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "16535:93:13"
},
{
"nodeType": "YulAssignment",
"src": "16637:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16648:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16653:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16644:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16644:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16637:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16430:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16438:3:13",
"type": ""
}
],
"src": "16296:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16814:219:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16824:73:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16890:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16895:1:13",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16831:58:13"
},
"nodeType": "YulFunctionCall",
"src": "16831:66:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16824:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16995:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_8aab7d0dc20d5122688637339e74bd0507f41dcf556393407bd1a9b61f293417",
"nodeType": "YulIdentifier",
"src": "16906:88:13"
},
"nodeType": "YulFunctionCall",
"src": "16906:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "16906:93:13"
},
{
"nodeType": "YulAssignment",
"src": "17008:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17019:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17024:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17015:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17015:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17008:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8aab7d0dc20d5122688637339e74bd0507f41dcf556393407bd1a9b61f293417_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16802:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16810:3:13",
"type": ""
}
],
"src": "16668:365:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17185:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17195:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17261:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17266:2:13",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17202:58:13"
},
"nodeType": "YulFunctionCall",
"src": "17202:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17195:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17367:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulIdentifier",
"src": "17278:88:13"
},
"nodeType": "YulFunctionCall",
"src": "17278:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "17278:93:13"
},
{
"nodeType": "YulAssignment",
"src": "17380:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17391:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17396:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17387:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17387:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17380:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17173:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17181:3:13",
"type": ""
}
],
"src": "17039:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17557:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17567:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17633:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17638:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17574:58:13"
},
"nodeType": "YulFunctionCall",
"src": "17574:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17567:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17739:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "17650:88:13"
},
"nodeType": "YulFunctionCall",
"src": "17650:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "17650:93:13"
},
{
"nodeType": "YulAssignment",
"src": "17752:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17763:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17768:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17759:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17759:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17752:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17545:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17553:3:13",
"type": ""
}
],
"src": "17411:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17929:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17939:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18005:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18010:2:13",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17946:58:13"
},
"nodeType": "YulFunctionCall",
"src": "17946:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17939:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18111:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950",
"nodeType": "YulIdentifier",
"src": "18022:88:13"
},
"nodeType": "YulFunctionCall",
"src": "18022:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "18022:93:13"
},
{
"nodeType": "YulAssignment",
"src": "18124:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18135:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18140:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18131:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18131:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "18124:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17917:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17925:3:13",
"type": ""
}
],
"src": "17783:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18301:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18311:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18377:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18382:2:13",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18318:58:13"
},
"nodeType": "YulFunctionCall",
"src": "18318:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18311:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18483:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "18394:88:13"
},
"nodeType": "YulFunctionCall",
"src": "18394:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "18394:93:13"
},
{
"nodeType": "YulAssignment",
"src": "18496:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18507:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18512:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18503:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18503:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "18496:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18289:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "18297:3:13",
"type": ""
}
],
"src": "18155:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18673:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18683:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18749:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18754:2:13",
"type": "",
"value": "22"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18690:58:13"
},
"nodeType": "YulFunctionCall",
"src": "18690:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18683:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18855:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_b97b1b2a9c46e4a4cf5f37aa4a2b6d077755ddf5dccd4452c4e059ce2e5520c5",
"nodeType": "YulIdentifier",
"src": "18766:88:13"
},
"nodeType": "YulFunctionCall",
"src": "18766:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "18766:93:13"
},
{
"nodeType": "YulAssignment",
"src": "18868:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18879:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18884:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18875:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18875:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "18868:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b97b1b2a9c46e4a4cf5f37aa4a2b6d077755ddf5dccd4452c4e059ce2e5520c5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18661:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "18669:3:13",
"type": ""
}
],
"src": "18527:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19045:219:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19055:73:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19121:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19126:1:13",
"type": "",
"value": "9"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19062:58:13"
},
"nodeType": "YulFunctionCall",
"src": "19062:66:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19055:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19226:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_c266efca4f4ed37612271196433531dcbb4fca89a694d568d1e290e32feb1682",
"nodeType": "YulIdentifier",
"src": "19137:88:13"
},
"nodeType": "YulFunctionCall",
"src": "19137:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "19137:93:13"
},
{
"nodeType": "YulAssignment",
"src": "19239:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19250:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19255:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19246:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19246:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "19239:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c266efca4f4ed37612271196433531dcbb4fca89a694d568d1e290e32feb1682_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19033:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "19041:3:13",
"type": ""
}
],
"src": "18899:365:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19416:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19426:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19492:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19497:2:13",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19433:58:13"
},
"nodeType": "YulFunctionCall",
"src": "19433:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19426:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19598:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulIdentifier",
"src": "19509:88:13"
},
"nodeType": "YulFunctionCall",
"src": "19509:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "19509:93:13"
},
{
"nodeType": "YulAssignment",
"src": "19611:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19622:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19627:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19618:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19618:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "19611:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19404:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "19412:3:13",
"type": ""
}
],
"src": "19270:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19788:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19798:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19864:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19869:2:13",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19805:58:13"
},
"nodeType": "YulFunctionCall",
"src": "19805:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19798:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19970:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc",
"nodeType": "YulIdentifier",
"src": "19881:88:13"
},
"nodeType": "YulFunctionCall",
"src": "19881:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "19881:93:13"
},
{
"nodeType": "YulAssignment",
"src": "19983:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19994:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19999:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19990:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19990:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "19983:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19776:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "19784:3:13",
"type": ""
}
],
"src": "19642:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20160:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20170:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20236:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20241:2:13",
"type": "",
"value": "19"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20177:58:13"
},
"nodeType": "YulFunctionCall",
"src": "20177:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20170:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20342:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_e99ebb1883af9c289deeb7aae6d1696029b3eb801ae7c4ff6e70c1d154dd1278",
"nodeType": "YulIdentifier",
"src": "20253:88:13"
},
"nodeType": "YulFunctionCall",
"src": "20253:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "20253:93:13"
},
{
"nodeType": "YulAssignment",
"src": "20355:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20366:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20371:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20362:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20362:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "20355:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e99ebb1883af9c289deeb7aae6d1696029b3eb801ae7c4ff6e70c1d154dd1278_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20148:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "20156:3:13",
"type": ""
}
],
"src": "20014:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20441:53:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20458:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20481:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "20463:17:13"
},
"nodeType": "YulFunctionCall",
"src": "20463:24:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20451:6:13"
},
"nodeType": "YulFunctionCall",
"src": "20451:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "20451:37:13"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20429:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20436:3:13",
"type": ""
}
],
"src": "20386:108:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20565:53:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20582:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20605:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "20587:17:13"
},
"nodeType": "YulFunctionCall",
"src": "20587:24:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20575:6:13"
},
"nodeType": "YulFunctionCall",
"src": "20575:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "20575:37:13"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20553:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20560:3:13",
"type": ""
}
],
"src": "20500:118:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20805:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20816:99:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "20902:6:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20911:3:13"
}
],
"functionName": {
"name": "abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "20823:78:13"
},
"nodeType": "YulFunctionCall",
"src": "20823:92:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20816:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "20925:102:13",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "21014:6:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21023:3:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "20932:81:13"
},
"nodeType": "YulFunctionCall",
"src": "20932:95:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20925:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "21037:10:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21044:3:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "21037:3:13"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_storage_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20776:3:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "20782:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "20790:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "20801:3:13",
"type": ""
}
],
"src": "20624:429:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21157:124:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21167:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21179:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21190:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21175:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21175:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21167:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "21247:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21260:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21271:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21256:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21256:17:13"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "21203:43:13"
},
"nodeType": "YulFunctionCall",
"src": "21203:71:13"
},
"nodeType": "YulExpressionStatement",
"src": "21203:71:13"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21129:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "21141:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21152:4:13",
"type": ""
}
],
"src": "21059:222:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21487:440:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21497:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21509:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21520:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21505:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21505:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21497:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "21578:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21591:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21602:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21587:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21587:17:13"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "21534:43:13"
},
"nodeType": "YulFunctionCall",
"src": "21534:71:13"
},
"nodeType": "YulExpressionStatement",
"src": "21534:71:13"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "21659:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21672:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21683:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21668:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21668:18:13"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "21615:43:13"
},
"nodeType": "YulFunctionCall",
"src": "21615:72:13"
},
"nodeType": "YulExpressionStatement",
"src": "21615:72:13"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "21741:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21754:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21765:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21750:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21750:18:13"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "21697:43:13"
},
"nodeType": "YulFunctionCall",
"src": "21697:72:13"
},
"nodeType": "YulExpressionStatement",
"src": "21697:72:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21790:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21801:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21786:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21786:18:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21810:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21816:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21806:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21806:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21779:6:13"
},
"nodeType": "YulFunctionCall",
"src": "21779:48:13"
},
"nodeType": "YulExpressionStatement",
"src": "21779:48:13"
},
{
"nodeType": "YulAssignment",
"src": "21836:84:13",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "21906:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21915:4:13"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21844:61:13"
},
"nodeType": "YulFunctionCall",
"src": "21844:76:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21836:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21435:9:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "21447:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "21455:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "21463:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "21471:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21482:4:13",
"type": ""
}
],
"src": "21287:640:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22081:225:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22091:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22103:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22114:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22099:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22099:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22091:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22138:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22149:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22134:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22134:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22157:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22163:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22153:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22153:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22127:6:13"
},
"nodeType": "YulFunctionCall",
"src": "22127:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "22127:47:13"
},
{
"nodeType": "YulAssignment",
"src": "22183:116:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "22285:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22294:4:13"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22191:93:13"
},
"nodeType": "YulFunctionCall",
"src": "22191:108:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22183:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22053:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "22065:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22076:4:13",
"type": ""
}
],
"src": "21933:373:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22404:118:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22414:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22426:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22437:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22422:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22422:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22414:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "22488:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22501:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22512:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22497:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22497:17:13"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "22450:37:13"
},
"nodeType": "YulFunctionCall",
"src": "22450:65:13"
},
"nodeType": "YulExpressionStatement",
"src": "22450:65:13"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22376:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "22388:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22399:4:13",
"type": ""
}
],
"src": "22312:210:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22646:195:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22656:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22668:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22679:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22664:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22664:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22656:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22703:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22714:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22699:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22699:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22722:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22728:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22718:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22718:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22692:6:13"
},
"nodeType": "YulFunctionCall",
"src": "22692:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "22692:47:13"
},
{
"nodeType": "YulAssignment",
"src": "22748:86:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "22820:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22829:4:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22756:63:13"
},
"nodeType": "YulFunctionCall",
"src": "22756:78:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22748:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22618:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "22630:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22641:4:13",
"type": ""
}
],
"src": "22528:313:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23018:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23028:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23040:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23051:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23036:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23036:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23028:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23075:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23086:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23071:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23071:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23094:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23100:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23090:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23090:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23064:6:13"
},
"nodeType": "YulFunctionCall",
"src": "23064:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "23064:47:13"
},
{
"nodeType": "YulAssignment",
"src": "23120:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23254:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0ebdb3ee29062e062d5a891cb99928a6f1eb24832fa38cb33cf5cfc5f8c83c25_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23128:124:13"
},
"nodeType": "YulFunctionCall",
"src": "23128:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23120:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0ebdb3ee29062e062d5a891cb99928a6f1eb24832fa38cb33cf5cfc5f8c83c25__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22998:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23013:4:13",
"type": ""
}
],
"src": "22847:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23443:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23453:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23465:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23476:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23461:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23461:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23453:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23500:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23511:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23496:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23496:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23519:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23525:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23515:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23515:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23489:6:13"
},
"nodeType": "YulFunctionCall",
"src": "23489:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "23489:47:13"
},
{
"nodeType": "YulAssignment",
"src": "23545:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23679:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23553:124:13"
},
"nodeType": "YulFunctionCall",
"src": "23553:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23545:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23423:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23438:4:13",
"type": ""
}
],
"src": "23272:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23868:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23878:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23890:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23901:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23886:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23886:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23878:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23925:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23936:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23921:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23921:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23944:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23950:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23940:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23940:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23914:6:13"
},
"nodeType": "YulFunctionCall",
"src": "23914:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "23914:47:13"
},
{
"nodeType": "YulAssignment",
"src": "23970:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24104:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23978:124:13"
},
"nodeType": "YulFunctionCall",
"src": "23978:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23970:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23848:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23863:4:13",
"type": ""
}
],
"src": "23697:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24293:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24303:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24315:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24326:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24311:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24311:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24303:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24350:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24361:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24346:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24346:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24369:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24375:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24365:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24365:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24339:6:13"
},
"nodeType": "YulFunctionCall",
"src": "24339:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "24339:47:13"
},
{
"nodeType": "YulAssignment",
"src": "24395:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24529:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24403:124:13"
},
"nodeType": "YulFunctionCall",
"src": "24403:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24395:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24273:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24288:4:13",
"type": ""
}
],
"src": "24122:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24718:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24728:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24740:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24751:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24736:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24736:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24728:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24775:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24786:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24771:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24771:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24794:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24800:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24790:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24790:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24764:6:13"
},
"nodeType": "YulFunctionCall",
"src": "24764:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "24764:47:13"
},
{
"nodeType": "YulAssignment",
"src": "24820:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24954:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24828:124:13"
},
"nodeType": "YulFunctionCall",
"src": "24828:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24820:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24698:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24713:4:13",
"type": ""
}
],
"src": "24547:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25143:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25153:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25165:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25176:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25161:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25161:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25153:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25200:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25211:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25196:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25196:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25219:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25225:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25215:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25215:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25189:6:13"
},
"nodeType": "YulFunctionCall",
"src": "25189:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "25189:47:13"
},
{
"nodeType": "YulAssignment",
"src": "25245:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25379:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2acef9ba1e45187b0efd0eb9366eaa9d4fb900c967d0b86b2bc076cb99c6e641_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25253:124:13"
},
"nodeType": "YulFunctionCall",
"src": "25253:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25245:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2acef9ba1e45187b0efd0eb9366eaa9d4fb900c967d0b86b2bc076cb99c6e641__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25123:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25138:4:13",
"type": ""
}
],
"src": "24972:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25568:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25578:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25590:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25601:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25586:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25586:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25578:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25625:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25636:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25621:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25621:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25644:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25650:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25640:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25640:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25614:6:13"
},
"nodeType": "YulFunctionCall",
"src": "25614:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "25614:47:13"
},
{
"nodeType": "YulAssignment",
"src": "25670:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25804:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25678:124:13"
},
"nodeType": "YulFunctionCall",
"src": "25678:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25670:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25548:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25563:4:13",
"type": ""
}
],
"src": "25397:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25993:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26003:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26015:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26026:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26011:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26011:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26003:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26050:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26061:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26046:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26046:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26069:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26075:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26065:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26065:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26039:6:13"
},
"nodeType": "YulFunctionCall",
"src": "26039:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "26039:47:13"
},
{
"nodeType": "YulAssignment",
"src": "26095:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26229:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26103:124:13"
},
"nodeType": "YulFunctionCall",
"src": "26103:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26095:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25973:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25988:4:13",
"type": ""
}
],
"src": "25822:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26418:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26428:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26440:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26451:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26436:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26436:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26428:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26475:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26486:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26471:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26471:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26494:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26500:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26490:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26490:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26464:6:13"
},
"nodeType": "YulFunctionCall",
"src": "26464:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "26464:47:13"
},
{
"nodeType": "YulAssignment",
"src": "26520:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26654:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26528:124:13"
},
"nodeType": "YulFunctionCall",
"src": "26528:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26520:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "26398:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "26413:4:13",
"type": ""
}
],
"src": "26247:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26843:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26853:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26865:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26876:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26861:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26861:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26853:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26900:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26911:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26896:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26896:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26919:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26925:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26915:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26915:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26889:6:13"
},
"nodeType": "YulFunctionCall",
"src": "26889:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "26889:47:13"
},
{
"nodeType": "YulAssignment",
"src": "26945:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27079:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_625b538c155ca312eb94fa672da77a4e4fa005cf4021acfb75b90a4f338ee527_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26953:124:13"
},
"nodeType": "YulFunctionCall",
"src": "26953:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26945:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_625b538c155ca312eb94fa672da77a4e4fa005cf4021acfb75b90a4f338ee527__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "26823:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "26838:4:13",
"type": ""
}
],
"src": "26672:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27268:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27278:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27290:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27301:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27286:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27286:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27278:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27325:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27336:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27321:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27321:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27344:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27350:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "27340:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27340:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27314:6:13"
},
"nodeType": "YulFunctionCall",
"src": "27314:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "27314:47:13"
},
{
"nodeType": "YulAssignment",
"src": "27370:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27504:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_690daf95a635cfafdc295c4f9236910efd322a92390049f32b6648f75bcad436_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27378:124:13"
},
"nodeType": "YulFunctionCall",
"src": "27378:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27370:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_690daf95a635cfafdc295c4f9236910efd322a92390049f32b6648f75bcad436__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "27248:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "27263:4:13",
"type": ""
}
],
"src": "27097:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27693:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27703:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27715:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27726:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27711:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27711:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27703:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27750:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27761:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27746:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27746:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27769:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27775:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "27765:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27765:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27739:6:13"
},
"nodeType": "YulFunctionCall",
"src": "27739:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "27739:47:13"
},
{
"nodeType": "YulAssignment",
"src": "27795:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27929:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27803:124:13"
},
"nodeType": "YulFunctionCall",
"src": "27803:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27795:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "27673:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "27688:4:13",
"type": ""
}
],
"src": "27522:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28118:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28128:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28140:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28151:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28136:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28136:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28128:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28175:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28186:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28171:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28171:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28194:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28200:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28190:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28190:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28164:6:13"
},
"nodeType": "YulFunctionCall",
"src": "28164:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "28164:47:13"
},
{
"nodeType": "YulAssignment",
"src": "28220:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28354:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28228:124:13"
},
"nodeType": "YulFunctionCall",
"src": "28228:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28220:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "28098:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "28113:4:13",
"type": ""
}
],
"src": "27947:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28543:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28553:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28565:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28576:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28561:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28561:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28553:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28600:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28611:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28596:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28596:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28619:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28625:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28615:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28615:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28589:6:13"
},
"nodeType": "YulFunctionCall",
"src": "28589:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "28589:47:13"
},
{
"nodeType": "YulAssignment",
"src": "28645:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28779:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28653:124:13"
},
"nodeType": "YulFunctionCall",
"src": "28653:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28645:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "28523:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "28538:4:13",
"type": ""
}
],
"src": "28372:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28968:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28978:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28990:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29001:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28986:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28986:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28978:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29025:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29036:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29021:3:13"
},
"nodeType": "YulFunctionCall",
"src": "29021:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29044:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29050:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "29040:3:13"
},
"nodeType": "YulFunctionCall",
"src": "29040:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29014:6:13"
},
"nodeType": "YulFunctionCall",
"src": "29014:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "29014:47:13"
},
{
"nodeType": "YulAssignment",
"src": "29070:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29204:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_80a6ed2a2d761f9e74dba4f5dfd4e0aa8e6a5cde6d7f29c656cea668e6dcf6a9_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29078:124:13"
},
"nodeType": "YulFunctionCall",
"src": "29078:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29070:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_80a6ed2a2d761f9e74dba4f5dfd4e0aa8e6a5cde6d7f29c656cea668e6dcf6a9__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "28948:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "28963:4:13",
"type": ""
}
],
"src": "28797:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29393:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29403:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29415:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29426:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29411:3:13"
},
"nodeType": "YulFunctionCall",
"src": "29411:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29403:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29450:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29461:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29446:3:13"
},
"nodeType": "YulFunctionCall",
"src": "29446:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29469:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29475:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "29465:3:13"
},
"nodeType": "YulFunctionCall",
"src": "29465:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29439:6:13"
},
"nodeType": "YulFunctionCall",
"src": "29439:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "29439:47:13"
},
{
"nodeType": "YulAssignment",
"src": "29495:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29629:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_84aad3058d1ccb6a9d9d3a0e38e47a2035130e03c464b9b76344f6355bda1fc6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29503:124:13"
},
"nodeType": "YulFunctionCall",
"src": "29503:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29495:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_84aad3058d1ccb6a9d9d3a0e38e47a2035130e03c464b9b76344f6355bda1fc6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29373:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "29388:4:13",
"type": ""
}
],
"src": "29222:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29818:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29828:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29840:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29851:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29836:3:13"
},
"nodeType": "YulFunctionCall",
"src": "29836:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29828:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29875:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29886:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29871:3:13"
},
"nodeType": "YulFunctionCall",
"src": "29871:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29894:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29900:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "29890:3:13"
},
"nodeType": "YulFunctionCall",
"src": "29890:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29864:6:13"
},
"nodeType": "YulFunctionCall",
"src": "29864:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "29864:47:13"
},
{
"nodeType": "YulAssignment",
"src": "29920:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30054:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29928:124:13"
},
"nodeType": "YulFunctionCall",
"src": "29928:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29920:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29798:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "29813:4:13",
"type": ""
}
],
"src": "29647:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30243:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30253:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30265:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30276:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30261:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30261:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30253:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30300:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30311:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30296:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30296:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30319:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30325:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "30315:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30315:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30289:6:13"
},
"nodeType": "YulFunctionCall",
"src": "30289:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "30289:47:13"
},
{
"nodeType": "YulAssignment",
"src": "30345:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30479:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8aab7d0dc20d5122688637339e74bd0507f41dcf556393407bd1a9b61f293417_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "30353:124:13"
},
"nodeType": "YulFunctionCall",
"src": "30353:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30345:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8aab7d0dc20d5122688637339e74bd0507f41dcf556393407bd1a9b61f293417__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "30223:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "30238:4:13",
"type": ""
}
],
"src": "30072:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30668:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30678:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30690:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30701:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30686:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30686:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30678:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30725:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30736:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30721:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30721:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30744:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30750:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "30740:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30740:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30714:6:13"
},
"nodeType": "YulFunctionCall",
"src": "30714:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "30714:47:13"
},
{
"nodeType": "YulAssignment",
"src": "30770:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30904:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "30778:124:13"
},
"nodeType": "YulFunctionCall",
"src": "30778:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30770:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "30648:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "30663:4:13",
"type": ""
}
],
"src": "30497:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31093:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31103:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31115:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31126:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31111:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31111:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31103:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31150:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31161:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31146:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31146:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31169:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31175:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "31165:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31165:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31139:6:13"
},
"nodeType": "YulFunctionCall",
"src": "31139:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "31139:47:13"
},
{
"nodeType": "YulAssignment",
"src": "31195:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31329:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "31203:124:13"
},
"nodeType": "YulFunctionCall",
"src": "31203:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31195:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "31073:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "31088:4:13",
"type": ""
}
],
"src": "30922:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31518:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31528:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31540:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31551:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31536:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31536:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31528:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31575:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31586:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31571:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31571:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31594:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31600:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "31590:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31590:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31564:6:13"
},
"nodeType": "YulFunctionCall",
"src": "31564:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "31564:47:13"
},
{
"nodeType": "YulAssignment",
"src": "31620:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31754:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "31628:124:13"
},
"nodeType": "YulFunctionCall",
"src": "31628:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31620:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "31498:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "31513:4:13",
"type": ""
}
],
"src": "31347:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31943:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31953:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31965:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31976:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31961:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31961:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31953:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32000:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32011:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31996:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31996:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32019:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32025:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "32015:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32015:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31989:6:13"
},
"nodeType": "YulFunctionCall",
"src": "31989:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "31989:47:13"
},
{
"nodeType": "YulAssignment",
"src": "32045:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32179:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "32053:124:13"
},
"nodeType": "YulFunctionCall",
"src": "32053:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32045:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "31923:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "31938:4:13",
"type": ""
}
],
"src": "31772:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32368:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32378:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32390:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32401:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32386:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32386:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32378:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32425:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32436:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32421:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32421:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32444:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32450:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "32440:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32440:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32414:6:13"
},
"nodeType": "YulFunctionCall",
"src": "32414:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "32414:47:13"
},
{
"nodeType": "YulAssignment",
"src": "32470:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32604:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b97b1b2a9c46e4a4cf5f37aa4a2b6d077755ddf5dccd4452c4e059ce2e5520c5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "32478:124:13"
},
"nodeType": "YulFunctionCall",
"src": "32478:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32470:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b97b1b2a9c46e4a4cf5f37aa4a2b6d077755ddf5dccd4452c4e059ce2e5520c5__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "32348:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "32363:4:13",
"type": ""
}
],
"src": "32197:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32793:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32803:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32815:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32826:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32811:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32811:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32803:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32850:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32861:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32846:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32846:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32869:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32875:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "32865:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32865:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32839:6:13"
},
"nodeType": "YulFunctionCall",
"src": "32839:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "32839:47:13"
},
{
"nodeType": "YulAssignment",
"src": "32895:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33029:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c266efca4f4ed37612271196433531dcbb4fca89a694d568d1e290e32feb1682_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "32903:124:13"
},
"nodeType": "YulFunctionCall",
"src": "32903:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32895:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c266efca4f4ed37612271196433531dcbb4fca89a694d568d1e290e32feb1682__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "32773:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "32788:4:13",
"type": ""
}
],
"src": "32622:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33218:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33228:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33240:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33251:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33236:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33236:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33228:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33275:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33286:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33271:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33271:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33294:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33300:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "33290:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33290:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33264:6:13"
},
"nodeType": "YulFunctionCall",
"src": "33264:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "33264:47:13"
},
{
"nodeType": "YulAssignment",
"src": "33320:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33454:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "33328:124:13"
},
"nodeType": "YulFunctionCall",
"src": "33328:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33320:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "33198:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "33213:4:13",
"type": ""
}
],
"src": "33047:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33643:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33653:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33665:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33676:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33661:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33661:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33653:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33700:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33711:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33696:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33696:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33719:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33725:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "33715:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33715:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33689:6:13"
},
"nodeType": "YulFunctionCall",
"src": "33689:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "33689:47:13"
},
{
"nodeType": "YulAssignment",
"src": "33745:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33879:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "33753:124:13"
},
"nodeType": "YulFunctionCall",
"src": "33753:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33745:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "33623:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "33638:4:13",
"type": ""
}
],
"src": "33472:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34068:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34078:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34090:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34101:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34086:3:13"
},
"nodeType": "YulFunctionCall",
"src": "34086:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34078:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34125:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34136:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34121:3:13"
},
"nodeType": "YulFunctionCall",
"src": "34121:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34144:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34150:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "34140:3:13"
},
"nodeType": "YulFunctionCall",
"src": "34140:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34114:6:13"
},
"nodeType": "YulFunctionCall",
"src": "34114:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "34114:47:13"
},
{
"nodeType": "YulAssignment",
"src": "34170:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34304:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_e99ebb1883af9c289deeb7aae6d1696029b3eb801ae7c4ff6e70c1d154dd1278_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "34178:124:13"
},
"nodeType": "YulFunctionCall",
"src": "34178:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34170:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_e99ebb1883af9c289deeb7aae6d1696029b3eb801ae7c4ff6e70c1d154dd1278__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "34048:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "34063:4:13",
"type": ""
}
],
"src": "33897:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34420:124:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34430:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34442:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34453:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34438:3:13"
},
"nodeType": "YulFunctionCall",
"src": "34438:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34430:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "34510:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34523:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34534:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34519:3:13"
},
"nodeType": "YulFunctionCall",
"src": "34519:17:13"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "34466:43:13"
},
"nodeType": "YulFunctionCall",
"src": "34466:71:13"
},
"nodeType": "YulExpressionStatement",
"src": "34466:71:13"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "34392:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "34404:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "34415:4:13",
"type": ""
}
],
"src": "34322:222:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34591:88:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34601:30:13",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "34611:18:13"
},
"nodeType": "YulFunctionCall",
"src": "34611:20:13"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34601:6:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34660:6:13"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "34668:4:13"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "34640:19:13"
},
"nodeType": "YulFunctionCall",
"src": "34640:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "34640:33:13"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "34575:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "34584:6:13",
"type": ""
}
],
"src": "34550:129:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34725:35:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34735:19:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34751:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "34745:5:13"
},
"nodeType": "YulFunctionCall",
"src": "34745:9:13"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34735:6:13"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "34718:6:13",
"type": ""
}
],
"src": "34685:75:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34832:241:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "34937:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "34939:16:13"
},
"nodeType": "YulFunctionCall",
"src": "34939:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "34939:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "34909:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34917:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "34906:2:13"
},
"nodeType": "YulFunctionCall",
"src": "34906:30:13"
},
"nodeType": "YulIf",
"src": "34903:56:13"
},
{
"nodeType": "YulAssignment",
"src": "34969:37:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "34999:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "34977:21:13"
},
"nodeType": "YulFunctionCall",
"src": "34977:29:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "34969:4:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "35043:23:13",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "35055:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35061:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35051:3:13"
},
"nodeType": "YulFunctionCall",
"src": "35051:15:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "35043:4:13"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "34816:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "34827:4:13",
"type": ""
}
],
"src": "34766:307:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35146:241:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "35251:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "35253:16:13"
},
"nodeType": "YulFunctionCall",
"src": "35253:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "35253:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "35223:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35231:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "35220:2:13"
},
"nodeType": "YulFunctionCall",
"src": "35220:30:13"
},
"nodeType": "YulIf",
"src": "35217:56:13"
},
{
"nodeType": "YulAssignment",
"src": "35283:37:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "35313:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "35291:21:13"
},
"nodeType": "YulFunctionCall",
"src": "35291:29:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "35283:4:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "35357:23:13",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "35369:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35375:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35365:3:13"
},
"nodeType": "YulFunctionCall",
"src": "35365:15:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "35357:4:13"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "35130:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "35141:4:13",
"type": ""
}
],
"src": "35079:308:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35465:60:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35475:11:13",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "35483:3:13"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "35475:4:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "35496:22:13",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "35508:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35513:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35504:3:13"
},
"nodeType": "YulFunctionCall",
"src": "35504:14:13"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "35496:4:13"
}
]
}
]
},
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "35452:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "35460:4:13",
"type": ""
}
],
"src": "35393:132:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35585:87:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35595:11:13",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "35603:3:13"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "35595:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35623:1:13",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "35626:3:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35616:6:13"
},
"nodeType": "YulFunctionCall",
"src": "35616:14:13"
},
"nodeType": "YulExpressionStatement",
"src": "35616:14:13"
},
{
"nodeType": "YulAssignment",
"src": "35639:26:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35657:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35660:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "35647:9:13"
},
"nodeType": "YulFunctionCall",
"src": "35647:18:13"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "35639:4:13"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "35572:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "35580:4:13",
"type": ""
}
],
"src": "35531:141:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35752:40:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35763:22:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "35779:5:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "35773:5:13"
},
"nodeType": "YulFunctionCall",
"src": "35773:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "35763:6:13"
}
]
}
]
},
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "35735:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "35745:6:13",
"type": ""
}
],
"src": "35678:114:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35856:40:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35867:22:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "35883:5:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "35877:5:13"
},
"nodeType": "YulFunctionCall",
"src": "35877:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "35867:6:13"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "35839:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "35849:6:13",
"type": ""
}
],
"src": "35798:98:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35961:40:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35972:22:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "35988:5:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "35982:5:13"
},
"nodeType": "YulFunctionCall",
"src": "35982:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "35972:6:13"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "35944:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "35954:6:13",
"type": ""
}
],
"src": "35902:99:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36082:38:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36092:22:13",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "36104:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36109:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36100:3:13"
},
"nodeType": "YulFunctionCall",
"src": "36100:14:13"
},
"variableNames": [
{
"name": "next",
"nodeType": "YulIdentifier",
"src": "36092:4:13"
}
]
}
]
},
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "36069:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "next",
"nodeType": "YulTypedName",
"src": "36077:4:13",
"type": ""
}
],
"src": "36007:113:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36237:73:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36254:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "36259:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36247:6:13"
},
"nodeType": "YulFunctionCall",
"src": "36247:19:13"
},
"nodeType": "YulExpressionStatement",
"src": "36247:19:13"
},
{
"nodeType": "YulAssignment",
"src": "36275:29:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36294:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36299:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36290:3:13"
},
"nodeType": "YulFunctionCall",
"src": "36290:14:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "36275:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "36209:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "36214:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "36225:11:13",
"type": ""
}
],
"src": "36126:184:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36411:73:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36428:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "36433:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36421:6:13"
},
"nodeType": "YulFunctionCall",
"src": "36421:19:13"
},
"nodeType": "YulExpressionStatement",
"src": "36421:19:13"
},
{
"nodeType": "YulAssignment",
"src": "36449:29:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36468:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36473:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36464:3:13"
},
"nodeType": "YulFunctionCall",
"src": "36464:14:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "36449:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "36383:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "36388:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "36399:11:13",
"type": ""
}
],
"src": "36316:168:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36586:73:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36603:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "36608:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36596:6:13"
},
"nodeType": "YulFunctionCall",
"src": "36596:19:13"
},
"nodeType": "YulExpressionStatement",
"src": "36596:19:13"
},
{
"nodeType": "YulAssignment",
"src": "36624:29:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36643:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36648:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36639:3:13"
},
"nodeType": "YulFunctionCall",
"src": "36639:14:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "36624:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "36558:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "36563:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "36574:11:13",
"type": ""
}
],
"src": "36490:169:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36779:34:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36789:18:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36804:3:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "36789:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "36751:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "36756:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "36767:11:13",
"type": ""
}
],
"src": "36665:148:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36863:261:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36873:25:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "36896:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "36878:17:13"
},
"nodeType": "YulFunctionCall",
"src": "36878:20:13"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "36873:1:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "36907:25:13",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "36930:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "36912:17:13"
},
"nodeType": "YulFunctionCall",
"src": "36912:20:13"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "36907:1:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "37070:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "37072:16:13"
},
"nodeType": "YulFunctionCall",
"src": "37072:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "37072:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "36991:1:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36998:66:13",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37066:1:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "36994:3:13"
},
"nodeType": "YulFunctionCall",
"src": "36994:74:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "36988:2:13"
},
"nodeType": "YulFunctionCall",
"src": "36988:81:13"
},
"nodeType": "YulIf",
"src": "36985:107:13"
},
{
"nodeType": "YulAssignment",
"src": "37102:16:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37113:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37116:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37109:3:13"
},
"nodeType": "YulFunctionCall",
"src": "37109:9:13"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "37102:3:13"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "36850:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "36853:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "36859:3:13",
"type": ""
}
],
"src": "36819:305:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37172:143:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37182:25:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37205:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37187:17:13"
},
"nodeType": "YulFunctionCall",
"src": "37187:20:13"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37182:1:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "37216:25:13",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37239:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37221:17:13"
},
"nodeType": "YulFunctionCall",
"src": "37221:20:13"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37216:1:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "37263:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "37265:16:13"
},
"nodeType": "YulFunctionCall",
"src": "37265:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "37265:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37260:1:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "37253:6:13"
},
"nodeType": "YulFunctionCall",
"src": "37253:9:13"
},
"nodeType": "YulIf",
"src": "37250:35:13"
},
{
"nodeType": "YulAssignment",
"src": "37295:14:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37304:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37307:1:13"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "37300:3:13"
},
"nodeType": "YulFunctionCall",
"src": "37300:9:13"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "37295:1:13"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "37161:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "37164:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "37170:1:13",
"type": ""
}
],
"src": "37130:185:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37369:300:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37379:25:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37402:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37384:17:13"
},
"nodeType": "YulFunctionCall",
"src": "37384:20:13"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37379:1:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "37413:25:13",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37436:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37418:17:13"
},
"nodeType": "YulFunctionCall",
"src": "37418:20:13"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37413:1:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "37611:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "37613:16:13"
},
"nodeType": "YulFunctionCall",
"src": "37613:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "37613:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37523:1:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "37516:6:13"
},
"nodeType": "YulFunctionCall",
"src": "37516:9:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "37509:6:13"
},
"nodeType": "YulFunctionCall",
"src": "37509:17:13"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37531:1:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37538:66:13",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37606:1:13"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "37534:3:13"
},
"nodeType": "YulFunctionCall",
"src": "37534:74:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "37528:2:13"
},
"nodeType": "YulFunctionCall",
"src": "37528:81:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "37505:3:13"
},
"nodeType": "YulFunctionCall",
"src": "37505:105:13"
},
"nodeType": "YulIf",
"src": "37502:131:13"
},
{
"nodeType": "YulAssignment",
"src": "37643:20:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37658:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37661:1:13"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "37654:3:13"
},
"nodeType": "YulFunctionCall",
"src": "37654:9:13"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "37643:7:13"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "37352:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "37355:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "37361:7:13",
"type": ""
}
],
"src": "37321:348:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37720:146:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37730:25:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37753:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37735:17:13"
},
"nodeType": "YulFunctionCall",
"src": "37735:20:13"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37730:1:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "37764:25:13",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37787:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37769:17:13"
},
"nodeType": "YulFunctionCall",
"src": "37769:20:13"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37764:1:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "37811:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "37813:16:13"
},
"nodeType": "YulFunctionCall",
"src": "37813:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "37813:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37805:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37808:1:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "37802:2:13"
},
"nodeType": "YulFunctionCall",
"src": "37802:8:13"
},
"nodeType": "YulIf",
"src": "37799:34:13"
},
{
"nodeType": "YulAssignment",
"src": "37843:17:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37855:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37858:1:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "37851:3:13"
},
"nodeType": "YulFunctionCall",
"src": "37851:9:13"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "37843:4:13"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "37706:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "37709:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "37715:4:13",
"type": ""
}
],
"src": "37675:191:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37917:51:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37927:35:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "37956:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "37938:17:13"
},
"nodeType": "YulFunctionCall",
"src": "37938:24:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "37927:7:13"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "37899:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "37909:7:13",
"type": ""
}
],
"src": "37872:96:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38016:48:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38026:32:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "38051:5:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "38044:6:13"
},
"nodeType": "YulFunctionCall",
"src": "38044:13:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "38037:6:13"
},
"nodeType": "YulFunctionCall",
"src": "38037:21:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "38026:7:13"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "37998:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "38008:7:13",
"type": ""
}
],
"src": "37974:90:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38114:105:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38124:89:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "38139:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38146:66:13",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "38135:3:13"
},
"nodeType": "YulFunctionCall",
"src": "38135:78:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "38124:7:13"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "38096:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "38106:7:13",
"type": ""
}
],
"src": "38070:149:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38270:81:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38280:65:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "38295:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38302:42:13",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "38291:3:13"
},
"nodeType": "YulFunctionCall",
"src": "38291:54:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "38280:7:13"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "38252:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "38262:7:13",
"type": ""
}
],
"src": "38225:126:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38402:32:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38412:16:13",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "38423:5:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "38412:7:13"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "38384:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "38394:7:13",
"type": ""
}
],
"src": "38357:77:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38491:103:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "38514:3:13"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "38519:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "38524:6:13"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "38501:12:13"
},
"nodeType": "YulFunctionCall",
"src": "38501:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "38501:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "38572:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "38577:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38568:3:13"
},
"nodeType": "YulFunctionCall",
"src": "38568:16:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38586:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38561:6:13"
},
"nodeType": "YulFunctionCall",
"src": "38561:27:13"
},
"nodeType": "YulExpressionStatement",
"src": "38561:27:13"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "38473:3:13",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "38478:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "38483:6:13",
"type": ""
}
],
"src": "38440:154:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38649:258:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "38659:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "38668:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "38663:1:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "38728:63:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "38753:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "38758:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38749:3:13"
},
"nodeType": "YulFunctionCall",
"src": "38749:11:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "38772:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "38777:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38768:3:13"
},
"nodeType": "YulFunctionCall",
"src": "38768:11:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "38762:5:13"
},
"nodeType": "YulFunctionCall",
"src": "38762:18:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38742:6:13"
},
"nodeType": "YulFunctionCall",
"src": "38742:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "38742:39:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "38689:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "38692:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "38686:2:13"
},
"nodeType": "YulFunctionCall",
"src": "38686:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "38700:19:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38702:15:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "38711:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38714:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38707:3:13"
},
"nodeType": "YulFunctionCall",
"src": "38707:10:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "38702:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "38682:3:13",
"statements": []
},
"src": "38678:113:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38825:76:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "38875:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "38880:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38871:3:13"
},
"nodeType": "YulFunctionCall",
"src": "38871:16:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38889:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38864:6:13"
},
"nodeType": "YulFunctionCall",
"src": "38864:27:13"
},
"nodeType": "YulExpressionStatement",
"src": "38864:27:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "38806:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "38809:6:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "38803:2:13"
},
"nodeType": "YulFunctionCall",
"src": "38803:13:13"
},
"nodeType": "YulIf",
"src": "38800:101:13"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "38631:3:13",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "38636:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "38641:6:13",
"type": ""
}
],
"src": "38600:307:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38964:269:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38974:22:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "38988:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38994:1:13",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "38984:3:13"
},
"nodeType": "YulFunctionCall",
"src": "38984:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "38974:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "39005:38:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "39035:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39041:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "39031:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39031:12:13"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "39009:18:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "39082:51:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "39096:27:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "39110:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39118:4:13",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "39106:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39106:17:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "39096:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "39062:18:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "39055:6:13"
},
"nodeType": "YulFunctionCall",
"src": "39055:26:13"
},
"nodeType": "YulIf",
"src": "39052:81:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39185:42:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "39199:16:13"
},
"nodeType": "YulFunctionCall",
"src": "39199:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "39199:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "39149:18:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "39172:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39180:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "39169:2:13"
},
"nodeType": "YulFunctionCall",
"src": "39169:14:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "39146:2:13"
},
"nodeType": "YulFunctionCall",
"src": "39146:38:13"
},
"nodeType": "YulIf",
"src": "39143:84:13"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "38948:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "38957:6:13",
"type": ""
}
],
"src": "38913:320:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39282:238:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "39292:58:13",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "39314:6:13"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "39344:4:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "39322:21:13"
},
"nodeType": "YulFunctionCall",
"src": "39322:27:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39310:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39310:40:13"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "39296:10:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "39461:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "39463:16:13"
},
"nodeType": "YulFunctionCall",
"src": "39463:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "39463:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "39404:10:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39416:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "39401:2:13"
},
"nodeType": "YulFunctionCall",
"src": "39401:34:13"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "39440:10:13"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "39452:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "39437:2:13"
},
"nodeType": "YulFunctionCall",
"src": "39437:22:13"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "39398:2:13"
},
"nodeType": "YulFunctionCall",
"src": "39398:62:13"
},
"nodeType": "YulIf",
"src": "39395:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39499:2:13",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "39503:10:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39492:6:13"
},
"nodeType": "YulFunctionCall",
"src": "39492:22:13"
},
"nodeType": "YulExpressionStatement",
"src": "39492:22:13"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "39268:6:13",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "39276:4:13",
"type": ""
}
],
"src": "39239:281:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39569:190:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "39579:33:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "39606:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "39588:17:13"
},
"nodeType": "YulFunctionCall",
"src": "39588:24:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "39579:5:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "39702:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "39704:16:13"
},
"nodeType": "YulFunctionCall",
"src": "39704:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "39704:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "39627:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39634:66:13",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "39624:2:13"
},
"nodeType": "YulFunctionCall",
"src": "39624:77:13"
},
"nodeType": "YulIf",
"src": "39621:103:13"
},
{
"nodeType": "YulAssignment",
"src": "39733:20:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "39744:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39751:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39740:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39740:13:13"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "39733:3:13"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "39555:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "39565:3:13",
"type": ""
}
],
"src": "39526:233:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39799:142:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "39809:25:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "39832:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "39814:17:13"
},
"nodeType": "YulFunctionCall",
"src": "39814:20:13"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "39809:1:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "39843:25:13",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "39866:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "39848:17:13"
},
"nodeType": "YulFunctionCall",
"src": "39848:20:13"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "39843:1:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "39890:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "39892:16:13"
},
"nodeType": "YulFunctionCall",
"src": "39892:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "39892:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "39887:1:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "39880:6:13"
},
"nodeType": "YulFunctionCall",
"src": "39880:9:13"
},
"nodeType": "YulIf",
"src": "39877:35:13"
},
{
"nodeType": "YulAssignment",
"src": "39921:14:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "39930:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "39933:1:13"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "39926:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39926:9:13"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "39921:1:13"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "39788:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "39791:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "39797:1:13",
"type": ""
}
],
"src": "39765:176:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39975:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39992:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39995:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39985:6:13"
},
"nodeType": "YulFunctionCall",
"src": "39985:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "39985:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40089:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40092:4:13",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40082:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40082:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "40082:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40113:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40116:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "40106:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40106:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "40106:15:13"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "39947:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40161:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40178:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40181:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40171:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40171:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "40171:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40275:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40278:4:13",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40268:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40268:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "40268:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40299:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40302:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "40292:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40292:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "40292:15:13"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "40133:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40347:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40364:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40367:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40357:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40357:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "40357:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40461:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40464:4:13",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40454:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40454:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "40454:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40485:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40488:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "40478:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40478:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "40478:15:13"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "40319:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40533:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40550:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40553:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40543:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40543:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "40543:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40647:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40650:4:13",
"type": "",
"value": "0x31"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40640:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40640:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "40640:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40671:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40674:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "40664:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40664:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "40664:15:13"
}
]
},
"name": "panic_error_0x31",
"nodeType": "YulFunctionDefinition",
"src": "40505:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40719:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40736:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40739:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40729:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40729:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "40729:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40833:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40836:4:13",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40826:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40826:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "40826:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40857:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40860:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "40850:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40850:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "40850:15:13"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "40691:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40905:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40922:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40925:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40915:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40915:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "40915:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41019:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41022:4:13",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "41012:6:13"
},
"nodeType": "YulFunctionCall",
"src": "41012:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "41012:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41043:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41046:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "41036:6:13"
},
"nodeType": "YulFunctionCall",
"src": "41036:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "41036:15:13"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "40877:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41152:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41169:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41172:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "41162:6:13"
},
"nodeType": "YulFunctionCall",
"src": "41162:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "41162:12:13"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "41063:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41275:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41292:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41295:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "41285:6:13"
},
"nodeType": "YulFunctionCall",
"src": "41285:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "41285:12:13"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "41186:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41398:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41415:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41418:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "41408:6:13"
},
"nodeType": "YulFunctionCall",
"src": "41408:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "41408:12:13"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "41309:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41521:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41538:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41541:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "41531:6:13"
},
"nodeType": "YulFunctionCall",
"src": "41531:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "41531:12:13"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "41432:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41603:54:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "41613:38:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "41631:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41638:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41627:3:13"
},
"nodeType": "YulFunctionCall",
"src": "41627:14:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41647:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "41643:3:13"
},
"nodeType": "YulFunctionCall",
"src": "41643:7:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "41623:3:13"
},
"nodeType": "YulFunctionCall",
"src": "41623:28:13"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "41613:6:13"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "41586:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "41596:6:13",
"type": ""
}
],
"src": "41555:102:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41769:67:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "41791:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41799:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41787:3:13"
},
"nodeType": "YulFunctionCall",
"src": "41787:14:13"
},
{
"hexValue": "45786365656465642061697264726f7020737570706c79",
"kind": "string",
"nodeType": "YulLiteral",
"src": "41803:25:13",
"type": "",
"value": "Exceeded airdrop supply"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "41780:6:13"
},
"nodeType": "YulFunctionCall",
"src": "41780:49:13"
},
"nodeType": "YulExpressionStatement",
"src": "41780:49:13"
}
]
},
"name": "store_literal_in_memory_0ebdb3ee29062e062d5a891cb99928a6f1eb24832fa38cb33cf5cfc5f8c83c25",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "41761:6:13",
"type": ""
}
],
"src": "41663:173:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41948:124:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "41970:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41978:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41966:3:13"
},
"nodeType": "YulFunctionCall",
"src": "41966:14:13"
},
{
"hexValue": "455243373231456e756d657261626c653a206f776e657220696e646578206f75",
"kind": "string",
"nodeType": "YulLiteral",
"src": "41982:34:13",
"type": "",
"value": "ERC721Enumerable: owner index ou"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "41959:6:13"
},
"nodeType": "YulFunctionCall",
"src": "41959:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "41959:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "42038:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42046:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42034:3:13"
},
"nodeType": "YulFunctionCall",
"src": "42034:15:13"
},
{
"hexValue": "74206f6620626f756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "42051:13:13",
"type": "",
"value": "t of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42027:6:13"
},
"nodeType": "YulFunctionCall",
"src": "42027:38:13"
},
"nodeType": "YulExpressionStatement",
"src": "42027:38:13"
}
]
},
"name": "store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "41940:6:13",
"type": ""
}
],
"src": "41842:230:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42184:131:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "42206:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42214:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42202:3:13"
},
"nodeType": "YulFunctionCall",
"src": "42202:14:13"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "42218:34:13",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42195:6:13"
},
"nodeType": "YulFunctionCall",
"src": "42195:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "42195:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "42274:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42282:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42270:3:13"
},
"nodeType": "YulFunctionCall",
"src": "42270:15:13"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "42287:20:13",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42263:6:13"
},
"nodeType": "YulFunctionCall",
"src": "42263:45:13"
},
"nodeType": "YulExpressionStatement",
"src": "42263:45:13"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "42176:6:13",
"type": ""
}
],
"src": "42078:237:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42427:119:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "42449:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42457:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42445:3:13"
},
"nodeType": "YulFunctionCall",
"src": "42445:14:13"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "42461:34:13",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42438:6:13"
},
"nodeType": "YulFunctionCall",
"src": "42438:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "42438:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "42517:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42525:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42513:3:13"
},
"nodeType": "YulFunctionCall",
"src": "42513:15:13"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "42530:8:13",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42506:6:13"
},
"nodeType": "YulFunctionCall",
"src": "42506:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "42506:33:13"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "42419:6:13",
"type": ""
}
],
"src": "42321:225:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42658:72:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "42680:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42688:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42676:3:13"
},
"nodeType": "YulFunctionCall",
"src": "42676:14:13"
},
{
"hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "42692:30:13",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42669:6:13"
},
"nodeType": "YulFunctionCall",
"src": "42669:54:13"
},
"nodeType": "YulExpressionStatement",
"src": "42669:54:13"
}
]
},
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "42650:6:13",
"type": ""
}
],
"src": "42552:178:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42842:62:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "42864:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42872:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42860:3:13"
},
"nodeType": "YulFunctionCall",
"src": "42860:14:13"
},
{
"hexValue": "45786365656473204d41585f5350554e4b53",
"kind": "string",
"nodeType": "YulLiteral",
"src": "42876:20:13",
"type": "",
"value": "Exceeds MAX_SPUNKS"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42853:6:13"
},
"nodeType": "YulFunctionCall",
"src": "42853:44:13"
},
"nodeType": "YulExpressionStatement",
"src": "42853:44:13"
}
]
},
"name": "store_literal_in_memory_2acef9ba1e45187b0efd0eb9366eaa9d4fb900c967d0b86b2bc076cb99c6e641",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "42834:6:13",
"type": ""
}
],
"src": "42736:168:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "43016:117:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "43038:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43046:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43034:3:13"
},
"nodeType": "YulFunctionCall",
"src": "43034:14:13"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "43050:34:13",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43027:6:13"
},
"nodeType": "YulFunctionCall",
"src": "43027:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "43027:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "43106:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43114:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43102:3:13"
},
"nodeType": "YulFunctionCall",
"src": "43102:15:13"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "43119:6:13",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43095:6:13"
},
"nodeType": "YulFunctionCall",
"src": "43095:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "43095:31:13"
}
]
},
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "43008:6:13",
"type": ""
}
],
"src": "42910:223:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "43245:69:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "43267:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43275:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43263:3:13"
},
"nodeType": "YulFunctionCall",
"src": "43263:14:13"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "43279:27:13",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43256:6:13"
},
"nodeType": "YulFunctionCall",
"src": "43256:51:13"
},
"nodeType": "YulExpressionStatement",
"src": "43256:51:13"
}
]
},
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "43237:6:13",
"type": ""
}
],
"src": "43139:175:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "43426:125:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "43448:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43456:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43444:3:13"
},
"nodeType": "YulFunctionCall",
"src": "43444:14:13"
},
{
"hexValue": "4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "43460:34:13",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43437:6:13"
},
"nodeType": "YulFunctionCall",
"src": "43437:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "43437:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "43516:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43524:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43512:3:13"
},
"nodeType": "YulFunctionCall",
"src": "43512:15:13"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "43529:14:13",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43505:6:13"
},
"nodeType": "YulFunctionCall",
"src": "43505:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "43505:39:13"
}
]
},
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "43418:6:13",
"type": ""
}
],
"src": "43320:231:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "43663:126:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "43685:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43693:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43681:3:13"
},
"nodeType": "YulFunctionCall",
"src": "43681:14:13"
},
{
"hexValue": "596f752063616e206d696e74206d696e696d756d20312c206d6178696d756d20",
"kind": "string",
"nodeType": "YulLiteral",
"src": "43697:34:13",
"type": "",
"value": "You can mint minimum 1, maximum "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43674:6:13"
},
"nodeType": "YulFunctionCall",
"src": "43674:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "43674:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "43753:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43761:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43749:3:13"
},
"nodeType": "YulFunctionCall",
"src": "43749:15:13"
},
{
"hexValue": "323020447973746f50756e6b73",
"kind": "string",
"nodeType": "YulLiteral",
"src": "43766:15:13",
"type": "",
"value": "20 DystoPunks"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43742:6:13"
},
"nodeType": "YulFunctionCall",
"src": "43742:40:13"
},
"nodeType": "YulExpressionStatement",
"src": "43742:40:13"
}
]
},
"name": "store_literal_in_memory_625b538c155ca312eb94fa672da77a4e4fa005cf4021acfb75b90a4f338ee527",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "43655:6:13",
"type": ""
}
],
"src": "43557:232:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "43901:72:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "43923:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43931:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43919:3:13"
},
"nodeType": "YulFunctionCall",
"src": "43919:14:13"
},
{
"hexValue": "53616c6520686173206e6f7420616c72656164792073746172746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "43935:30:13",
"type": "",
"value": "Sale has not already started"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43912:6:13"
},
"nodeType": "YulFunctionCall",
"src": "43912:54:13"
},
"nodeType": "YulExpressionStatement",
"src": "43912:54:13"
}
]
},
"name": "store_literal_in_memory_690daf95a635cfafdc295c4f9236910efd322a92390049f32b6648f75bcad436",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "43893:6:13",
"type": ""
}
],
"src": "43795:178:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "44085:137:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "44107:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44115:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "44103:3:13"
},
"nodeType": "YulFunctionCall",
"src": "44103:14:13"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f74206f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "44119:34:13",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "44096:6:13"
},
"nodeType": "YulFunctionCall",
"src": "44096:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "44096:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "44175:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44183:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "44171:3:13"
},
"nodeType": "YulFunctionCall",
"src": "44171:15:13"
},
{
"hexValue": "6e6572206e6f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "44188:26:13",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "44164:6:13"
},
"nodeType": "YulFunctionCall",
"src": "44164:51:13"
},
"nodeType": "YulExpressionStatement",
"src": "44164:51:13"
}
]
},
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "44077:6:13",
"type": ""
}
],
"src": "43979:243:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "44334:123:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "44356:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44364:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "44352:3:13"
},
"nodeType": "YulFunctionCall",
"src": "44352:14:13"
},
{
"hexValue": "4552433732313a2062616c616e636520717565727920666f7220746865207a65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "44368:34:13",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "44345:6:13"
},
"nodeType": "YulFunctionCall",
"src": "44345:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "44345:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "44424:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44432:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "44420:3:13"
},
"nodeType": "YulFunctionCall",
"src": "44420:15:13"
},
{
"hexValue": "726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "44437:12:13",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "44413:6:13"
},
"nodeType": "YulFunctionCall",
"src": "44413:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "44413:37:13"
}
]
},
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "44326:6:13",
"type": ""
}
],
"src": "44228:229:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "44569:122:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "44591:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44599:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "44587:3:13"
},
"nodeType": "YulFunctionCall",
"src": "44587:14:13"
},
{
"hexValue": "4552433732313a206f776e657220717565727920666f72206e6f6e6578697374",
"kind": "string",
"nodeType": "YulLiteral",
"src": "44603:34:13",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "44580:6:13"
},
"nodeType": "YulFunctionCall",
"src": "44580:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "44580:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "44659:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44667:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "44655:3:13"
},
"nodeType": "YulFunctionCall",
"src": "44655:15:13"
},
{
"hexValue": "656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "44672:11:13",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "44648:6:13"
},
"nodeType": "YulFunctionCall",
"src": "44648:36:13"
},
"nodeType": "YulExpressionStatement",
"src": "44648:36:13"
}
]
},
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "44561:6:13",
"type": ""
}
],
"src": "44463:228:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "44803:68:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "44825:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44833:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "44821:3:13"
},
"nodeType": "YulFunctionCall",
"src": "44821:14:13"
},
{
"hexValue": "53616c652068617320616c72656164792073746172746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "44837:26:13",
"type": "",
"value": "Sale has already started"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "44814:6:13"
},
"nodeType": "YulFunctionCall",
"src": "44814:50:13"
},
"nodeType": "YulExpressionStatement",
"src": "44814:50:13"
}
]
},
"name": "store_literal_in_memory_80a6ed2a2d761f9e74dba4f5dfd4e0aa8e6a5cde6d7f29c656cea668e6dcf6a9",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "44795:6:13",
"type": ""
}
],
"src": "44697:174:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "44983:116:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "45005:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45013:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "45001:3:13"
},
"nodeType": "YulFunctionCall",
"src": "45001:14:13"
},
{
"hexValue": "45746865722076616c75652073656e742069732062656c6f7720746865207072",
"kind": "string",
"nodeType": "YulLiteral",
"src": "45017:34:13",
"type": "",
"value": "Ether value sent is below the pr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "44994:6:13"
},
"nodeType": "YulFunctionCall",
"src": "44994:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "44994:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "45073:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45081:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "45069:3:13"
},
"nodeType": "YulFunctionCall",
"src": "45069:15:13"
},
{
"hexValue": "696365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "45086:5:13",
"type": "",
"value": "ice"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "45062:6:13"
},
"nodeType": "YulFunctionCall",
"src": "45062:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "45062:30:13"
}
]
},
"name": "store_literal_in_memory_84aad3058d1ccb6a9d9d3a0e38e47a2035130e03c464b9b76344f6355bda1fc6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "44975:6:13",
"type": ""
}
],
"src": "44877:222:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "45211:76:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "45233:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45241:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "45229:3:13"
},
"nodeType": "YulFunctionCall",
"src": "45229:14:13"
},
{
"hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "45245:34:13",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "45222:6:13"
},
"nodeType": "YulFunctionCall",
"src": "45222:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "45222:58:13"
}
]
},
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "45203:6:13",
"type": ""
}
],
"src": "45105:182:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "45399:52:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "45421:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45429:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "45417:3:13"
},
"nodeType": "YulFunctionCall",
"src": "45417:14:13"
},
{
"hexValue": "53616c6520656e64",
"kind": "string",
"nodeType": "YulLiteral",
"src": "45433:10:13",
"type": "",
"value": "Sale end"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "45410:6:13"
},
"nodeType": "YulFunctionCall",
"src": "45410:34:13"
},
"nodeType": "YulExpressionStatement",
"src": "45410:34:13"
}
]
},
"name": "store_literal_in_memory_8aab7d0dc20d5122688637339e74bd0507f41dcf556393407bd1a9b61f293417",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "45391:6:13",
"type": ""
}
],
"src": "45293:158:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "45563:125:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "45585:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45593:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "45581:3:13"
},
"nodeType": "YulFunctionCall",
"src": "45581:14:13"
},
{
"hexValue": "4552433732313a20617070726f76656420717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "45597:34:13",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "45574:6:13"
},
"nodeType": "YulFunctionCall",
"src": "45574:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "45574:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "45653:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45661:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "45649:3:13"
},
"nodeType": "YulFunctionCall",
"src": "45649:15:13"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "45666:14:13",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "45642:6:13"
},
"nodeType": "YulFunctionCall",
"src": "45642:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "45642:39:13"
}
]
},
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "45555:6:13",
"type": ""
}
],
"src": "45457:231:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "45800:76:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "45822:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45830:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "45818:3:13"
},
"nodeType": "YulFunctionCall",
"src": "45818:14:13"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "45834:34:13",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "45811:6:13"
},
"nodeType": "YulFunctionCall",
"src": "45811:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "45811:58:13"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "45792:6:13",
"type": ""
}
],
"src": "45694:182:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "45988:122:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "46010:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "46018:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "46006:3:13"
},
"nodeType": "YulFunctionCall",
"src": "46006:14:13"
},
{
"hexValue": "4552433732313a207472616e73666572206f6620746f6b656e20746861742069",
"kind": "string",
"nodeType": "YulLiteral",
"src": "46022:34:13",
"type": "",
"value": "ERC721: transfer of token that i"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "45999:6:13"
},
"nodeType": "YulFunctionCall",
"src": "45999:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "45999:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "46078:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "46086:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "46074:3:13"
},
"nodeType": "YulFunctionCall",
"src": "46074:15:13"
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

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