Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Widiskel/6ac9ee4f860214f476144a6c52391f48 to your computer and use it in GitHub Desktop.
Save Widiskel/6ac9ee4f860214f476144a6c52391f48 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.26+commit.8a97fa7a.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
import {Context} from "../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.
*
* The initial owner is set to the address provided by the deployer. 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;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard ERC-20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC-721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC-1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC-20
* applications.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Skips emitting an {Approval} event indicating an allowance update. This is not
* required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
*
* ```solidity
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.20;
import {IERC20} from "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC-20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC-20 standard as defined in the ERC.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.20;
import {IERC721} from "./IERC721.sol";
import {IERC721Metadata} from "./extensions/IERC721Metadata.sol";
import {ERC721Utils} from "./utils/ERC721Utils.sol";
import {Context} from "../../utils/Context.sol";
import {Strings} from "../../utils/Strings.sol";
import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol";
import {IERC721Errors} from "../../interfaces/draft-IERC6093.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC-721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
mapping(uint256 tokenId => address) private _owners;
mapping(address owner => uint256) private _balances;
mapping(uint256 tokenId => address) private _tokenApprovals;
mapping(address owner => mapping(address operator => 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 returns (uint256) {
if (owner == address(0)) {
revert ERC721InvalidOwner(address(0));
}
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual returns (address) {
return _requireOwned(tokenId);
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual returns (string memory) {
_requireOwned(tokenId);
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual {
_approve(to, tokenId, _msgSender());
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual returns (address) {
_requireOwned(tokenId);
return _getApproved(tokenId);
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(address from, address to, uint256 tokenId) public virtual {
if (to == address(0)) {
revert ERC721InvalidReceiver(address(0));
}
// Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
// (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
address previousOwner = _update(to, tokenId, _msgSender());
if (previousOwner != from) {
revert ERC721IncorrectOwner(from, tokenId, previousOwner);
}
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) public {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {
transferFrom(from, to, tokenId);
ERC721Utils.checkOnERC721Received(_msgSender(), from, to, tokenId, data);
}
/**
* @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
*
* IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
* core ERC-721 logic MUST be matched with the use of {_increaseBalance} to keep balances
* consistent with ownership. The invariant to preserve is that for any address `a` the value returned by
* `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.
*/
function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
return _owners[tokenId];
}
/**
* @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.
*/
function _getApproved(uint256 tokenId) internal view virtual returns (address) {
return _tokenApprovals[tokenId];
}
/**
* @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in
* particular (ignoring whether it is owned by `owner`).
*
* WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
* assumption.
*/
function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {
return
spender != address(0) &&
(owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);
}
/**
* @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.
* Reverts if:
* - `spender` does not have approval from `owner` for `tokenId`.
* - `spender` does not have approval to manage all of `owner`'s assets.
*
* WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
* assumption.
*/
function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {
if (!_isAuthorized(owner, spender, tokenId)) {
if (owner == address(0)) {
revert ERC721NonexistentToken(tokenId);
} else {
revert ERC721InsufficientApproval(spender, tokenId);
}
}
}
/**
* @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
*
* NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that
* a uint256 would ever overflow from increments when these increments are bounded to uint128 values.
*
* WARNING: Increasing an account's balance using this function tends to be paired with an override of the
* {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership
* remain consistent with one another.
*/
function _increaseBalance(address account, uint128 value) internal virtual {
unchecked {
_balances[account] += value;
}
}
/**
* @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner
* (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.
*
* The `auth` argument is optional. If the value passed is non 0, then this function will check that
* `auth` is either the owner of the token, or approved to operate on the token (by the owner).
*
* Emits a {Transfer} event.
*
* NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.
*/
function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {
address from = _ownerOf(tokenId);
// Perform (optional) operator check
if (auth != address(0)) {
_checkAuthorized(from, auth, tokenId);
}
// Execute the update
if (from != address(0)) {
// Clear approval. No need to re-authorize or emit the Approval event
_approve(address(0), tokenId, address(0), false);
unchecked {
_balances[from] -= 1;
}
}
if (to != address(0)) {
unchecked {
_balances[to] += 1;
}
}
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
return from;
}
/**
* @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 {
if (to == address(0)) {
revert ERC721InvalidReceiver(address(0));
}
address previousOwner = _update(to, tokenId, address(0));
if (previousOwner != address(0)) {
revert ERC721InvalidSender(address(0));
}
}
/**
* @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.
*
* 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 {
_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);
ERC721Utils.checkOnERC721Received(_msgSender(), address(0), to, tokenId, data);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
* This is an internal function that does not check if the sender is authorized to operate on the token.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal {
address previousOwner = _update(address(0), tokenId, address(0));
if (previousOwner == address(0)) {
revert ERC721NonexistentToken(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 {
if (to == address(0)) {
revert ERC721InvalidReceiver(address(0));
}
address previousOwner = _update(to, tokenId, address(0));
if (previousOwner == address(0)) {
revert ERC721NonexistentToken(tokenId);
} else if (previousOwner != from) {
revert ERC721IncorrectOwner(from, tokenId, previousOwner);
}
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients
* are aware of the ERC-721 standard 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 like {safeTransferFrom} in the sense that it invokes
* {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `tokenId` token must exist and be owned by `from`.
* - `to` cannot be the zero address.
* - `from` cannot be the zero address.
* - 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) internal {
_safeTransfer(from, to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
_transfer(from, to, tokenId);
ERC721Utils.checkOnERC721Received(_msgSender(), from, to, tokenId, data);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is
* either the owner of the token, or approved to operate on all tokens held by this owner.
*
* Emits an {Approval} event.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address to, uint256 tokenId, address auth) internal {
_approve(to, tokenId, auth, true);
}
/**
* @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not
* emitted in the context of transfers.
*/
function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {
// Avoid reading the owner unless necessary
if (emitEvent || auth != address(0)) {
address owner = _requireOwned(tokenId);
// We do not use _isAuthorized because single-token approvals should not be able to call approve
if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {
revert ERC721InvalidApprover(auth);
}
if (emitEvent) {
emit Approval(owner, to, tokenId);
}
}
_tokenApprovals[tokenId] = to;
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Requirements:
* - operator can't be the address zero.
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
if (operator == address(0)) {
revert ERC721InvalidOperator(operator);
}
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).
* Returns the owner.
*
* Overrides to ownership logic should be done to {_ownerOf}.
*/
function _requireOwned(uint256 tokenId) internal view returns (address) {
address owner = _ownerOf(tokenId);
if (owner == address(0)) {
revert ERC721NonexistentToken(tokenId);
}
return owner;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.20;
import {IERC721} from "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.20;
import {IERC165} from "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC-721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
* a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC-721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or
* {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
* a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 tokenId) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the address zero.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.20;
/**
* @title ERC-721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC-721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be
* reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import {IERC721Receiver} from "../IERC721Receiver.sol";
import {IERC721Errors} from "../../../interfaces/draft-IERC6093.sol";
/**
* @dev Library that provide common ERC-721 utility functions.
*
* See https://eips.ethereum.org/EIPS/eip-721[ERC-721].
*/
library ERC721Utils {
/**
* @dev Performs an acceptance check for the provided `operator` by calling {IERC721-onERC721Received}
* on the `to` address. The `operator` is generally the address that initiated the token transfer (i.e. `msg.sender`).
*
* The acceptance call is not executed and treated as a no-op if the target address doesn't contain code (i.e. an EOA).
* Otherwise, the recipient must implement {IERC721Receiver-onERC721Received} and return the acceptance magic value to accept
* the transfer.
*/
function checkOnERC721Received(
address operator,
address from,
address to,
uint256 tokenId,
bytes memory data
) internal {
if (to.code.length > 0) {
try IERC721Receiver(to).onERC721Received(operator, from, tokenId, data) returns (bytes4 retval) {
if (retval != IERC721Receiver.onERC721Received.selector) {
// Token rejected
revert IERC721Errors.ERC721InvalidReceiver(to);
}
} catch (bytes memory reason) {
if (reason.length == 0) {
// non-IERC721Receiver implementer
revert IERC721Errors.ERC721InvalidReceiver(to);
} else {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)
pragma solidity ^0.8.20;
import {IERC165} from "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC-165 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);
* }
* ```
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC-165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[ERC].
*
* 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[ERC section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)
pragma solidity ^0.8.20;
import {Panic} from "../Panic.sol";
import {SafeCast} from "./SafeCast.sol";
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Floor, // Toward negative infinity
Ceil, // Toward positive infinity
Trunc, // Toward zero
Expand // Away from zero
}
/**
* @dev Returns the addition of two unsigned integers, with an success flag (no overflow).
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an success flag (no overflow).
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an success flag (no overflow).
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a success flag (no division by zero).
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero).
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.
*
* IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.
* However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute
* one branch when needed, making this function more expensive.
*/
function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) {
unchecked {
// branchless ternary works because:
// b ^ (a ^ b) == a
// b ^ 0 == b
return b ^ ((a ^ b) * SafeCast.toUint(condition));
}
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return ternary(a > b, a, b);
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return ternary(a < b, a, b);
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds towards infinity instead
* of rounding towards zero.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
if (b == 0) {
// Guarantee the same behavior as in a regular Solidity division.
Panic.panic(Panic.DIVISION_BY_ZERO);
}
// The following calculation ensures accurate ceiling division without overflow.
// Since a is non-zero, (a - 1) / b will not overflow.
// The largest possible result occurs when (a - 1) / b is type(uint256).max,
// but the largest value we can obtain is type(uint256).max - 1, which happens
// when a = type(uint256).max and b = 1.
unchecked {
return SafeCast.toUint(a > 0) * ((a - 1) / b + 1);
}
}
/**
* @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
* denominator == 0.
*
* Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
* Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2²⁵⁶ + prod0.
uint256 prod0 = x * y; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0.
if (denominator <= prod1) {
Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW));
}
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator.
// Always >= 1. See https://cs.stackexchange.com/q/138556/92363.
uint256 twos = denominator & (0 - denominator);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2²⁵⁶ / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such
// that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv ≡ 1 mod 2⁴.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
// works in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2⁸
inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶
inverse *= 2 - denominator * inverse; // inverse mod 2³²
inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴
inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸
inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2²⁵⁶. Since the preconditions guarantee that the outcome is
// less than 2²⁵⁶, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @dev Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0);
}
/**
* @dev Calculate the modular multiplicative inverse of a number in Z/nZ.
*
* If n is a prime, then Z/nZ is a field. In that case all elements are inversible, expect 0.
* If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible.
*
* If the input value is not inversible, 0 is returned.
*
* NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Ferma's little theorem and get the
* inverse using `Math.modExp(a, n - 2, n)`.
*/
function invMod(uint256 a, uint256 n) internal pure returns (uint256) {
unchecked {
if (n == 0) return 0;
// The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version)
// Used to compute integers x and y such that: ax + ny = gcd(a, n).
// When the gcd is 1, then the inverse of a modulo n exists and it's x.
// ax + ny = 1
// ax = 1 + (-y)n
// ax ≡ 1 (mod n) # x is the inverse of a modulo n
// If the remainder is 0 the gcd is n right away.
uint256 remainder = a % n;
uint256 gcd = n;
// Therefore the initial coefficients are:
// ax + ny = gcd(a, n) = n
// 0a + 1n = n
int256 x = 0;
int256 y = 1;
while (remainder != 0) {
uint256 quotient = gcd / remainder;
(gcd, remainder) = (
// The old remainder is the next gcd to try.
remainder,
// Compute the next remainder.
// Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd
// where gcd is at most n (capped to type(uint256).max)
gcd - remainder * quotient
);
(x, y) = (
// Increment the coefficient of a.
y,
// Decrement the coefficient of n.
// Can overflow, but the result is casted to uint256 so that the
// next value of y is "wrapped around" to a value between 0 and n - 1.
x - y * int256(quotient)
);
}
if (gcd != 1) return 0; // No inverse exists.
return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative.
}
}
/**
* @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m)
*
* Requirements:
* - modulus can't be zero
* - underlying staticcall to precompile must succeed
*
* IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make
* sure the chain you're using it on supports the precompiled contract for modular exponentiation
* at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise,
* the underlying function will succeed given the lack of a revert, but the result may be incorrectly
* interpreted as 0.
*/
function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) {
(bool success, uint256 result) = tryModExp(b, e, m);
if (!success) {
Panic.panic(Panic.DIVISION_BY_ZERO);
}
return result;
}
/**
* @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m).
* It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying
* to operate modulo 0 or if the underlying precompile reverted.
*
* IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain
* you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in
* https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack
* of a revert, but the result may be incorrectly interpreted as 0.
*/
function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) {
if (m == 0) return (false, 0);
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40)
// | Offset | Content | Content (Hex) |
// |-----------|------------|--------------------------------------------------------------------|
// | 0x00:0x1f | size of b | 0x0000000000000000000000000000000000000000000000000000000000000020 |
// | 0x20:0x3f | size of e | 0x0000000000000000000000000000000000000000000000000000000000000020 |
// | 0x40:0x5f | size of m | 0x0000000000000000000000000000000000000000000000000000000000000020 |
// | 0x60:0x7f | value of b | 0x<.............................................................b> |
// | 0x80:0x9f | value of e | 0x<.............................................................e> |
// | 0xa0:0xbf | value of m | 0x<.............................................................m> |
mstore(ptr, 0x20)
mstore(add(ptr, 0x20), 0x20)
mstore(add(ptr, 0x40), 0x20)
mstore(add(ptr, 0x60), b)
mstore(add(ptr, 0x80), e)
mstore(add(ptr, 0xa0), m)
// Given the result < m, it's guaranteed to fit in 32 bytes,
// so we can use the memory scratch space located at offset 0.
success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20)
result := mload(0x00)
}
}
/**
* @dev Variant of {modExp} that supports inputs of arbitrary length.
*/
function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) {
(bool success, bytes memory result) = tryModExp(b, e, m);
if (!success) {
Panic.panic(Panic.DIVISION_BY_ZERO);
}
return result;
}
/**
* @dev Variant of {tryModExp} that supports inputs of arbitrary length.
*/
function tryModExp(
bytes memory b,
bytes memory e,
bytes memory m
) internal view returns (bool success, bytes memory result) {
if (_zeroBytes(m)) return (false, new bytes(0));
uint256 mLen = m.length;
// Encode call args in result and move the free memory pointer
result = abi.encodePacked(b.length, e.length, mLen, b, e, m);
/// @solidity memory-safe-assembly
assembly {
let dataPtr := add(result, 0x20)
// Write result on top of args to avoid allocating extra memory.
success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen)
// Overwrite the length.
// result.length > returndatasize() is guaranteed because returndatasize() == m.length
mstore(result, mLen)
// Set the memory pointer after the returned data.
mstore(0x40, add(dataPtr, mLen))
}
}
/**
* @dev Returns whether the provided byte array is zero.
*/
function _zeroBytes(bytes memory byteArray) private pure returns (bool) {
for (uint256 i = 0; i < byteArray.length; ++i) {
if (byteArray[i] != 0) {
return false;
}
}
return true;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
* towards zero.
*
* This method is based on Newton's method for computing square roots; the algorithm is restricted to only
* using integer operations.
*/
function sqrt(uint256 a) internal pure returns (uint256) {
unchecked {
// Take care of easy edge cases when a == 0 or a == 1
if (a <= 1) {
return a;
}
// In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a
// sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between
// the current value as `ε_n = | x_n - sqrt(a) |`.
//
// For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root
// of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is
// bigger than any uint256.
//
// By noticing that
// `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)`
// we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar
// to the msb function.
uint256 aa = a;
uint256 xn = 1;
if (aa >= (1 << 128)) {
aa >>= 128;
xn <<= 64;
}
if (aa >= (1 << 64)) {
aa >>= 64;
xn <<= 32;
}
if (aa >= (1 << 32)) {
aa >>= 32;
xn <<= 16;
}
if (aa >= (1 << 16)) {
aa >>= 16;
xn <<= 8;
}
if (aa >= (1 << 8)) {
aa >>= 8;
xn <<= 4;
}
if (aa >= (1 << 4)) {
aa >>= 4;
xn <<= 2;
}
if (aa >= (1 << 2)) {
xn <<= 1;
}
// We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1).
//
// We can refine our estimation by noticing that the middle of that interval minimizes the error.
// If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2).
// This is going to be our x_0 (and ε_0)
xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2)
// From here, Newton's method give us:
// x_{n+1} = (x_n + a / x_n) / 2
//
// One should note that:
// x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a
// = ((x_n² + a) / (2 * x_n))² - a
// = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a
// = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²)
// = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²)
// = (x_n² - a)² / (2 * x_n)²
// = ((x_n² - a) / (2 * x_n))²
// ≥ 0
// Which proves that for all n ≥ 1, sqrt(a) ≤ x_n
//
// This gives us the proof of quadratic convergence of the sequence:
// ε_{n+1} = | x_{n+1} - sqrt(a) |
// = | (x_n + a / x_n) / 2 - sqrt(a) |
// = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) |
// = | (x_n - sqrt(a))² / (2 * x_n) |
// = | ε_n² / (2 * x_n) |
// = ε_n² / | (2 * x_n) |
//
// For the first iteration, we have a special case where x_0 is known:
// ε_1 = ε_0² / | (2 * x_0) |
// ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2)))
// ≤ 2**(2*e-4) / (3 * 2**(e-1))
// ≤ 2**(e-3) / 3
// ≤ 2**(e-3-log2(3))
// ≤ 2**(e-4.5)
//
// For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n:
// ε_{n+1} = ε_n² / | (2 * x_n) |
// ≤ (2**(e-k))² / (2 * 2**(e-1))
// ≤ 2**(2*e-2*k) / 2**e
// ≤ 2**(e-2*k)
xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5) -- special case, see above
xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9) -- general case with k = 4.5
xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18) -- general case with k = 9
xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36) -- general case with k = 18
xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72) -- general case with k = 36
xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144) -- general case with k = 72
// Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision
// ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either
// sqrt(a) or sqrt(a) + 1.
return xn - SafeCast.toUint(xn > a / xn);
}
}
/**
* @dev Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a);
}
}
/**
* @dev Return the log in base 2 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
uint256 exp;
unchecked {
exp = 128 * SafeCast.toUint(value > (1 << 128) - 1);
value >>= exp;
result += exp;
exp = 64 * SafeCast.toUint(value > (1 << 64) - 1);
value >>= exp;
result += exp;
exp = 32 * SafeCast.toUint(value > (1 << 32) - 1);
value >>= exp;
result += exp;
exp = 16 * SafeCast.toUint(value > (1 << 16) - 1);
value >>= exp;
result += exp;
exp = 8 * SafeCast.toUint(value > (1 << 8) - 1);
value >>= exp;
result += exp;
exp = 4 * SafeCast.toUint(value > (1 << 4) - 1);
value >>= exp;
result += exp;
exp = 2 * SafeCast.toUint(value > (1 << 2) - 1);
value >>= exp;
result += exp;
result += SafeCast.toUint(value > 1);
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value);
}
}
/**
* @dev Return the log in base 10 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value);
}
}
/**
* @dev Return the log in base 256 of a positive value rounded towards zero.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
uint256 isGt;
unchecked {
isGt = SafeCast.toUint(value > (1 << 128) - 1);
value >>= isGt * 128;
result += isGt * 16;
isGt = SafeCast.toUint(value > (1 << 64) - 1);
value >>= isGt * 64;
result += isGt * 8;
isGt = SafeCast.toUint(value > (1 << 32) - 1);
value >>= isGt * 32;
result += isGt * 4;
isGt = SafeCast.toUint(value > (1 << 16) - 1);
value >>= isGt * 16;
result += isGt * 2;
result += SafeCast.toUint(value > (1 << 8) - 1);
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value);
}
}
/**
* @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
*/
function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
return uint8(rounding) % 2 == 1;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SafeCast.sol)
// This file was procedurally generated from scripts/generate/templates/SafeCast.js.
pragma solidity ^0.8.20;
/**
* @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow
* checks.
*
* Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
* easily result in undesired exploitation or bugs, since developers usually
* assume that overflows raise errors. `SafeCast` restores this intuition by
* reverting the transaction when such an operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeCast {
/**
* @dev Value doesn't fit in an uint of `bits` size.
*/
error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);
/**
* @dev An int value doesn't fit in an uint of `bits` size.
*/
error SafeCastOverflowedIntToUint(int256 value);
/**
* @dev Value doesn't fit in an int of `bits` size.
*/
error SafeCastOverflowedIntDowncast(uint8 bits, int256 value);
/**
* @dev An uint value doesn't fit in an int of `bits` size.
*/
error SafeCastOverflowedUintToInt(uint256 value);
/**
* @dev Returns the downcasted uint248 from uint256, reverting on
* overflow (when the input is greater than largest uint248).
*
* Counterpart to Solidity's `uint248` operator.
*
* Requirements:
*
* - input must fit into 248 bits
*/
function toUint248(uint256 value) internal pure returns (uint248) {
if (value > type(uint248).max) {
revert SafeCastOverflowedUintDowncast(248, value);
}
return uint248(value);
}
/**
* @dev Returns the downcasted uint240 from uint256, reverting on
* overflow (when the input is greater than largest uint240).
*
* Counterpart to Solidity's `uint240` operator.
*
* Requirements:
*
* - input must fit into 240 bits
*/
function toUint240(uint256 value) internal pure returns (uint240) {
if (value > type(uint240).max) {
revert SafeCastOverflowedUintDowncast(240, value);
}
return uint240(value);
}
/**
* @dev Returns the downcasted uint232 from uint256, reverting on
* overflow (when the input is greater than largest uint232).
*
* Counterpart to Solidity's `uint232` operator.
*
* Requirements:
*
* - input must fit into 232 bits
*/
function toUint232(uint256 value) internal pure returns (uint232) {
if (value > type(uint232).max) {
revert SafeCastOverflowedUintDowncast(232, value);
}
return uint232(value);
}
/**
* @dev Returns the downcasted uint224 from uint256, reverting on
* overflow (when the input is greater than largest uint224).
*
* Counterpart to Solidity's `uint224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*/
function toUint224(uint256 value) internal pure returns (uint224) {
if (value > type(uint224).max) {
revert SafeCastOverflowedUintDowncast(224, value);
}
return uint224(value);
}
/**
* @dev Returns the downcasted uint216 from uint256, reverting on
* overflow (when the input is greater than largest uint216).
*
* Counterpart to Solidity's `uint216` operator.
*
* Requirements:
*
* - input must fit into 216 bits
*/
function toUint216(uint256 value) internal pure returns (uint216) {
if (value > type(uint216).max) {
revert SafeCastOverflowedUintDowncast(216, value);
}
return uint216(value);
}
/**
* @dev Returns the downcasted uint208 from uint256, reverting on
* overflow (when the input is greater than largest uint208).
*
* Counterpart to Solidity's `uint208` operator.
*
* Requirements:
*
* - input must fit into 208 bits
*/
function toUint208(uint256 value) internal pure returns (uint208) {
if (value > type(uint208).max) {
revert SafeCastOverflowedUintDowncast(208, value);
}
return uint208(value);
}
/**
* @dev Returns the downcasted uint200 from uint256, reverting on
* overflow (when the input is greater than largest uint200).
*
* Counterpart to Solidity's `uint200` operator.
*
* Requirements:
*
* - input must fit into 200 bits
*/
function toUint200(uint256 value) internal pure returns (uint200) {
if (value > type(uint200).max) {
revert SafeCastOverflowedUintDowncast(200, value);
}
return uint200(value);
}
/**
* @dev Returns the downcasted uint192 from uint256, reverting on
* overflow (when the input is greater than largest uint192).
*
* Counterpart to Solidity's `uint192` operator.
*
* Requirements:
*
* - input must fit into 192 bits
*/
function toUint192(uint256 value) internal pure returns (uint192) {
if (value > type(uint192).max) {
revert SafeCastOverflowedUintDowncast(192, value);
}
return uint192(value);
}
/**
* @dev Returns the downcasted uint184 from uint256, reverting on
* overflow (when the input is greater than largest uint184).
*
* Counterpart to Solidity's `uint184` operator.
*
* Requirements:
*
* - input must fit into 184 bits
*/
function toUint184(uint256 value) internal pure returns (uint184) {
if (value > type(uint184).max) {
revert SafeCastOverflowedUintDowncast(184, value);
}
return uint184(value);
}
/**
* @dev Returns the downcasted uint176 from uint256, reverting on
* overflow (when the input is greater than largest uint176).
*
* Counterpart to Solidity's `uint176` operator.
*
* Requirements:
*
* - input must fit into 176 bits
*/
function toUint176(uint256 value) internal pure returns (uint176) {
if (value > type(uint176).max) {
revert SafeCastOverflowedUintDowncast(176, value);
}
return uint176(value);
}
/**
* @dev Returns the downcasted uint168 from uint256, reverting on
* overflow (when the input is greater than largest uint168).
*
* Counterpart to Solidity's `uint168` operator.
*
* Requirements:
*
* - input must fit into 168 bits
*/
function toUint168(uint256 value) internal pure returns (uint168) {
if (value > type(uint168).max) {
revert SafeCastOverflowedUintDowncast(168, value);
}
return uint168(value);
}
/**
* @dev Returns the downcasted uint160 from uint256, reverting on
* overflow (when the input is greater than largest uint160).
*
* Counterpart to Solidity's `uint160` operator.
*
* Requirements:
*
* - input must fit into 160 bits
*/
function toUint160(uint256 value) internal pure returns (uint160) {
if (value > type(uint160).max) {
revert SafeCastOverflowedUintDowncast(160, value);
}
return uint160(value);
}
/**
* @dev Returns the downcasted uint152 from uint256, reverting on
* overflow (when the input is greater than largest uint152).
*
* Counterpart to Solidity's `uint152` operator.
*
* Requirements:
*
* - input must fit into 152 bits
*/
function toUint152(uint256 value) internal pure returns (uint152) {
if (value > type(uint152).max) {
revert SafeCastOverflowedUintDowncast(152, value);
}
return uint152(value);
}
/**
* @dev Returns the downcasted uint144 from uint256, reverting on
* overflow (when the input is greater than largest uint144).
*
* Counterpart to Solidity's `uint144` operator.
*
* Requirements:
*
* - input must fit into 144 bits
*/
function toUint144(uint256 value) internal pure returns (uint144) {
if (value > type(uint144).max) {
revert SafeCastOverflowedUintDowncast(144, value);
}
return uint144(value);
}
/**
* @dev Returns the downcasted uint136 from uint256, reverting on
* overflow (when the input is greater than largest uint136).
*
* Counterpart to Solidity's `uint136` operator.
*
* Requirements:
*
* - input must fit into 136 bits
*/
function toUint136(uint256 value) internal pure returns (uint136) {
if (value > type(uint136).max) {
revert SafeCastOverflowedUintDowncast(136, value);
}
return uint136(value);
}
/**
* @dev Returns the downcasted uint128 from uint256, reverting on
* overflow (when the input is greater than largest uint128).
*
* Counterpart to Solidity's `uint128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*/
function toUint128(uint256 value) internal pure returns (uint128) {
if (value > type(uint128).max) {
revert SafeCastOverflowedUintDowncast(128, value);
}
return uint128(value);
}
/**
* @dev Returns the downcasted uint120 from uint256, reverting on
* overflow (when the input is greater than largest uint120).
*
* Counterpart to Solidity's `uint120` operator.
*
* Requirements:
*
* - input must fit into 120 bits
*/
function toUint120(uint256 value) internal pure returns (uint120) {
if (value > type(uint120).max) {
revert SafeCastOverflowedUintDowncast(120, value);
}
return uint120(value);
}
/**
* @dev Returns the downcasted uint112 from uint256, reverting on
* overflow (when the input is greater than largest uint112).
*
* Counterpart to Solidity's `uint112` operator.
*
* Requirements:
*
* - input must fit into 112 bits
*/
function toUint112(uint256 value) internal pure returns (uint112) {
if (value > type(uint112).max) {
revert SafeCastOverflowedUintDowncast(112, value);
}
return uint112(value);
}
/**
* @dev Returns the downcasted uint104 from uint256, reverting on
* overflow (when the input is greater than largest uint104).
*
* Counterpart to Solidity's `uint104` operator.
*
* Requirements:
*
* - input must fit into 104 bits
*/
function toUint104(uint256 value) internal pure returns (uint104) {
if (value > type(uint104).max) {
revert SafeCastOverflowedUintDowncast(104, value);
}
return uint104(value);
}
/**
* @dev Returns the downcasted uint96 from uint256, reverting on
* overflow (when the input is greater than largest uint96).
*
* Counterpart to Solidity's `uint96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*/
function toUint96(uint256 value) internal pure returns (uint96) {
if (value > type(uint96).max) {
revert SafeCastOverflowedUintDowncast(96, value);
}
return uint96(value);
}
/**
* @dev Returns the downcasted uint88 from uint256, reverting on
* overflow (when the input is greater than largest uint88).
*
* Counterpart to Solidity's `uint88` operator.
*
* Requirements:
*
* - input must fit into 88 bits
*/
function toUint88(uint256 value) internal pure returns (uint88) {
if (value > type(uint88).max) {
revert SafeCastOverflowedUintDowncast(88, value);
}
return uint88(value);
}
/**
* @dev Returns the downcasted uint80 from uint256, reverting on
* overflow (when the input is greater than largest uint80).
*
* Counterpart to Solidity's `uint80` operator.
*
* Requirements:
*
* - input must fit into 80 bits
*/
function toUint80(uint256 value) internal pure returns (uint80) {
if (value > type(uint80).max) {
revert SafeCastOverflowedUintDowncast(80, value);
}
return uint80(value);
}
/**
* @dev Returns the downcasted uint72 from uint256, reverting on
* overflow (when the input is greater than largest uint72).
*
* Counterpart to Solidity's `uint72` operator.
*
* Requirements:
*
* - input must fit into 72 bits
*/
function toUint72(uint256 value) internal pure returns (uint72) {
if (value > type(uint72).max) {
revert SafeCastOverflowedUintDowncast(72, value);
}
return uint72(value);
}
/**
* @dev Returns the downcasted uint64 from uint256, reverting on
* overflow (when the input is greater than largest uint64).
*
* Counterpart to Solidity's `uint64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*/
function toUint64(uint256 value) internal pure returns (uint64) {
if (value > type(uint64).max) {
revert SafeCastOverflowedUintDowncast(64, value);
}
return uint64(value);
}
/**
* @dev Returns the downcasted uint56 from uint256, reverting on
* overflow (when the input is greater than largest uint56).
*
* Counterpart to Solidity's `uint56` operator.
*
* Requirements:
*
* - input must fit into 56 bits
*/
function toUint56(uint256 value) internal pure returns (uint56) {
if (value > type(uint56).max) {
revert SafeCastOverflowedUintDowncast(56, value);
}
return uint56(value);
}
/**
* @dev Returns the downcasted uint48 from uint256, reverting on
* overflow (when the input is greater than largest uint48).
*
* Counterpart to Solidity's `uint48` operator.
*
* Requirements:
*
* - input must fit into 48 bits
*/
function toUint48(uint256 value) internal pure returns (uint48) {
if (value > type(uint48).max) {
revert SafeCastOverflowedUintDowncast(48, value);
}
return uint48(value);
}
/**
* @dev Returns the downcasted uint40 from uint256, reverting on
* overflow (when the input is greater than largest uint40).
*
* Counterpart to Solidity's `uint40` operator.
*
* Requirements:
*
* - input must fit into 40 bits
*/
function toUint40(uint256 value) internal pure returns (uint40) {
if (value > type(uint40).max) {
revert SafeCastOverflowedUintDowncast(40, value);
}
return uint40(value);
}
/**
* @dev Returns the downcasted uint32 from uint256, reverting on
* overflow (when the input is greater than largest uint32).
*
* Counterpart to Solidity's `uint32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*/
function toUint32(uint256 value) internal pure returns (uint32) {
if (value > type(uint32).max) {
revert SafeCastOverflowedUintDowncast(32, value);
}
return uint32(value);
}
/**
* @dev Returns the downcasted uint24 from uint256, reverting on
* overflow (when the input is greater than largest uint24).
*
* Counterpart to Solidity's `uint24` operator.
*
* Requirements:
*
* - input must fit into 24 bits
*/
function toUint24(uint256 value) internal pure returns (uint24) {
if (value > type(uint24).max) {
revert SafeCastOverflowedUintDowncast(24, value);
}
return uint24(value);
}
/**
* @dev Returns the downcasted uint16 from uint256, reverting on
* overflow (when the input is greater than largest uint16).
*
* Counterpart to Solidity's `uint16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*/
function toUint16(uint256 value) internal pure returns (uint16) {
if (value > type(uint16).max) {
revert SafeCastOverflowedUintDowncast(16, value);
}
return uint16(value);
}
/**
* @dev Returns the downcasted uint8 from uint256, reverting on
* overflow (when the input is greater than largest uint8).
*
* Counterpart to Solidity's `uint8` operator.
*
* Requirements:
*
* - input must fit into 8 bits
*/
function toUint8(uint256 value) internal pure returns (uint8) {
if (value > type(uint8).max) {
revert SafeCastOverflowedUintDowncast(8, value);
}
return uint8(value);
}
/**
* @dev Converts a signed int256 into an unsigned uint256.
*
* Requirements:
*
* - input must be greater than or equal to 0.
*/
function toUint256(int256 value) internal pure returns (uint256) {
if (value < 0) {
revert SafeCastOverflowedIntToUint(value);
}
return uint256(value);
}
/**
* @dev Returns the downcasted int248 from int256, reverting on
* overflow (when the input is less than smallest int248 or
* greater than largest int248).
*
* Counterpart to Solidity's `int248` operator.
*
* Requirements:
*
* - input must fit into 248 bits
*/
function toInt248(int256 value) internal pure returns (int248 downcasted) {
downcasted = int248(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(248, value);
}
}
/**
* @dev Returns the downcasted int240 from int256, reverting on
* overflow (when the input is less than smallest int240 or
* greater than largest int240).
*
* Counterpart to Solidity's `int240` operator.
*
* Requirements:
*
* - input must fit into 240 bits
*/
function toInt240(int256 value) internal pure returns (int240 downcasted) {
downcasted = int240(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(240, value);
}
}
/**
* @dev Returns the downcasted int232 from int256, reverting on
* overflow (when the input is less than smallest int232 or
* greater than largest int232).
*
* Counterpart to Solidity's `int232` operator.
*
* Requirements:
*
* - input must fit into 232 bits
*/
function toInt232(int256 value) internal pure returns (int232 downcasted) {
downcasted = int232(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(232, value);
}
}
/**
* @dev Returns the downcasted int224 from int256, reverting on
* overflow (when the input is less than smallest int224 or
* greater than largest int224).
*
* Counterpart to Solidity's `int224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*/
function toInt224(int256 value) internal pure returns (int224 downcasted) {
downcasted = int224(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(224, value);
}
}
/**
* @dev Returns the downcasted int216 from int256, reverting on
* overflow (when the input is less than smallest int216 or
* greater than largest int216).
*
* Counterpart to Solidity's `int216` operator.
*
* Requirements:
*
* - input must fit into 216 bits
*/
function toInt216(int256 value) internal pure returns (int216 downcasted) {
downcasted = int216(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(216, value);
}
}
/**
* @dev Returns the downcasted int208 from int256, reverting on
* overflow (when the input is less than smallest int208 or
* greater than largest int208).
*
* Counterpart to Solidity's `int208` operator.
*
* Requirements:
*
* - input must fit into 208 bits
*/
function toInt208(int256 value) internal pure returns (int208 downcasted) {
downcasted = int208(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(208, value);
}
}
/**
* @dev Returns the downcasted int200 from int256, reverting on
* overflow (when the input is less than smallest int200 or
* greater than largest int200).
*
* Counterpart to Solidity's `int200` operator.
*
* Requirements:
*
* - input must fit into 200 bits
*/
function toInt200(int256 value) internal pure returns (int200 downcasted) {
downcasted = int200(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(200, value);
}
}
/**
* @dev Returns the downcasted int192 from int256, reverting on
* overflow (when the input is less than smallest int192 or
* greater than largest int192).
*
* Counterpart to Solidity's `int192` operator.
*
* Requirements:
*
* - input must fit into 192 bits
*/
function toInt192(int256 value) internal pure returns (int192 downcasted) {
downcasted = int192(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(192, value);
}
}
/**
* @dev Returns the downcasted int184 from int256, reverting on
* overflow (when the input is less than smallest int184 or
* greater than largest int184).
*
* Counterpart to Solidity's `int184` operator.
*
* Requirements:
*
* - input must fit into 184 bits
*/
function toInt184(int256 value) internal pure returns (int184 downcasted) {
downcasted = int184(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(184, value);
}
}
/**
* @dev Returns the downcasted int176 from int256, reverting on
* overflow (when the input is less than smallest int176 or
* greater than largest int176).
*
* Counterpart to Solidity's `int176` operator.
*
* Requirements:
*
* - input must fit into 176 bits
*/
function toInt176(int256 value) internal pure returns (int176 downcasted) {
downcasted = int176(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(176, value);
}
}
/**
* @dev Returns the downcasted int168 from int256, reverting on
* overflow (when the input is less than smallest int168 or
* greater than largest int168).
*
* Counterpart to Solidity's `int168` operator.
*
* Requirements:
*
* - input must fit into 168 bits
*/
function toInt168(int256 value) internal pure returns (int168 downcasted) {
downcasted = int168(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(168, value);
}
}
/**
* @dev Returns the downcasted int160 from int256, reverting on
* overflow (when the input is less than smallest int160 or
* greater than largest int160).
*
* Counterpart to Solidity's `int160` operator.
*
* Requirements:
*
* - input must fit into 160 bits
*/
function toInt160(int256 value) internal pure returns (int160 downcasted) {
downcasted = int160(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(160, value);
}
}
/**
* @dev Returns the downcasted int152 from int256, reverting on
* overflow (when the input is less than smallest int152 or
* greater than largest int152).
*
* Counterpart to Solidity's `int152` operator.
*
* Requirements:
*
* - input must fit into 152 bits
*/
function toInt152(int256 value) internal pure returns (int152 downcasted) {
downcasted = int152(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(152, value);
}
}
/**
* @dev Returns the downcasted int144 from int256, reverting on
* overflow (when the input is less than smallest int144 or
* greater than largest int144).
*
* Counterpart to Solidity's `int144` operator.
*
* Requirements:
*
* - input must fit into 144 bits
*/
function toInt144(int256 value) internal pure returns (int144 downcasted) {
downcasted = int144(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(144, value);
}
}
/**
* @dev Returns the downcasted int136 from int256, reverting on
* overflow (when the input is less than smallest int136 or
* greater than largest int136).
*
* Counterpart to Solidity's `int136` operator.
*
* Requirements:
*
* - input must fit into 136 bits
*/
function toInt136(int256 value) internal pure returns (int136 downcasted) {
downcasted = int136(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(136, value);
}
}
/**
* @dev Returns the downcasted int128 from int256, reverting on
* overflow (when the input is less than smallest int128 or
* greater than largest int128).
*
* Counterpart to Solidity's `int128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*/
function toInt128(int256 value) internal pure returns (int128 downcasted) {
downcasted = int128(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(128, value);
}
}
/**
* @dev Returns the downcasted int120 from int256, reverting on
* overflow (when the input is less than smallest int120 or
* greater than largest int120).
*
* Counterpart to Solidity's `int120` operator.
*
* Requirements:
*
* - input must fit into 120 bits
*/
function toInt120(int256 value) internal pure returns (int120 downcasted) {
downcasted = int120(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(120, value);
}
}
/**
* @dev Returns the downcasted int112 from int256, reverting on
* overflow (when the input is less than smallest int112 or
* greater than largest int112).
*
* Counterpart to Solidity's `int112` operator.
*
* Requirements:
*
* - input must fit into 112 bits
*/
function toInt112(int256 value) internal pure returns (int112 downcasted) {
downcasted = int112(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(112, value);
}
}
/**
* @dev Returns the downcasted int104 from int256, reverting on
* overflow (when the input is less than smallest int104 or
* greater than largest int104).
*
* Counterpart to Solidity's `int104` operator.
*
* Requirements:
*
* - input must fit into 104 bits
*/
function toInt104(int256 value) internal pure returns (int104 downcasted) {
downcasted = int104(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(104, value);
}
}
/**
* @dev Returns the downcasted int96 from int256, reverting on
* overflow (when the input is less than smallest int96 or
* greater than largest int96).
*
* Counterpart to Solidity's `int96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*/
function toInt96(int256 value) internal pure returns (int96 downcasted) {
downcasted = int96(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(96, value);
}
}
/**
* @dev Returns the downcasted int88 from int256, reverting on
* overflow (when the input is less than smallest int88 or
* greater than largest int88).
*
* Counterpart to Solidity's `int88` operator.
*
* Requirements:
*
* - input must fit into 88 bits
*/
function toInt88(int256 value) internal pure returns (int88 downcasted) {
downcasted = int88(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(88, value);
}
}
/**
* @dev Returns the downcasted int80 from int256, reverting on
* overflow (when the input is less than smallest int80 or
* greater than largest int80).
*
* Counterpart to Solidity's `int80` operator.
*
* Requirements:
*
* - input must fit into 80 bits
*/
function toInt80(int256 value) internal pure returns (int80 downcasted) {
downcasted = int80(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(80, value);
}
}
/**
* @dev Returns the downcasted int72 from int256, reverting on
* overflow (when the input is less than smallest int72 or
* greater than largest int72).
*
* Counterpart to Solidity's `int72` operator.
*
* Requirements:
*
* - input must fit into 72 bits
*/
function toInt72(int256 value) internal pure returns (int72 downcasted) {
downcasted = int72(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(72, value);
}
}
/**
* @dev Returns the downcasted int64 from int256, reverting on
* overflow (when the input is less than smallest int64 or
* greater than largest int64).
*
* Counterpart to Solidity's `int64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*/
function toInt64(int256 value) internal pure returns (int64 downcasted) {
downcasted = int64(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(64, value);
}
}
/**
* @dev Returns the downcasted int56 from int256, reverting on
* overflow (when the input is less than smallest int56 or
* greater than largest int56).
*
* Counterpart to Solidity's `int56` operator.
*
* Requirements:
*
* - input must fit into 56 bits
*/
function toInt56(int256 value) internal pure returns (int56 downcasted) {
downcasted = int56(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(56, value);
}
}
/**
* @dev Returns the downcasted int48 from int256, reverting on
* overflow (when the input is less than smallest int48 or
* greater than largest int48).
*
* Counterpart to Solidity's `int48` operator.
*
* Requirements:
*
* - input must fit into 48 bits
*/
function toInt48(int256 value) internal pure returns (int48 downcasted) {
downcasted = int48(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(48, value);
}
}
/**
* @dev Returns the downcasted int40 from int256, reverting on
* overflow (when the input is less than smallest int40 or
* greater than largest int40).
*
* Counterpart to Solidity's `int40` operator.
*
* Requirements:
*
* - input must fit into 40 bits
*/
function toInt40(int256 value) internal pure returns (int40 downcasted) {
downcasted = int40(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(40, value);
}
}
/**
* @dev Returns the downcasted int32 from int256, reverting on
* overflow (when the input is less than smallest int32 or
* greater than largest int32).
*
* Counterpart to Solidity's `int32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*/
function toInt32(int256 value) internal pure returns (int32 downcasted) {
downcasted = int32(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(32, value);
}
}
/**
* @dev Returns the downcasted int24 from int256, reverting on
* overflow (when the input is less than smallest int24 or
* greater than largest int24).
*
* Counterpart to Solidity's `int24` operator.
*
* Requirements:
*
* - input must fit into 24 bits
*/
function toInt24(int256 value) internal pure returns (int24 downcasted) {
downcasted = int24(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(24, value);
}
}
/**
* @dev Returns the downcasted int16 from int256, reverting on
* overflow (when the input is less than smallest int16 or
* greater than largest int16).
*
* Counterpart to Solidity's `int16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*/
function toInt16(int256 value) internal pure returns (int16 downcasted) {
downcasted = int16(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(16, value);
}
}
/**
* @dev Returns the downcasted int8 from int256, reverting on
* overflow (when the input is less than smallest int8 or
* greater than largest int8).
*
* Counterpart to Solidity's `int8` operator.
*
* Requirements:
*
* - input must fit into 8 bits
*/
function toInt8(int256 value) internal pure returns (int8 downcasted) {
downcasted = int8(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(8, value);
}
}
/**
* @dev Converts an unsigned uint256 into a signed int256.
*
* Requirements:
*
* - input must be less than or equal to maxInt256.
*/
function toInt256(uint256 value) internal pure returns (int256) {
// Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
if (value > uint256(type(int256).max)) {
revert SafeCastOverflowedUintToInt(value);
}
return int256(value);
}
/**
* @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump.
*/
function toUint(bool b) internal pure returns (uint256 u) {
/// @solidity memory-safe-assembly
assembly {
u := iszero(iszero(b))
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.20;
import {SafeCast} from "./SafeCast.sol";
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.
*
* IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.
* However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute
* one branch when needed, making this function more expensive.
*/
function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {
unchecked {
// branchless ternary works because:
// b ^ (a ^ b) == a
// b ^ 0 == b
return b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));
}
}
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return ternary(a > b, a, b);
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return ternary(a < b, a, b);
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// Formula from the "Bit Twiddling Hacks" by Sean Eron Anderson.
// Since `n` is a signed integer, the generated bytecode will use the SAR opcode to perform the right shift,
// taking advantage of the most significant (or "sign" bit) in two's complement representation.
// This opcode adds new most significant bits set to the value of the previous most significant bit. As a result,
// the mask will either be `bytes(0)` (if n is positive) or `~bytes32(0)` (if n is negative).
int256 mask = n >> 255;
// A `bytes(0)` mask leaves the input unchanged, while a `~bytes32(0)` mask complements it.
return uint256((n + mask) ^ mask);
}
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
/**
* @dev Helper library for emitting standardized panic codes.
*
* ```solidity
* contract Example {
* using Panic for uint256;
*
* // Use any of the declared internal constants
* function foo() { Panic.GENERIC.panic(); }
*
* // Alternatively
* function foo() { Panic.panic(Panic.GENERIC); }
* }
* ```
*
* Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].
*/
// slither-disable-next-line unused-state
library Panic {
/// @dev generic / unspecified error
uint256 internal constant GENERIC = 0x00;
/// @dev used by the assert() builtin
uint256 internal constant ASSERT = 0x01;
/// @dev arithmetic underflow or overflow
uint256 internal constant UNDER_OVERFLOW = 0x11;
/// @dev division or modulo by zero
uint256 internal constant DIVISION_BY_ZERO = 0x12;
/// @dev enum conversion error
uint256 internal constant ENUM_CONVERSION_ERROR = 0x21;
/// @dev invalid encoding in storage
uint256 internal constant STORAGE_ENCODING_ERROR = 0x22;
/// @dev empty array pop
uint256 internal constant EMPTY_ARRAY_POP = 0x31;
/// @dev array out of bounds access
uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32;
/// @dev resource error (too large allocation or too large array)
uint256 internal constant RESOURCE_ERROR = 0x41;
/// @dev calling invalid internal function
uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51;
/// @dev Reverts with a panic code. Recommended to use with
/// the internal constants with predefined codes.
function panic(uint256 code) internal pure {
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, 0x4e487b71)
mstore(0x20, code)
revert(0x1c, 0x24)
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)
pragma solidity ^0.8.20;
import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant HEX_DIGITS = "0123456789abcdef";
uint8 private constant ADDRESS_LENGTH = 20;
/**
* @dev The `value` string doesn't fit in the specified `length`.
*/
error StringsInsufficientHexLength(uint256 value, uint256 length);
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toStringSigned(int256 value) internal pure returns (string memory) {
return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
uint256 localValue = value;
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_DIGITS[localValue & 0xf];
localValue >>= 4;
}
if (localValue != 0) {
revert StringsInsufficientHexLength(value, length);
}
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
* representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal
* representation, according to EIP-55.
*/
function toChecksumHexString(address addr) internal pure returns (string memory) {
bytes memory buffer = bytes(toHexString(addr));
// hash the hex part of buffer (skip length + 2 bytes, length 40)
uint256 hashValue;
assembly ("memory-safe") {
hashValue := shr(96, keccak256(add(buffer, 0x22), 40))
}
for (uint256 i = 41; i > 1; --i) {
// possible values for buffer[i] are 48 (0) to 57 (9) and 97 (a) to 102 (f)
if (hashValue & 0xf > 7 && uint8(buffer[i]) > 96) {
// case shift by xoring with 0x20
buffer[i] ^= 0x20;
}
hashValue >>= 4;
}
return string(buffer);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.
pragma solidity ^0.8.20;
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```solidity
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
* and `uint256` (`UintSet`) are supported.
*
* [WARNING]
* ====
* Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
* unusable.
* See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
*
* In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
* array of EnumerableSet.
* ====
*/
library EnumerableSet {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position is the index of the value in the `values` array plus 1.
// Position 0 is used to mean a value is not in the set.
mapping(bytes32 value => uint256) _positions;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._positions[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We cache the value's position to prevent multiple reads from the same storage slot
uint256 position = set._positions[value];
if (position != 0) {
// Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 valueIndex = position - 1;
uint256 lastIndex = set._values.length - 1;
if (valueIndex != lastIndex) {
bytes32 lastValue = set._values[lastIndex];
// Move the lastValue to the index where the value to delete is
set._values[valueIndex] = lastValue;
// Update the tracked position of the lastValue (that was just moved)
set._positions[lastValue] = position;
}
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the tracked position for the deleted slot
delete set._positions[value];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._positions[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index) private view returns (bytes32) {
return set._values[index];
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function _values(Set storage set) private view returns (bytes32[] memory) {
return set._values;
}
// Bytes32Set
struct Bytes32Set {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _add(set._inner, value);
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _remove(set._inner, value);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
return _contains(set._inner, value);
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
return _at(set._inner, index);
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
bytes32[] memory store = _values(set._inner);
bytes32[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint160(uint256(_at(set._inner, index))));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(AddressSet storage set) internal view returns (address[] memory) {
bytes32[] memory store = _values(set._inner);
address[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(UintSet storage set) internal view returns (uint256[] memory) {
bytes32[] memory store = _values(set._inner);
uint256[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
}
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
}
},
{
"files": "*.yml",
"options": {}
},
{
"files": "*.yaml",
"options": {}
},
{
"files": "*.toml",
"options": {}
},
{
"files": "*.json",
"options": {}
},
{
"files": "*.js",
"options": {}
},
{
"files": "*.ts",
"options": {}
}
]
}
{
"db": {
"0490f0d98c06a6234cc374564f984580f33770d4605e5781451d4971d3235a2d": "0xf873a1205931b4ed56ace4c46b68524cb5bcbf4195f1bbaacbe5228fbd090546c88dd229b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"937514b0e72ad8da6bb5e656f25334fb09e7018992ae794d5c237fbf27a5db15": "0x9706ae71107c338c81146f65b32be8740f6e9857c91ec406a2b73006cea516e4",
"ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9": "0xf872a03931b4ed56ace4c46b68524cb5bcbf4195f1bbaacbe5228fbd090546c88dd229b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f": "0xf872a0399bf57501565dbd2fdcea36efa2b9aef8340a8901e3459f4a4c926275d36cdbb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"dac9f9238909bae6bedf62a95a3ac503b5e6927b8243b9b44e0e335869bef325": "0xf8518080808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f80808080808080",
"6e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2": "0xf872a034a10bfd00977f54cc3450c9b25c9b3a502a089eba0097ba35fc33c4ea5fcb54b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"1db6a1394b96218e282fb52d559676dbecfba9a78146880e35ef38cc061dbf44": "0xf871a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e280808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f80808080808080",
"acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c": "0xf872a03fbe3e504ac4e35541bebad4d0e7574668e16fefa26cd4172f93e18b59ce9486b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"de2548e2521504daf92524b329dbb037a000ed381a8f810b8607e2f8832ada7d": "0xf891a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e280808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f808080a0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c808080",
"5f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c": "0xf872a036d82c545c22b72034803633d3dda2b28e89fb704f3c111355ac43e10612aedcb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"09cc43c2655ecf235e9ef7dbf5c6f27157eb9f6e2b53433a3f0f13301ca34450": "0xf8b1a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e280808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f808080a0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"69a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bd": "0xf872a0323d89d4ba0f8b56a459710de4b44820d73e93736cfc0667f35cdd5142b70f0db84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"7b184ca9e86ac8499d2cde865d80d191cbbeca4393fd2b74df5972f5426e0895": "0xf8d1a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e280808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f8080a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"0968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315": "0xf872a03c22adb6b75b7a618594eacef369bc4f0ec06380e8630fd7580f9bf0ea413ca8b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"b955e456c73a5460828b40c246ac4e09b60c899b969e7a9520783863649f104a": "0xf8f1a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f8080a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"70f09e0afc485ee4555a5c2bcb5380fe4745dfb619c97ce55ca368555f4c0358": "0xf872a03b9f0f05f155b5df3bbdd079fa47bedd6da0e32966c72f92264d98e80248858eb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"e628eda7692102d1123972b085e483fb81586793e6e4bb395f356f319785b924": "0xf90111a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f80a070f09e0afc485ee4555a5c2bcb5380fe4745dfb619c97ce55ca368555f4c0358a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"021eda8d86f1724d84a155e5e0227744e3fb2f570089a70ae65750d24410fe10": "0xf872a0209bf57501565dbd2fdcea36efa2b9aef8340a8901e3459f4a4c926275d36cdbb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"35196d12c07e2405a02d095f74880568965618e95b50e64e8690594aa6bb5ea2": "0xf872a0207839edeb5b3ee9a2dee69954b24aeb3f91b8ff4c608efd90618351fe77152fb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"f4ae3d0d998ac3c8f5118c8ef3ce2ef3dc0440a900323177580df0f212f8b363": "0xf85180808080a035196d12c07e2405a02d095f74880568965618e95b50e64e8690594aa6bb5ea280808080a0021eda8d86f1724d84a155e5e0227744e3fb2f570089a70ae65750d24410fe1080808080808080",
"4b7be564e069212c8c0dd694ce21c7051e5cb7bbb527e3af73faf7e61de082c0": "0xf90111a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0f4ae3d0d998ac3c8f5118c8ef3ce2ef3dc0440a900323177580df0f212f8b36380a070f09e0afc485ee4555a5c2bcb5380fe4745dfb619c97ce55ca368555f4c0358a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"c3165ef5b21e80c163531f807c25789fef8810eda00ae7ca5ced381ff9a9515a": "0xf872a03aea7c8c479e9ff598fc761670d034e3eff2ebadb1e3769b349b2d1663d23913b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"1b83601c6f891d16b1422e65ed3cd47bcbe1342010db6168a0508de8597ac327": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0f4ae3d0d998ac3c8f5118c8ef3ce2ef3dc0440a900323177580df0f212f8b363a0c3165ef5b21e80c163531f807c25789fef8810eda00ae7ca5ced381ff9a9515aa070f09e0afc485ee4555a5c2bcb5380fe4745dfb619c97ce55ca368555f4c0358a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"82f6e0ef9d3ec62e68c811432d52e6e0c907d604aed5a2a561d95e393f487d68": "0xf872a0209f0f05f155b5df3bbdd079fa47bedd6da0e32966c72f92264d98e80248858eb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"cdeaf028a7a2894d4778d6c412bfb95e81b23c2e6044f4c5d6de2ed8a50f78f3": "0xf872a020591967aed668a4b27645ff40c444892d91bf5951b382995d4d4f6ee3a2ce03b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"9d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797": "0xf85180a0cdeaf028a7a2894d4778d6c412bfb95e81b23c2e6044f4c5d6de2ed8a50f78f3808080808080808080a082f6e0ef9d3ec62e68c811432d52e6e0c907d604aed5a2a561d95e393f487d688080808080",
"0733321bda3c83f42aeeb32f8dcad18bb4f4c2b80fa60dee4b6eb25f0952524c": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0f4ae3d0d998ac3c8f5118c8ef3ce2ef3dc0440a900323177580df0f212f8b363a0c3165ef5b21e80c163531f807c25789fef8810eda00ae7ca5ced381ff9a9515aa09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"0932e0165ad0cabdfe9d8fb6a70150033d789cd07caaf499c8a37141495499c3": "0xf872a020a258265696d227eef589fd6cd14671a82aa2963ec2214eb048fca5441c4a7eb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8": "0xf87180808080a035196d12c07e2405a02d095f74880568965618e95b50e64e8690594aa6bb5ea280808080a0021eda8d86f1724d84a155e5e0227744e3fb2f570089a70ae65750d24410fe10808080a00932e0165ad0cabdfe9d8fb6a70150033d789cd07caaf499c8a37141495499c3808080",
"a137d310a084b364dfbf0de1114f64e94253e42baa0297980c4a88db4e7d9aa8": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0c3165ef5b21e80c163531f807c25789fef8810eda00ae7ca5ced381ff9a9515aa09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"9aceb391e41ce30a6ee2c0c568b850f9fde2e425b767f72e7f4d9cc76e8271ec": "0xf872a020be3e504ac4e35541bebad4d0e7574668e16fefa26cd4172f93e18b59ce9486b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"090d9dec4c66aadc432a96de820eb6fb44489111b3b6f1f397cd9a44a0014882": "0xf872a0209ae219c4bbc2c5eaa1cd472f76bd0211bbf31053549dd7771cc573d3ed197fb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"819c926feb18dee3be8e9daa7ab62abe91febb2caceac5e8038b048d7a4bed0d": "0xf851808080808080808080808080a0090d9dec4c66aadc432a96de820eb6fb44489111b3b6f1f397cd9a44a00148828080a09aceb391e41ce30a6ee2c0c568b850f9fde2e425b767f72e7f4d9cc76e8271ec80",
"53ac286d5d31f0a7f768060b7f9f198956d75c903a698ae4fbb3dcc9f9d5e0b8": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0c3165ef5b21e80c163531f807c25789fef8810eda00ae7ca5ced381ff9a9515aa09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0819c926feb18dee3be8e9daa7ab62abe91febb2caceac5e8038b048d7a4bed0d80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"1a0e275dfddaeead8d1fa18c665c7e19b15dc769d3ede56c4a85377edc877110": "0xf8719f20e219c4bbc2c5eaa1cd472f76bd0211bbf31053549dd7771cc573d3ed197fb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ff695f1ea854ce96ed9c761374f9cc42179fddef3c76a01c05f7f1bb19725ef8": "0xf8719f201e8c4eba798a431ca40726ca69bda8c7067f1690340e5b0a08d83d00d9cbb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"f96f3afee8124cd65bfb12ead5b9bd737c7def4cb7f7c71b82b00d5da23cd77c": "0xf85180808080a0ff695f1ea854ce96ed9c761374f9cc42179fddef3c76a01c05f7f1bb19725ef88080808080a01a0e275dfddaeead8d1fa18c665c7e19b15dc769d3ede56c4a85377edc877110808080808080",
"d8394fa4bbb65976fe11ee9de67bd6f0fb3fa3d7b36ee09f1421dae79b17b95f": "0xe219a0f96f3afee8124cd65bfb12ead5b9bd737c7def4cb7f7c71b82b00d5da23cd77c",
"853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a": "0xf851808080808080808080808080a0d8394fa4bbb65976fe11ee9de67bd6f0fb3fa3d7b36ee09f1421dae79b17b95f8080a09aceb391e41ce30a6ee2c0c568b850f9fde2e425b767f72e7f4d9cc76e8271ec80",
"29a7ea17591b34ca73ee13832a64db6d8565d9ab4dbafea03842fabe139016fa": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0c3165ef5b21e80c163531f807c25789fef8810eda00ae7ca5ced381ff9a9515aa09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"48e73baa24091198f9b69f9c7d27ba256fc19dddebf64448a7a0fd3df28d727d": "0xf872a020ea7c8c479e9ff598fc761670d034e3eff2ebadb1e3769b349b2d1663d23913b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"dc3d58bdcff5ea646a823bebe53ec4ab457ca425e952485f0da477b44fd7bacd": "0xf872a020e7c546eb582218cf94b848c36f3b058e2518876240ae6100c4ef23d38f3e07b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546bab": "0xf85180808080808080808080a048e73baa24091198f9b69f9c7d27ba256fc19dddebf64448a7a0fd3df28d727d80808080a0dc3d58bdcff5ea646a823bebe53ec4ab457ca425e952485f0da477b44fd7bacd80",
"c87ee106e21de6f375b1424af09b5235d42f0524163ba739aa52ff49cf6e0fb9": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"635563e2a24247608bbb16b6f6fc5c1fbd2da29a05bbb06bfbd1f867a17a5add3b": "0x608060405234801561000f575f80fd5b5060043610610034575f3560e01c8063440c93e214610038578063e655b7bb14610068575b5f80fd5b610052600480360381019061004d9190610413565b610098565b60405161005f91906104ae565b60405180910390f35b610082600480360381019061007d9190610413565b6101e0565b60405161008f91906104ae565b60405180910390f35b60605f6003836100a891906104fb565b1480156100c057505f6005836100be91906104fb565b145b15610102576040518060400160405280600881526020017f46697a7a42757a7a00000000000000000000000000000000000000000000000081525090506101db565b5f60038361011091906104fb565b03610152576040518060400160405280600481526020017f46697a7a0000000000000000000000000000000000000000000000000000000081525090506101db565b5f60058361016091906104fb565b036101a2576040518060400160405280600481526020017f42757a7a0000000000000000000000000000000000000000000000000000000081525090506101db565b6040518060400160405280600581526020017f53706c617400000000000000000000000000000000000000000000000000000081525090505b919050565b60606109608211156101f5576101f461052b565b5b610898821180610206575061032082105b1561024857816040517fa4bf701e00000000000000000000000000000000000000000000000000000000815260040161023f9190610567565b60405180910390fd5b6104b0821015801561025c57506104eb8211155b1561029c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610293906105ca565b60405180910390fd5b61032082101580156102b057506104af8211155b156102f2576040518060400160405280600881526020017f4d6f726e696e672100000000000000000000000000000000000000000000000081525090506103d7565b610514821015801561030657506107078211155b15610348576040518060400160405280600a81526020017f41667465726e6f6f6e210000000000000000000000000000000000000000000081525090506103d7565b610708821015801561035c57506108988211155b1561039e576040518060400160405280600881526020017f4576656e696e672100000000000000000000000000000000000000000000000081525090506103d7565b6040518060400160405280600a81526020017f4166746572486f7572730000000000000000000000000000000000000000000081525090505b919050565b5f80fd5b5f819050919050565b6103f2816103e0565b81146103fc575f80fd5b50565b5f8135905061040d816103e9565b92915050565b5f60208284031215610428576104276103dc565b5b5f610435848285016103ff565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6104808261043e565b61048a8185610448565b935061049a818560208601610458565b6104a381610466565b840191505092915050565b5f6020820190508181035f8301526104c68184610476565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f610505826103e0565b9150610510836103e0565b9250826105205761051f6104ce565b5b828206905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52600160045260245ffd5b610561816103e0565b82525050565b5f60208201905061057a5f830184610558565b92915050565b7f4174206c756e63682100000000000000000000000000000000000000000000005f82015250565b5f6105b4600983610448565b91506105bf82610580565b602082019050919050565b5f6020820190508181035f8301526105e1816105a8565b905091905056fea2646970667358221220da15df6563355788f8789a6a1af90e8290e1c137cb24b986d40077525c035bd364736f6c634300081a0033",
"8f8dc9b7d27b06a2e517884c2efb092202e9264361db8604f94073492846a64a": "0xf872a03931b4ed56ace4c46b68524cb5bcbf4195f1bbaacbe5228fbd090546c88dd229b84ff84d0189056bc75e2d63042952a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ad52d54f69df6d5d19cfaa25d91081e19deb8c1182b7f37fc761ee31df80f0c4": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a08f8dc9b7d27b06a2e517884c2efb092202e9264361db8604f94073492846a64a808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"57ec08b8f040499409fb0220f538477790d4f010c4bb51a8dbae5da3537a86a4": "0xf872a020d82c545c22b72034803633d3dda2b28e89fb704f3c111355ac43e10612aedcb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"1a6abec793c27b9716368b87cee13edb024c34736e8878f47f1e15da6a5d42e7": "0xf869a0204b24eae4a02d3987ca887631704554f37941d36d88eba3861c6e365c7804a5b846f8440180a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a05563e2a24247608bbb16b6f6fc5c1fbd2da29a05bbb06bfbd1f867a17a5add3b",
"258b95583b0aee82fa6e1d3fe1c499621ca2d9f3b6b0c922fd3275c99b66f559": "0xf851808080808080a057ec08b8f040499409fb0220f538477790d4f010c4bb51a8dbae5da3537a86a480a01a6abec793c27b9716368b87cee13edb024c34736e8878f47f1e15da6a5d42e78080808080808080",
"f4883b7ecf5e7fb43a4dd3f256709286eaf5b84884e444d1aacbf00c05360639": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a08f8dc9b7d27b06a2e517884c2efb092202e9264361db8604f94073492846a64a808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a0258b95583b0aee82fa6e1d3fe1c499621ca2d9f3b6b0c922fd3275c99b66f55980",
"1f631dcdba23f258067b5bb3a0dae587cd76b53367ba8ea4b369586cbc0acfa3": "0xf86ca020a40a9004224e397238839b469142c546607ee7a8b114ded86182fceae00e35b849f847808305eb57a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"0b442ecd2743a577d7a120189c5f68d1cdddf899b92d0370a21a134e54aa6712": "0xf87180a0cdeaf028a7a2894d4778d6c412bfb95e81b23c2e6044f4c5d6de2ed8a50f78f3808080808080808080a082f6e0ef9d3ec62e68c811432d52e6e0c907d604aed5a2a561d95e393f487d688080a01f631dcdba23f258067b5bb3a0dae587cd76b53367ba8ea4b369586cbc0acfa38080",
"9706ae71107c338c81146f65b32be8740f6e9857c91ec406a2b73006cea516e4": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a08f8dc9b7d27b06a2e517884c2efb092202e9264361db8604f94073492846a64a808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba00b442ecd2743a577d7a120189c5f68d1cdddf899b92d0370a21a134e54aa6712a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a0258b95583b0aee82fa6e1d3fe1c499621ca2d9f3b6b0c922fd3275c99b66f55980"
},
"blocks": [
"0xf9023ff90239a00000000000000000000000000000000000000000000000000000000000000000a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347940e9281e9c6a0808672eaba6bd1220e144c9bb07aa00000000000000000000000000000000000000000000000000000000000000000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008080837a1200808466838dab80a0000000000000000000000000000000000000000000000000000000000000000088000000000000000007a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b4218080a00000000000000000000000000000000000000000000000000000000000000000c0c0c0",
"0xf908d3f90239a0ba2c0c05b05e53f22f325d78de01360d6bfaba7fc6c595b03ea897abdfe5334ba01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948945a1288dc78a6d8952a92c77aee6730b414778a00000000000000000000000000000000000000000000000000000000000000000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080018306cea5808466838deb80a0000000000000000000000000000000000000000000000000000000000000000088000000000000000001a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b4218080a00000000000000000000000000000000000000000000000000000000000000000f90692b9068f02f9068b018001078306cea58080b9063a6080604052348015600e575f80fd5b5061061e8061001c5f395ff3fe608060405234801561000f575f80fd5b5060043610610034575f3560e01c8063440c93e214610038578063e655b7bb14610068575b5f80fd5b610052600480360381019061004d9190610413565b610098565b60405161005f91906104ae565b60405180910390f35b610082600480360381019061007d9190610413565b6101e0565b60405161008f91906104ae565b60405180910390f35b60605f6003836100a891906104fb565b1480156100c057505f6005836100be91906104fb565b145b15610102576040518060400160405280600881526020017f46697a7a42757a7a00000000000000000000000000000000000000000000000081525090506101db565b5f60038361011091906104fb565b03610152576040518060400160405280600481526020017f46697a7a0000000000000000000000000000000000000000000000000000000081525090506101db565b5f60058361016091906104fb565b036101a2576040518060400160405280600481526020017f42757a7a0000000000000000000000000000000000000000000000000000000081525090506101db565b6040518060400160405280600581526020017f53706c617400000000000000000000000000000000000000000000000000000081525090505b919050565b60606109608211156101f5576101f461052b565b5b610898821180610206575061032082105b1561024857816040517fa4bf701e00000000000000000000000000000000000000000000000000000000815260040161023f9190610567565b60405180910390fd5b6104b0821015801561025c57506104eb8211155b1561029c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610293906105ca565b60405180910390fd5b61032082101580156102b057506104af8211155b156102f2576040518060400160405280600881526020017f4d6f726e696e672100000000000000000000000000000000000000000000000081525090506103d7565b610514821015801561030657506107078211155b15610348576040518060400160405280600a81526020017f41667465726e6f6f6e210000000000000000000000000000000000000000000081525090506103d7565b610708821015801561035c57506108988211155b1561039e576040518060400160405280600881526020017f4576656e696e672100000000000000000000000000000000000000000000000081525090506103d7565b6040518060400160405280600a81526020017f4166746572486f7572730000000000000000000000000000000000000000000081525090505b919050565b5f80fd5b5f819050919050565b6103f2816103e0565b81146103fc575f80fd5b50565b5f8135905061040d816103e9565b92915050565b5f60208284031215610428576104276103dc565b5b5f610435848285016103ff565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6104808261043e565b61048a8185610448565b935061049a818560208601610458565b6104a381610466565b840191505092915050565b5f6020820190508181035f8301526104c68184610476565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f610505826103e0565b9150610510836103e0565b9250826105205761051f6104ce565b5b828206905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52600160045260245ffd5b610561816103e0565b82525050565b5f60208201905061057a5f830184610558565b92915050565b7f4174206c756e63682100000000000000000000000000000000000000000000005f82015250565b5f6105b4600983610448565b91506105bf82610580565b602082019050919050565b5f6020820190508181035f8301526105e1816105a8565b905091905056fea2646970667358221220da15df6563355788f8789a6a1af90e8290e1c137cb24b986d40077525c035bd364736f6c634300081a0033c001a0e0ada94e3717911265406dfd6802a6a291e1b1363069d3fa455a95cd8b2ce6b5a02e8a6324208560eda5bb68a5ffebda06cf7950ccdc521f7d9f7a8d8140d59c55c0c0"
],
"latestBlockNumber": "0x1"
}
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;
contract ArraysExercise {
uint[] public numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
address[] public senders;
uint[] public timestamps;
// Return the entire numbers array
function getNumbers() public view returns (uint[] memory) {
return numbers;
}
// Reset the numbers array to its initial value
function resetNumbers() public {
numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
}
// Append an array to the existing numbers array
function appendToNumbers(uint[] calldata _toAppend) public {
for (uint i = 0; i < _toAppend.length; i++) {
numbers.push(_toAppend[i]);
}
}
// Save the sender's address and timestamp
function saveTimestamp(uint _unixTimestamp) public {
senders.push(msg.sender);
timestamps.push(_unixTimestamp);
}
// Return timestamps and senders after January 1, 2000, 12:00am
function afterY2K() public view returns (uint[] memory, address[] memory) {
uint y2kTimestamp = 946702800;
uint[] memory recentTimestamps;
address[] memory recentSenders;
for (uint i = 0; i < timestamps.length; i++) {
if (timestamps[i] > y2kTimestamp) {
recentTimestamps = appendToArray(recentTimestamps, timestamps[i]);
recentSenders = appendToArray(recentSenders, senders[i]);
}
}
return (recentTimestamps, recentSenders);
}
// Reset senders array
function resetSenders() public {
delete senders;
}
// Reset timestamps array
function resetTimestamps() public {
delete timestamps;
}
// Helper function to append to an array
function appendToArray(uint[] memory array, uint element) internal pure returns (uint[] memory) {
uint[] memory newArray = new uint[](array.length + 1);
for (uint i = 0; i < array.length; i++) {
newArray[i] = array[i];
}
newArray[array.length] = element;
return newArray;
}
// Helper function to append to an array
function appendToArray(address[] memory array, address element) internal pure returns (address[] memory) {
address[] memory newArray = new address[](array.length + 1);
for (uint i = 0; i < array.length; i++) {
newArray[i] = array[i];
}
newArray[array.length] = element;
return newArray;
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_242": {
"entryPoint": null,
"id": 242,
"parameterSlots": 1,
"returnSlots": 0
},
"@_33": {
"entryPoint": null,
"id": 33,
"parameterSlots": 0,
"returnSlots": 0
},
"@_transferOwnership_338": {
"entryPoint": 150,
"id": 338,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 391,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 406,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 374,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 343,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:590:3",
"nodeType": "YulBlock",
"src": "0:590:3",
"statements": [
{
"body": {
"nativeSrc": "52:81:3",
"nodeType": "YulBlock",
"src": "52:81:3",
"statements": [
{
"nativeSrc": "62:65:3",
"nodeType": "YulAssignment",
"src": "62:65:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "77:5:3",
"nodeType": "YulIdentifier",
"src": "77:5:3"
},
{
"kind": "number",
"nativeSrc": "84:42:3",
"nodeType": "YulLiteral",
"src": "84:42:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "73:3:3",
"nodeType": "YulIdentifier",
"src": "73:3:3"
},
"nativeSrc": "73:54:3",
"nodeType": "YulFunctionCall",
"src": "73:54:3"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "62:7:3",
"nodeType": "YulIdentifier",
"src": "62:7:3"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "7:126:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "34:5:3",
"nodeType": "YulTypedName",
"src": "34:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "44:7:3",
"nodeType": "YulTypedName",
"src": "44:7:3",
"type": ""
}
],
"src": "7:126:3"
},
{
"body": {
"nativeSrc": "184:51:3",
"nodeType": "YulBlock",
"src": "184:51:3",
"statements": [
{
"nativeSrc": "194:35:3",
"nodeType": "YulAssignment",
"src": "194:35:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "223:5:3",
"nodeType": "YulIdentifier",
"src": "223:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "205:17:3",
"nodeType": "YulIdentifier",
"src": "205:17:3"
},
"nativeSrc": "205:24:3",
"nodeType": "YulFunctionCall",
"src": "205:24:3"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "194:7:3",
"nodeType": "YulIdentifier",
"src": "194:7:3"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "139:96:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "166:5:3",
"nodeType": "YulTypedName",
"src": "166:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "176:7:3",
"nodeType": "YulTypedName",
"src": "176:7:3",
"type": ""
}
],
"src": "139:96:3"
},
{
"body": {
"nativeSrc": "306:53:3",
"nodeType": "YulBlock",
"src": "306:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "323:3:3",
"nodeType": "YulIdentifier",
"src": "323:3:3"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "346:5:3",
"nodeType": "YulIdentifier",
"src": "346:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "328:17:3",
"nodeType": "YulIdentifier",
"src": "328:17:3"
},
"nativeSrc": "328:24:3",
"nodeType": "YulFunctionCall",
"src": "328:24:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "316:6:3",
"nodeType": "YulIdentifier",
"src": "316:6:3"
},
"nativeSrc": "316:37:3",
"nodeType": "YulFunctionCall",
"src": "316:37:3"
},
"nativeSrc": "316:37:3",
"nodeType": "YulExpressionStatement",
"src": "316:37:3"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "241:118:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "294:5:3",
"nodeType": "YulTypedName",
"src": "294:5:3",
"type": ""
},
{
"name": "pos",
"nativeSrc": "301:3:3",
"nodeType": "YulTypedName",
"src": "301:3:3",
"type": ""
}
],
"src": "241:118:3"
},
{
"body": {
"nativeSrc": "463:124:3",
"nodeType": "YulBlock",
"src": "463:124:3",
"statements": [
{
"nativeSrc": "473:26:3",
"nodeType": "YulAssignment",
"src": "473:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "485:9:3",
"nodeType": "YulIdentifier",
"src": "485:9:3"
},
{
"kind": "number",
"nativeSrc": "496:2:3",
"nodeType": "YulLiteral",
"src": "496:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "481:3:3",
"nodeType": "YulIdentifier",
"src": "481:3:3"
},
"nativeSrc": "481:18:3",
"nodeType": "YulFunctionCall",
"src": "481:18:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "473:4:3",
"nodeType": "YulIdentifier",
"src": "473:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "553:6:3",
"nodeType": "YulIdentifier",
"src": "553:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "566:9:3",
"nodeType": "YulIdentifier",
"src": "566:9:3"
},
{
"kind": "number",
"nativeSrc": "577:1:3",
"nodeType": "YulLiteral",
"src": "577:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "562:3:3",
"nodeType": "YulIdentifier",
"src": "562:3:3"
},
"nativeSrc": "562:17:3",
"nodeType": "YulFunctionCall",
"src": "562:17:3"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "509:43:3",
"nodeType": "YulIdentifier",
"src": "509:43:3"
},
"nativeSrc": "509:71:3",
"nodeType": "YulFunctionCall",
"src": "509:71:3"
},
"nativeSrc": "509:71:3",
"nodeType": "YulExpressionStatement",
"src": "509:71:3"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nativeSrc": "365:222:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "435:9:3",
"nodeType": "YulTypedName",
"src": "435:9:3",
"type": ""
},
{
"name": "value0",
"nativeSrc": "447:6:3",
"nodeType": "YulTypedName",
"src": "447:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "458:4:3",
"nodeType": "YulTypedName",
"src": "458:4:3",
"type": ""
}
],
"src": "365:222:3"
}
]
},
"contents": "{\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "608060405234801561000f575f80fd5b50335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610081575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016100789190610196565b60405180910390fd5b6100908161009660201b60201c565b506101af565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61018082610157565b9050919050565b61019081610176565b82525050565b5f6020820190506101a95f830184610187565b92915050565b611490806101bc5f395ff3fe608060405234801561000f575f80fd5b506004361061007b575f3560e01c8063b9ed6fca11610059578063b9ed6fca146100c3578063e6505e1e146100df578063ef1d6ddd14610111578063f2fde38b1461012f5761007b565b80633f06f6e81461007f578063715018a61461009b5780638da5cb5b146100a5575b5f80fd5b61009960048036038101906100949190610bee565b61014b565b005b6100a36101f9565b005b6100ad61020c565b6040516100ba9190610cd1565b60405180910390f35b6100dd60048036038101906100d89190610cea565b610233565b005b6100f960048036038101906100f49190610cea565b6102dc565b60405161010893929190610e2c565b60405180910390f35b6101196104ba565b6040516101269190611053565b60405180910390f35b6101496004803603810190610144919061109d565b6106ef565b005b610153610773565b604051806080016040528060025481526020018481526020018381526020018281525060015f60025481526020019081526020015f205f820151815f015560208201518160010190816101a691906112c2565b5060408201518160020190816101bc91906112c2565b5060608201518160030190805190602001906101d99291906108c2565b5090505060025f8154809291906101ef906113be565b9190505550505050565b610201610773565b61020a5f6107fa565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61023b610773565b5f60015f8381526020019081526020015f205f01540361029257806040517ff55dec000000000000000000000000000000000000000000000000000000000081526004016102899190611414565b60405180910390fd5b60015f8281526020019081526020015f205f8082015f9055600182015f6102b9919061090d565b600282015f6102c8919061090d565b600382015f6102d7919061094a565b505050565b60608060605f60015f8681526020019081526020015f2090505f815f01540361033c57846040517ff55dec000000000000000000000000000000000000000000000000000000000081526004016103339190611414565b60405180910390fd5b806001018160020182600301828054610354906110f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610380906110f5565b80156103cb5780601f106103a2576101008083540402835291602001916103cb565b820191905f5260205f20905b8154815290600101906020018083116103ae57829003601f168201915b505050505092508180546103de906110f5565b80601f016020809104026020016040519081016040528092919081815260200182805461040a906110f5565b80156104555780601f1061042c57610100808354040283529160200191610455565b820191905f5260205f20905b81548152906001019060200180831161043857829003601f168201915b50505050509150808054806020026020016040519081016040528092919081815260200182805480156104a557602002820191905f5260205f20905b815481526020019060010190808311610491575b50505050509050935093509350509193909250565b60605f60025467ffffffffffffffff8111156104d9576104d86109d3565b5b60405190808252806020026020018201604052801561051257816020015b6104ff610968565b8152602001906001900390816104f75790505b5090505f5b6002548110156106e75760015f8281526020019081526020015f206040518060800160405290815f8201548152602001600182018054610556906110f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610582906110f5565b80156105cd5780601f106105a4576101008083540402835291602001916105cd565b820191905f5260205f20905b8154815290600101906020018083116105b057829003601f168201915b505050505081526020016002820180546105e6906110f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610612906110f5565b801561065d5780601f106106345761010080835404028352916020019161065d565b820191905f5260205f20905b81548152906001019060200180831161064057829003601f168201915b50505050508152602001600382018054806020026020016040519081016040528092919081815260200182805480156106b357602002820191905f5260205f20905b81548152602001906001019080831161069f575b5050505050815250508282815181106106cf576106ce61142d565b5b60200260200101819052508080600101915050610517565b508091505090565b6106f7610773565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610767575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161075e9190610cd1565b60405180910390fd5b610770816107fa565b50565b61077b6108bb565b73ffffffffffffffffffffffffffffffffffffffff1661079961020c565b73ffffffffffffffffffffffffffffffffffffffff16146107f8576107bc6108bb565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107ef9190610cd1565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f33905090565b828054828255905f5260205f209081019282156108fc579160200282015b828111156108fb5782518255916020019190600101906108e0565b5b509050610909919061098f565b5090565b508054610919906110f5565b5f825580601f1061092a5750610947565b601f0160209004905f5260205f2090810190610946919061098f565b5b50565b5080545f8255905f5260205f2090810190610965919061098f565b50565b60405180608001604052805f81526020016060815260200160608152602001606081525090565b5b808211156109a6575f815f905550600101610990565b5090565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610a09826109c3565b810181811067ffffffffffffffff82111715610a2857610a276109d3565b5b80604052505050565b5f610a3a6109aa565b9050610a468282610a00565b919050565b5f67ffffffffffffffff821115610a6557610a646109d3565b5b610a6e826109c3565b9050602081019050919050565b828183375f83830152505050565b5f610a9b610a9684610a4b565b610a31565b905082815260208101848484011115610ab757610ab66109bf565b5b610ac2848285610a7b565b509392505050565b5f82601f830112610ade57610add6109bb565b5b8135610aee848260208601610a89565b91505092915050565b5f67ffffffffffffffff821115610b1157610b106109d3565b5b602082029050602081019050919050565b5f80fd5b5f819050919050565b610b3881610b26565b8114610b42575f80fd5b50565b5f81359050610b5381610b2f565b92915050565b5f610b6b610b6684610af7565b610a31565b90508083825260208201905060208402830185811115610b8e57610b8d610b22565b5b835b81811015610bb75780610ba38882610b45565b845260208401935050602081019050610b90565b5050509392505050565b5f82601f830112610bd557610bd46109bb565b5b8135610be5848260208601610b59565b91505092915050565b5f805f60608486031215610c0557610c046109b3565b5b5f84013567ffffffffffffffff811115610c2257610c216109b7565b5b610c2e86828701610aca565b935050602084013567ffffffffffffffff811115610c4f57610c4e6109b7565b5b610c5b86828701610aca565b925050604084013567ffffffffffffffff811115610c7c57610c7b6109b7565b5b610c8886828701610bc1565b9150509250925092565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610cbb82610c92565b9050919050565b610ccb81610cb1565b82525050565b5f602082019050610ce45f830184610cc2565b92915050565b5f60208284031215610cff57610cfe6109b3565b5b5f610d0c84828501610b45565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f610d4782610d15565b610d518185610d1f565b9350610d61818560208601610d2f565b610d6a816109c3565b840191505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b610da781610b26565b82525050565b5f610db88383610d9e565b60208301905092915050565b5f602082019050919050565b5f610dda82610d75565b610de48185610d7f565b9350610def83610d8f565b805f5b83811015610e1f578151610e068882610dad565b9750610e1183610dc4565b925050600181019050610df2565b5085935050505092915050565b5f6060820190508181035f830152610e448186610d3d565b90508181036020830152610e588185610d3d565b90508181036040830152610e6c8184610dd0565b9050949350505050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b5f82825260208201905092915050565b5f610eb982610d15565b610ec38185610e9f565b9350610ed3818560208601610d2f565b610edc816109c3565b840191505092915050565b5f82825260208201905092915050565b5f610f0182610d75565b610f0b8185610ee7565b9350610f1683610d8f565b805f5b83811015610f46578151610f2d8882610dad565b9750610f3883610dc4565b925050600181019050610f19565b5085935050505092915050565b5f608083015f830151610f685f860182610d9e565b5060208301518482036020860152610f808282610eaf565b91505060408301518482036040860152610f9a8282610eaf565b91505060608301518482036060860152610fb48282610ef7565b9150508091505092915050565b5f610fcc8383610f53565b905092915050565b5f602082019050919050565b5f610fea82610e76565b610ff48185610e80565b93508360208202850161100685610e90565b805f5b8581101561104157848403895281516110228582610fc1565b945061102d83610fd4565b925060208a01995050600181019050611009565b50829750879550505050505092915050565b5f6020820190508181035f83015261106b8184610fe0565b905092915050565b61107c81610cb1565b8114611086575f80fd5b50565b5f8135905061109781611073565b92915050565b5f602082840312156110b2576110b16109b3565b5b5f6110bf84828501611089565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061110c57607f821691505b60208210810361111f5761111e6110c8565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026111817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611146565b61118b8683611146565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6111c66111c16111bc84610b26565b6111a3565b610b26565b9050919050565b5f819050919050565b6111df836111ac565b6111f36111eb826111cd565b848454611152565b825550505050565b5f90565b6112076111fb565b6112128184846111d6565b505050565b5b818110156112355761122a5f826111ff565b600181019050611218565b5050565b601f82111561127a5761124b81611125565b61125484611137565b81016020851015611263578190505b61127761126f85611137565b830182611217565b50505b505050565b5f82821c905092915050565b5f61129a5f198460080261127f565b1980831691505092915050565b5f6112b2838361128b565b9150826002028217905092915050565b6112cb82610d15565b67ffffffffffffffff8111156112e4576112e36109d3565b5b6112ee82546110f5565b6112f9828285611239565b5f60209050601f83116001811461132a575f8415611318578287015190505b61132285826112a7565b865550611389565b601f19841661133886611125565b5f5b8281101561135f5784890151825560018201915060208501945060208101905061133a565b8683101561137c5784890151611378601f89168261128b565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113c882610b26565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036113fa576113f9611391565b5b600182019050919050565b61140e81610b26565b82525050565b5f6020820190506114275f830184611405565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffdfea26469706673582212203e6632bbb37313595a02f559faaca8a4fd7d06c275d7503f85bfc5e1c2d24dbc64736f6c634300081a0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP CALLER PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x81 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1E4FBDF700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x78 SWAP2 SWAP1 PUSH2 0x196 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x90 DUP2 PUSH2 0x96 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP PUSH2 0x1AF JUMP JUMPDEST PUSH0 DUP1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH0 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 PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 PUSH2 0x157 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x190 DUP2 PUSH2 0x176 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A9 PUSH0 DUP4 ADD DUP5 PUSH2 0x187 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1490 DUP1 PUSH2 0x1BC PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x7B JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB9ED6FCA GT PUSH2 0x59 JUMPI DUP1 PUSH4 0xB9ED6FCA EQ PUSH2 0xC3 JUMPI DUP1 PUSH4 0xE6505E1E EQ PUSH2 0xDF JUMPI DUP1 PUSH4 0xEF1D6DDD EQ PUSH2 0x111 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x12F JUMPI PUSH2 0x7B JUMP JUMPDEST DUP1 PUSH4 0x3F06F6E8 EQ PUSH2 0x7F JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x9B JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xA5 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x99 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x94 SWAP2 SWAP1 PUSH2 0xBEE JUMP JUMPDEST PUSH2 0x14B JUMP JUMPDEST STOP JUMPDEST PUSH2 0xA3 PUSH2 0x1F9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xAD PUSH2 0x20C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBA SWAP2 SWAP1 PUSH2 0xCD1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xD8 SWAP2 SWAP1 PUSH2 0xCEA JUMP JUMPDEST PUSH2 0x233 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xF9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0xCEA JUMP JUMPDEST PUSH2 0x2DC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x108 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xE2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x119 PUSH2 0x4BA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x126 SWAP2 SWAP1 PUSH2 0x1053 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x149 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x144 SWAP2 SWAP1 PUSH2 0x109D JUMP JUMPDEST PUSH2 0x6EF JUMP JUMPDEST STOP JUMPDEST PUSH2 0x153 PUSH2 0x773 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 SLOAD DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE POP PUSH1 0x1 PUSH0 PUSH1 0x2 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP2 PUSH2 0x1A6 SWAP2 SWAP1 PUSH2 0x12C2 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP2 PUSH2 0x1BC SWAP2 SWAP1 PUSH2 0x12C2 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1D9 SWAP3 SWAP2 SWAP1 PUSH2 0x8C2 JUMP JUMPDEST POP SWAP1 POP POP PUSH1 0x2 PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x1EF SWAP1 PUSH2 0x13BE JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP POP POP POP JUMP JUMPDEST PUSH2 0x201 PUSH2 0x773 JUMP JUMPDEST PUSH2 0x20A PUSH0 PUSH2 0x7FA JUMP JUMPDEST JUMP JUMPDEST PUSH0 DUP1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x23B PUSH2 0x773 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD SLOAD SUB PUSH2 0x292 JUMPI DUP1 PUSH1 0x40 MLOAD PUSH32 0xF55DEC0000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x289 SWAP2 SWAP1 PUSH2 0x1414 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP1 DUP3 ADD PUSH0 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD PUSH0 PUSH2 0x2B9 SWAP2 SWAP1 PUSH2 0x90D JUMP JUMPDEST PUSH1 0x2 DUP3 ADD PUSH0 PUSH2 0x2C8 SWAP2 SWAP1 PUSH2 0x90D JUMP JUMPDEST PUSH1 0x3 DUP3 ADD PUSH0 PUSH2 0x2D7 SWAP2 SWAP1 PUSH2 0x94A JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x60 PUSH0 PUSH1 0x1 PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SWAP1 POP PUSH0 DUP2 PUSH0 ADD SLOAD SUB PUSH2 0x33C JUMPI DUP5 PUSH1 0x40 MLOAD PUSH32 0xF55DEC0000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x333 SWAP2 SWAP1 PUSH2 0x1414 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 ADD DUP2 PUSH1 0x2 ADD DUP3 PUSH1 0x3 ADD DUP3 DUP1 SLOAD PUSH2 0x354 SWAP1 PUSH2 0x10F5 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 0x380 SWAP1 PUSH2 0x10F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3CB JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3A2 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3CB JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x3AE JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP3 POP DUP2 DUP1 SLOAD PUSH2 0x3DE SWAP1 PUSH2 0x10F5 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 0x40A SWAP1 PUSH2 0x10F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x455 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x42C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x455 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x438 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP DUP1 DUP1 SLOAD DUP1 PUSH1 0x20 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 DUP1 ISZERO PUSH2 0x4A5 JUMPI PUSH1 0x20 MUL DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 DUP1 DUP4 GT PUSH2 0x491 JUMPI JUMPDEST POP POP POP POP POP SWAP1 POP SWAP4 POP SWAP4 POP SWAP4 POP POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH1 0x2 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4D9 JUMPI PUSH2 0x4D8 PUSH2 0x9D3 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 0x512 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x4FF PUSH2 0x968 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x4F7 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST PUSH1 0x2 SLOAD DUP2 LT ISZERO PUSH2 0x6E7 JUMPI PUSH1 0x1 PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD DUP1 SLOAD PUSH2 0x556 SWAP1 PUSH2 0x10F5 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 0x582 SWAP1 PUSH2 0x10F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5CD JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x5A4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5CD JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x5B0 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD DUP1 SLOAD PUSH2 0x5E6 SWAP1 PUSH2 0x10F5 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 0x612 SWAP1 PUSH2 0x10F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x65D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x634 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x65D JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x640 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD DUP1 SLOAD DUP1 PUSH1 0x20 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 DUP1 ISZERO PUSH2 0x6B3 JUMPI PUSH1 0x20 MUL DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 DUP1 DUP4 GT PUSH2 0x69F JUMPI JUMPDEST POP POP POP POP POP DUP2 MSTORE POP POP DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x6CF JUMPI PUSH2 0x6CE PUSH2 0x142D JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH1 0x1 ADD SWAP2 POP POP PUSH2 0x517 JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH2 0x6F7 PUSH2 0x773 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x767 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1E4FBDF700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75E SWAP2 SWAP1 PUSH2 0xCD1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x770 DUP2 PUSH2 0x7FA JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x77B PUSH2 0x8BB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x799 PUSH2 0x20C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x7F8 JUMPI PUSH2 0x7BC PUSH2 0x8BB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x118CDAA700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7EF SWAP2 SWAP1 PUSH2 0xCD1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 DUP1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH0 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 PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x8FC JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x8FB JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x8E0 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x909 SWAP2 SWAP1 PUSH2 0x98F JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST POP DUP1 SLOAD PUSH2 0x919 SWAP1 PUSH2 0x10F5 JUMP JUMPDEST PUSH0 DUP3 SSTORE DUP1 PUSH1 0x1F LT PUSH2 0x92A JUMPI POP PUSH2 0x947 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x946 SWAP2 SWAP1 PUSH2 0x98F JUMP JUMPDEST JUMPDEST POP JUMP JUMPDEST POP DUP1 SLOAD PUSH0 DUP3 SSTORE SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x965 SWAP2 SWAP1 PUSH2 0x98F JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x60 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x9A6 JUMPI PUSH0 DUP2 PUSH0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x990 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0xA09 DUP3 PUSH2 0x9C3 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0xA28 JUMPI PUSH2 0xA27 PUSH2 0x9D3 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA3A PUSH2 0x9AA JUMP JUMPDEST SWAP1 POP PUSH2 0xA46 DUP3 DUP3 PUSH2 0xA00 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0xA65 JUMPI PUSH2 0xA64 PUSH2 0x9D3 JUMP JUMPDEST JUMPDEST PUSH2 0xA6E DUP3 PUSH2 0x9C3 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA9B PUSH2 0xA96 DUP5 PUSH2 0xA4B JUMP JUMPDEST PUSH2 0xA31 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0xAB7 JUMPI PUSH2 0xAB6 PUSH2 0x9BF JUMP JUMPDEST JUMPDEST PUSH2 0xAC2 DUP5 DUP3 DUP6 PUSH2 0xA7B JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xADE JUMPI PUSH2 0xADD PUSH2 0x9BB JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0xAEE DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0xA89 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0xB11 JUMPI PUSH2 0xB10 PUSH2 0x9D3 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB38 DUP2 PUSH2 0xB26 JUMP JUMPDEST DUP2 EQ PUSH2 0xB42 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB53 DUP2 PUSH2 0xB2F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xB6B PUSH2 0xB66 DUP5 PUSH2 0xAF7 JUMP JUMPDEST PUSH2 0xA31 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x20 DUP5 MUL DUP4 ADD DUP6 DUP2 GT ISZERO PUSH2 0xB8E JUMPI PUSH2 0xB8D PUSH2 0xB22 JUMP JUMPDEST JUMPDEST DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xBB7 JUMPI DUP1 PUSH2 0xBA3 DUP9 DUP3 PUSH2 0xB45 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xB90 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xBD5 JUMPI PUSH2 0xBD4 PUSH2 0x9BB JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0xBE5 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0xB59 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xC05 JUMPI PUSH2 0xC04 PUSH2 0x9B3 JUMP JUMPDEST JUMPDEST PUSH0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xC22 JUMPI PUSH2 0xC21 PUSH2 0x9B7 JUMP JUMPDEST JUMPDEST PUSH2 0xC2E DUP7 DUP3 DUP8 ADD PUSH2 0xACA JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xC4F JUMPI PUSH2 0xC4E PUSH2 0x9B7 JUMP JUMPDEST JUMPDEST PUSH2 0xC5B DUP7 DUP3 DUP8 ADD PUSH2 0xACA JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xC7C JUMPI PUSH2 0xC7B PUSH2 0x9B7 JUMP JUMPDEST JUMPDEST PUSH2 0xC88 DUP7 DUP3 DUP8 ADD PUSH2 0xBC1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xCBB DUP3 PUSH2 0xC92 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xCCB DUP2 PUSH2 0xCB1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCE4 PUSH0 DUP4 ADD DUP5 PUSH2 0xCC2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xCFF JUMPI PUSH2 0xCFE PUSH2 0x9B3 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xD0C DUP5 DUP3 DUP6 ADD PUSH2 0xB45 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 MCOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD47 DUP3 PUSH2 0xD15 JUMP JUMPDEST PUSH2 0xD51 DUP2 DUP6 PUSH2 0xD1F JUMP JUMPDEST SWAP4 POP PUSH2 0xD61 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xD2F JUMP JUMPDEST PUSH2 0xD6A DUP2 PUSH2 0x9C3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xDA7 DUP2 PUSH2 0xB26 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH2 0xDB8 DUP4 DUP4 PUSH2 0xD9E JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xDDA DUP3 PUSH2 0xD75 JUMP JUMPDEST PUSH2 0xDE4 DUP2 DUP6 PUSH2 0xD7F JUMP JUMPDEST SWAP4 POP PUSH2 0xDEF DUP4 PUSH2 0xD8F JUMP JUMPDEST DUP1 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xE1F JUMPI DUP2 MLOAD PUSH2 0xE06 DUP9 DUP3 PUSH2 0xDAD JUMP JUMPDEST SWAP8 POP PUSH2 0xE11 DUP4 PUSH2 0xDC4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xDF2 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xE44 DUP2 DUP7 PUSH2 0xD3D JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0xE58 DUP2 DUP6 PUSH2 0xD3D JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0xE6C DUP2 DUP5 PUSH2 0xDD0 JUMP JUMPDEST SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xEB9 DUP3 PUSH2 0xD15 JUMP JUMPDEST PUSH2 0xEC3 DUP2 DUP6 PUSH2 0xE9F JUMP JUMPDEST SWAP4 POP PUSH2 0xED3 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xD2F JUMP JUMPDEST PUSH2 0xEDC DUP2 PUSH2 0x9C3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xF01 DUP3 PUSH2 0xD75 JUMP JUMPDEST PUSH2 0xF0B DUP2 DUP6 PUSH2 0xEE7 JUMP JUMPDEST SWAP4 POP PUSH2 0xF16 DUP4 PUSH2 0xD8F JUMP JUMPDEST DUP1 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xF46 JUMPI DUP2 MLOAD PUSH2 0xF2D DUP9 DUP3 PUSH2 0xDAD JUMP JUMPDEST SWAP8 POP PUSH2 0xF38 DUP4 PUSH2 0xDC4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xF19 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP4 ADD PUSH0 DUP4 ADD MLOAD PUSH2 0xF68 PUSH0 DUP7 ADD DUP3 PUSH2 0xD9E JUMP JUMPDEST POP PUSH1 0x20 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x20 DUP7 ADD MSTORE PUSH2 0xF80 DUP3 DUP3 PUSH2 0xEAF JUMP JUMPDEST SWAP2 POP POP PUSH1 0x40 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x40 DUP7 ADD MSTORE PUSH2 0xF9A DUP3 DUP3 PUSH2 0xEAF JUMP JUMPDEST SWAP2 POP POP PUSH1 0x60 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x60 DUP7 ADD MSTORE PUSH2 0xFB4 DUP3 DUP3 PUSH2 0xEF7 JUMP JUMPDEST SWAP2 POP POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xFCC DUP4 DUP4 PUSH2 0xF53 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xFEA DUP3 PUSH2 0xE76 JUMP JUMPDEST PUSH2 0xFF4 DUP2 DUP6 PUSH2 0xE80 JUMP JUMPDEST SWAP4 POP DUP4 PUSH1 0x20 DUP3 MUL DUP6 ADD PUSH2 0x1006 DUP6 PUSH2 0xE90 JUMP JUMPDEST DUP1 PUSH0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x1041 JUMPI DUP5 DUP5 SUB DUP10 MSTORE DUP2 MLOAD PUSH2 0x1022 DUP6 DUP3 PUSH2 0xFC1 JUMP JUMPDEST SWAP5 POP PUSH2 0x102D DUP4 PUSH2 0xFD4 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP11 ADD SWAP10 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x1009 JUMP JUMPDEST POP DUP3 SWAP8 POP DUP8 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x106B DUP2 DUP5 PUSH2 0xFE0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x107C DUP2 PUSH2 0xCB1 JUMP JUMPDEST DUP2 EQ PUSH2 0x1086 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1097 DUP2 PUSH2 0x1073 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10B2 JUMPI PUSH2 0x10B1 PUSH2 0x9B3 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x10BF DUP5 DUP3 DUP6 ADD PUSH2 0x1089 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x110C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x111F JUMPI PUSH2 0x111E PUSH2 0x10C8 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH2 0x1181 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x1146 JUMP JUMPDEST PUSH2 0x118B DUP7 DUP4 PUSH2 0x1146 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x11C6 PUSH2 0x11C1 PUSH2 0x11BC DUP5 PUSH2 0xB26 JUMP JUMPDEST PUSH2 0x11A3 JUMP JUMPDEST PUSH2 0xB26 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x11DF DUP4 PUSH2 0x11AC JUMP JUMPDEST PUSH2 0x11F3 PUSH2 0x11EB DUP3 PUSH2 0x11CD JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x1152 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH2 0x1207 PUSH2 0x11FB JUMP JUMPDEST PUSH2 0x1212 DUP2 DUP5 DUP5 PUSH2 0x11D6 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1235 JUMPI PUSH2 0x122A PUSH0 DUP3 PUSH2 0x11FF JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x1218 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x127A JUMPI PUSH2 0x124B DUP2 PUSH2 0x1125 JUMP JUMPDEST PUSH2 0x1254 DUP5 PUSH2 0x1137 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x1263 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x1277 PUSH2 0x126F DUP6 PUSH2 0x1137 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x1217 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x129A PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x127F JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x12B2 DUP4 DUP4 PUSH2 0x128B JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x12CB DUP3 PUSH2 0xD15 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x12E4 JUMPI PUSH2 0x12E3 PUSH2 0x9D3 JUMP JUMPDEST JUMPDEST PUSH2 0x12EE DUP3 SLOAD PUSH2 0x10F5 JUMP JUMPDEST PUSH2 0x12F9 DUP3 DUP3 DUP6 PUSH2 0x1239 JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x132A JUMPI PUSH0 DUP5 ISZERO PUSH2 0x1318 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x1322 DUP6 DUP3 PUSH2 0x12A7 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x1389 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x1338 DUP7 PUSH2 0x1125 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x135F JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x133A JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x137C JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x1378 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x128B JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x13C8 DUP3 PUSH2 0xB26 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x13FA JUMPI PUSH2 0x13F9 PUSH2 0x1391 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x140E DUP2 PUSH2 0xB26 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1427 PUSH0 DUP4 ADD DUP5 PUSH2 0x1405 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 RETURNDATACOPY PUSH7 0x32BBB37313595A MUL CREATE2 MSIZE STATICCALL 0xAC 0xA8 LOG4 REVERT PUSH30 0x6C275D7503F85BFC5E1C2D24DBC64736F6C634300081A00330000000000 ",
"sourceMap": "173:1334:0:-:0;;;446:36;;;;;;;;;;468:10;1297:1:1;1273:26;;:12;:26;;;1269:95;;1350:1;1322:31;;;;;;;;;;;:::i;:::-;;;;;;;;1269:95;1373:32;1392:12;1373:18;;;:32;;:::i;:::-;1225:187;173:1334:0;;2912:187:1;2985:16;3004:6;;;;;;;;;;;2985:25;;3029:8;3020:6;;:17;;;;;;;;;;;;;;;;;;3083:8;3052:40;;3073:8;3052:40;;;;;;;;;;;;2975:124;2912:187;:::o;7:126:3:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;173:1334:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_checkOwner_276": {
"entryPoint": 1907,
"id": 276,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_351": {
"entryPoint": 2235,
"id": 351,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_338": {
"entryPoint": 2042,
"id": 338,
"parameterSlots": 1,
"returnSlots": 0
},
"@addContact_60": {
"entryPoint": 331,
"id": 60,
"parameterSlots": 3,
"returnSlots": 0
},
"@deleteContact_85": {
"entryPoint": 563,
"id": 85,
"parameterSlots": 1,
"returnSlots": 0
},
"@getAllContacts_165": {
"entryPoint": 1210,
"id": 165,
"parameterSlots": 0,
"returnSlots": 1
},
"@getContact_123": {
"entryPoint": 732,
"id": 123,
"parameterSlots": 1,
"returnSlots": 3
},
"@owner_259": {
"entryPoint": 524,
"id": 259,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_290": {
"entryPoint": 505,
"id": 290,
"parameterSlots": 0,
"returnSlots": 0
},
"@transferOwnership_318": {
"entryPoint": 1775,
"id": 318,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 2905,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 2697,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 4233,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 3009,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 2762,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 2885,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 4253,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 3054,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 3306,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encodeUpdatedPos_t_struct$_Contact_$14_memory_ptr_to_t_struct$_Contact_$14_memory_ptr": {
"entryPoint": 4033,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encodeUpdatedPos_t_uint256_to_t_uint256": {
"entryPoint": 3501,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 3266,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr_fromStack": {
"entryPoint": 4064,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 3831,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack": {
"entryPoint": 3536,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr": {
"entryPoint": 3759,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3389,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_struct$_Contact_$14_memory_ptr_to_t_struct$_Contact_$14_memory_ptr": {
"entryPoint": 3923,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256": {
"entryPoint": 3486,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 5125,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 3281,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
"entryPoint": 4179,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
"entryPoint": 3628,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 5140,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 2609,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 2474,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 2807,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 2635,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr": {
"entryPoint": 3728,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 3471,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 4389,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr": {
"entryPoint": 3702,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 3445,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 3349,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_nextElement_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr": {
"entryPoint": 4052,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_nextElement_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 3524,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr_fromStack": {
"entryPoint": 3712,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 3815,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack": {
"entryPoint": 3455,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr": {
"entryPoint": 3743,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 3359,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 4665,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_address": {
"entryPoint": 3249,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 3218,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 2854,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 4631,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 4524,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 4802,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 2683,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 3375,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 4407,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 4341,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 4775,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 2560,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 4515,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 5054,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 4747,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 5009,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 4296,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 5165,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 2515,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 4557,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 2491,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef": {
"entryPoint": 2850,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 2495,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 2487,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 2483,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 2499,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 4422,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 4735,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 4607,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 4434,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 4566,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 4211,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 2863,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 4603,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:21443:3",
"nodeType": "YulBlock",
"src": "0:21443:3",
"statements": [
{
"body": {
"nativeSrc": "47:35:3",
"nodeType": "YulBlock",
"src": "47:35:3",
"statements": [
{
"nativeSrc": "57:19:3",
"nodeType": "YulAssignment",
"src": "57:19:3",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "73:2:3",
"nodeType": "YulLiteral",
"src": "73:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "67:5:3",
"nodeType": "YulIdentifier",
"src": "67:5:3"
},
"nativeSrc": "67:9:3",
"nodeType": "YulFunctionCall",
"src": "67:9:3"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "57:6:3",
"nodeType": "YulIdentifier",
"src": "57:6:3"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "7:75:3",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "40:6:3",
"nodeType": "YulTypedName",
"src": "40:6:3",
"type": ""
}
],
"src": "7:75:3"
},
{
"body": {
"nativeSrc": "177:28:3",
"nodeType": "YulBlock",
"src": "177:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "194:1:3",
"nodeType": "YulLiteral",
"src": "194:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "197:1:3",
"nodeType": "YulLiteral",
"src": "197:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "187:6:3",
"nodeType": "YulIdentifier",
"src": "187:6:3"
},
"nativeSrc": "187:12:3",
"nodeType": "YulFunctionCall",
"src": "187:12:3"
},
"nativeSrc": "187:12:3",
"nodeType": "YulExpressionStatement",
"src": "187:12:3"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "88:117:3",
"nodeType": "YulFunctionDefinition",
"src": "88:117:3"
},
{
"body": {
"nativeSrc": "300:28:3",
"nodeType": "YulBlock",
"src": "300:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "317:1:3",
"nodeType": "YulLiteral",
"src": "317:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "320:1:3",
"nodeType": "YulLiteral",
"src": "320:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "310:6:3",
"nodeType": "YulIdentifier",
"src": "310:6:3"
},
"nativeSrc": "310:12:3",
"nodeType": "YulFunctionCall",
"src": "310:12:3"
},
"nativeSrc": "310:12:3",
"nodeType": "YulExpressionStatement",
"src": "310:12:3"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "211:117:3",
"nodeType": "YulFunctionDefinition",
"src": "211:117:3"
},
{
"body": {
"nativeSrc": "423:28:3",
"nodeType": "YulBlock",
"src": "423:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "440:1:3",
"nodeType": "YulLiteral",
"src": "440:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "443:1:3",
"nodeType": "YulLiteral",
"src": "443:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "433:6:3",
"nodeType": "YulIdentifier",
"src": "433:6:3"
},
"nativeSrc": "433:12:3",
"nodeType": "YulFunctionCall",
"src": "433:12:3"
},
"nativeSrc": "433:12:3",
"nodeType": "YulExpressionStatement",
"src": "433:12:3"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nativeSrc": "334:117:3",
"nodeType": "YulFunctionDefinition",
"src": "334:117:3"
},
{
"body": {
"nativeSrc": "546:28:3",
"nodeType": "YulBlock",
"src": "546:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "563:1:3",
"nodeType": "YulLiteral",
"src": "563:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "566:1:3",
"nodeType": "YulLiteral",
"src": "566:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "556:6:3",
"nodeType": "YulIdentifier",
"src": "556:6:3"
},
"nativeSrc": "556:12:3",
"nodeType": "YulFunctionCall",
"src": "556:12:3"
},
"nativeSrc": "556:12:3",
"nodeType": "YulExpressionStatement",
"src": "556:12:3"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nativeSrc": "457:117:3",
"nodeType": "YulFunctionDefinition",
"src": "457:117:3"
},
{
"body": {
"nativeSrc": "628:54:3",
"nodeType": "YulBlock",
"src": "628:54:3",
"statements": [
{
"nativeSrc": "638:38:3",
"nodeType": "YulAssignment",
"src": "638:38:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "656:5:3",
"nodeType": "YulIdentifier",
"src": "656:5:3"
},
{
"kind": "number",
"nativeSrc": "663:2:3",
"nodeType": "YulLiteral",
"src": "663:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "652:3:3",
"nodeType": "YulIdentifier",
"src": "652:3:3"
},
"nativeSrc": "652:14:3",
"nodeType": "YulFunctionCall",
"src": "652:14:3"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "672:2:3",
"nodeType": "YulLiteral",
"src": "672:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nativeSrc": "668:3:3",
"nodeType": "YulIdentifier",
"src": "668:3:3"
},
"nativeSrc": "668:7:3",
"nodeType": "YulFunctionCall",
"src": "668:7:3"
}
],
"functionName": {
"name": "and",
"nativeSrc": "648:3:3",
"nodeType": "YulIdentifier",
"src": "648:3:3"
},
"nativeSrc": "648:28:3",
"nodeType": "YulFunctionCall",
"src": "648:28:3"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "638:6:3",
"nodeType": "YulIdentifier",
"src": "638:6:3"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nativeSrc": "580:102:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "611:5:3",
"nodeType": "YulTypedName",
"src": "611:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "621:6:3",
"nodeType": "YulTypedName",
"src": "621:6:3",
"type": ""
}
],
"src": "580:102:3"
},
{
"body": {
"nativeSrc": "716:152:3",
"nodeType": "YulBlock",
"src": "716:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "733:1:3",
"nodeType": "YulLiteral",
"src": "733:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "736:77:3",
"nodeType": "YulLiteral",
"src": "736:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "726:6:3",
"nodeType": "YulIdentifier",
"src": "726:6:3"
},
"nativeSrc": "726:88:3",
"nodeType": "YulFunctionCall",
"src": "726:88:3"
},
"nativeSrc": "726:88:3",
"nodeType": "YulExpressionStatement",
"src": "726:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "830:1:3",
"nodeType": "YulLiteral",
"src": "830:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "833:4:3",
"nodeType": "YulLiteral",
"src": "833:4:3",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "823:6:3",
"nodeType": "YulIdentifier",
"src": "823:6:3"
},
"nativeSrc": "823:15:3",
"nodeType": "YulFunctionCall",
"src": "823:15:3"
},
"nativeSrc": "823:15:3",
"nodeType": "YulExpressionStatement",
"src": "823:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "854:1:3",
"nodeType": "YulLiteral",
"src": "854:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "857:4:3",
"nodeType": "YulLiteral",
"src": "857:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "847:6:3",
"nodeType": "YulIdentifier",
"src": "847:6:3"
},
"nativeSrc": "847:15:3",
"nodeType": "YulFunctionCall",
"src": "847:15:3"
},
"nativeSrc": "847:15:3",
"nodeType": "YulExpressionStatement",
"src": "847:15:3"
}
]
},
"name": "panic_error_0x41",
"nativeSrc": "688:180:3",
"nodeType": "YulFunctionDefinition",
"src": "688:180:3"
},
{
"body": {
"nativeSrc": "917:238:3",
"nodeType": "YulBlock",
"src": "917:238:3",
"statements": [
{
"nativeSrc": "927:58:3",
"nodeType": "YulVariableDeclaration",
"src": "927:58:3",
"value": {
"arguments": [
{
"name": "memPtr",
"nativeSrc": "949:6:3",
"nodeType": "YulIdentifier",
"src": "949:6:3"
},
{
"arguments": [
{
"name": "size",
"nativeSrc": "979:4:3",
"nodeType": "YulIdentifier",
"src": "979:4:3"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "957:21:3",
"nodeType": "YulIdentifier",
"src": "957:21:3"
},
"nativeSrc": "957:27:3",
"nodeType": "YulFunctionCall",
"src": "957:27:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "945:3:3",
"nodeType": "YulIdentifier",
"src": "945:3:3"
},
"nativeSrc": "945:40:3",
"nodeType": "YulFunctionCall",
"src": "945:40:3"
},
"variables": [
{
"name": "newFreePtr",
"nativeSrc": "931:10:3",
"nodeType": "YulTypedName",
"src": "931:10:3",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "1096:22:3",
"nodeType": "YulBlock",
"src": "1096:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "1098:16:3",
"nodeType": "YulIdentifier",
"src": "1098:16:3"
},
"nativeSrc": "1098:18:3",
"nodeType": "YulFunctionCall",
"src": "1098:18:3"
},
"nativeSrc": "1098:18:3",
"nodeType": "YulExpressionStatement",
"src": "1098:18:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nativeSrc": "1039:10:3",
"nodeType": "YulIdentifier",
"src": "1039:10:3"
},
{
"kind": "number",
"nativeSrc": "1051:18:3",
"nodeType": "YulLiteral",
"src": "1051:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "1036:2:3",
"nodeType": "YulIdentifier",
"src": "1036:2:3"
},
"nativeSrc": "1036:34:3",
"nodeType": "YulFunctionCall",
"src": "1036:34:3"
},
{
"arguments": [
{
"name": "newFreePtr",
"nativeSrc": "1075:10:3",
"nodeType": "YulIdentifier",
"src": "1075:10:3"
},
{
"name": "memPtr",
"nativeSrc": "1087:6:3",
"nodeType": "YulIdentifier",
"src": "1087:6:3"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "1072:2:3",
"nodeType": "YulIdentifier",
"src": "1072:2:3"
},
"nativeSrc": "1072:22:3",
"nodeType": "YulFunctionCall",
"src": "1072:22:3"
}
],
"functionName": {
"name": "or",
"nativeSrc": "1033:2:3",
"nodeType": "YulIdentifier",
"src": "1033:2:3"
},
"nativeSrc": "1033:62:3",
"nodeType": "YulFunctionCall",
"src": "1033:62:3"
},
"nativeSrc": "1030:88:3",
"nodeType": "YulIf",
"src": "1030:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1134:2:3",
"nodeType": "YulLiteral",
"src": "1134:2:3",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nativeSrc": "1138:10:3",
"nodeType": "YulIdentifier",
"src": "1138:10:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1127:6:3",
"nodeType": "YulIdentifier",
"src": "1127:6:3"
},
"nativeSrc": "1127:22:3",
"nodeType": "YulFunctionCall",
"src": "1127:22:3"
},
"nativeSrc": "1127:22:3",
"nodeType": "YulExpressionStatement",
"src": "1127:22:3"
}
]
},
"name": "finalize_allocation",
"nativeSrc": "874:281:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "903:6:3",
"nodeType": "YulTypedName",
"src": "903:6:3",
"type": ""
},
{
"name": "size",
"nativeSrc": "911:4:3",
"nodeType": "YulTypedName",
"src": "911:4:3",
"type": ""
}
],
"src": "874:281:3"
},
{
"body": {
"nativeSrc": "1202:88:3",
"nodeType": "YulBlock",
"src": "1202:88:3",
"statements": [
{
"nativeSrc": "1212:30:3",
"nodeType": "YulAssignment",
"src": "1212:30:3",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nativeSrc": "1222:18:3",
"nodeType": "YulIdentifier",
"src": "1222:18:3"
},
"nativeSrc": "1222:20:3",
"nodeType": "YulFunctionCall",
"src": "1222:20:3"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "1212:6:3",
"nodeType": "YulIdentifier",
"src": "1212:6:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nativeSrc": "1271:6:3",
"nodeType": "YulIdentifier",
"src": "1271:6:3"
},
{
"name": "size",
"nativeSrc": "1279:4:3",
"nodeType": "YulIdentifier",
"src": "1279:4:3"
}
],
"functionName": {
"name": "finalize_allocation",
"nativeSrc": "1251:19:3",
"nodeType": "YulIdentifier",
"src": "1251:19:3"
},
"nativeSrc": "1251:33:3",
"nodeType": "YulFunctionCall",
"src": "1251:33:3"
},
"nativeSrc": "1251:33:3",
"nodeType": "YulExpressionStatement",
"src": "1251:33:3"
}
]
},
"name": "allocate_memory",
"nativeSrc": "1161:129:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nativeSrc": "1186:4:3",
"nodeType": "YulTypedName",
"src": "1186:4:3",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "1195:6:3",
"nodeType": "YulTypedName",
"src": "1195:6:3",
"type": ""
}
],
"src": "1161:129:3"
},
{
"body": {
"nativeSrc": "1363:241:3",
"nodeType": "YulBlock",
"src": "1363:241:3",
"statements": [
{
"body": {
"nativeSrc": "1468:22:3",
"nodeType": "YulBlock",
"src": "1468:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "1470:16:3",
"nodeType": "YulIdentifier",
"src": "1470:16:3"
},
"nativeSrc": "1470:18:3",
"nodeType": "YulFunctionCall",
"src": "1470:18:3"
},
"nativeSrc": "1470:18:3",
"nodeType": "YulExpressionStatement",
"src": "1470:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nativeSrc": "1440:6:3",
"nodeType": "YulIdentifier",
"src": "1440:6:3"
},
{
"kind": "number",
"nativeSrc": "1448:18:3",
"nodeType": "YulLiteral",
"src": "1448:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "1437:2:3",
"nodeType": "YulIdentifier",
"src": "1437:2:3"
},
"nativeSrc": "1437:30:3",
"nodeType": "YulFunctionCall",
"src": "1437:30:3"
},
"nativeSrc": "1434:56:3",
"nodeType": "YulIf",
"src": "1434:56:3"
},
{
"nativeSrc": "1500:37:3",
"nodeType": "YulAssignment",
"src": "1500:37:3",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "1530:6:3",
"nodeType": "YulIdentifier",
"src": "1530:6:3"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "1508:21:3",
"nodeType": "YulIdentifier",
"src": "1508:21:3"
},
"nativeSrc": "1508:29:3",
"nodeType": "YulFunctionCall",
"src": "1508:29:3"
},
"variableNames": [
{
"name": "size",
"nativeSrc": "1500:4:3",
"nodeType": "YulIdentifier",
"src": "1500:4:3"
}
]
},
{
"nativeSrc": "1574:23:3",
"nodeType": "YulAssignment",
"src": "1574:23:3",
"value": {
"arguments": [
{
"name": "size",
"nativeSrc": "1586:4:3",
"nodeType": "YulIdentifier",
"src": "1586:4:3"
},
{
"kind": "number",
"nativeSrc": "1592:4:3",
"nodeType": "YulLiteral",
"src": "1592:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1582:3:3",
"nodeType": "YulIdentifier",
"src": "1582:3:3"
},
"nativeSrc": "1582:15:3",
"nodeType": "YulFunctionCall",
"src": "1582:15:3"
},
"variableNames": [
{
"name": "size",
"nativeSrc": "1574:4:3",
"nodeType": "YulIdentifier",
"src": "1574:4:3"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nativeSrc": "1296:308:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nativeSrc": "1347:6:3",
"nodeType": "YulTypedName",
"src": "1347:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nativeSrc": "1358:4:3",
"nodeType": "YulTypedName",
"src": "1358:4:3",
"type": ""
}
],
"src": "1296:308:3"
},
{
"body": {
"nativeSrc": "1674:84:3",
"nodeType": "YulBlock",
"src": "1674:84:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nativeSrc": "1698:3:3",
"nodeType": "YulIdentifier",
"src": "1698:3:3"
},
{
"name": "src",
"nativeSrc": "1703:3:3",
"nodeType": "YulIdentifier",
"src": "1703:3:3"
},
{
"name": "length",
"nativeSrc": "1708:6:3",
"nodeType": "YulIdentifier",
"src": "1708:6:3"
}
],
"functionName": {
"name": "calldatacopy",
"nativeSrc": "1685:12:3",
"nodeType": "YulIdentifier",
"src": "1685:12:3"
},
"nativeSrc": "1685:30:3",
"nodeType": "YulFunctionCall",
"src": "1685:30:3"
},
"nativeSrc": "1685:30:3",
"nodeType": "YulExpressionStatement",
"src": "1685:30:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "1735:3:3",
"nodeType": "YulIdentifier",
"src": "1735:3:3"
},
{
"name": "length",
"nativeSrc": "1740:6:3",
"nodeType": "YulIdentifier",
"src": "1740:6:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1731:3:3",
"nodeType": "YulIdentifier",
"src": "1731:3:3"
},
"nativeSrc": "1731:16:3",
"nodeType": "YulFunctionCall",
"src": "1731:16:3"
},
{
"kind": "number",
"nativeSrc": "1749:1:3",
"nodeType": "YulLiteral",
"src": "1749:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1724:6:3",
"nodeType": "YulIdentifier",
"src": "1724:6:3"
},
"nativeSrc": "1724:27:3",
"nodeType": "YulFunctionCall",
"src": "1724:27:3"
},
"nativeSrc": "1724:27:3",
"nodeType": "YulExpressionStatement",
"src": "1724:27:3"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nativeSrc": "1610:148:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "1656:3:3",
"nodeType": "YulTypedName",
"src": "1656:3:3",
"type": ""
},
{
"name": "dst",
"nativeSrc": "1661:3:3",
"nodeType": "YulTypedName",
"src": "1661:3:3",
"type": ""
},
{
"name": "length",
"nativeSrc": "1666:6:3",
"nodeType": "YulTypedName",
"src": "1666:6:3",
"type": ""
}
],
"src": "1610:148:3"
},
{
"body": {
"nativeSrc": "1848:341:3",
"nodeType": "YulBlock",
"src": "1848:341:3",
"statements": [
{
"nativeSrc": "1858:75:3",
"nodeType": "YulAssignment",
"src": "1858:75:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nativeSrc": "1925:6:3",
"nodeType": "YulIdentifier",
"src": "1925:6:3"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nativeSrc": "1883:41:3",
"nodeType": "YulIdentifier",
"src": "1883:41:3"
},
"nativeSrc": "1883:49:3",
"nodeType": "YulFunctionCall",
"src": "1883:49:3"
}
],
"functionName": {
"name": "allocate_memory",
"nativeSrc": "1867:15:3",
"nodeType": "YulIdentifier",
"src": "1867:15:3"
},
"nativeSrc": "1867:66:3",
"nodeType": "YulFunctionCall",
"src": "1867:66:3"
},
"variableNames": [
{
"name": "array",
"nativeSrc": "1858:5:3",
"nodeType": "YulIdentifier",
"src": "1858:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nativeSrc": "1949:5:3",
"nodeType": "YulIdentifier",
"src": "1949:5:3"
},
{
"name": "length",
"nativeSrc": "1956:6:3",
"nodeType": "YulIdentifier",
"src": "1956:6:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1942:6:3",
"nodeType": "YulIdentifier",
"src": "1942:6:3"
},
"nativeSrc": "1942:21:3",
"nodeType": "YulFunctionCall",
"src": "1942:21:3"
},
"nativeSrc": "1942:21:3",
"nodeType": "YulExpressionStatement",
"src": "1942:21:3"
},
{
"nativeSrc": "1972:27:3",
"nodeType": "YulVariableDeclaration",
"src": "1972:27:3",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "1987:5:3",
"nodeType": "YulIdentifier",
"src": "1987:5:3"
},
{
"kind": "number",
"nativeSrc": "1994:4:3",
"nodeType": "YulLiteral",
"src": "1994:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1983:3:3",
"nodeType": "YulIdentifier",
"src": "1983:3:3"
},
"nativeSrc": "1983:16:3",
"nodeType": "YulFunctionCall",
"src": "1983:16:3"
},
"variables": [
{
"name": "dst",
"nativeSrc": "1976:3:3",
"nodeType": "YulTypedName",
"src": "1976:3:3",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "2037:83:3",
"nodeType": "YulBlock",
"src": "2037:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nativeSrc": "2039:77:3",
"nodeType": "YulIdentifier",
"src": "2039:77:3"
},
"nativeSrc": "2039:79:3",
"nodeType": "YulFunctionCall",
"src": "2039:79:3"
},
"nativeSrc": "2039:79:3",
"nodeType": "YulExpressionStatement",
"src": "2039:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "2018:3:3",
"nodeType": "YulIdentifier",
"src": "2018:3:3"
},
{
"name": "length",
"nativeSrc": "2023:6:3",
"nodeType": "YulIdentifier",
"src": "2023:6:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2014:3:3",
"nodeType": "YulIdentifier",
"src": "2014:3:3"
},
"nativeSrc": "2014:16:3",
"nodeType": "YulFunctionCall",
"src": "2014:16:3"
},
{
"name": "end",
"nativeSrc": "2032:3:3",
"nodeType": "YulIdentifier",
"src": "2032:3:3"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "2011:2:3",
"nodeType": "YulIdentifier",
"src": "2011:2:3"
},
"nativeSrc": "2011:25:3",
"nodeType": "YulFunctionCall",
"src": "2011:25:3"
},
"nativeSrc": "2008:112:3",
"nodeType": "YulIf",
"src": "2008:112:3"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nativeSrc": "2166:3:3",
"nodeType": "YulIdentifier",
"src": "2166:3:3"
},
{
"name": "dst",
"nativeSrc": "2171:3:3",
"nodeType": "YulIdentifier",
"src": "2171:3:3"
},
{
"name": "length",
"nativeSrc": "2176:6:3",
"nodeType": "YulIdentifier",
"src": "2176:6:3"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nativeSrc": "2129:36:3",
"nodeType": "YulIdentifier",
"src": "2129:36:3"
},
"nativeSrc": "2129:54:3",
"nodeType": "YulFunctionCall",
"src": "2129:54:3"
},
"nativeSrc": "2129:54:3",
"nodeType": "YulExpressionStatement",
"src": "2129:54:3"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nativeSrc": "1764:425:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "1821:3:3",
"nodeType": "YulTypedName",
"src": "1821:3:3",
"type": ""
},
{
"name": "length",
"nativeSrc": "1826:6:3",
"nodeType": "YulTypedName",
"src": "1826:6:3",
"type": ""
},
{
"name": "end",
"nativeSrc": "1834:3:3",
"nodeType": "YulTypedName",
"src": "1834:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nativeSrc": "1842:5:3",
"nodeType": "YulTypedName",
"src": "1842:5:3",
"type": ""
}
],
"src": "1764:425:3"
},
{
"body": {
"nativeSrc": "2271:278:3",
"nodeType": "YulBlock",
"src": "2271:278:3",
"statements": [
{
"body": {
"nativeSrc": "2320:83:3",
"nodeType": "YulBlock",
"src": "2320:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nativeSrc": "2322:77:3",
"nodeType": "YulIdentifier",
"src": "2322:77:3"
},
"nativeSrc": "2322:79:3",
"nodeType": "YulFunctionCall",
"src": "2322:79:3"
},
"nativeSrc": "2322:79:3",
"nodeType": "YulExpressionStatement",
"src": "2322:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nativeSrc": "2299:6:3",
"nodeType": "YulIdentifier",
"src": "2299:6:3"
},
{
"kind": "number",
"nativeSrc": "2307:4:3",
"nodeType": "YulLiteral",
"src": "2307:4:3",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2295:3:3",
"nodeType": "YulIdentifier",
"src": "2295:3:3"
},
"nativeSrc": "2295:17:3",
"nodeType": "YulFunctionCall",
"src": "2295:17:3"
},
{
"name": "end",
"nativeSrc": "2314:3:3",
"nodeType": "YulIdentifier",
"src": "2314:3:3"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "2291:3:3",
"nodeType": "YulIdentifier",
"src": "2291:3:3"
},
"nativeSrc": "2291:27:3",
"nodeType": "YulFunctionCall",
"src": "2291:27:3"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "2284:6:3",
"nodeType": "YulIdentifier",
"src": "2284:6:3"
},
"nativeSrc": "2284:35:3",
"nodeType": "YulFunctionCall",
"src": "2284:35:3"
},
"nativeSrc": "2281:122:3",
"nodeType": "YulIf",
"src": "2281:122:3"
},
{
"nativeSrc": "2412:34:3",
"nodeType": "YulVariableDeclaration",
"src": "2412:34:3",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "2439:6:3",
"nodeType": "YulIdentifier",
"src": "2439:6:3"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "2426:12:3",
"nodeType": "YulIdentifier",
"src": "2426:12:3"
},
"nativeSrc": "2426:20:3",
"nodeType": "YulFunctionCall",
"src": "2426:20:3"
},
"variables": [
{
"name": "length",
"nativeSrc": "2416:6:3",
"nodeType": "YulTypedName",
"src": "2416:6:3",
"type": ""
}
]
},
{
"nativeSrc": "2455:88:3",
"nodeType": "YulAssignment",
"src": "2455:88:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nativeSrc": "2516:6:3",
"nodeType": "YulIdentifier",
"src": "2516:6:3"
},
{
"kind": "number",
"nativeSrc": "2524:4:3",
"nodeType": "YulLiteral",
"src": "2524:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2512:3:3",
"nodeType": "YulIdentifier",
"src": "2512:3:3"
},
"nativeSrc": "2512:17:3",
"nodeType": "YulFunctionCall",
"src": "2512:17:3"
},
{
"name": "length",
"nativeSrc": "2531:6:3",
"nodeType": "YulIdentifier",
"src": "2531:6:3"
},
{
"name": "end",
"nativeSrc": "2539:3:3",
"nodeType": "YulIdentifier",
"src": "2539:3:3"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nativeSrc": "2464:47:3",
"nodeType": "YulIdentifier",
"src": "2464:47:3"
},
"nativeSrc": "2464:79:3",
"nodeType": "YulFunctionCall",
"src": "2464:79:3"
},
"variableNames": [
{
"name": "array",
"nativeSrc": "2455:5:3",
"nodeType": "YulIdentifier",
"src": "2455:5:3"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nativeSrc": "2209:340:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "2249:6:3",
"nodeType": "YulTypedName",
"src": "2249:6:3",
"type": ""
},
{
"name": "end",
"nativeSrc": "2257:3:3",
"nodeType": "YulTypedName",
"src": "2257:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nativeSrc": "2265:5:3",
"nodeType": "YulTypedName",
"src": "2265:5:3",
"type": ""
}
],
"src": "2209:340:3"
},
{
"body": {
"nativeSrc": "2637:229:3",
"nodeType": "YulBlock",
"src": "2637:229:3",
"statements": [
{
"body": {
"nativeSrc": "2742:22:3",
"nodeType": "YulBlock",
"src": "2742:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "2744:16:3",
"nodeType": "YulIdentifier",
"src": "2744:16:3"
},
"nativeSrc": "2744:18:3",
"nodeType": "YulFunctionCall",
"src": "2744:18:3"
},
"nativeSrc": "2744:18:3",
"nodeType": "YulExpressionStatement",
"src": "2744:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nativeSrc": "2714:6:3",
"nodeType": "YulIdentifier",
"src": "2714:6:3"
},
{
"kind": "number",
"nativeSrc": "2722:18:3",
"nodeType": "YulLiteral",
"src": "2722:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "2711:2:3",
"nodeType": "YulIdentifier",
"src": "2711:2:3"
},
"nativeSrc": "2711:30:3",
"nodeType": "YulFunctionCall",
"src": "2711:30:3"
},
"nativeSrc": "2708:56:3",
"nodeType": "YulIf",
"src": "2708:56:3"
},
{
"nativeSrc": "2774:25:3",
"nodeType": "YulAssignment",
"src": "2774:25:3",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "2786:6:3",
"nodeType": "YulIdentifier",
"src": "2786:6:3"
},
{
"kind": "number",
"nativeSrc": "2794:4:3",
"nodeType": "YulLiteral",
"src": "2794:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "2782:3:3",
"nodeType": "YulIdentifier",
"src": "2782:3:3"
},
"nativeSrc": "2782:17:3",
"nodeType": "YulFunctionCall",
"src": "2782:17:3"
},
"variableNames": [
{
"name": "size",
"nativeSrc": "2774:4:3",
"nodeType": "YulIdentifier",
"src": "2774:4:3"
}
]
},
{
"nativeSrc": "2836:23:3",
"nodeType": "YulAssignment",
"src": "2836:23:3",
"value": {
"arguments": [
{
"name": "size",
"nativeSrc": "2848:4:3",
"nodeType": "YulIdentifier",
"src": "2848:4:3"
},
{
"kind": "number",
"nativeSrc": "2854:4:3",
"nodeType": "YulLiteral",
"src": "2854:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2844:3:3",
"nodeType": "YulIdentifier",
"src": "2844:3:3"
},
"nativeSrc": "2844:15:3",
"nodeType": "YulFunctionCall",
"src": "2844:15:3"
},
"variableNames": [
{
"name": "size",
"nativeSrc": "2836:4:3",
"nodeType": "YulIdentifier",
"src": "2836:4:3"
}
]
}
]
},
"name": "array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "2555:311:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nativeSrc": "2621:6:3",
"nodeType": "YulTypedName",
"src": "2621:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nativeSrc": "2632:4:3",
"nodeType": "YulTypedName",
"src": "2632:4:3",
"type": ""
}
],
"src": "2555:311:3"
},
{
"body": {
"nativeSrc": "2961:28:3",
"nodeType": "YulBlock",
"src": "2961:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "2978:1:3",
"nodeType": "YulLiteral",
"src": "2978:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "2981:1:3",
"nodeType": "YulLiteral",
"src": "2981:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "2971:6:3",
"nodeType": "YulIdentifier",
"src": "2971:6:3"
},
"nativeSrc": "2971:12:3",
"nodeType": "YulFunctionCall",
"src": "2971:12:3"
},
"nativeSrc": "2971:12:3",
"nodeType": "YulExpressionStatement",
"src": "2971:12:3"
}
]
},
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nativeSrc": "2872:117:3",
"nodeType": "YulFunctionDefinition",
"src": "2872:117:3"
},
{
"body": {
"nativeSrc": "3040:32:3",
"nodeType": "YulBlock",
"src": "3040:32:3",
"statements": [
{
"nativeSrc": "3050:16:3",
"nodeType": "YulAssignment",
"src": "3050:16:3",
"value": {
"name": "value",
"nativeSrc": "3061:5:3",
"nodeType": "YulIdentifier",
"src": "3061:5:3"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "3050:7:3",
"nodeType": "YulIdentifier",
"src": "3050:7:3"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "2995:77:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "3022:5:3",
"nodeType": "YulTypedName",
"src": "3022:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "3032:7:3",
"nodeType": "YulTypedName",
"src": "3032:7:3",
"type": ""
}
],
"src": "2995:77:3"
},
{
"body": {
"nativeSrc": "3121:79:3",
"nodeType": "YulBlock",
"src": "3121:79:3",
"statements": [
{
"body": {
"nativeSrc": "3178:16:3",
"nodeType": "YulBlock",
"src": "3178:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "3187:1:3",
"nodeType": "YulLiteral",
"src": "3187:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "3190:1:3",
"nodeType": "YulLiteral",
"src": "3190:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "3180:6:3",
"nodeType": "YulIdentifier",
"src": "3180:6:3"
},
"nativeSrc": "3180:12:3",
"nodeType": "YulFunctionCall",
"src": "3180:12:3"
},
"nativeSrc": "3180:12:3",
"nodeType": "YulExpressionStatement",
"src": "3180:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "3144:5:3",
"nodeType": "YulIdentifier",
"src": "3144:5:3"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "3169:5:3",
"nodeType": "YulIdentifier",
"src": "3169:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "3151:17:3",
"nodeType": "YulIdentifier",
"src": "3151:17:3"
},
"nativeSrc": "3151:24:3",
"nodeType": "YulFunctionCall",
"src": "3151:24:3"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "3141:2:3",
"nodeType": "YulIdentifier",
"src": "3141:2:3"
},
"nativeSrc": "3141:35:3",
"nodeType": "YulFunctionCall",
"src": "3141:35:3"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "3134:6:3",
"nodeType": "YulIdentifier",
"src": "3134:6:3"
},
"nativeSrc": "3134:43:3",
"nodeType": "YulFunctionCall",
"src": "3134:43:3"
},
"nativeSrc": "3131:63:3",
"nodeType": "YulIf",
"src": "3131:63:3"
}
]
},
"name": "validator_revert_t_uint256",
"nativeSrc": "3078:122:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "3114:5:3",
"nodeType": "YulTypedName",
"src": "3114:5:3",
"type": ""
}
],
"src": "3078:122:3"
},
{
"body": {
"nativeSrc": "3258:87:3",
"nodeType": "YulBlock",
"src": "3258:87:3",
"statements": [
{
"nativeSrc": "3268:29:3",
"nodeType": "YulAssignment",
"src": "3268:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "3290:6:3",
"nodeType": "YulIdentifier",
"src": "3290:6:3"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "3277:12:3",
"nodeType": "YulIdentifier",
"src": "3277:12:3"
},
"nativeSrc": "3277:20:3",
"nodeType": "YulFunctionCall",
"src": "3277:20:3"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "3268:5:3",
"nodeType": "YulIdentifier",
"src": "3268:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "3333:5:3",
"nodeType": "YulIdentifier",
"src": "3333:5:3"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nativeSrc": "3306:26:3",
"nodeType": "YulIdentifier",
"src": "3306:26:3"
},
"nativeSrc": "3306:33:3",
"nodeType": "YulFunctionCall",
"src": "3306:33:3"
},
"nativeSrc": "3306:33:3",
"nodeType": "YulExpressionStatement",
"src": "3306:33:3"
}
]
},
"name": "abi_decode_t_uint256",
"nativeSrc": "3206:139:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "3236:6:3",
"nodeType": "YulTypedName",
"src": "3236:6:3",
"type": ""
},
{
"name": "end",
"nativeSrc": "3244:3:3",
"nodeType": "YulTypedName",
"src": "3244:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "3252:5:3",
"nodeType": "YulTypedName",
"src": "3252:5:3",
"type": ""
}
],
"src": "3206:139:3"
},
{
"body": {
"nativeSrc": "3470:608:3",
"nodeType": "YulBlock",
"src": "3470:608:3",
"statements": [
{
"nativeSrc": "3480:90:3",
"nodeType": "YulAssignment",
"src": "3480:90:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nativeSrc": "3562:6:3",
"nodeType": "YulIdentifier",
"src": "3562:6:3"
}
],
"functionName": {
"name": "array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "3505:56:3",
"nodeType": "YulIdentifier",
"src": "3505:56:3"
},
"nativeSrc": "3505:64:3",
"nodeType": "YulFunctionCall",
"src": "3505:64:3"
}
],
"functionName": {
"name": "allocate_memory",
"nativeSrc": "3489:15:3",
"nodeType": "YulIdentifier",
"src": "3489:15:3"
},
"nativeSrc": "3489:81:3",
"nodeType": "YulFunctionCall",
"src": "3489:81:3"
},
"variableNames": [
{
"name": "array",
"nativeSrc": "3480:5:3",
"nodeType": "YulIdentifier",
"src": "3480:5:3"
}
]
},
{
"nativeSrc": "3579:16:3",
"nodeType": "YulVariableDeclaration",
"src": "3579:16:3",
"value": {
"name": "array",
"nativeSrc": "3590:5:3",
"nodeType": "YulIdentifier",
"src": "3590:5:3"
},
"variables": [
{
"name": "dst",
"nativeSrc": "3583:3:3",
"nodeType": "YulTypedName",
"src": "3583:3:3",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nativeSrc": "3612:5:3",
"nodeType": "YulIdentifier",
"src": "3612:5:3"
},
{
"name": "length",
"nativeSrc": "3619:6:3",
"nodeType": "YulIdentifier",
"src": "3619:6:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3605:6:3",
"nodeType": "YulIdentifier",
"src": "3605:6:3"
},
"nativeSrc": "3605:21:3",
"nodeType": "YulFunctionCall",
"src": "3605:21:3"
},
"nativeSrc": "3605:21:3",
"nodeType": "YulExpressionStatement",
"src": "3605:21:3"
},
{
"nativeSrc": "3635:23:3",
"nodeType": "YulAssignment",
"src": "3635:23:3",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "3646:5:3",
"nodeType": "YulIdentifier",
"src": "3646:5:3"
},
{
"kind": "number",
"nativeSrc": "3653:4:3",
"nodeType": "YulLiteral",
"src": "3653:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3642:3:3",
"nodeType": "YulIdentifier",
"src": "3642:3:3"
},
"nativeSrc": "3642:16:3",
"nodeType": "YulFunctionCall",
"src": "3642:16:3"
},
"variableNames": [
{
"name": "dst",
"nativeSrc": "3635:3:3",
"nodeType": "YulIdentifier",
"src": "3635:3:3"
}
]
},
{
"nativeSrc": "3668:44:3",
"nodeType": "YulVariableDeclaration",
"src": "3668:44:3",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "3686:6:3",
"nodeType": "YulIdentifier",
"src": "3686:6:3"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "3698:6:3",
"nodeType": "YulIdentifier",
"src": "3698:6:3"
},
{
"kind": "number",
"nativeSrc": "3706:4:3",
"nodeType": "YulLiteral",
"src": "3706:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "3694:3:3",
"nodeType": "YulIdentifier",
"src": "3694:3:3"
},
"nativeSrc": "3694:17:3",
"nodeType": "YulFunctionCall",
"src": "3694:17:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3682:3:3",
"nodeType": "YulIdentifier",
"src": "3682:3:3"
},
"nativeSrc": "3682:30:3",
"nodeType": "YulFunctionCall",
"src": "3682:30:3"
},
"variables": [
{
"name": "srcEnd",
"nativeSrc": "3672:6:3",
"nodeType": "YulTypedName",
"src": "3672:6:3",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "3740:103:3",
"nodeType": "YulBlock",
"src": "3740:103:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nativeSrc": "3754:77:3",
"nodeType": "YulIdentifier",
"src": "3754:77:3"
},
"nativeSrc": "3754:79:3",
"nodeType": "YulFunctionCall",
"src": "3754:79:3"
},
"nativeSrc": "3754:79:3",
"nodeType": "YulExpressionStatement",
"src": "3754:79:3"
}
]
},
"condition": {
"arguments": [
{
"name": "srcEnd",
"nativeSrc": "3727:6:3",
"nodeType": "YulIdentifier",
"src": "3727:6:3"
},
{
"name": "end",
"nativeSrc": "3735:3:3",
"nodeType": "YulIdentifier",
"src": "3735:3:3"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "3724:2:3",
"nodeType": "YulIdentifier",
"src": "3724:2:3"
},
"nativeSrc": "3724:15:3",
"nodeType": "YulFunctionCall",
"src": "3724:15:3"
},
"nativeSrc": "3721:122:3",
"nodeType": "YulIf",
"src": "3721:122:3"
},
{
"body": {
"nativeSrc": "3928:144:3",
"nodeType": "YulBlock",
"src": "3928:144:3",
"statements": [
{
"nativeSrc": "3943:21:3",
"nodeType": "YulVariableDeclaration",
"src": "3943:21:3",
"value": {
"name": "src",
"nativeSrc": "3961:3:3",
"nodeType": "YulIdentifier",
"src": "3961:3:3"
},
"variables": [
{
"name": "elementPos",
"nativeSrc": "3947:10:3",
"nodeType": "YulTypedName",
"src": "3947:10:3",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dst",
"nativeSrc": "3985:3:3",
"nodeType": "YulIdentifier",
"src": "3985:3:3"
},
{
"arguments": [
{
"name": "elementPos",
"nativeSrc": "4011:10:3",
"nodeType": "YulIdentifier",
"src": "4011:10:3"
},
{
"name": "end",
"nativeSrc": "4023:3:3",
"nodeType": "YulIdentifier",
"src": "4023:3:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "3990:20:3",
"nodeType": "YulIdentifier",
"src": "3990:20:3"
},
"nativeSrc": "3990:37:3",
"nodeType": "YulFunctionCall",
"src": "3990:37:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3978:6:3",
"nodeType": "YulIdentifier",
"src": "3978:6:3"
},
"nativeSrc": "3978:50:3",
"nodeType": "YulFunctionCall",
"src": "3978:50:3"
},
"nativeSrc": "3978:50:3",
"nodeType": "YulExpressionStatement",
"src": "3978:50:3"
},
{
"nativeSrc": "4041:21:3",
"nodeType": "YulAssignment",
"src": "4041:21:3",
"value": {
"arguments": [
{
"name": "dst",
"nativeSrc": "4052:3:3",
"nodeType": "YulIdentifier",
"src": "4052:3:3"
},
{
"kind": "number",
"nativeSrc": "4057:4:3",
"nodeType": "YulLiteral",
"src": "4057:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4048:3:3",
"nodeType": "YulIdentifier",
"src": "4048:3:3"
},
"nativeSrc": "4048:14:3",
"nodeType": "YulFunctionCall",
"src": "4048:14:3"
},
"variableNames": [
{
"name": "dst",
"nativeSrc": "4041:3:3",
"nodeType": "YulIdentifier",
"src": "4041:3:3"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "src",
"nativeSrc": "3881:3:3",
"nodeType": "YulIdentifier",
"src": "3881:3:3"
},
{
"name": "srcEnd",
"nativeSrc": "3886:6:3",
"nodeType": "YulIdentifier",
"src": "3886:6:3"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "3878:2:3",
"nodeType": "YulIdentifier",
"src": "3878:2:3"
},
"nativeSrc": "3878:15:3",
"nodeType": "YulFunctionCall",
"src": "3878:15:3"
},
"nativeSrc": "3852:220:3",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "3894:25:3",
"nodeType": "YulBlock",
"src": "3894:25:3",
"statements": [
{
"nativeSrc": "3896:21:3",
"nodeType": "YulAssignment",
"src": "3896:21:3",
"value": {
"arguments": [
{
"name": "src",
"nativeSrc": "3907:3:3",
"nodeType": "YulIdentifier",
"src": "3907:3:3"
},
{
"kind": "number",
"nativeSrc": "3912:4:3",
"nodeType": "YulLiteral",
"src": "3912:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3903:3:3",
"nodeType": "YulIdentifier",
"src": "3903:3:3"
},
"nativeSrc": "3903:14:3",
"nodeType": "YulFunctionCall",
"src": "3903:14:3"
},
"variableNames": [
{
"name": "src",
"nativeSrc": "3896:3:3",
"nodeType": "YulIdentifier",
"src": "3896:3:3"
}
]
}
]
},
"pre": {
"nativeSrc": "3856:21:3",
"nodeType": "YulBlock",
"src": "3856:21:3",
"statements": [
{
"nativeSrc": "3858:17:3",
"nodeType": "YulVariableDeclaration",
"src": "3858:17:3",
"value": {
"name": "offset",
"nativeSrc": "3869:6:3",
"nodeType": "YulIdentifier",
"src": "3869:6:3"
},
"variables": [
{
"name": "src",
"nativeSrc": "3862:3:3",
"nodeType": "YulTypedName",
"src": "3862:3:3",
"type": ""
}
]
}
]
},
"src": "3852:220:3"
}
]
},
"name": "abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "3368:710:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "3440:6:3",
"nodeType": "YulTypedName",
"src": "3440:6:3",
"type": ""
},
{
"name": "length",
"nativeSrc": "3448:6:3",
"nodeType": "YulTypedName",
"src": "3448:6:3",
"type": ""
},
{
"name": "end",
"nativeSrc": "3456:3:3",
"nodeType": "YulTypedName",
"src": "3456:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nativeSrc": "3464:5:3",
"nodeType": "YulTypedName",
"src": "3464:5:3",
"type": ""
}
],
"src": "3368:710:3"
},
{
"body": {
"nativeSrc": "4178:293:3",
"nodeType": "YulBlock",
"src": "4178:293:3",
"statements": [
{
"body": {
"nativeSrc": "4227:83:3",
"nodeType": "YulBlock",
"src": "4227:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nativeSrc": "4229:77:3",
"nodeType": "YulIdentifier",
"src": "4229:77:3"
},
"nativeSrc": "4229:79:3",
"nodeType": "YulFunctionCall",
"src": "4229:79:3"
},
"nativeSrc": "4229:79:3",
"nodeType": "YulExpressionStatement",
"src": "4229:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nativeSrc": "4206:6:3",
"nodeType": "YulIdentifier",
"src": "4206:6:3"
},
{
"kind": "number",
"nativeSrc": "4214:4:3",
"nodeType": "YulLiteral",
"src": "4214:4:3",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4202:3:3",
"nodeType": "YulIdentifier",
"src": "4202:3:3"
},
"nativeSrc": "4202:17:3",
"nodeType": "YulFunctionCall",
"src": "4202:17:3"
},
{
"name": "end",
"nativeSrc": "4221:3:3",
"nodeType": "YulIdentifier",
"src": "4221:3:3"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "4198:3:3",
"nodeType": "YulIdentifier",
"src": "4198:3:3"
},
"nativeSrc": "4198:27:3",
"nodeType": "YulFunctionCall",
"src": "4198:27:3"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "4191:6:3",
"nodeType": "YulIdentifier",
"src": "4191:6:3"
},
"nativeSrc": "4191:35:3",
"nodeType": "YulFunctionCall",
"src": "4191:35:3"
},
"nativeSrc": "4188:122:3",
"nodeType": "YulIf",
"src": "4188:122:3"
},
{
"nativeSrc": "4319:34:3",
"nodeType": "YulVariableDeclaration",
"src": "4319:34:3",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "4346:6:3",
"nodeType": "YulIdentifier",
"src": "4346:6:3"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "4333:12:3",
"nodeType": "YulIdentifier",
"src": "4333:12:3"
},
"nativeSrc": "4333:20:3",
"nodeType": "YulFunctionCall",
"src": "4333:20:3"
},
"variables": [
{
"name": "length",
"nativeSrc": "4323:6:3",
"nodeType": "YulTypedName",
"src": "4323:6:3",
"type": ""
}
]
},
{
"nativeSrc": "4362:103:3",
"nodeType": "YulAssignment",
"src": "4362:103:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nativeSrc": "4438:6:3",
"nodeType": "YulIdentifier",
"src": "4438:6:3"
},
{
"kind": "number",
"nativeSrc": "4446:4:3",
"nodeType": "YulLiteral",
"src": "4446:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4434:3:3",
"nodeType": "YulIdentifier",
"src": "4434:3:3"
},
"nativeSrc": "4434:17:3",
"nodeType": "YulFunctionCall",
"src": "4434:17:3"
},
{
"name": "length",
"nativeSrc": "4453:6:3",
"nodeType": "YulIdentifier",
"src": "4453:6:3"
},
{
"name": "end",
"nativeSrc": "4461:3:3",
"nodeType": "YulIdentifier",
"src": "4461:3:3"
}
],
"functionName": {
"name": "abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "4371:62:3",
"nodeType": "YulIdentifier",
"src": "4371:62:3"
},
"nativeSrc": "4371:94:3",
"nodeType": "YulFunctionCall",
"src": "4371:94:3"
},
"variableNames": [
{
"name": "array",
"nativeSrc": "4362:5:3",
"nodeType": "YulIdentifier",
"src": "4362:5:3"
}
]
}
]
},
"name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "4101:370:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "4156:6:3",
"nodeType": "YulTypedName",
"src": "4156:6:3",
"type": ""
},
{
"name": "end",
"nativeSrc": "4164:3:3",
"nodeType": "YulTypedName",
"src": "4164:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nativeSrc": "4172:5:3",
"nodeType": "YulTypedName",
"src": "4172:5:3",
"type": ""
}
],
"src": "4101:370:3"
},
{
"body": {
"nativeSrc": "4622:1044:3",
"nodeType": "YulBlock",
"src": "4622:1044:3",
"statements": [
{
"body": {
"nativeSrc": "4668:83:3",
"nodeType": "YulBlock",
"src": "4668:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "4670:77:3",
"nodeType": "YulIdentifier",
"src": "4670:77:3"
},
"nativeSrc": "4670:79:3",
"nodeType": "YulFunctionCall",
"src": "4670:79:3"
},
"nativeSrc": "4670:79:3",
"nodeType": "YulExpressionStatement",
"src": "4670:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "4643:7:3",
"nodeType": "YulIdentifier",
"src": "4643:7:3"
},
{
"name": "headStart",
"nativeSrc": "4652:9:3",
"nodeType": "YulIdentifier",
"src": "4652:9:3"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "4639:3:3",
"nodeType": "YulIdentifier",
"src": "4639:3:3"
},
"nativeSrc": "4639:23:3",
"nodeType": "YulFunctionCall",
"src": "4639:23:3"
},
{
"kind": "number",
"nativeSrc": "4664:2:3",
"nodeType": "YulLiteral",
"src": "4664:2:3",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "4635:3:3",
"nodeType": "YulIdentifier",
"src": "4635:3:3"
},
"nativeSrc": "4635:32:3",
"nodeType": "YulFunctionCall",
"src": "4635:32:3"
},
"nativeSrc": "4632:119:3",
"nodeType": "YulIf",
"src": "4632:119:3"
},
{
"nativeSrc": "4761:287:3",
"nodeType": "YulBlock",
"src": "4761:287:3",
"statements": [
{
"nativeSrc": "4776:45:3",
"nodeType": "YulVariableDeclaration",
"src": "4776:45:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4807:9:3",
"nodeType": "YulIdentifier",
"src": "4807:9:3"
},
{
"kind": "number",
"nativeSrc": "4818:1:3",
"nodeType": "YulLiteral",
"src": "4818:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4803:3:3",
"nodeType": "YulIdentifier",
"src": "4803:3:3"
},
"nativeSrc": "4803:17:3",
"nodeType": "YulFunctionCall",
"src": "4803:17:3"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "4790:12:3",
"nodeType": "YulIdentifier",
"src": "4790:12:3"
},
"nativeSrc": "4790:31:3",
"nodeType": "YulFunctionCall",
"src": "4790:31:3"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4780:6:3",
"nodeType": "YulTypedName",
"src": "4780:6:3",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "4868:83:3",
"nodeType": "YulBlock",
"src": "4868:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "4870:77:3",
"nodeType": "YulIdentifier",
"src": "4870:77:3"
},
"nativeSrc": "4870:79:3",
"nodeType": "YulFunctionCall",
"src": "4870:79:3"
},
"nativeSrc": "4870:79:3",
"nodeType": "YulExpressionStatement",
"src": "4870:79:3"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nativeSrc": "4840:6:3",
"nodeType": "YulIdentifier",
"src": "4840:6:3"
},
{
"kind": "number",
"nativeSrc": "4848:18:3",
"nodeType": "YulLiteral",
"src": "4848:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "4837:2:3",
"nodeType": "YulIdentifier",
"src": "4837:2:3"
},
"nativeSrc": "4837:30:3",
"nodeType": "YulFunctionCall",
"src": "4837:30:3"
},
"nativeSrc": "4834:117:3",
"nodeType": "YulIf",
"src": "4834:117:3"
},
{
"nativeSrc": "4965:73:3",
"nodeType": "YulAssignment",
"src": "4965:73:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5010:9:3",
"nodeType": "YulIdentifier",
"src": "5010:9:3"
},
{
"name": "offset",
"nativeSrc": "5021:6:3",
"nodeType": "YulIdentifier",
"src": "5021:6:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5006:3:3",
"nodeType": "YulIdentifier",
"src": "5006:3:3"
},
"nativeSrc": "5006:22:3",
"nodeType": "YulFunctionCall",
"src": "5006:22:3"
},
{
"name": "dataEnd",
"nativeSrc": "5030:7:3",
"nodeType": "YulIdentifier",
"src": "5030:7:3"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nativeSrc": "4975:30:3",
"nodeType": "YulIdentifier",
"src": "4975:30:3"
},
"nativeSrc": "4975:63:3",
"nodeType": "YulFunctionCall",
"src": "4975:63:3"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "4965:6:3",
"nodeType": "YulIdentifier",
"src": "4965:6:3"
}
]
}
]
},
{
"nativeSrc": "5058:288:3",
"nodeType": "YulBlock",
"src": "5058:288:3",
"statements": [
{
"nativeSrc": "5073:46:3",
"nodeType": "YulVariableDeclaration",
"src": "5073:46:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5104:9:3",
"nodeType": "YulIdentifier",
"src": "5104:9:3"
},
{
"kind": "number",
"nativeSrc": "5115:2:3",
"nodeType": "YulLiteral",
"src": "5115:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5100:3:3",
"nodeType": "YulIdentifier",
"src": "5100:3:3"
},
"nativeSrc": "5100:18:3",
"nodeType": "YulFunctionCall",
"src": "5100:18:3"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "5087:12:3",
"nodeType": "YulIdentifier",
"src": "5087:12:3"
},
"nativeSrc": "5087:32:3",
"nodeType": "YulFunctionCall",
"src": "5087:32:3"
},
"variables": [
{
"name": "offset",
"nativeSrc": "5077:6:3",
"nodeType": "YulTypedName",
"src": "5077:6:3",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "5166:83:3",
"nodeType": "YulBlock",
"src": "5166:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "5168:77:3",
"nodeType": "YulIdentifier",
"src": "5168:77:3"
},
"nativeSrc": "5168:79:3",
"nodeType": "YulFunctionCall",
"src": "5168:79:3"
},
"nativeSrc": "5168:79:3",
"nodeType": "YulExpressionStatement",
"src": "5168:79:3"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nativeSrc": "5138:6:3",
"nodeType": "YulIdentifier",
"src": "5138:6:3"
},
{
"kind": "number",
"nativeSrc": "5146:18:3",
"nodeType": "YulLiteral",
"src": "5146:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "5135:2:3",
"nodeType": "YulIdentifier",
"src": "5135:2:3"
},
"nativeSrc": "5135:30:3",
"nodeType": "YulFunctionCall",
"src": "5135:30:3"
},
"nativeSrc": "5132:117:3",
"nodeType": "YulIf",
"src": "5132:117:3"
},
{
"nativeSrc": "5263:73:3",
"nodeType": "YulAssignment",
"src": "5263:73:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5308:9:3",
"nodeType": "YulIdentifier",
"src": "5308:9:3"
},
{
"name": "offset",
"nativeSrc": "5319:6:3",
"nodeType": "YulIdentifier",
"src": "5319:6:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5304:3:3",
"nodeType": "YulIdentifier",
"src": "5304:3:3"
},
"nativeSrc": "5304:22:3",
"nodeType": "YulFunctionCall",
"src": "5304:22:3"
},
{
"name": "dataEnd",
"nativeSrc": "5328:7:3",
"nodeType": "YulIdentifier",
"src": "5328:7:3"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nativeSrc": "5273:30:3",
"nodeType": "YulIdentifier",
"src": "5273:30:3"
},
"nativeSrc": "5273:63:3",
"nodeType": "YulFunctionCall",
"src": "5273:63:3"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "5263:6:3",
"nodeType": "YulIdentifier",
"src": "5263:6:3"
}
]
}
]
},
{
"nativeSrc": "5356:303:3",
"nodeType": "YulBlock",
"src": "5356:303:3",
"statements": [
{
"nativeSrc": "5371:46:3",
"nodeType": "YulVariableDeclaration",
"src": "5371:46:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5402:9:3",
"nodeType": "YulIdentifier",
"src": "5402:9:3"
},
{
"kind": "number",
"nativeSrc": "5413:2:3",
"nodeType": "YulLiteral",
"src": "5413:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5398:3:3",
"nodeType": "YulIdentifier",
"src": "5398:3:3"
},
"nativeSrc": "5398:18:3",
"nodeType": "YulFunctionCall",
"src": "5398:18:3"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "5385:12:3",
"nodeType": "YulIdentifier",
"src": "5385:12:3"
},
"nativeSrc": "5385:32:3",
"nodeType": "YulFunctionCall",
"src": "5385:32:3"
},
"variables": [
{
"name": "offset",
"nativeSrc": "5375:6:3",
"nodeType": "YulTypedName",
"src": "5375:6:3",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "5464:83:3",
"nodeType": "YulBlock",
"src": "5464:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "5466:77:3",
"nodeType": "YulIdentifier",
"src": "5466:77:3"
},
"nativeSrc": "5466:79:3",
"nodeType": "YulFunctionCall",
"src": "5466:79:3"
},
"nativeSrc": "5466:79:3",
"nodeType": "YulExpressionStatement",
"src": "5466:79:3"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nativeSrc": "5436:6:3",
"nodeType": "YulIdentifier",
"src": "5436:6:3"
},
{
"kind": "number",
"nativeSrc": "5444:18:3",
"nodeType": "YulLiteral",
"src": "5444:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "5433:2:3",
"nodeType": "YulIdentifier",
"src": "5433:2:3"
},
"nativeSrc": "5433:30:3",
"nodeType": "YulFunctionCall",
"src": "5433:30:3"
},
"nativeSrc": "5430:117:3",
"nodeType": "YulIf",
"src": "5430:117:3"
},
{
"nativeSrc": "5561:88:3",
"nodeType": "YulAssignment",
"src": "5561:88:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5621:9:3",
"nodeType": "YulIdentifier",
"src": "5621:9:3"
},
{
"name": "offset",
"nativeSrc": "5632:6:3",
"nodeType": "YulIdentifier",
"src": "5632:6:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5617:3:3",
"nodeType": "YulIdentifier",
"src": "5617:3:3"
},
"nativeSrc": "5617:22:3",
"nodeType": "YulFunctionCall",
"src": "5617:22:3"
},
{
"name": "dataEnd",
"nativeSrc": "5641:7:3",
"nodeType": "YulIdentifier",
"src": "5641:7:3"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "5571:45:3",
"nodeType": "YulIdentifier",
"src": "5571:45:3"
},
"nativeSrc": "5571:78:3",
"nodeType": "YulFunctionCall",
"src": "5571:78:3"
},
"variableNames": [
{
"name": "value2",
"nativeSrc": "5561:6:3",
"nodeType": "YulIdentifier",
"src": "5561:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "4477:1189:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "4576:9:3",
"nodeType": "YulTypedName",
"src": "4576:9:3",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "4587:7:3",
"nodeType": "YulTypedName",
"src": "4587:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "4599:6:3",
"nodeType": "YulTypedName",
"src": "4599:6:3",
"type": ""
},
{
"name": "value1",
"nativeSrc": "4607:6:3",
"nodeType": "YulTypedName",
"src": "4607:6:3",
"type": ""
},
{
"name": "value2",
"nativeSrc": "4615:6:3",
"nodeType": "YulTypedName",
"src": "4615:6:3",
"type": ""
}
],
"src": "4477:1189:3"
},
{
"body": {
"nativeSrc": "5717:81:3",
"nodeType": "YulBlock",
"src": "5717:81:3",
"statements": [
{
"nativeSrc": "5727:65:3",
"nodeType": "YulAssignment",
"src": "5727:65:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "5742:5:3",
"nodeType": "YulIdentifier",
"src": "5742:5:3"
},
{
"kind": "number",
"nativeSrc": "5749:42:3",
"nodeType": "YulLiteral",
"src": "5749:42:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "5738:3:3",
"nodeType": "YulIdentifier",
"src": "5738:3:3"
},
"nativeSrc": "5738:54:3",
"nodeType": "YulFunctionCall",
"src": "5738:54:3"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "5727:7:3",
"nodeType": "YulIdentifier",
"src": "5727:7:3"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "5672:126:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5699:5:3",
"nodeType": "YulTypedName",
"src": "5699:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "5709:7:3",
"nodeType": "YulTypedName",
"src": "5709:7:3",
"type": ""
}
],
"src": "5672:126:3"
},
{
"body": {
"nativeSrc": "5849:51:3",
"nodeType": "YulBlock",
"src": "5849:51:3",
"statements": [
{
"nativeSrc": "5859:35:3",
"nodeType": "YulAssignment",
"src": "5859:35:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "5888:5:3",
"nodeType": "YulIdentifier",
"src": "5888:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "5870:17:3",
"nodeType": "YulIdentifier",
"src": "5870:17:3"
},
"nativeSrc": "5870:24:3",
"nodeType": "YulFunctionCall",
"src": "5870:24:3"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "5859:7:3",
"nodeType": "YulIdentifier",
"src": "5859:7:3"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "5804:96:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5831:5:3",
"nodeType": "YulTypedName",
"src": "5831:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "5841:7:3",
"nodeType": "YulTypedName",
"src": "5841:7:3",
"type": ""
}
],
"src": "5804:96:3"
},
{
"body": {
"nativeSrc": "5971:53:3",
"nodeType": "YulBlock",
"src": "5971:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5988:3:3",
"nodeType": "YulIdentifier",
"src": "5988:3:3"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "6011:5:3",
"nodeType": "YulIdentifier",
"src": "6011:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "5993:17:3",
"nodeType": "YulIdentifier",
"src": "5993:17:3"
},
"nativeSrc": "5993:24:3",
"nodeType": "YulFunctionCall",
"src": "5993:24:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5981:6:3",
"nodeType": "YulIdentifier",
"src": "5981:6:3"
},
"nativeSrc": "5981:37:3",
"nodeType": "YulFunctionCall",
"src": "5981:37:3"
},
"nativeSrc": "5981:37:3",
"nodeType": "YulExpressionStatement",
"src": "5981:37:3"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "5906:118:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5959:5:3",
"nodeType": "YulTypedName",
"src": "5959:5:3",
"type": ""
},
{
"name": "pos",
"nativeSrc": "5966:3:3",
"nodeType": "YulTypedName",
"src": "5966:3:3",
"type": ""
}
],
"src": "5906:118:3"
},
{
"body": {
"nativeSrc": "6128:124:3",
"nodeType": "YulBlock",
"src": "6128:124:3",
"statements": [
{
"nativeSrc": "6138:26:3",
"nodeType": "YulAssignment",
"src": "6138:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "6150:9:3",
"nodeType": "YulIdentifier",
"src": "6150:9:3"
},
{
"kind": "number",
"nativeSrc": "6161:2:3",
"nodeType": "YulLiteral",
"src": "6161:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6146:3:3",
"nodeType": "YulIdentifier",
"src": "6146:3:3"
},
"nativeSrc": "6146:18:3",
"nodeType": "YulFunctionCall",
"src": "6146:18:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "6138:4:3",
"nodeType": "YulIdentifier",
"src": "6138:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "6218:6:3",
"nodeType": "YulIdentifier",
"src": "6218:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6231:9:3",
"nodeType": "YulIdentifier",
"src": "6231:9:3"
},
{
"kind": "number",
"nativeSrc": "6242:1:3",
"nodeType": "YulLiteral",
"src": "6242:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6227:3:3",
"nodeType": "YulIdentifier",
"src": "6227:3:3"
},
"nativeSrc": "6227:17:3",
"nodeType": "YulFunctionCall",
"src": "6227:17:3"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "6174:43:3",
"nodeType": "YulIdentifier",
"src": "6174:43:3"
},
"nativeSrc": "6174:71:3",
"nodeType": "YulFunctionCall",
"src": "6174:71:3"
},
"nativeSrc": "6174:71:3",
"nodeType": "YulExpressionStatement",
"src": "6174:71:3"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nativeSrc": "6030:222:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "6100:9:3",
"nodeType": "YulTypedName",
"src": "6100:9:3",
"type": ""
},
{
"name": "value0",
"nativeSrc": "6112:6:3",
"nodeType": "YulTypedName",
"src": "6112:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "6123:4:3",
"nodeType": "YulTypedName",
"src": "6123:4:3",
"type": ""
}
],
"src": "6030:222:3"
},
{
"body": {
"nativeSrc": "6324:263:3",
"nodeType": "YulBlock",
"src": "6324:263:3",
"statements": [
{
"body": {
"nativeSrc": "6370:83:3",
"nodeType": "YulBlock",
"src": "6370:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "6372:77:3",
"nodeType": "YulIdentifier",
"src": "6372:77:3"
},
"nativeSrc": "6372:79:3",
"nodeType": "YulFunctionCall",
"src": "6372:79:3"
},
"nativeSrc": "6372:79:3",
"nodeType": "YulExpressionStatement",
"src": "6372:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "6345:7:3",
"nodeType": "YulIdentifier",
"src": "6345:7:3"
},
{
"name": "headStart",
"nativeSrc": "6354:9:3",
"nodeType": "YulIdentifier",
"src": "6354:9:3"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "6341:3:3",
"nodeType": "YulIdentifier",
"src": "6341:3:3"
},
"nativeSrc": "6341:23:3",
"nodeType": "YulFunctionCall",
"src": "6341:23:3"
},
{
"kind": "number",
"nativeSrc": "6366:2:3",
"nodeType": "YulLiteral",
"src": "6366:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "6337:3:3",
"nodeType": "YulIdentifier",
"src": "6337:3:3"
},
"nativeSrc": "6337:32:3",
"nodeType": "YulFunctionCall",
"src": "6337:32:3"
},
"nativeSrc": "6334:119:3",
"nodeType": "YulIf",
"src": "6334:119:3"
},
{
"nativeSrc": "6463:117:3",
"nodeType": "YulBlock",
"src": "6463:117:3",
"statements": [
{
"nativeSrc": "6478:15:3",
"nodeType": "YulVariableDeclaration",
"src": "6478:15:3",
"value": {
"kind": "number",
"nativeSrc": "6492:1:3",
"nodeType": "YulLiteral",
"src": "6492:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "6482:6:3",
"nodeType": "YulTypedName",
"src": "6482:6:3",
"type": ""
}
]
},
{
"nativeSrc": "6507:63:3",
"nodeType": "YulAssignment",
"src": "6507:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6542:9:3",
"nodeType": "YulIdentifier",
"src": "6542:9:3"
},
{
"name": "offset",
"nativeSrc": "6553:6:3",
"nodeType": "YulIdentifier",
"src": "6553:6:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6538:3:3",
"nodeType": "YulIdentifier",
"src": "6538:3:3"
},
"nativeSrc": "6538:22:3",
"nodeType": "YulFunctionCall",
"src": "6538:22:3"
},
{
"name": "dataEnd",
"nativeSrc": "6562:7:3",
"nodeType": "YulIdentifier",
"src": "6562:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "6517:20:3",
"nodeType": "YulIdentifier",
"src": "6517:20:3"
},
"nativeSrc": "6517:53:3",
"nodeType": "YulFunctionCall",
"src": "6517:53:3"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "6507:6:3",
"nodeType": "YulIdentifier",
"src": "6507:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nativeSrc": "6258:329:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "6294:9:3",
"nodeType": "YulTypedName",
"src": "6294:9:3",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "6305:7:3",
"nodeType": "YulTypedName",
"src": "6305:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "6317:6:3",
"nodeType": "YulTypedName",
"src": "6317:6:3",
"type": ""
}
],
"src": "6258:329:3"
},
{
"body": {
"nativeSrc": "6652:40:3",
"nodeType": "YulBlock",
"src": "6652:40:3",
"statements": [
{
"nativeSrc": "6663:22:3",
"nodeType": "YulAssignment",
"src": "6663:22:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "6679:5:3",
"nodeType": "YulIdentifier",
"src": "6679:5:3"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "6673:5:3",
"nodeType": "YulIdentifier",
"src": "6673:5:3"
},
"nativeSrc": "6673:12:3",
"nodeType": "YulFunctionCall",
"src": "6673:12:3"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "6663:6:3",
"nodeType": "YulIdentifier",
"src": "6663:6:3"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "6593:99:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "6635:5:3",
"nodeType": "YulTypedName",
"src": "6635:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "6645:6:3",
"nodeType": "YulTypedName",
"src": "6645:6:3",
"type": ""
}
],
"src": "6593:99:3"
},
{
"body": {
"nativeSrc": "6794:73:3",
"nodeType": "YulBlock",
"src": "6794:73:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "6811:3:3",
"nodeType": "YulIdentifier",
"src": "6811:3:3"
},
{
"name": "length",
"nativeSrc": "6816:6:3",
"nodeType": "YulIdentifier",
"src": "6816:6:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6804:6:3",
"nodeType": "YulIdentifier",
"src": "6804:6:3"
},
"nativeSrc": "6804:19:3",
"nodeType": "YulFunctionCall",
"src": "6804:19:3"
},
"nativeSrc": "6804:19:3",
"nodeType": "YulExpressionStatement",
"src": "6804:19:3"
},
{
"nativeSrc": "6832:29:3",
"nodeType": "YulAssignment",
"src": "6832:29:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "6851:3:3",
"nodeType": "YulIdentifier",
"src": "6851:3:3"
},
{
"kind": "number",
"nativeSrc": "6856:4:3",
"nodeType": "YulLiteral",
"src": "6856:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6847:3:3",
"nodeType": "YulIdentifier",
"src": "6847:3:3"
},
"nativeSrc": "6847:14:3",
"nodeType": "YulFunctionCall",
"src": "6847:14:3"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "6832:11:3",
"nodeType": "YulIdentifier",
"src": "6832:11:3"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "6698:169:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "6766:3:3",
"nodeType": "YulTypedName",
"src": "6766:3:3",
"type": ""
},
{
"name": "length",
"nativeSrc": "6771:6:3",
"nodeType": "YulTypedName",
"src": "6771:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "6782:11:3",
"nodeType": "YulTypedName",
"src": "6782:11:3",
"type": ""
}
],
"src": "6698:169:3"
},
{
"body": {
"nativeSrc": "6935:77:3",
"nodeType": "YulBlock",
"src": "6935:77:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nativeSrc": "6952:3:3",
"nodeType": "YulIdentifier",
"src": "6952:3:3"
},
{
"name": "src",
"nativeSrc": "6957:3:3",
"nodeType": "YulIdentifier",
"src": "6957:3:3"
},
{
"name": "length",
"nativeSrc": "6962:6:3",
"nodeType": "YulIdentifier",
"src": "6962:6:3"
}
],
"functionName": {
"name": "mcopy",
"nativeSrc": "6946:5:3",
"nodeType": "YulIdentifier",
"src": "6946:5:3"
},
"nativeSrc": "6946:23:3",
"nodeType": "YulFunctionCall",
"src": "6946:23:3"
},
"nativeSrc": "6946:23:3",
"nodeType": "YulExpressionStatement",
"src": "6946:23:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "6989:3:3",
"nodeType": "YulIdentifier",
"src": "6989:3:3"
},
{
"name": "length",
"nativeSrc": "6994:6:3",
"nodeType": "YulIdentifier",
"src": "6994:6:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6985:3:3",
"nodeType": "YulIdentifier",
"src": "6985:3:3"
},
"nativeSrc": "6985:16:3",
"nodeType": "YulFunctionCall",
"src": "6985:16:3"
},
{
"kind": "number",
"nativeSrc": "7003:1:3",
"nodeType": "YulLiteral",
"src": "7003:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6978:6:3",
"nodeType": "YulIdentifier",
"src": "6978:6:3"
},
"nativeSrc": "6978:27:3",
"nodeType": "YulFunctionCall",
"src": "6978:27:3"
},
"nativeSrc": "6978:27:3",
"nodeType": "YulExpressionStatement",
"src": "6978:27:3"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "6873:139:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "6917:3:3",
"nodeType": "YulTypedName",
"src": "6917:3:3",
"type": ""
},
{
"name": "dst",
"nativeSrc": "6922:3:3",
"nodeType": "YulTypedName",
"src": "6922:3:3",
"type": ""
},
{
"name": "length",
"nativeSrc": "6927:6:3",
"nodeType": "YulTypedName",
"src": "6927:6:3",
"type": ""
}
],
"src": "6873:139:3"
},
{
"body": {
"nativeSrc": "7110:285:3",
"nodeType": "YulBlock",
"src": "7110:285:3",
"statements": [
{
"nativeSrc": "7120:53:3",
"nodeType": "YulVariableDeclaration",
"src": "7120:53:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "7167:5:3",
"nodeType": "YulIdentifier",
"src": "7167:5:3"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "7134:32:3",
"nodeType": "YulIdentifier",
"src": "7134:32:3"
},
"nativeSrc": "7134:39:3",
"nodeType": "YulFunctionCall",
"src": "7134:39:3"
},
"variables": [
{
"name": "length",
"nativeSrc": "7124:6:3",
"nodeType": "YulTypedName",
"src": "7124:6:3",
"type": ""
}
]
},
{
"nativeSrc": "7182:78:3",
"nodeType": "YulAssignment",
"src": "7182:78:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7248:3:3",
"nodeType": "YulIdentifier",
"src": "7248:3:3"
},
{
"name": "length",
"nativeSrc": "7253:6:3",
"nodeType": "YulIdentifier",
"src": "7253:6:3"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "7189:58:3",
"nodeType": "YulIdentifier",
"src": "7189:58:3"
},
"nativeSrc": "7189:71:3",
"nodeType": "YulFunctionCall",
"src": "7189:71:3"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "7182:3:3",
"nodeType": "YulIdentifier",
"src": "7182:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "7308:5:3",
"nodeType": "YulIdentifier",
"src": "7308:5:3"
},
{
"kind": "number",
"nativeSrc": "7315:4:3",
"nodeType": "YulLiteral",
"src": "7315:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7304:3:3",
"nodeType": "YulIdentifier",
"src": "7304:3:3"
},
"nativeSrc": "7304:16:3",
"nodeType": "YulFunctionCall",
"src": "7304:16:3"
},
{
"name": "pos",
"nativeSrc": "7322:3:3",
"nodeType": "YulIdentifier",
"src": "7322:3:3"
},
{
"name": "length",
"nativeSrc": "7327:6:3",
"nodeType": "YulIdentifier",
"src": "7327:6:3"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "7269:34:3",
"nodeType": "YulIdentifier",
"src": "7269:34:3"
},
"nativeSrc": "7269:65:3",
"nodeType": "YulFunctionCall",
"src": "7269:65:3"
},
"nativeSrc": "7269:65:3",
"nodeType": "YulExpressionStatement",
"src": "7269:65:3"
},
{
"nativeSrc": "7343:46:3",
"nodeType": "YulAssignment",
"src": "7343:46:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7354:3:3",
"nodeType": "YulIdentifier",
"src": "7354:3:3"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "7381:6:3",
"nodeType": "YulIdentifier",
"src": "7381:6:3"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "7359:21:3",
"nodeType": "YulIdentifier",
"src": "7359:21:3"
},
"nativeSrc": "7359:29:3",
"nodeType": "YulFunctionCall",
"src": "7359:29:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7350:3:3",
"nodeType": "YulIdentifier",
"src": "7350:3:3"
},
"nativeSrc": "7350:39:3",
"nodeType": "YulFunctionCall",
"src": "7350:39:3"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "7343:3:3",
"nodeType": "YulIdentifier",
"src": "7343:3:3"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "7018:377:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7091:5:3",
"nodeType": "YulTypedName",
"src": "7091:5:3",
"type": ""
},
{
"name": "pos",
"nativeSrc": "7098:3:3",
"nodeType": "YulTypedName",
"src": "7098:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "7106:3:3",
"nodeType": "YulTypedName",
"src": "7106:3:3",
"type": ""
}
],
"src": "7018:377:3"
},
{
"body": {
"nativeSrc": "7475:40:3",
"nodeType": "YulBlock",
"src": "7475:40:3",
"statements": [
{
"nativeSrc": "7486:22:3",
"nodeType": "YulAssignment",
"src": "7486:22:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "7502:5:3",
"nodeType": "YulIdentifier",
"src": "7502:5:3"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "7496:5:3",
"nodeType": "YulIdentifier",
"src": "7496:5:3"
},
"nativeSrc": "7496:12:3",
"nodeType": "YulFunctionCall",
"src": "7496:12:3"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "7486:6:3",
"nodeType": "YulIdentifier",
"src": "7486:6:3"
}
]
}
]
},
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "7401:114:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7458:5:3",
"nodeType": "YulTypedName",
"src": "7458:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "7468:6:3",
"nodeType": "YulTypedName",
"src": "7468:6:3",
"type": ""
}
],
"src": "7401:114:3"
},
{
"body": {
"nativeSrc": "7632:73:3",
"nodeType": "YulBlock",
"src": "7632:73:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7649:3:3",
"nodeType": "YulIdentifier",
"src": "7649:3:3"
},
{
"name": "length",
"nativeSrc": "7654:6:3",
"nodeType": "YulIdentifier",
"src": "7654:6:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "7642:6:3",
"nodeType": "YulIdentifier",
"src": "7642:6:3"
},
"nativeSrc": "7642:19:3",
"nodeType": "YulFunctionCall",
"src": "7642:19:3"
},
"nativeSrc": "7642:19:3",
"nodeType": "YulExpressionStatement",
"src": "7642:19:3"
},
{
"nativeSrc": "7670:29:3",
"nodeType": "YulAssignment",
"src": "7670:29:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7689:3:3",
"nodeType": "YulIdentifier",
"src": "7689:3:3"
},
{
"kind": "number",
"nativeSrc": "7694:4:3",
"nodeType": "YulLiteral",
"src": "7694:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7685:3:3",
"nodeType": "YulIdentifier",
"src": "7685:3:3"
},
"nativeSrc": "7685:14:3",
"nodeType": "YulFunctionCall",
"src": "7685:14:3"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "7670:11:3",
"nodeType": "YulIdentifier",
"src": "7670:11:3"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nativeSrc": "7521:184:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "7604:3:3",
"nodeType": "YulTypedName",
"src": "7604:3:3",
"type": ""
},
{
"name": "length",
"nativeSrc": "7609:6:3",
"nodeType": "YulTypedName",
"src": "7609:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "7620:11:3",
"nodeType": "YulTypedName",
"src": "7620:11:3",
"type": ""
}
],
"src": "7521:184:3"
},
{
"body": {
"nativeSrc": "7783:60:3",
"nodeType": "YulBlock",
"src": "7783:60:3",
"statements": [
{
"nativeSrc": "7793:11:3",
"nodeType": "YulAssignment",
"src": "7793:11:3",
"value": {
"name": "ptr",
"nativeSrc": "7801:3:3",
"nodeType": "YulIdentifier",
"src": "7801:3:3"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "7793:4:3",
"nodeType": "YulIdentifier",
"src": "7793:4:3"
}
]
},
{
"nativeSrc": "7814:22:3",
"nodeType": "YulAssignment",
"src": "7814:22:3",
"value": {
"arguments": [
{
"name": "ptr",
"nativeSrc": "7826:3:3",
"nodeType": "YulIdentifier",
"src": "7826:3:3"
},
{
"kind": "number",
"nativeSrc": "7831:4:3",
"nodeType": "YulLiteral",
"src": "7831:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7822:3:3",
"nodeType": "YulIdentifier",
"src": "7822:3:3"
},
"nativeSrc": "7822:14:3",
"nodeType": "YulFunctionCall",
"src": "7822:14:3"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "7814:4:3",
"nodeType": "YulIdentifier",
"src": "7814:4:3"
}
]
}
]
},
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "7711:132:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "7770:3:3",
"nodeType": "YulTypedName",
"src": "7770:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nativeSrc": "7778:4:3",
"nodeType": "YulTypedName",
"src": "7778:4:3",
"type": ""
}
],
"src": "7711:132:3"
},
{
"body": {
"nativeSrc": "7904:53:3",
"nodeType": "YulBlock",
"src": "7904:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7921:3:3",
"nodeType": "YulIdentifier",
"src": "7921:3:3"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "7944:5:3",
"nodeType": "YulIdentifier",
"src": "7944:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "7926:17:3",
"nodeType": "YulIdentifier",
"src": "7926:17:3"
},
"nativeSrc": "7926:24:3",
"nodeType": "YulFunctionCall",
"src": "7926:24:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "7914:6:3",
"nodeType": "YulIdentifier",
"src": "7914:6:3"
},
"nativeSrc": "7914:37:3",
"nodeType": "YulFunctionCall",
"src": "7914:37:3"
},
"nativeSrc": "7914:37:3",
"nodeType": "YulExpressionStatement",
"src": "7914:37:3"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "7849:108:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7892:5:3",
"nodeType": "YulTypedName",
"src": "7892:5:3",
"type": ""
},
{
"name": "pos",
"nativeSrc": "7899:3:3",
"nodeType": "YulTypedName",
"src": "7899:3:3",
"type": ""
}
],
"src": "7849:108:3"
},
{
"body": {
"nativeSrc": "8043:99:3",
"nodeType": "YulBlock",
"src": "8043:99:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "8087:6:3",
"nodeType": "YulIdentifier",
"src": "8087:6:3"
},
{
"name": "pos",
"nativeSrc": "8095:3:3",
"nodeType": "YulIdentifier",
"src": "8095:3:3"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "8053:33:3",
"nodeType": "YulIdentifier",
"src": "8053:33:3"
},
"nativeSrc": "8053:46:3",
"nodeType": "YulFunctionCall",
"src": "8053:46:3"
},
"nativeSrc": "8053:46:3",
"nodeType": "YulExpressionStatement",
"src": "8053:46:3"
},
{
"nativeSrc": "8108:28:3",
"nodeType": "YulAssignment",
"src": "8108:28:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8126:3:3",
"nodeType": "YulIdentifier",
"src": "8126:3:3"
},
{
"kind": "number",
"nativeSrc": "8131:4:3",
"nodeType": "YulLiteral",
"src": "8131:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8122:3:3",
"nodeType": "YulIdentifier",
"src": "8122:3:3"
},
"nativeSrc": "8122:14:3",
"nodeType": "YulFunctionCall",
"src": "8122:14:3"
},
"variableNames": [
{
"name": "updatedPos",
"nativeSrc": "8108:10:3",
"nodeType": "YulIdentifier",
"src": "8108:10:3"
}
]
}
]
},
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nativeSrc": "7963:179:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value0",
"nativeSrc": "8016:6:3",
"nodeType": "YulTypedName",
"src": "8016:6:3",
"type": ""
},
{
"name": "pos",
"nativeSrc": "8024:3:3",
"nodeType": "YulTypedName",
"src": "8024:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updatedPos",
"nativeSrc": "8032:10:3",
"nodeType": "YulTypedName",
"src": "8032:10:3",
"type": ""
}
],
"src": "7963:179:3"
},
{
"body": {
"nativeSrc": "8223:38:3",
"nodeType": "YulBlock",
"src": "8223:38:3",
"statements": [
{
"nativeSrc": "8233:22:3",
"nodeType": "YulAssignment",
"src": "8233:22:3",
"value": {
"arguments": [
{
"name": "ptr",
"nativeSrc": "8245:3:3",
"nodeType": "YulIdentifier",
"src": "8245:3:3"
},
{
"kind": "number",
"nativeSrc": "8250:4:3",
"nodeType": "YulLiteral",
"src": "8250:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8241:3:3",
"nodeType": "YulIdentifier",
"src": "8241:3:3"
},
"nativeSrc": "8241:14:3",
"nodeType": "YulFunctionCall",
"src": "8241:14:3"
},
"variableNames": [
{
"name": "next",
"nativeSrc": "8233:4:3",
"nodeType": "YulIdentifier",
"src": "8233:4:3"
}
]
}
]
},
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "8148:113:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "8210:3:3",
"nodeType": "YulTypedName",
"src": "8210:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "next",
"nativeSrc": "8218:4:3",
"nodeType": "YulTypedName",
"src": "8218:4:3",
"type": ""
}
],
"src": "8148:113:3"
},
{
"body": {
"nativeSrc": "8421:608:3",
"nodeType": "YulBlock",
"src": "8421:608:3",
"statements": [
{
"nativeSrc": "8431:68:3",
"nodeType": "YulVariableDeclaration",
"src": "8431:68:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "8493:5:3",
"nodeType": "YulIdentifier",
"src": "8493:5:3"
}
],
"functionName": {
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "8445:47:3",
"nodeType": "YulIdentifier",
"src": "8445:47:3"
},
"nativeSrc": "8445:54:3",
"nodeType": "YulFunctionCall",
"src": "8445:54:3"
},
"variables": [
{
"name": "length",
"nativeSrc": "8435:6:3",
"nodeType": "YulTypedName",
"src": "8435:6:3",
"type": ""
}
]
},
{
"nativeSrc": "8508:93:3",
"nodeType": "YulAssignment",
"src": "8508:93:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8589:3:3",
"nodeType": "YulIdentifier",
"src": "8589:3:3"
},
{
"name": "length",
"nativeSrc": "8594:6:3",
"nodeType": "YulIdentifier",
"src": "8594:6:3"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nativeSrc": "8515:73:3",
"nodeType": "YulIdentifier",
"src": "8515:73:3"
},
"nativeSrc": "8515:86:3",
"nodeType": "YulFunctionCall",
"src": "8515:86:3"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "8508:3:3",
"nodeType": "YulIdentifier",
"src": "8508:3:3"
}
]
},
{
"nativeSrc": "8610:71:3",
"nodeType": "YulVariableDeclaration",
"src": "8610:71:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "8675:5:3",
"nodeType": "YulIdentifier",
"src": "8675:5:3"
}
],
"functionName": {
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "8625:49:3",
"nodeType": "YulIdentifier",
"src": "8625:49:3"
},
"nativeSrc": "8625:56:3",
"nodeType": "YulFunctionCall",
"src": "8625:56:3"
},
"variables": [
{
"name": "baseRef",
"nativeSrc": "8614:7:3",
"nodeType": "YulTypedName",
"src": "8614:7:3",
"type": ""
}
]
},
{
"nativeSrc": "8690:21:3",
"nodeType": "YulVariableDeclaration",
"src": "8690:21:3",
"value": {
"name": "baseRef",
"nativeSrc": "8704:7:3",
"nodeType": "YulIdentifier",
"src": "8704:7:3"
},
"variables": [
{
"name": "srcPtr",
"nativeSrc": "8694:6:3",
"nodeType": "YulTypedName",
"src": "8694:6:3",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "8780:224:3",
"nodeType": "YulBlock",
"src": "8780:224:3",
"statements": [
{
"nativeSrc": "8794:34:3",
"nodeType": "YulVariableDeclaration",
"src": "8794:34:3",
"value": {
"arguments": [
{
"name": "srcPtr",
"nativeSrc": "8821:6:3",
"nodeType": "YulIdentifier",
"src": "8821:6:3"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "8815:5:3",
"nodeType": "YulIdentifier",
"src": "8815:5:3"
},
"nativeSrc": "8815:13:3",
"nodeType": "YulFunctionCall",
"src": "8815:13:3"
},
"variables": [
{
"name": "elementValue0",
"nativeSrc": "8798:13:3",
"nodeType": "YulTypedName",
"src": "8798:13:3",
"type": ""
}
]
},
{
"nativeSrc": "8841:70:3",
"nodeType": "YulAssignment",
"src": "8841:70:3",
"value": {
"arguments": [
{
"name": "elementValue0",
"nativeSrc": "8892:13:3",
"nodeType": "YulIdentifier",
"src": "8892:13:3"
},
{
"name": "pos",
"nativeSrc": "8907:3:3",
"nodeType": "YulIdentifier",
"src": "8907:3:3"
}
],
"functionName": {
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nativeSrc": "8848:43:3",
"nodeType": "YulIdentifier",
"src": "8848:43:3"
},
"nativeSrc": "8848:63:3",
"nodeType": "YulFunctionCall",
"src": "8848:63:3"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "8841:3:3",
"nodeType": "YulIdentifier",
"src": "8841:3:3"
}
]
},
{
"nativeSrc": "8924:70:3",
"nodeType": "YulAssignment",
"src": "8924:70:3",
"value": {
"arguments": [
{
"name": "srcPtr",
"nativeSrc": "8987:6:3",
"nodeType": "YulIdentifier",
"src": "8987:6:3"
}
],
"functionName": {
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "8934:52:3",
"nodeType": "YulIdentifier",
"src": "8934:52:3"
},
"nativeSrc": "8934:60:3",
"nodeType": "YulFunctionCall",
"src": "8934:60:3"
},
"variableNames": [
{
"name": "srcPtr",
"nativeSrc": "8924:6:3",
"nodeType": "YulIdentifier",
"src": "8924:6:3"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "8742:1:3",
"nodeType": "YulIdentifier",
"src": "8742:1:3"
},
{
"name": "length",
"nativeSrc": "8745:6:3",
"nodeType": "YulIdentifier",
"src": "8745:6:3"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "8739:2:3",
"nodeType": "YulIdentifier",
"src": "8739:2:3"
},
"nativeSrc": "8739:13:3",
"nodeType": "YulFunctionCall",
"src": "8739:13:3"
},
"nativeSrc": "8720:284:3",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "8753:18:3",
"nodeType": "YulBlock",
"src": "8753:18:3",
"statements": [
{
"nativeSrc": "8755:14:3",
"nodeType": "YulAssignment",
"src": "8755:14:3",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "8764:1:3",
"nodeType": "YulIdentifier",
"src": "8764:1:3"
},
{
"kind": "number",
"nativeSrc": "8767:1:3",
"nodeType": "YulLiteral",
"src": "8767:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8760:3:3",
"nodeType": "YulIdentifier",
"src": "8760:3:3"
},
"nativeSrc": "8760:9:3",
"nodeType": "YulFunctionCall",
"src": "8760:9:3"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "8755:1:3",
"nodeType": "YulIdentifier",
"src": "8755:1:3"
}
]
}
]
},
"pre": {
"nativeSrc": "8724:14:3",
"nodeType": "YulBlock",
"src": "8724:14:3",
"statements": [
{
"nativeSrc": "8726:10:3",
"nodeType": "YulVariableDeclaration",
"src": "8726:10:3",
"value": {
"kind": "number",
"nativeSrc": "8735:1:3",
"nodeType": "YulLiteral",
"src": "8735:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "8730:1:3",
"nodeType": "YulTypedName",
"src": "8730:1:3",
"type": ""
}
]
}
]
},
"src": "8720:284:3"
},
{
"nativeSrc": "9013:10:3",
"nodeType": "YulAssignment",
"src": "9013:10:3",
"value": {
"name": "pos",
"nativeSrc": "9020:3:3",
"nodeType": "YulIdentifier",
"src": "9020:3:3"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "9013:3:3",
"nodeType": "YulIdentifier",
"src": "9013:3:3"
}
]
}
]
},
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nativeSrc": "8297:732:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "8400:5:3",
"nodeType": "YulTypedName",
"src": "8400:5:3",
"type": ""
},
{
"name": "pos",
"nativeSrc": "8407:3:3",
"nodeType": "YulTypedName",
"src": "8407:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "8416:3:3",
"nodeType": "YulTypedName",
"src": "8416:3:3",
"type": ""
}
],
"src": "8297:732:3"
},
{
"body": {
"nativeSrc": "9279:531:3",
"nodeType": "YulBlock",
"src": "9279:531:3",
"statements": [
{
"nativeSrc": "9289:26:3",
"nodeType": "YulAssignment",
"src": "9289:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "9301:9:3",
"nodeType": "YulIdentifier",
"src": "9301:9:3"
},
{
"kind": "number",
"nativeSrc": "9312:2:3",
"nodeType": "YulLiteral",
"src": "9312:2:3",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9297:3:3",
"nodeType": "YulIdentifier",
"src": "9297:3:3"
},
"nativeSrc": "9297:18:3",
"nodeType": "YulFunctionCall",
"src": "9297:18:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9289:4:3",
"nodeType": "YulIdentifier",
"src": "9289:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9336:9:3",
"nodeType": "YulIdentifier",
"src": "9336:9:3"
},
{
"kind": "number",
"nativeSrc": "9347:1:3",
"nodeType": "YulLiteral",
"src": "9347:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9332:3:3",
"nodeType": "YulIdentifier",
"src": "9332:3:3"
},
"nativeSrc": "9332:17:3",
"nodeType": "YulFunctionCall",
"src": "9332:17:3"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "9355:4:3",
"nodeType": "YulIdentifier",
"src": "9355:4:3"
},
{
"name": "headStart",
"nativeSrc": "9361:9:3",
"nodeType": "YulIdentifier",
"src": "9361:9:3"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "9351:3:3",
"nodeType": "YulIdentifier",
"src": "9351:3:3"
},
"nativeSrc": "9351:20:3",
"nodeType": "YulFunctionCall",
"src": "9351:20:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "9325:6:3",
"nodeType": "YulIdentifier",
"src": "9325:6:3"
},
"nativeSrc": "9325:47:3",
"nodeType": "YulFunctionCall",
"src": "9325:47:3"
},
"nativeSrc": "9325:47:3",
"nodeType": "YulExpressionStatement",
"src": "9325:47:3"
},
{
"nativeSrc": "9381:86:3",
"nodeType": "YulAssignment",
"src": "9381:86:3",
"value": {
"arguments": [
{
"name": "value0",
"nativeSrc": "9453:6:3",
"nodeType": "YulIdentifier",
"src": "9453:6:3"
},
{
"name": "tail",
"nativeSrc": "9462:4:3",
"nodeType": "YulIdentifier",
"src": "9462:4:3"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "9389:63:3",
"nodeType": "YulIdentifier",
"src": "9389:63:3"
},
"nativeSrc": "9389:78:3",
"nodeType": "YulFunctionCall",
"src": "9389:78:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9381:4:3",
"nodeType": "YulIdentifier",
"src": "9381:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9488:9:3",
"nodeType": "YulIdentifier",
"src": "9488:9:3"
},
{
"kind": "number",
"nativeSrc": "9499:2:3",
"nodeType": "YulLiteral",
"src": "9499:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9484:3:3",
"nodeType": "YulIdentifier",
"src": "9484:3:3"
},
"nativeSrc": "9484:18:3",
"nodeType": "YulFunctionCall",
"src": "9484:18:3"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "9508:4:3",
"nodeType": "YulIdentifier",
"src": "9508:4:3"
},
{
"name": "headStart",
"nativeSrc": "9514:9:3",
"nodeType": "YulIdentifier",
"src": "9514:9:3"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "9504:3:3",
"nodeType": "YulIdentifier",
"src": "9504:3:3"
},
"nativeSrc": "9504:20:3",
"nodeType": "YulFunctionCall",
"src": "9504:20:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "9477:6:3",
"nodeType": "YulIdentifier",
"src": "9477:6:3"
},
"nativeSrc": "9477:48:3",
"nodeType": "YulFunctionCall",
"src": "9477:48:3"
},
"nativeSrc": "9477:48:3",
"nodeType": "YulExpressionStatement",
"src": "9477:48:3"
},
{
"nativeSrc": "9534:86:3",
"nodeType": "YulAssignment",
"src": "9534:86:3",
"value": {
"arguments": [
{
"name": "value1",
"nativeSrc": "9606:6:3",
"nodeType": "YulIdentifier",
"src": "9606:6:3"
},
{
"name": "tail",
"nativeSrc": "9615:4:3",
"nodeType": "YulIdentifier",
"src": "9615:4:3"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "9542:63:3",
"nodeType": "YulIdentifier",
"src": "9542:63:3"
},
"nativeSrc": "9542:78:3",
"nodeType": "YulFunctionCall",
"src": "9542:78:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9534:4:3",
"nodeType": "YulIdentifier",
"src": "9534:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9641:9:3",
"nodeType": "YulIdentifier",
"src": "9641:9:3"
},
{
"kind": "number",
"nativeSrc": "9652:2:3",
"nodeType": "YulLiteral",
"src": "9652:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9637:3:3",
"nodeType": "YulIdentifier",
"src": "9637:3:3"
},
"nativeSrc": "9637:18:3",
"nodeType": "YulFunctionCall",
"src": "9637:18:3"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "9661:4:3",
"nodeType": "YulIdentifier",
"src": "9661:4:3"
},
{
"name": "headStart",
"nativeSrc": "9667:9:3",
"nodeType": "YulIdentifier",
"src": "9667:9:3"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "9657:3:3",
"nodeType": "YulIdentifier",
"src": "9657:3:3"
},
"nativeSrc": "9657:20:3",
"nodeType": "YulFunctionCall",
"src": "9657:20:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "9630:6:3",
"nodeType": "YulIdentifier",
"src": "9630:6:3"
},
"nativeSrc": "9630:48:3",
"nodeType": "YulFunctionCall",
"src": "9630:48:3"
},
"nativeSrc": "9630:48:3",
"nodeType": "YulExpressionStatement",
"src": "9630:48:3"
},
{
"nativeSrc": "9687:116:3",
"nodeType": "YulAssignment",
"src": "9687:116:3",
"value": {
"arguments": [
{
"name": "value2",
"nativeSrc": "9789:6:3",
"nodeType": "YulIdentifier",
"src": "9789:6:3"
},
{
"name": "tail",
"nativeSrc": "9798:4:3",
"nodeType": "YulIdentifier",
"src": "9798:4:3"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nativeSrc": "9695:93:3",
"nodeType": "YulIdentifier",
"src": "9695:93:3"
},
"nativeSrc": "9695:108:3",
"nodeType": "YulFunctionCall",
"src": "9695:108:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9687:4:3",
"nodeType": "YulIdentifier",
"src": "9687:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
"nativeSrc": "9035:775:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "9235:9:3",
"nodeType": "YulTypedName",
"src": "9235:9:3",
"type": ""
},
{
"name": "value2",
"nativeSrc": "9247:6:3",
"nodeType": "YulTypedName",
"src": "9247:6:3",
"type": ""
},
{
"name": "value1",
"nativeSrc": "9255:6:3",
"nodeType": "YulTypedName",
"src": "9255:6:3",
"type": ""
},
{
"name": "value0",
"nativeSrc": "9263:6:3",
"nodeType": "YulTypedName",
"src": "9263:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "9274:4:3",
"nodeType": "YulTypedName",
"src": "9274:4:3",
"type": ""
}
],
"src": "9035:775:3"
},
{
"body": {
"nativeSrc": "9913:40:3",
"nodeType": "YulBlock",
"src": "9913:40:3",
"statements": [
{
"nativeSrc": "9924:22:3",
"nodeType": "YulAssignment",
"src": "9924:22:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "9940:5:3",
"nodeType": "YulIdentifier",
"src": "9940:5:3"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "9934:5:3",
"nodeType": "YulIdentifier",
"src": "9934:5:3"
},
"nativeSrc": "9934:12:3",
"nodeType": "YulFunctionCall",
"src": "9934:12:3"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "9924:6:3",
"nodeType": "YulIdentifier",
"src": "9924:6:3"
}
]
}
]
},
"name": "array_length_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr",
"nativeSrc": "9816:137:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "9896:5:3",
"nodeType": "YulTypedName",
"src": "9896:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "9906:6:3",
"nodeType": "YulTypedName",
"src": "9906:6:3",
"type": ""
}
],
"src": "9816:137:3"
},
{
"body": {
"nativeSrc": "10093:73:3",
"nodeType": "YulBlock",
"src": "10093:73:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10110:3:3",
"nodeType": "YulIdentifier",
"src": "10110:3:3"
},
{
"name": "length",
"nativeSrc": "10115:6:3",
"nodeType": "YulIdentifier",
"src": "10115:6:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "10103:6:3",
"nodeType": "YulIdentifier",
"src": "10103:6:3"
},
"nativeSrc": "10103:19:3",
"nodeType": "YulFunctionCall",
"src": "10103:19:3"
},
"nativeSrc": "10103:19:3",
"nodeType": "YulExpressionStatement",
"src": "10103:19:3"
},
{
"nativeSrc": "10131:29:3",
"nodeType": "YulAssignment",
"src": "10131:29:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10150:3:3",
"nodeType": "YulIdentifier",
"src": "10150:3:3"
},
{
"kind": "number",
"nativeSrc": "10155:4:3",
"nodeType": "YulLiteral",
"src": "10155:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10146:3:3",
"nodeType": "YulIdentifier",
"src": "10146:3:3"
},
"nativeSrc": "10146:14:3",
"nodeType": "YulFunctionCall",
"src": "10146:14:3"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "10131:11:3",
"nodeType": "YulIdentifier",
"src": "10131:11:3"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr_fromStack",
"nativeSrc": "9959:207:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "10065:3:3",
"nodeType": "YulTypedName",
"src": "10065:3:3",
"type": ""
},
{
"name": "length",
"nativeSrc": "10070:6:3",
"nodeType": "YulTypedName",
"src": "10070:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "10081:11:3",
"nodeType": "YulTypedName",
"src": "10081:11:3",
"type": ""
}
],
"src": "9959:207:3"
},
{
"body": {
"nativeSrc": "10267:60:3",
"nodeType": "YulBlock",
"src": "10267:60:3",
"statements": [
{
"nativeSrc": "10277:11:3",
"nodeType": "YulAssignment",
"src": "10277:11:3",
"value": {
"name": "ptr",
"nativeSrc": "10285:3:3",
"nodeType": "YulIdentifier",
"src": "10285:3:3"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "10277:4:3",
"nodeType": "YulIdentifier",
"src": "10277:4:3"
}
]
},
{
"nativeSrc": "10298:22:3",
"nodeType": "YulAssignment",
"src": "10298:22:3",
"value": {
"arguments": [
{
"name": "ptr",
"nativeSrc": "10310:3:3",
"nodeType": "YulIdentifier",
"src": "10310:3:3"
},
{
"kind": "number",
"nativeSrc": "10315:4:3",
"nodeType": "YulLiteral",
"src": "10315:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10306:3:3",
"nodeType": "YulIdentifier",
"src": "10306:3:3"
},
"nativeSrc": "10306:14:3",
"nodeType": "YulFunctionCall",
"src": "10306:14:3"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "10298:4:3",
"nodeType": "YulIdentifier",
"src": "10298:4:3"
}
]
}
]
},
"name": "array_dataslot_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr",
"nativeSrc": "10172:155:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "10254:3:3",
"nodeType": "YulTypedName",
"src": "10254:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nativeSrc": "10262:4:3",
"nodeType": "YulTypedName",
"src": "10262:4:3",
"type": ""
}
],
"src": "10172:155:3"
},
{
"body": {
"nativeSrc": "10419:73:3",
"nodeType": "YulBlock",
"src": "10419:73:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10436:3:3",
"nodeType": "YulIdentifier",
"src": "10436:3:3"
},
{
"name": "length",
"nativeSrc": "10441:6:3",
"nodeType": "YulIdentifier",
"src": "10441:6:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "10429:6:3",
"nodeType": "YulIdentifier",
"src": "10429:6:3"
},
"nativeSrc": "10429:19:3",
"nodeType": "YulFunctionCall",
"src": "10429:19:3"
},
"nativeSrc": "10429:19:3",
"nodeType": "YulExpressionStatement",
"src": "10429:19:3"
},
{
"nativeSrc": "10457:29:3",
"nodeType": "YulAssignment",
"src": "10457:29:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10476:3:3",
"nodeType": "YulIdentifier",
"src": "10476:3:3"
},
{
"kind": "number",
"nativeSrc": "10481:4:3",
"nodeType": "YulLiteral",
"src": "10481:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10472:3:3",
"nodeType": "YulIdentifier",
"src": "10472:3:3"
},
"nativeSrc": "10472:14:3",
"nodeType": "YulFunctionCall",
"src": "10472:14:3"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "10457:11:3",
"nodeType": "YulIdentifier",
"src": "10457:11:3"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr",
"nativeSrc": "10333:159:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "10391:3:3",
"nodeType": "YulTypedName",
"src": "10391:3:3",
"type": ""
},
{
"name": "length",
"nativeSrc": "10396:6:3",
"nodeType": "YulTypedName",
"src": "10396:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "10407:11:3",
"nodeType": "YulTypedName",
"src": "10407:11:3",
"type": ""
}
],
"src": "10333:159:3"
},
{
"body": {
"nativeSrc": "10580:275:3",
"nodeType": "YulBlock",
"src": "10580:275:3",
"statements": [
{
"nativeSrc": "10590:53:3",
"nodeType": "YulVariableDeclaration",
"src": "10590:53:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "10637:5:3",
"nodeType": "YulIdentifier",
"src": "10637:5:3"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "10604:32:3",
"nodeType": "YulIdentifier",
"src": "10604:32:3"
},
"nativeSrc": "10604:39:3",
"nodeType": "YulFunctionCall",
"src": "10604:39:3"
},
"variables": [
{
"name": "length",
"nativeSrc": "10594:6:3",
"nodeType": "YulTypedName",
"src": "10594:6:3",
"type": ""
}
]
},
{
"nativeSrc": "10652:68:3",
"nodeType": "YulAssignment",
"src": "10652:68:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10708:3:3",
"nodeType": "YulIdentifier",
"src": "10708:3:3"
},
{
"name": "length",
"nativeSrc": "10713:6:3",
"nodeType": "YulIdentifier",
"src": "10713:6:3"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr",
"nativeSrc": "10659:48:3",
"nodeType": "YulIdentifier",
"src": "10659:48:3"
},
"nativeSrc": "10659:61:3",
"nodeType": "YulFunctionCall",
"src": "10659:61:3"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "10652:3:3",
"nodeType": "YulIdentifier",
"src": "10652:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "10768:5:3",
"nodeType": "YulIdentifier",
"src": "10768:5:3"
},
{
"kind": "number",
"nativeSrc": "10775:4:3",
"nodeType": "YulLiteral",
"src": "10775:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10764:3:3",
"nodeType": "YulIdentifier",
"src": "10764:3:3"
},
"nativeSrc": "10764:16:3",
"nodeType": "YulFunctionCall",
"src": "10764:16:3"
},
{
"name": "pos",
"nativeSrc": "10782:3:3",
"nodeType": "YulIdentifier",
"src": "10782:3:3"
},
{
"name": "length",
"nativeSrc": "10787:6:3",
"nodeType": "YulIdentifier",
"src": "10787:6:3"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "10729:34:3",
"nodeType": "YulIdentifier",
"src": "10729:34:3"
},
"nativeSrc": "10729:65:3",
"nodeType": "YulFunctionCall",
"src": "10729:65:3"
},
"nativeSrc": "10729:65:3",
"nodeType": "YulExpressionStatement",
"src": "10729:65:3"
},
{
"nativeSrc": "10803:46:3",
"nodeType": "YulAssignment",
"src": "10803:46:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10814:3:3",
"nodeType": "YulIdentifier",
"src": "10814:3:3"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "10841:6:3",
"nodeType": "YulIdentifier",
"src": "10841:6:3"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "10819:21:3",
"nodeType": "YulIdentifier",
"src": "10819:21:3"
},
"nativeSrc": "10819:29:3",
"nodeType": "YulFunctionCall",
"src": "10819:29:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10810:3:3",
"nodeType": "YulIdentifier",
"src": "10810:3:3"
},
"nativeSrc": "10810:39:3",
"nodeType": "YulFunctionCall",
"src": "10810:39:3"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "10803:3:3",
"nodeType": "YulIdentifier",
"src": "10803:3:3"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr",
"nativeSrc": "10498:357:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "10561:5:3",
"nodeType": "YulTypedName",
"src": "10561:5:3",
"type": ""
},
{
"name": "pos",
"nativeSrc": "10568:3:3",
"nodeType": "YulTypedName",
"src": "10568:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "10576:3:3",
"nodeType": "YulTypedName",
"src": "10576:3:3",
"type": ""
}
],
"src": "10498:357:3"
},
{
"body": {
"nativeSrc": "10962:73:3",
"nodeType": "YulBlock",
"src": "10962:73:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10979:3:3",
"nodeType": "YulIdentifier",
"src": "10979:3:3"
},
{
"name": "length",
"nativeSrc": "10984:6:3",
"nodeType": "YulIdentifier",
"src": "10984:6:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "10972:6:3",
"nodeType": "YulIdentifier",
"src": "10972:6:3"
},
"nativeSrc": "10972:19:3",
"nodeType": "YulFunctionCall",
"src": "10972:19:3"
},
"nativeSrc": "10972:19:3",
"nodeType": "YulExpressionStatement",
"src": "10972:19:3"
},
{
"nativeSrc": "11000:29:3",
"nodeType": "YulAssignment",
"src": "11000:29:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11019:3:3",
"nodeType": "YulIdentifier",
"src": "11019:3:3"
},
{
"kind": "number",
"nativeSrc": "11024:4:3",
"nodeType": "YulLiteral",
"src": "11024:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11015:3:3",
"nodeType": "YulIdentifier",
"src": "11015:3:3"
},
"nativeSrc": "11015:14:3",
"nodeType": "YulFunctionCall",
"src": "11015:14:3"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "11000:11:3",
"nodeType": "YulIdentifier",
"src": "11000:11:3"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "10861:174:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "10934:3:3",
"nodeType": "YulTypedName",
"src": "10934:3:3",
"type": ""
},
{
"name": "length",
"nativeSrc": "10939:6:3",
"nodeType": "YulTypedName",
"src": "10939:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "10950:11:3",
"nodeType": "YulTypedName",
"src": "10950:11:3",
"type": ""
}
],
"src": "10861:174:3"
},
{
"body": {
"nativeSrc": "11185:598:3",
"nodeType": "YulBlock",
"src": "11185:598:3",
"statements": [
{
"nativeSrc": "11195:68:3",
"nodeType": "YulVariableDeclaration",
"src": "11195:68:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "11257:5:3",
"nodeType": "YulIdentifier",
"src": "11257:5:3"
}
],
"functionName": {
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "11209:47:3",
"nodeType": "YulIdentifier",
"src": "11209:47:3"
},
"nativeSrc": "11209:54:3",
"nodeType": "YulFunctionCall",
"src": "11209:54:3"
},
"variables": [
{
"name": "length",
"nativeSrc": "11199:6:3",
"nodeType": "YulTypedName",
"src": "11199:6:3",
"type": ""
}
]
},
{
"nativeSrc": "11272:83:3",
"nodeType": "YulAssignment",
"src": "11272:83:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11343:3:3",
"nodeType": "YulIdentifier",
"src": "11343:3:3"
},
{
"name": "length",
"nativeSrc": "11348:6:3",
"nodeType": "YulIdentifier",
"src": "11348:6:3"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "11279:63:3",
"nodeType": "YulIdentifier",
"src": "11279:63:3"
},
"nativeSrc": "11279:76:3",
"nodeType": "YulFunctionCall",
"src": "11279:76:3"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "11272:3:3",
"nodeType": "YulIdentifier",
"src": "11272:3:3"
}
]
},
{
"nativeSrc": "11364:71:3",
"nodeType": "YulVariableDeclaration",
"src": "11364:71:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "11429:5:3",
"nodeType": "YulIdentifier",
"src": "11429:5:3"
}
],
"functionName": {
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "11379:49:3",
"nodeType": "YulIdentifier",
"src": "11379:49:3"
},
"nativeSrc": "11379:56:3",
"nodeType": "YulFunctionCall",
"src": "11379:56:3"
},
"variables": [
{
"name": "baseRef",
"nativeSrc": "11368:7:3",
"nodeType": "YulTypedName",
"src": "11368:7:3",
"type": ""
}
]
},
{
"nativeSrc": "11444:21:3",
"nodeType": "YulVariableDeclaration",
"src": "11444:21:3",
"value": {
"name": "baseRef",
"nativeSrc": "11458:7:3",
"nodeType": "YulIdentifier",
"src": "11458:7:3"
},
"variables": [
{
"name": "srcPtr",
"nativeSrc": "11448:6:3",
"nodeType": "YulTypedName",
"src": "11448:6:3",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "11534:224:3",
"nodeType": "YulBlock",
"src": "11534:224:3",
"statements": [
{
"nativeSrc": "11548:34:3",
"nodeType": "YulVariableDeclaration",
"src": "11548:34:3",
"value": {
"arguments": [
{
"name": "srcPtr",
"nativeSrc": "11575:6:3",
"nodeType": "YulIdentifier",
"src": "11575:6:3"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "11569:5:3",
"nodeType": "YulIdentifier",
"src": "11569:5:3"
},
"nativeSrc": "11569:13:3",
"nodeType": "YulFunctionCall",
"src": "11569:13:3"
},
"variables": [
{
"name": "elementValue0",
"nativeSrc": "11552:13:3",
"nodeType": "YulTypedName",
"src": "11552:13:3",
"type": ""
}
]
},
{
"nativeSrc": "11595:70:3",
"nodeType": "YulAssignment",
"src": "11595:70:3",
"value": {
"arguments": [
{
"name": "elementValue0",
"nativeSrc": "11646:13:3",
"nodeType": "YulIdentifier",
"src": "11646:13:3"
},
{
"name": "pos",
"nativeSrc": "11661:3:3",
"nodeType": "YulIdentifier",
"src": "11661:3:3"
}
],
"functionName": {
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nativeSrc": "11602:43:3",
"nodeType": "YulIdentifier",
"src": "11602:43:3"
},
"nativeSrc": "11602:63:3",
"nodeType": "YulFunctionCall",
"src": "11602:63:3"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "11595:3:3",
"nodeType": "YulIdentifier",
"src": "11595:3:3"
}
]
},
{
"nativeSrc": "11678:70:3",
"nodeType": "YulAssignment",
"src": "11678:70:3",
"value": {
"arguments": [
{
"name": "srcPtr",
"nativeSrc": "11741:6:3",
"nodeType": "YulIdentifier",
"src": "11741:6:3"
}
],
"functionName": {
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "11688:52:3",
"nodeType": "YulIdentifier",
"src": "11688:52:3"
},
"nativeSrc": "11688:60:3",
"nodeType": "YulFunctionCall",
"src": "11688:60:3"
},
"variableNames": [
{
"name": "srcPtr",
"nativeSrc": "11678:6:3",
"nodeType": "YulIdentifier",
"src": "11678:6:3"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "11496:1:3",
"nodeType": "YulIdentifier",
"src": "11496:1:3"
},
{
"name": "length",
"nativeSrc": "11499:6:3",
"nodeType": "YulIdentifier",
"src": "11499:6:3"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "11493:2:3",
"nodeType": "YulIdentifier",
"src": "11493:2:3"
},
"nativeSrc": "11493:13:3",
"nodeType": "YulFunctionCall",
"src": "11493:13:3"
},
"nativeSrc": "11474:284:3",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "11507:18:3",
"nodeType": "YulBlock",
"src": "11507:18:3",
"statements": [
{
"nativeSrc": "11509:14:3",
"nodeType": "YulAssignment",
"src": "11509:14:3",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "11518:1:3",
"nodeType": "YulIdentifier",
"src": "11518:1:3"
},
{
"kind": "number",
"nativeSrc": "11521:1:3",
"nodeType": "YulLiteral",
"src": "11521:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11514:3:3",
"nodeType": "YulIdentifier",
"src": "11514:3:3"
},
"nativeSrc": "11514:9:3",
"nodeType": "YulFunctionCall",
"src": "11514:9:3"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "11509:1:3",
"nodeType": "YulIdentifier",
"src": "11509:1:3"
}
]
}
]
},
"pre": {
"nativeSrc": "11478:14:3",
"nodeType": "YulBlock",
"src": "11478:14:3",
"statements": [
{
"nativeSrc": "11480:10:3",
"nodeType": "YulVariableDeclaration",
"src": "11480:10:3",
"value": {
"kind": "number",
"nativeSrc": "11489:1:3",
"nodeType": "YulLiteral",
"src": "11489:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "11484:1:3",
"nodeType": "YulTypedName",
"src": "11484:1:3",
"type": ""
}
]
}
]
},
"src": "11474:284:3"
},
{
"nativeSrc": "11767:10:3",
"nodeType": "YulAssignment",
"src": "11767:10:3",
"value": {
"name": "pos",
"nativeSrc": "11774:3:3",
"nodeType": "YulIdentifier",
"src": "11774:3:3"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "11767:3:3",
"nodeType": "YulIdentifier",
"src": "11767:3:3"
}
]
}
]
},
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "11071:712:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "11164:5:3",
"nodeType": "YulTypedName",
"src": "11164:5:3",
"type": ""
},
{
"name": "pos",
"nativeSrc": "11171:3:3",
"nodeType": "YulTypedName",
"src": "11171:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "11180:3:3",
"nodeType": "YulTypedName",
"src": "11180:3:3",
"type": ""
}
],
"src": "11071:712:3"
},
{
"body": {
"nativeSrc": "11963:1017:3",
"nodeType": "YulBlock",
"src": "11963:1017:3",
"statements": [
{
"nativeSrc": "11973:26:3",
"nodeType": "YulVariableDeclaration",
"src": "11973:26:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11989:3:3",
"nodeType": "YulIdentifier",
"src": "11989:3:3"
},
{
"kind": "number",
"nativeSrc": "11994:4:3",
"nodeType": "YulLiteral",
"src": "11994:4:3",
"type": "",
"value": "0x80"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11985:3:3",
"nodeType": "YulIdentifier",
"src": "11985:3:3"
},
"nativeSrc": "11985:14:3",
"nodeType": "YulFunctionCall",
"src": "11985:14:3"
},
"variables": [
{
"name": "tail",
"nativeSrc": "11977:4:3",
"nodeType": "YulTypedName",
"src": "11977:4:3",
"type": ""
}
]
},
{
"nativeSrc": "12009:162:3",
"nodeType": "YulBlock",
"src": "12009:162:3",
"statements": [
{
"nativeSrc": "12042:43:3",
"nodeType": "YulVariableDeclaration",
"src": "12042:43:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "12072:5:3",
"nodeType": "YulIdentifier",
"src": "12072:5:3"
},
{
"kind": "number",
"nativeSrc": "12079:4:3",
"nodeType": "YulLiteral",
"src": "12079:4:3",
"type": "",
"value": "0x00"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12068:3:3",
"nodeType": "YulIdentifier",
"src": "12068:3:3"
},
"nativeSrc": "12068:16:3",
"nodeType": "YulFunctionCall",
"src": "12068:16:3"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "12062:5:3",
"nodeType": "YulIdentifier",
"src": "12062:5:3"
},
"nativeSrc": "12062:23:3",
"nodeType": "YulFunctionCall",
"src": "12062:23:3"
},
"variables": [
{
"name": "memberValue0",
"nativeSrc": "12046:12:3",
"nodeType": "YulTypedName",
"src": "12046:12:3",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nativeSrc": "12132:12:3",
"nodeType": "YulIdentifier",
"src": "12132:12:3"
},
{
"arguments": [
{
"name": "pos",
"nativeSrc": "12150:3:3",
"nodeType": "YulIdentifier",
"src": "12150:3:3"
},
{
"kind": "number",
"nativeSrc": "12155:4:3",
"nodeType": "YulLiteral",
"src": "12155:4:3",
"type": "",
"value": "0x00"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12146:3:3",
"nodeType": "YulIdentifier",
"src": "12146:3:3"
},
"nativeSrc": "12146:14:3",
"nodeType": "YulFunctionCall",
"src": "12146:14:3"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "12098:33:3",
"nodeType": "YulIdentifier",
"src": "12098:33:3"
},
"nativeSrc": "12098:63:3",
"nodeType": "YulFunctionCall",
"src": "12098:63:3"
},
"nativeSrc": "12098:63:3",
"nodeType": "YulExpressionStatement",
"src": "12098:63:3"
}
]
},
{
"nativeSrc": "12181:240:3",
"nodeType": "YulBlock",
"src": "12181:240:3",
"statements": [
{
"nativeSrc": "12221:43:3",
"nodeType": "YulVariableDeclaration",
"src": "12221:43:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "12251:5:3",
"nodeType": "YulIdentifier",
"src": "12251:5:3"
},
{
"kind": "number",
"nativeSrc": "12258:4:3",
"nodeType": "YulLiteral",
"src": "12258:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12247:3:3",
"nodeType": "YulIdentifier",
"src": "12247:3:3"
},
"nativeSrc": "12247:16:3",
"nodeType": "YulFunctionCall",
"src": "12247:16:3"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "12241:5:3",
"nodeType": "YulIdentifier",
"src": "12241:5:3"
},
"nativeSrc": "12241:23:3",
"nodeType": "YulFunctionCall",
"src": "12241:23:3"
},
"variables": [
{
"name": "memberValue0",
"nativeSrc": "12225:12:3",
"nodeType": "YulTypedName",
"src": "12225:12:3",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nativeSrc": "12289:3:3",
"nodeType": "YulIdentifier",
"src": "12289:3:3"
},
{
"kind": "number",
"nativeSrc": "12294:4:3",
"nodeType": "YulLiteral",
"src": "12294:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12285:3:3",
"nodeType": "YulIdentifier",
"src": "12285:3:3"
},
"nativeSrc": "12285:14:3",
"nodeType": "YulFunctionCall",
"src": "12285:14:3"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "12305:4:3",
"nodeType": "YulIdentifier",
"src": "12305:4:3"
},
{
"name": "pos",
"nativeSrc": "12311:3:3",
"nodeType": "YulIdentifier",
"src": "12311:3:3"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "12301:3:3",
"nodeType": "YulIdentifier",
"src": "12301:3:3"
},
"nativeSrc": "12301:14:3",
"nodeType": "YulFunctionCall",
"src": "12301:14:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "12278:6:3",
"nodeType": "YulIdentifier",
"src": "12278:6:3"
},
"nativeSrc": "12278:38:3",
"nodeType": "YulFunctionCall",
"src": "12278:38:3"
},
"nativeSrc": "12278:38:3",
"nodeType": "YulExpressionStatement",
"src": "12278:38:3"
},
{
"nativeSrc": "12329:81:3",
"nodeType": "YulAssignment",
"src": "12329:81:3",
"value": {
"arguments": [
{
"name": "memberValue0",
"nativeSrc": "12391:12:3",
"nodeType": "YulIdentifier",
"src": "12391:12:3"
},
{
"name": "tail",
"nativeSrc": "12405:4:3",
"nodeType": "YulIdentifier",
"src": "12405:4:3"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr",
"nativeSrc": "12337:53:3",
"nodeType": "YulIdentifier",
"src": "12337:53:3"
},
"nativeSrc": "12337:73:3",
"nodeType": "YulFunctionCall",
"src": "12337:73:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "12329:4:3",
"nodeType": "YulIdentifier",
"src": "12329:4:3"
}
]
}
]
},
{
"nativeSrc": "12431:239:3",
"nodeType": "YulBlock",
"src": "12431:239:3",
"statements": [
{
"nativeSrc": "12470:43:3",
"nodeType": "YulVariableDeclaration",
"src": "12470:43:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "12500:5:3",
"nodeType": "YulIdentifier",
"src": "12500:5:3"
},
{
"kind": "number",
"nativeSrc": "12507:4:3",
"nodeType": "YulLiteral",
"src": "12507:4:3",
"type": "",
"value": "0x40"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12496:3:3",
"nodeType": "YulIdentifier",
"src": "12496:3:3"
},
"nativeSrc": "12496:16:3",
"nodeType": "YulFunctionCall",
"src": "12496:16:3"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "12490:5:3",
"nodeType": "YulIdentifier",
"src": "12490:5:3"
},
"nativeSrc": "12490:23:3",
"nodeType": "YulFunctionCall",
"src": "12490:23:3"
},
"variables": [
{
"name": "memberValue0",
"nativeSrc": "12474:12:3",
"nodeType": "YulTypedName",
"src": "12474:12:3",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nativeSrc": "12538:3:3",
"nodeType": "YulIdentifier",
"src": "12538:3:3"
},
{
"kind": "number",
"nativeSrc": "12543:4:3",
"nodeType": "YulLiteral",
"src": "12543:4:3",
"type": "",
"value": "0x40"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12534:3:3",
"nodeType": "YulIdentifier",
"src": "12534:3:3"
},
"nativeSrc": "12534:14:3",
"nodeType": "YulFunctionCall",
"src": "12534:14:3"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "12554:4:3",
"nodeType": "YulIdentifier",
"src": "12554:4:3"
},
{
"name": "pos",
"nativeSrc": "12560:3:3",
"nodeType": "YulIdentifier",
"src": "12560:3:3"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "12550:3:3",
"nodeType": "YulIdentifier",
"src": "12550:3:3"
},
"nativeSrc": "12550:14:3",
"nodeType": "YulFunctionCall",
"src": "12550:14:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "12527:6:3",
"nodeType": "YulIdentifier",
"src": "12527:6:3"
},
"nativeSrc": "12527:38:3",
"nodeType": "YulFunctionCall",
"src": "12527:38:3"
},
"nativeSrc": "12527:38:3",
"nodeType": "YulExpressionStatement",
"src": "12527:38:3"
},
{
"nativeSrc": "12578:81:3",
"nodeType": "YulAssignment",
"src": "12578:81:3",
"value": {
"arguments": [
{
"name": "memberValue0",
"nativeSrc": "12640:12:3",
"nodeType": "YulIdentifier",
"src": "12640:12:3"
},
{
"name": "tail",
"nativeSrc": "12654:4:3",
"nodeType": "YulIdentifier",
"src": "12654:4:3"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr",
"nativeSrc": "12586:53:3",
"nodeType": "YulIdentifier",
"src": "12586:53:3"
},
"nativeSrc": "12586:73:3",
"nodeType": "YulFunctionCall",
"src": "12586:73:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "12578:4:3",
"nodeType": "YulIdentifier",
"src": "12578:4:3"
}
]
}
]
},
{
"nativeSrc": "12680:273:3",
"nodeType": "YulBlock",
"src": "12680:273:3",
"statements": [
{
"nativeSrc": "12723:43:3",
"nodeType": "YulVariableDeclaration",
"src": "12723:43:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "12753:5:3",
"nodeType": "YulIdentifier",
"src": "12753:5:3"
},
{
"kind": "number",
"nativeSrc": "12760:4:3",
"nodeType": "YulLiteral",
"src": "12760:4:3",
"type": "",
"value": "0x60"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12749:3:3",
"nodeType": "YulIdentifier",
"src": "12749:3:3"
},
"nativeSrc": "12749:16:3",
"nodeType": "YulFunctionCall",
"src": "12749:16:3"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "12743:5:3",
"nodeType": "YulIdentifier",
"src": "12743:5:3"
},
"nativeSrc": "12743:23:3",
"nodeType": "YulFunctionCall",
"src": "12743:23:3"
},
"variables": [
{
"name": "memberValue0",
"nativeSrc": "12727:12:3",
"nodeType": "YulTypedName",
"src": "12727:12:3",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nativeSrc": "12791:3:3",
"nodeType": "YulIdentifier",
"src": "12791:3:3"
},
{
"kind": "number",
"nativeSrc": "12796:4:3",
"nodeType": "YulLiteral",
"src": "12796:4:3",
"type": "",
"value": "0x60"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12787:3:3",
"nodeType": "YulIdentifier",
"src": "12787:3:3"
},
"nativeSrc": "12787:14:3",
"nodeType": "YulFunctionCall",
"src": "12787:14:3"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "12807:4:3",
"nodeType": "YulIdentifier",
"src": "12807:4:3"
},
{
"name": "pos",
"nativeSrc": "12813:3:3",
"nodeType": "YulIdentifier",
"src": "12813:3:3"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "12803:3:3",
"nodeType": "YulIdentifier",
"src": "12803:3:3"
},
"nativeSrc": "12803:14:3",
"nodeType": "YulFunctionCall",
"src": "12803:14:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "12780:6:3",
"nodeType": "YulIdentifier",
"src": "12780:6:3"
},
"nativeSrc": "12780:38:3",
"nodeType": "YulFunctionCall",
"src": "12780:38:3"
},
"nativeSrc": "12780:38:3",
"nodeType": "YulExpressionStatement",
"src": "12780:38:3"
},
{
"nativeSrc": "12831:111:3",
"nodeType": "YulAssignment",
"src": "12831:111:3",
"value": {
"arguments": [
{
"name": "memberValue0",
"nativeSrc": "12923:12:3",
"nodeType": "YulIdentifier",
"src": "12923:12:3"
},
{
"name": "tail",
"nativeSrc": "12937:4:3",
"nodeType": "YulIdentifier",
"src": "12937:4:3"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "12839:83:3",
"nodeType": "YulIdentifier",
"src": "12839:83:3"
},
"nativeSrc": "12839:103:3",
"nodeType": "YulFunctionCall",
"src": "12839:103:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "12831:4:3",
"nodeType": "YulIdentifier",
"src": "12831:4:3"
}
]
}
]
},
{
"nativeSrc": "12963:11:3",
"nodeType": "YulAssignment",
"src": "12963:11:3",
"value": {
"name": "tail",
"nativeSrc": "12970:4:3",
"nodeType": "YulIdentifier",
"src": "12970:4:3"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "12963:3:3",
"nodeType": "YulIdentifier",
"src": "12963:3:3"
}
]
}
]
},
"name": "abi_encode_t_struct$_Contact_$14_memory_ptr_to_t_struct$_Contact_$14_memory_ptr",
"nativeSrc": "11853:1127:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "11942:5:3",
"nodeType": "YulTypedName",
"src": "11942:5:3",
"type": ""
},
{
"name": "pos",
"nativeSrc": "11949:3:3",
"nodeType": "YulTypedName",
"src": "11949:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "11958:3:3",
"nodeType": "YulTypedName",
"src": "11958:3:3",
"type": ""
}
],
"src": "11853:1127:3"
},
{
"body": {
"nativeSrc": "13112:122:3",
"nodeType": "YulBlock",
"src": "13112:122:3",
"statements": [
{
"nativeSrc": "13122:106:3",
"nodeType": "YulAssignment",
"src": "13122:106:3",
"value": {
"arguments": [
{
"name": "value0",
"nativeSrc": "13216:6:3",
"nodeType": "YulIdentifier",
"src": "13216:6:3"
},
{
"name": "pos",
"nativeSrc": "13224:3:3",
"nodeType": "YulIdentifier",
"src": "13224:3:3"
}
],
"functionName": {
"name": "abi_encode_t_struct$_Contact_$14_memory_ptr_to_t_struct$_Contact_$14_memory_ptr",
"nativeSrc": "13136:79:3",
"nodeType": "YulIdentifier",
"src": "13136:79:3"
},
"nativeSrc": "13136:92:3",
"nodeType": "YulFunctionCall",
"src": "13136:92:3"
},
"variableNames": [
{
"name": "updatedPos",
"nativeSrc": "13122:10:3",
"nodeType": "YulIdentifier",
"src": "13122:10:3"
}
]
}
]
},
"name": "abi_encodeUpdatedPos_t_struct$_Contact_$14_memory_ptr_to_t_struct$_Contact_$14_memory_ptr",
"nativeSrc": "12986:248:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value0",
"nativeSrc": "13085:6:3",
"nodeType": "YulTypedName",
"src": "13085:6:3",
"type": ""
},
{
"name": "pos",
"nativeSrc": "13093:3:3",
"nodeType": "YulTypedName",
"src": "13093:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updatedPos",
"nativeSrc": "13101:10:3",
"nodeType": "YulTypedName",
"src": "13101:10:3",
"type": ""
}
],
"src": "12986:248:3"
},
{
"body": {
"nativeSrc": "13338:38:3",
"nodeType": "YulBlock",
"src": "13338:38:3",
"statements": [
{
"nativeSrc": "13348:22:3",
"nodeType": "YulAssignment",
"src": "13348:22:3",
"value": {
"arguments": [
{
"name": "ptr",
"nativeSrc": "13360:3:3",
"nodeType": "YulIdentifier",
"src": "13360:3:3"
},
{
"kind": "number",
"nativeSrc": "13365:4:3",
"nodeType": "YulLiteral",
"src": "13365:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13356:3:3",
"nodeType": "YulIdentifier",
"src": "13356:3:3"
},
"nativeSrc": "13356:14:3",
"nodeType": "YulFunctionCall",
"src": "13356:14:3"
},
"variableNames": [
{
"name": "next",
"nativeSrc": "13348:4:3",
"nodeType": "YulIdentifier",
"src": "13348:4:3"
}
]
}
]
},
"name": "array_nextElement_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr",
"nativeSrc": "13240:136:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "13325:3:3",
"nodeType": "YulTypedName",
"src": "13325:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "next",
"nativeSrc": "13333:4:3",
"nodeType": "YulTypedName",
"src": "13333:4:3",
"type": ""
}
],
"src": "13240:136:3"
},
{
"body": {
"nativeSrc": "13620:925:3",
"nodeType": "YulBlock",
"src": "13620:925:3",
"statements": [
{
"nativeSrc": "13630:91:3",
"nodeType": "YulVariableDeclaration",
"src": "13630:91:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "13715:5:3",
"nodeType": "YulIdentifier",
"src": "13715:5:3"
}
],
"functionName": {
"name": "array_length_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr",
"nativeSrc": "13644:70:3",
"nodeType": "YulIdentifier",
"src": "13644:70:3"
},
"nativeSrc": "13644:77:3",
"nodeType": "YulFunctionCall",
"src": "13644:77:3"
},
"variables": [
{
"name": "length",
"nativeSrc": "13634:6:3",
"nodeType": "YulTypedName",
"src": "13634:6:3",
"type": ""
}
]
},
{
"nativeSrc": "13730:116:3",
"nodeType": "YulAssignment",
"src": "13730:116:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "13834:3:3",
"nodeType": "YulIdentifier",
"src": "13834:3:3"
},
{
"name": "length",
"nativeSrc": "13839:6:3",
"nodeType": "YulIdentifier",
"src": "13839:6:3"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr_fromStack",
"nativeSrc": "13737:96:3",
"nodeType": "YulIdentifier",
"src": "13737:96:3"
},
"nativeSrc": "13737:109:3",
"nodeType": "YulFunctionCall",
"src": "13737:109:3"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "13730:3:3",
"nodeType": "YulIdentifier",
"src": "13730:3:3"
}
]
},
{
"nativeSrc": "13855:20:3",
"nodeType": "YulVariableDeclaration",
"src": "13855:20:3",
"value": {
"name": "pos",
"nativeSrc": "13872:3:3",
"nodeType": "YulIdentifier",
"src": "13872:3:3"
},
"variables": [
{
"name": "headStart",
"nativeSrc": "13859:9:3",
"nodeType": "YulTypedName",
"src": "13859:9:3",
"type": ""
}
]
},
{
"nativeSrc": "13884:39:3",
"nodeType": "YulVariableDeclaration",
"src": "13884:39:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "13900:3:3",
"nodeType": "YulIdentifier",
"src": "13900:3:3"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "13909:6:3",
"nodeType": "YulIdentifier",
"src": "13909:6:3"
},
{
"kind": "number",
"nativeSrc": "13917:4:3",
"nodeType": "YulLiteral",
"src": "13917:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "13905:3:3",
"nodeType": "YulIdentifier",
"src": "13905:3:3"
},
"nativeSrc": "13905:17:3",
"nodeType": "YulFunctionCall",
"src": "13905:17:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13896:3:3",
"nodeType": "YulIdentifier",
"src": "13896:3:3"
},
"nativeSrc": "13896:27:3",
"nodeType": "YulFunctionCall",
"src": "13896:27:3"
},
"variables": [
{
"name": "tail",
"nativeSrc": "13888:4:3",
"nodeType": "YulTypedName",
"src": "13888:4:3",
"type": ""
}
]
},
{
"nativeSrc": "13932:94:3",
"nodeType": "YulVariableDeclaration",
"src": "13932:94:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "14020:5:3",
"nodeType": "YulIdentifier",
"src": "14020:5:3"
}
],
"functionName": {
"name": "array_dataslot_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr",
"nativeSrc": "13947:72:3",
"nodeType": "YulIdentifier",
"src": "13947:72:3"
},
"nativeSrc": "13947:79:3",
"nodeType": "YulFunctionCall",
"src": "13947:79:3"
},
"variables": [
{
"name": "baseRef",
"nativeSrc": "13936:7:3",
"nodeType": "YulTypedName",
"src": "13936:7:3",
"type": ""
}
]
},
{
"nativeSrc": "14035:21:3",
"nodeType": "YulVariableDeclaration",
"src": "14035:21:3",
"value": {
"name": "baseRef",
"nativeSrc": "14049:7:3",
"nodeType": "YulIdentifier",
"src": "14049:7:3"
},
"variables": [
{
"name": "srcPtr",
"nativeSrc": "14039:6:3",
"nodeType": "YulTypedName",
"src": "14039:6:3",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "14125:375:3",
"nodeType": "YulBlock",
"src": "14125:375:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "14146:3:3",
"nodeType": "YulIdentifier",
"src": "14146:3:3"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "14155:4:3",
"nodeType": "YulIdentifier",
"src": "14155:4:3"
},
{
"name": "headStart",
"nativeSrc": "14161:9:3",
"nodeType": "YulIdentifier",
"src": "14161:9:3"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "14151:3:3",
"nodeType": "YulIdentifier",
"src": "14151:3:3"
},
"nativeSrc": "14151:20:3",
"nodeType": "YulFunctionCall",
"src": "14151:20:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "14139:6:3",
"nodeType": "YulIdentifier",
"src": "14139:6:3"
},
"nativeSrc": "14139:33:3",
"nodeType": "YulFunctionCall",
"src": "14139:33:3"
},
"nativeSrc": "14139:33:3",
"nodeType": "YulExpressionStatement",
"src": "14139:33:3"
},
{
"nativeSrc": "14185:34:3",
"nodeType": "YulVariableDeclaration",
"src": "14185:34:3",
"value": {
"arguments": [
{
"name": "srcPtr",
"nativeSrc": "14212:6:3",
"nodeType": "YulIdentifier",
"src": "14212:6:3"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "14206:5:3",
"nodeType": "YulIdentifier",
"src": "14206:5:3"
},
"nativeSrc": "14206:13:3",
"nodeType": "YulFunctionCall",
"src": "14206:13:3"
},
"variables": [
{
"name": "elementValue0",
"nativeSrc": "14189:13:3",
"nodeType": "YulTypedName",
"src": "14189:13:3",
"type": ""
}
]
},
{
"nativeSrc": "14232:118:3",
"nodeType": "YulAssignment",
"src": "14232:118:3",
"value": {
"arguments": [
{
"name": "elementValue0",
"nativeSrc": "14330:13:3",
"nodeType": "YulIdentifier",
"src": "14330:13:3"
},
{
"name": "tail",
"nativeSrc": "14345:4:3",
"nodeType": "YulIdentifier",
"src": "14345:4:3"
}
],
"functionName": {
"name": "abi_encodeUpdatedPos_t_struct$_Contact_$14_memory_ptr_to_t_struct$_Contact_$14_memory_ptr",
"nativeSrc": "14240:89:3",
"nodeType": "YulIdentifier",
"src": "14240:89:3"
},
"nativeSrc": "14240:110:3",
"nodeType": "YulFunctionCall",
"src": "14240:110:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "14232:4:3",
"nodeType": "YulIdentifier",
"src": "14232:4:3"
}
]
},
{
"nativeSrc": "14363:93:3",
"nodeType": "YulAssignment",
"src": "14363:93:3",
"value": {
"arguments": [
{
"name": "srcPtr",
"nativeSrc": "14449:6:3",
"nodeType": "YulIdentifier",
"src": "14449:6:3"
}
],
"functionName": {
"name": "array_nextElement_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr",
"nativeSrc": "14373:75:3",
"nodeType": "YulIdentifier",
"src": "14373:75:3"
},
"nativeSrc": "14373:83:3",
"nodeType": "YulFunctionCall",
"src": "14373:83:3"
},
"variableNames": [
{
"name": "srcPtr",
"nativeSrc": "14363:6:3",
"nodeType": "YulIdentifier",
"src": "14363:6:3"
}
]
},
{
"nativeSrc": "14469:21:3",
"nodeType": "YulAssignment",
"src": "14469:21:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "14480:3:3",
"nodeType": "YulIdentifier",
"src": "14480:3:3"
},
{
"kind": "number",
"nativeSrc": "14485:4:3",
"nodeType": "YulLiteral",
"src": "14485:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14476:3:3",
"nodeType": "YulIdentifier",
"src": "14476:3:3"
},
"nativeSrc": "14476:14:3",
"nodeType": "YulFunctionCall",
"src": "14476:14:3"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "14469:3:3",
"nodeType": "YulIdentifier",
"src": "14469:3:3"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "14087:1:3",
"nodeType": "YulIdentifier",
"src": "14087:1:3"
},
{
"name": "length",
"nativeSrc": "14090:6:3",
"nodeType": "YulIdentifier",
"src": "14090:6:3"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "14084:2:3",
"nodeType": "YulIdentifier",
"src": "14084:2:3"
},
"nativeSrc": "14084:13:3",
"nodeType": "YulFunctionCall",
"src": "14084:13:3"
},
"nativeSrc": "14065:435:3",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "14098:18:3",
"nodeType": "YulBlock",
"src": "14098:18:3",
"statements": [
{
"nativeSrc": "14100:14:3",
"nodeType": "YulAssignment",
"src": "14100:14:3",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "14109:1:3",
"nodeType": "YulIdentifier",
"src": "14109:1:3"
},
{
"kind": "number",
"nativeSrc": "14112:1:3",
"nodeType": "YulLiteral",
"src": "14112:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14105:3:3",
"nodeType": "YulIdentifier",
"src": "14105:3:3"
},
"nativeSrc": "14105:9:3",
"nodeType": "YulFunctionCall",
"src": "14105:9:3"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "14100:1:3",
"nodeType": "YulIdentifier",
"src": "14100:1:3"
}
]
}
]
},
"pre": {
"nativeSrc": "14069:14:3",
"nodeType": "YulBlock",
"src": "14069:14:3",
"statements": [
{
"nativeSrc": "14071:10:3",
"nodeType": "YulVariableDeclaration",
"src": "14071:10:3",
"value": {
"kind": "number",
"nativeSrc": "14080:1:3",
"nodeType": "YulLiteral",
"src": "14080:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "14075:1:3",
"nodeType": "YulTypedName",
"src": "14075:1:3",
"type": ""
}
]
}
]
},
"src": "14065:435:3"
},
{
"nativeSrc": "14509:11:3",
"nodeType": "YulAssignment",
"src": "14509:11:3",
"value": {
"name": "tail",
"nativeSrc": "14516:4:3",
"nodeType": "YulIdentifier",
"src": "14516:4:3"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "14509:3:3",
"nodeType": "YulIdentifier",
"src": "14509:3:3"
}
]
},
{
"nativeSrc": "14529:10:3",
"nodeType": "YulAssignment",
"src": "14529:10:3",
"value": {
"name": "pos",
"nativeSrc": "14536:3:3",
"nodeType": "YulIdentifier",
"src": "14536:3:3"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "14529:3:3",
"nodeType": "YulIdentifier",
"src": "14529:3:3"
}
]
}
]
},
"name": "abi_encode_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr_fromStack",
"nativeSrc": "13450:1095:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "13599:5:3",
"nodeType": "YulTypedName",
"src": "13599:5:3",
"type": ""
},
{
"name": "pos",
"nativeSrc": "13606:3:3",
"nodeType": "YulTypedName",
"src": "13606:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "13615:3:3",
"nodeType": "YulTypedName",
"src": "13615:3:3",
"type": ""
}
],
"src": "13450:1095:3"
},
{
"body": {
"nativeSrc": "14745:271:3",
"nodeType": "YulBlock",
"src": "14745:271:3",
"statements": [
{
"nativeSrc": "14755:26:3",
"nodeType": "YulAssignment",
"src": "14755:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "14767:9:3",
"nodeType": "YulIdentifier",
"src": "14767:9:3"
},
{
"kind": "number",
"nativeSrc": "14778:2:3",
"nodeType": "YulLiteral",
"src": "14778:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14763:3:3",
"nodeType": "YulIdentifier",
"src": "14763:3:3"
},
"nativeSrc": "14763:18:3",
"nodeType": "YulFunctionCall",
"src": "14763:18:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "14755:4:3",
"nodeType": "YulIdentifier",
"src": "14755:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "14802:9:3",
"nodeType": "YulIdentifier",
"src": "14802:9:3"
},
{
"kind": "number",
"nativeSrc": "14813:1:3",
"nodeType": "YulLiteral",
"src": "14813:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14798:3:3",
"nodeType": "YulIdentifier",
"src": "14798:3:3"
},
"nativeSrc": "14798:17:3",
"nodeType": "YulFunctionCall",
"src": "14798:17:3"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "14821:4:3",
"nodeType": "YulIdentifier",
"src": "14821:4:3"
},
{
"name": "headStart",
"nativeSrc": "14827:9:3",
"nodeType": "YulIdentifier",
"src": "14827:9:3"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "14817:3:3",
"nodeType": "YulIdentifier",
"src": "14817:3:3"
},
"nativeSrc": "14817:20:3",
"nodeType": "YulFunctionCall",
"src": "14817:20:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "14791:6:3",
"nodeType": "YulIdentifier",
"src": "14791:6:3"
},
"nativeSrc": "14791:47:3",
"nodeType": "YulFunctionCall",
"src": "14791:47:3"
},
"nativeSrc": "14791:47:3",
"nodeType": "YulExpressionStatement",
"src": "14791:47:3"
},
{
"nativeSrc": "14847:162:3",
"nodeType": "YulAssignment",
"src": "14847:162:3",
"value": {
"arguments": [
{
"name": "value0",
"nativeSrc": "14995:6:3",
"nodeType": "YulIdentifier",
"src": "14995:6:3"
},
{
"name": "tail",
"nativeSrc": "15004:4:3",
"nodeType": "YulIdentifier",
"src": "15004:4:3"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr_fromStack",
"nativeSrc": "14855:139:3",
"nodeType": "YulIdentifier",
"src": "14855:139:3"
},
"nativeSrc": "14855:154:3",
"nodeType": "YulFunctionCall",
"src": "14855:154:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "14847:4:3",
"nodeType": "YulIdentifier",
"src": "14847:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
"nativeSrc": "14551:465:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "14717:9:3",
"nodeType": "YulTypedName",
"src": "14717:9:3",
"type": ""
},
{
"name": "value0",
"nativeSrc": "14729:6:3",
"nodeType": "YulTypedName",
"src": "14729:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "14740:4:3",
"nodeType": "YulTypedName",
"src": "14740:4:3",
"type": ""
}
],
"src": "14551:465:3"
},
{
"body": {
"nativeSrc": "15065:79:3",
"nodeType": "YulBlock",
"src": "15065:79:3",
"statements": [
{
"body": {
"nativeSrc": "15122:16:3",
"nodeType": "YulBlock",
"src": "15122:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "15131:1:3",
"nodeType": "YulLiteral",
"src": "15131:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "15134:1:3",
"nodeType": "YulLiteral",
"src": "15134:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "15124:6:3",
"nodeType": "YulIdentifier",
"src": "15124:6:3"
},
"nativeSrc": "15124:12:3",
"nodeType": "YulFunctionCall",
"src": "15124:12:3"
},
"nativeSrc": "15124:12:3",
"nodeType": "YulExpressionStatement",
"src": "15124:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "15088:5:3",
"nodeType": "YulIdentifier",
"src": "15088:5:3"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "15113:5:3",
"nodeType": "YulIdentifier",
"src": "15113:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "15095:17:3",
"nodeType": "YulIdentifier",
"src": "15095:17:3"
},
"nativeSrc": "15095:24:3",
"nodeType": "YulFunctionCall",
"src": "15095:24:3"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "15085:2:3",
"nodeType": "YulIdentifier",
"src": "15085:2:3"
},
"nativeSrc": "15085:35:3",
"nodeType": "YulFunctionCall",
"src": "15085:35:3"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "15078:6:3",
"nodeType": "YulIdentifier",
"src": "15078:6:3"
},
"nativeSrc": "15078:43:3",
"nodeType": "YulFunctionCall",
"src": "15078:43:3"
},
"nativeSrc": "15075:63:3",
"nodeType": "YulIf",
"src": "15075:63:3"
}
]
},
"name": "validator_revert_t_address",
"nativeSrc": "15022:122:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "15058:5:3",
"nodeType": "YulTypedName",
"src": "15058:5:3",
"type": ""
}
],
"src": "15022:122:3"
},
{
"body": {
"nativeSrc": "15202:87:3",
"nodeType": "YulBlock",
"src": "15202:87:3",
"statements": [
{
"nativeSrc": "15212:29:3",
"nodeType": "YulAssignment",
"src": "15212:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "15234:6:3",
"nodeType": "YulIdentifier",
"src": "15234:6:3"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "15221:12:3",
"nodeType": "YulIdentifier",
"src": "15221:12:3"
},
"nativeSrc": "15221:20:3",
"nodeType": "YulFunctionCall",
"src": "15221:20:3"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "15212:5:3",
"nodeType": "YulIdentifier",
"src": "15212:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "15277:5:3",
"nodeType": "YulIdentifier",
"src": "15277:5:3"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nativeSrc": "15250:26:3",
"nodeType": "YulIdentifier",
"src": "15250:26:3"
},
"nativeSrc": "15250:33:3",
"nodeType": "YulFunctionCall",
"src": "15250:33:3"
},
"nativeSrc": "15250:33:3",
"nodeType": "YulExpressionStatement",
"src": "15250:33:3"
}
]
},
"name": "abi_decode_t_address",
"nativeSrc": "15150:139:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "15180:6:3",
"nodeType": "YulTypedName",
"src": "15180:6:3",
"type": ""
},
{
"name": "end",
"nativeSrc": "15188:3:3",
"nodeType": "YulTypedName",
"src": "15188:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "15196:5:3",
"nodeType": "YulTypedName",
"src": "15196:5:3",
"type": ""
}
],
"src": "15150:139:3"
},
{
"body": {
"nativeSrc": "15361:263:3",
"nodeType": "YulBlock",
"src": "15361:263:3",
"statements": [
{
"body": {
"nativeSrc": "15407:83:3",
"nodeType": "YulBlock",
"src": "15407:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "15409:77:3",
"nodeType": "YulIdentifier",
"src": "15409:77:3"
},
"nativeSrc": "15409:79:3",
"nodeType": "YulFunctionCall",
"src": "15409:79:3"
},
"nativeSrc": "15409:79:3",
"nodeType": "YulExpressionStatement",
"src": "15409:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "15382:7:3",
"nodeType": "YulIdentifier",
"src": "15382:7:3"
},
{
"name": "headStart",
"nativeSrc": "15391:9:3",
"nodeType": "YulIdentifier",
"src": "15391:9:3"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "15378:3:3",
"nodeType": "YulIdentifier",
"src": "15378:3:3"
},
"nativeSrc": "15378:23:3",
"nodeType": "YulFunctionCall",
"src": "15378:23:3"
},
{
"kind": "number",
"nativeSrc": "15403:2:3",
"nodeType": "YulLiteral",
"src": "15403:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "15374:3:3",
"nodeType": "YulIdentifier",
"src": "15374:3:3"
},
"nativeSrc": "15374:32:3",
"nodeType": "YulFunctionCall",
"src": "15374:32:3"
},
"nativeSrc": "15371:119:3",
"nodeType": "YulIf",
"src": "15371:119:3"
},
{
"nativeSrc": "15500:117:3",
"nodeType": "YulBlock",
"src": "15500:117:3",
"statements": [
{
"nativeSrc": "15515:15:3",
"nodeType": "YulVariableDeclaration",
"src": "15515:15:3",
"value": {
"kind": "number",
"nativeSrc": "15529:1:3",
"nodeType": "YulLiteral",
"src": "15529:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "15519:6:3",
"nodeType": "YulTypedName",
"src": "15519:6:3",
"type": ""
}
]
},
{
"nativeSrc": "15544:63:3",
"nodeType": "YulAssignment",
"src": "15544:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "15579:9:3",
"nodeType": "YulIdentifier",
"src": "15579:9:3"
},
{
"name": "offset",
"nativeSrc": "15590:6:3",
"nodeType": "YulIdentifier",
"src": "15590:6:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "15575:3:3",
"nodeType": "YulIdentifier",
"src": "15575:3:3"
},
"nativeSrc": "15575:22:3",
"nodeType": "YulFunctionCall",
"src": "15575:22:3"
},
{
"name": "dataEnd",
"nativeSrc": "15599:7:3",
"nodeType": "YulIdentifier",
"src": "15599:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "15554:20:3",
"nodeType": "YulIdentifier",
"src": "15554:20:3"
},
"nativeSrc": "15554:53:3",
"nodeType": "YulFunctionCall",
"src": "15554:53:3"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "15544:6:3",
"nodeType": "YulIdentifier",
"src": "15544:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nativeSrc": "15295:329:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "15331:9:3",
"nodeType": "YulTypedName",
"src": "15331:9:3",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "15342:7:3",
"nodeType": "YulTypedName",
"src": "15342:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "15354:6:3",
"nodeType": "YulTypedName",
"src": "15354:6:3",
"type": ""
}
],
"src": "15295:329:3"
},
{
"body": {
"nativeSrc": "15658:152:3",
"nodeType": "YulBlock",
"src": "15658:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "15675:1:3",
"nodeType": "YulLiteral",
"src": "15675:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "15678:77:3",
"nodeType": "YulLiteral",
"src": "15678:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "15668:6:3",
"nodeType": "YulIdentifier",
"src": "15668:6:3"
},
"nativeSrc": "15668:88:3",
"nodeType": "YulFunctionCall",
"src": "15668:88:3"
},
"nativeSrc": "15668:88:3",
"nodeType": "YulExpressionStatement",
"src": "15668:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "15772:1:3",
"nodeType": "YulLiteral",
"src": "15772:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "15775:4:3",
"nodeType": "YulLiteral",
"src": "15775:4:3",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "15765:6:3",
"nodeType": "YulIdentifier",
"src": "15765:6:3"
},
"nativeSrc": "15765:15:3",
"nodeType": "YulFunctionCall",
"src": "15765:15:3"
},
"nativeSrc": "15765:15:3",
"nodeType": "YulExpressionStatement",
"src": "15765:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "15796:1:3",
"nodeType": "YulLiteral",
"src": "15796:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "15799:4:3",
"nodeType": "YulLiteral",
"src": "15799:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "15789:6:3",
"nodeType": "YulIdentifier",
"src": "15789:6:3"
},
"nativeSrc": "15789:15:3",
"nodeType": "YulFunctionCall",
"src": "15789:15:3"
},
"nativeSrc": "15789:15:3",
"nodeType": "YulExpressionStatement",
"src": "15789:15:3"
}
]
},
"name": "panic_error_0x22",
"nativeSrc": "15630:180:3",
"nodeType": "YulFunctionDefinition",
"src": "15630:180:3"
},
{
"body": {
"nativeSrc": "15867:269:3",
"nodeType": "YulBlock",
"src": "15867:269:3",
"statements": [
{
"nativeSrc": "15877:22:3",
"nodeType": "YulAssignment",
"src": "15877:22:3",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "15891:4:3",
"nodeType": "YulIdentifier",
"src": "15891:4:3"
},
{
"kind": "number",
"nativeSrc": "15897:1:3",
"nodeType": "YulLiteral",
"src": "15897:1:3",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nativeSrc": "15887:3:3",
"nodeType": "YulIdentifier",
"src": "15887:3:3"
},
"nativeSrc": "15887:12:3",
"nodeType": "YulFunctionCall",
"src": "15887:12:3"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "15877:6:3",
"nodeType": "YulIdentifier",
"src": "15877:6:3"
}
]
},
{
"nativeSrc": "15908:38:3",
"nodeType": "YulVariableDeclaration",
"src": "15908:38:3",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "15938:4:3",
"nodeType": "YulIdentifier",
"src": "15938:4:3"
},
{
"kind": "number",
"nativeSrc": "15944:1:3",
"nodeType": "YulLiteral",
"src": "15944:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "15934:3:3",
"nodeType": "YulIdentifier",
"src": "15934:3:3"
},
"nativeSrc": "15934:12:3",
"nodeType": "YulFunctionCall",
"src": "15934:12:3"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "15912:18:3",
"nodeType": "YulTypedName",
"src": "15912:18:3",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "15985:51:3",
"nodeType": "YulBlock",
"src": "15985:51:3",
"statements": [
{
"nativeSrc": "15999:27:3",
"nodeType": "YulAssignment",
"src": "15999:27:3",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "16013:6:3",
"nodeType": "YulIdentifier",
"src": "16013:6:3"
},
{
"kind": "number",
"nativeSrc": "16021:4:3",
"nodeType": "YulLiteral",
"src": "16021:4:3",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "16009:3:3",
"nodeType": "YulIdentifier",
"src": "16009:3:3"
},
"nativeSrc": "16009:17:3",
"nodeType": "YulFunctionCall",
"src": "16009:17:3"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "15999:6:3",
"nodeType": "YulIdentifier",
"src": "15999:6:3"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "15965:18:3",
"nodeType": "YulIdentifier",
"src": "15965:18:3"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "15958:6:3",
"nodeType": "YulIdentifier",
"src": "15958:6:3"
},
"nativeSrc": "15958:26:3",
"nodeType": "YulFunctionCall",
"src": "15958:26:3"
},
"nativeSrc": "15955:81:3",
"nodeType": "YulIf",
"src": "15955:81:3"
},
{
"body": {
"nativeSrc": "16088:42:3",
"nodeType": "YulBlock",
"src": "16088:42:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nativeSrc": "16102:16:3",
"nodeType": "YulIdentifier",
"src": "16102:16:3"
},
"nativeSrc": "16102:18:3",
"nodeType": "YulFunctionCall",
"src": "16102:18:3"
},
"nativeSrc": "16102:18:3",
"nodeType": "YulExpressionStatement",
"src": "16102:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "16052:18:3",
"nodeType": "YulIdentifier",
"src": "16052:18:3"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "16075:6:3",
"nodeType": "YulIdentifier",
"src": "16075:6:3"
},
{
"kind": "number",
"nativeSrc": "16083:2:3",
"nodeType": "YulLiteral",
"src": "16083:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "16072:2:3",
"nodeType": "YulIdentifier",
"src": "16072:2:3"
},
"nativeSrc": "16072:14:3",
"nodeType": "YulFunctionCall",
"src": "16072:14:3"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "16049:2:3",
"nodeType": "YulIdentifier",
"src": "16049:2:3"
},
"nativeSrc": "16049:38:3",
"nodeType": "YulFunctionCall",
"src": "16049:38:3"
},
"nativeSrc": "16046:84:3",
"nodeType": "YulIf",
"src": "16046:84:3"
}
]
},
"name": "extract_byte_array_length",
"nativeSrc": "15816:320:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "15851:4:3",
"nodeType": "YulTypedName",
"src": "15851:4:3",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "15860:6:3",
"nodeType": "YulTypedName",
"src": "15860:6:3",
"type": ""
}
],
"src": "15816:320:3"
},
{
"body": {
"nativeSrc": "16196:87:3",
"nodeType": "YulBlock",
"src": "16196:87:3",
"statements": [
{
"nativeSrc": "16206:11:3",
"nodeType": "YulAssignment",
"src": "16206:11:3",
"value": {
"name": "ptr",
"nativeSrc": "16214:3:3",
"nodeType": "YulIdentifier",
"src": "16214:3:3"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "16206:4:3",
"nodeType": "YulIdentifier",
"src": "16206:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "16234:1:3",
"nodeType": "YulLiteral",
"src": "16234:1:3",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nativeSrc": "16237:3:3",
"nodeType": "YulIdentifier",
"src": "16237:3:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "16227:6:3",
"nodeType": "YulIdentifier",
"src": "16227:6:3"
},
"nativeSrc": "16227:14:3",
"nodeType": "YulFunctionCall",
"src": "16227:14:3"
},
"nativeSrc": "16227:14:3",
"nodeType": "YulExpressionStatement",
"src": "16227:14:3"
},
{
"nativeSrc": "16250:26:3",
"nodeType": "YulAssignment",
"src": "16250:26:3",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "16268:1:3",
"nodeType": "YulLiteral",
"src": "16268:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "16271:4:3",
"nodeType": "YulLiteral",
"src": "16271:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nativeSrc": "16258:9:3",
"nodeType": "YulIdentifier",
"src": "16258:9:3"
},
"nativeSrc": "16258:18:3",
"nodeType": "YulFunctionCall",
"src": "16258:18:3"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "16250:4:3",
"nodeType": "YulIdentifier",
"src": "16250:4:3"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nativeSrc": "16142:141:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "16183:3:3",
"nodeType": "YulTypedName",
"src": "16183:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nativeSrc": "16191:4:3",
"nodeType": "YulTypedName",
"src": "16191:4:3",
"type": ""
}
],
"src": "16142:141:3"
},
{
"body": {
"nativeSrc": "16333:49:3",
"nodeType": "YulBlock",
"src": "16333:49:3",
"statements": [
{
"nativeSrc": "16343:33:3",
"nodeType": "YulAssignment",
"src": "16343:33:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "16361:5:3",
"nodeType": "YulIdentifier",
"src": "16361:5:3"
},
{
"kind": "number",
"nativeSrc": "16368:2:3",
"nodeType": "YulLiteral",
"src": "16368:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "16357:3:3",
"nodeType": "YulIdentifier",
"src": "16357:3:3"
},
"nativeSrc": "16357:14:3",
"nodeType": "YulFunctionCall",
"src": "16357:14:3"
},
{
"kind": "number",
"nativeSrc": "16373:2:3",
"nodeType": "YulLiteral",
"src": "16373:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nativeSrc": "16353:3:3",
"nodeType": "YulIdentifier",
"src": "16353:3:3"
},
"nativeSrc": "16353:23:3",
"nodeType": "YulFunctionCall",
"src": "16353:23:3"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "16343:6:3",
"nodeType": "YulIdentifier",
"src": "16343:6:3"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nativeSrc": "16289:93:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "16316:5:3",
"nodeType": "YulTypedName",
"src": "16316:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "16326:6:3",
"nodeType": "YulTypedName",
"src": "16326:6:3",
"type": ""
}
],
"src": "16289:93:3"
},
{
"body": {
"nativeSrc": "16441:54:3",
"nodeType": "YulBlock",
"src": "16441:54:3",
"statements": [
{
"nativeSrc": "16451:37:3",
"nodeType": "YulAssignment",
"src": "16451:37:3",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "16476:4:3",
"nodeType": "YulIdentifier",
"src": "16476:4:3"
},
{
"name": "value",
"nativeSrc": "16482:5:3",
"nodeType": "YulIdentifier",
"src": "16482:5:3"
}
],
"functionName": {
"name": "shl",
"nativeSrc": "16472:3:3",
"nodeType": "YulIdentifier",
"src": "16472:3:3"
},
"nativeSrc": "16472:16:3",
"nodeType": "YulFunctionCall",
"src": "16472:16:3"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "16451:8:3",
"nodeType": "YulIdentifier",
"src": "16451:8:3"
}
]
}
]
},
"name": "shift_left_dynamic",
"nativeSrc": "16388:107:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "16416:4:3",
"nodeType": "YulTypedName",
"src": "16416:4:3",
"type": ""
},
{
"name": "value",
"nativeSrc": "16422:5:3",
"nodeType": "YulTypedName",
"src": "16422:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "16432:8:3",
"nodeType": "YulTypedName",
"src": "16432:8:3",
"type": ""
}
],
"src": "16388:107:3"
},
{
"body": {
"nativeSrc": "16577:317:3",
"nodeType": "YulBlock",
"src": "16577:317:3",
"statements": [
{
"nativeSrc": "16587:35:3",
"nodeType": "YulVariableDeclaration",
"src": "16587:35:3",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nativeSrc": "16608:10:3",
"nodeType": "YulIdentifier",
"src": "16608:10:3"
},
{
"kind": "number",
"nativeSrc": "16620:1:3",
"nodeType": "YulLiteral",
"src": "16620:1:3",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "16604:3:3",
"nodeType": "YulIdentifier",
"src": "16604:3:3"
},
"nativeSrc": "16604:18:3",
"nodeType": "YulFunctionCall",
"src": "16604:18:3"
},
"variables": [
{
"name": "shiftBits",
"nativeSrc": "16591:9:3",
"nodeType": "YulTypedName",
"src": "16591:9:3",
"type": ""
}
]
},
{
"nativeSrc": "16631:109:3",
"nodeType": "YulVariableDeclaration",
"src": "16631:109:3",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "16662:9:3",
"nodeType": "YulIdentifier",
"src": "16662:9:3"
},
{
"kind": "number",
"nativeSrc": "16673:66:3",
"nodeType": "YulLiteral",
"src": "16673:66:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "16643:18:3",
"nodeType": "YulIdentifier",
"src": "16643:18:3"
},
"nativeSrc": "16643:97:3",
"nodeType": "YulFunctionCall",
"src": "16643:97:3"
},
"variables": [
{
"name": "mask",
"nativeSrc": "16635:4:3",
"nodeType": "YulTypedName",
"src": "16635:4:3",
"type": ""
}
]
},
{
"nativeSrc": "16749:51:3",
"nodeType": "YulAssignment",
"src": "16749:51:3",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "16780:9:3",
"nodeType": "YulIdentifier",
"src": "16780:9:3"
},
{
"name": "toInsert",
"nativeSrc": "16791:8:3",
"nodeType": "YulIdentifier",
"src": "16791:8:3"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "16761:18:3",
"nodeType": "YulIdentifier",
"src": "16761:18:3"
},
"nativeSrc": "16761:39:3",
"nodeType": "YulFunctionCall",
"src": "16761:39:3"
},
"variableNames": [
{
"name": "toInsert",
"nativeSrc": "16749:8:3",
"nodeType": "YulIdentifier",
"src": "16749:8:3"
}
]
},
{
"nativeSrc": "16809:30:3",
"nodeType": "YulAssignment",
"src": "16809:30:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "16822:5:3",
"nodeType": "YulIdentifier",
"src": "16822:5:3"
},
{
"arguments": [
{
"name": "mask",
"nativeSrc": "16833:4:3",
"nodeType": "YulIdentifier",
"src": "16833:4:3"
}
],
"functionName": {
"name": "not",
"nativeSrc": "16829:3:3",
"nodeType": "YulIdentifier",
"src": "16829:3:3"
},
"nativeSrc": "16829:9:3",
"nodeType": "YulFunctionCall",
"src": "16829:9:3"
}
],
"functionName": {
"name": "and",
"nativeSrc": "16818:3:3",
"nodeType": "YulIdentifier",
"src": "16818:3:3"
},
"nativeSrc": "16818:21:3",
"nodeType": "YulFunctionCall",
"src": "16818:21:3"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "16809:5:3",
"nodeType": "YulIdentifier",
"src": "16809:5:3"
}
]
},
{
"nativeSrc": "16848:40:3",
"nodeType": "YulAssignment",
"src": "16848:40:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "16861:5:3",
"nodeType": "YulIdentifier",
"src": "16861:5:3"
},
{
"arguments": [
{
"name": "toInsert",
"nativeSrc": "16872:8:3",
"nodeType": "YulIdentifier",
"src": "16872:8:3"
},
{
"name": "mask",
"nativeSrc": "16882:4:3",
"nodeType": "YulIdentifier",
"src": "16882:4:3"
}
],
"functionName": {
"name": "and",
"nativeSrc": "16868:3:3",
"nodeType": "YulIdentifier",
"src": "16868:3:3"
},
"nativeSrc": "16868:19:3",
"nodeType": "YulFunctionCall",
"src": "16868:19:3"
}
],
"functionName": {
"name": "or",
"nativeSrc": "16858:2:3",
"nodeType": "YulIdentifier",
"src": "16858:2:3"
},
"nativeSrc": "16858:30:3",
"nodeType": "YulFunctionCall",
"src": "16858:30:3"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "16848:6:3",
"nodeType": "YulIdentifier",
"src": "16848:6:3"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nativeSrc": "16501:393:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "16538:5:3",
"nodeType": "YulTypedName",
"src": "16538:5:3",
"type": ""
},
{
"name": "shiftBytes",
"nativeSrc": "16545:10:3",
"nodeType": "YulTypedName",
"src": "16545:10:3",
"type": ""
},
{
"name": "toInsert",
"nativeSrc": "16557:8:3",
"nodeType": "YulTypedName",
"src": "16557:8:3",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "16570:6:3",
"nodeType": "YulTypedName",
"src": "16570:6:3",
"type": ""
}
],
"src": "16501:393:3"
},
{
"body": {
"nativeSrc": "16932:28:3",
"nodeType": "YulBlock",
"src": "16932:28:3",
"statements": [
{
"nativeSrc": "16942:12:3",
"nodeType": "YulAssignment",
"src": "16942:12:3",
"value": {
"name": "value",
"nativeSrc": "16949:5:3",
"nodeType": "YulIdentifier",
"src": "16949:5:3"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "16942:3:3",
"nodeType": "YulIdentifier",
"src": "16942:3:3"
}
]
}
]
},
"name": "identity",
"nativeSrc": "16900:60:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "16918:5:3",
"nodeType": "YulTypedName",
"src": "16918:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "16928:3:3",
"nodeType": "YulTypedName",
"src": "16928:3:3",
"type": ""
}
],
"src": "16900:60:3"
},
{
"body": {
"nativeSrc": "17026:82:3",
"nodeType": "YulBlock",
"src": "17026:82:3",
"statements": [
{
"nativeSrc": "17036:66:3",
"nodeType": "YulAssignment",
"src": "17036:66:3",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "17094:5:3",
"nodeType": "YulIdentifier",
"src": "17094:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "17076:17:3",
"nodeType": "YulIdentifier",
"src": "17076:17:3"
},
"nativeSrc": "17076:24:3",
"nodeType": "YulFunctionCall",
"src": "17076:24:3"
}
],
"functionName": {
"name": "identity",
"nativeSrc": "17067:8:3",
"nodeType": "YulIdentifier",
"src": "17067:8:3"
},
"nativeSrc": "17067:34:3",
"nodeType": "YulFunctionCall",
"src": "17067:34:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "17049:17:3",
"nodeType": "YulIdentifier",
"src": "17049:17:3"
},
"nativeSrc": "17049:53:3",
"nodeType": "YulFunctionCall",
"src": "17049:53:3"
},
"variableNames": [
{
"name": "converted",
"nativeSrc": "17036:9:3",
"nodeType": "YulIdentifier",
"src": "17036:9:3"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "16966:142:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "17006:5:3",
"nodeType": "YulTypedName",
"src": "17006:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nativeSrc": "17016:9:3",
"nodeType": "YulTypedName",
"src": "17016:9:3",
"type": ""
}
],
"src": "16966:142:3"
},
{
"body": {
"nativeSrc": "17161:28:3",
"nodeType": "YulBlock",
"src": "17161:28:3",
"statements": [
{
"nativeSrc": "17171:12:3",
"nodeType": "YulAssignment",
"src": "17171:12:3",
"value": {
"name": "value",
"nativeSrc": "17178:5:3",
"nodeType": "YulIdentifier",
"src": "17178:5:3"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "17171:3:3",
"nodeType": "YulIdentifier",
"src": "17171:3:3"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nativeSrc": "17114:75:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "17147:5:3",
"nodeType": "YulTypedName",
"src": "17147:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "17157:3:3",
"nodeType": "YulTypedName",
"src": "17157:3:3",
"type": ""
}
],
"src": "17114:75:3"
},
{
"body": {
"nativeSrc": "17271:193:3",
"nodeType": "YulBlock",
"src": "17271:193:3",
"statements": [
{
"nativeSrc": "17281:63:3",
"nodeType": "YulVariableDeclaration",
"src": "17281:63:3",
"value": {
"arguments": [
{
"name": "value_0",
"nativeSrc": "17336:7:3",
"nodeType": "YulIdentifier",
"src": "17336:7:3"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "17305:30:3",
"nodeType": "YulIdentifier",
"src": "17305:30:3"
},
"nativeSrc": "17305:39:3",
"nodeType": "YulFunctionCall",
"src": "17305:39:3"
},
"variables": [
{
"name": "convertedValue_0",
"nativeSrc": "17285:16:3",
"nodeType": "YulTypedName",
"src": "17285:16:3",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "17360:4:3",
"nodeType": "YulIdentifier",
"src": "17360:4:3"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "17400:4:3",
"nodeType": "YulIdentifier",
"src": "17400:4:3"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "17394:5:3",
"nodeType": "YulIdentifier",
"src": "17394:5:3"
},
"nativeSrc": "17394:11:3",
"nodeType": "YulFunctionCall",
"src": "17394:11:3"
},
{
"name": "offset",
"nativeSrc": "17407:6:3",
"nodeType": "YulIdentifier",
"src": "17407:6:3"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nativeSrc": "17439:16:3",
"nodeType": "YulIdentifier",
"src": "17439:16:3"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nativeSrc": "17415:23:3",
"nodeType": "YulIdentifier",
"src": "17415:23:3"
},
"nativeSrc": "17415:41:3",
"nodeType": "YulFunctionCall",
"src": "17415:41:3"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nativeSrc": "17366:27:3",
"nodeType": "YulIdentifier",
"src": "17366:27:3"
},
"nativeSrc": "17366:91:3",
"nodeType": "YulFunctionCall",
"src": "17366:91:3"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "17353:6:3",
"nodeType": "YulIdentifier",
"src": "17353:6:3"
},
"nativeSrc": "17353:105:3",
"nodeType": "YulFunctionCall",
"src": "17353:105:3"
},
"nativeSrc": "17353:105:3",
"nodeType": "YulExpressionStatement",
"src": "17353:105:3"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "17195:269:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "17248:4:3",
"nodeType": "YulTypedName",
"src": "17248:4:3",
"type": ""
},
{
"name": "offset",
"nativeSrc": "17254:6:3",
"nodeType": "YulTypedName",
"src": "17254:6:3",
"type": ""
},
{
"name": "value_0",
"nativeSrc": "17262:7:3",
"nodeType": "YulTypedName",
"src": "17262:7:3",
"type": ""
}
],
"src": "17195:269:3"
},
{
"body": {
"nativeSrc": "17519:24:3",
"nodeType": "YulBlock",
"src": "17519:24:3",
"statements": [
{
"nativeSrc": "17529:8:3",
"nodeType": "YulAssignment",
"src": "17529:8:3",
"value": {
"kind": "number",
"nativeSrc": "17536:1:3",
"nodeType": "YulLiteral",
"src": "17536:1:3",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "17529:3:3",
"nodeType": "YulIdentifier",
"src": "17529:3:3"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "17470:73:3",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nativeSrc": "17515:3:3",
"nodeType": "YulTypedName",
"src": "17515:3:3",
"type": ""
}
],
"src": "17470:73:3"
},
{
"body": {
"nativeSrc": "17602:136:3",
"nodeType": "YulBlock",
"src": "17602:136:3",
"statements": [
{
"nativeSrc": "17612:46:3",
"nodeType": "YulVariableDeclaration",
"src": "17612:46:3",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "17626:30:3",
"nodeType": "YulIdentifier",
"src": "17626:30:3"
},
"nativeSrc": "17626:32:3",
"nodeType": "YulFunctionCall",
"src": "17626:32:3"
},
"variables": [
{
"name": "zero_0",
"nativeSrc": "17616:6:3",
"nodeType": "YulTypedName",
"src": "17616:6:3",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "17711:4:3",
"nodeType": "YulIdentifier",
"src": "17711:4:3"
},
{
"name": "offset",
"nativeSrc": "17717:6:3",
"nodeType": "YulIdentifier",
"src": "17717:6:3"
},
{
"name": "zero_0",
"nativeSrc": "17725:6:3",
"nodeType": "YulIdentifier",
"src": "17725:6:3"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "17667:43:3",
"nodeType": "YulIdentifier",
"src": "17667:43:3"
},
"nativeSrc": "17667:65:3",
"nodeType": "YulFunctionCall",
"src": "17667:65:3"
},
"nativeSrc": "17667:65:3",
"nodeType": "YulExpressionStatement",
"src": "17667:65:3"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "17549:189:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "17588:4:3",
"nodeType": "YulTypedName",
"src": "17588:4:3",
"type": ""
},
{
"name": "offset",
"nativeSrc": "17594:6:3",
"nodeType": "YulTypedName",
"src": "17594:6:3",
"type": ""
}
],
"src": "17549:189:3"
},
{
"body": {
"nativeSrc": "17794:136:3",
"nodeType": "YulBlock",
"src": "17794:136:3",
"statements": [
{
"body": {
"nativeSrc": "17861:63:3",
"nodeType": "YulBlock",
"src": "17861:63:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nativeSrc": "17905:5:3",
"nodeType": "YulIdentifier",
"src": "17905:5:3"
},
{
"kind": "number",
"nativeSrc": "17912:1:3",
"nodeType": "YulLiteral",
"src": "17912:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "17875:29:3",
"nodeType": "YulIdentifier",
"src": "17875:29:3"
},
"nativeSrc": "17875:39:3",
"nodeType": "YulFunctionCall",
"src": "17875:39:3"
},
"nativeSrc": "17875:39:3",
"nodeType": "YulExpressionStatement",
"src": "17875:39:3"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nativeSrc": "17814:5:3",
"nodeType": "YulIdentifier",
"src": "17814:5:3"
},
{
"name": "end",
"nativeSrc": "17821:3:3",
"nodeType": "YulIdentifier",
"src": "17821:3:3"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "17811:2:3",
"nodeType": "YulIdentifier",
"src": "17811:2:3"
},
"nativeSrc": "17811:14:3",
"nodeType": "YulFunctionCall",
"src": "17811:14:3"
},
"nativeSrc": "17804:120:3",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "17826:26:3",
"nodeType": "YulBlock",
"src": "17826:26:3",
"statements": [
{
"nativeSrc": "17828:22:3",
"nodeType": "YulAssignment",
"src": "17828:22:3",
"value": {
"arguments": [
{
"name": "start",
"nativeSrc": "17841:5:3",
"nodeType": "YulIdentifier",
"src": "17841:5:3"
},
{
"kind": "number",
"nativeSrc": "17848:1:3",
"nodeType": "YulLiteral",
"src": "17848:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "17837:3:3",
"nodeType": "YulIdentifier",
"src": "17837:3:3"
},
"nativeSrc": "17837:13:3",
"nodeType": "YulFunctionCall",
"src": "17837:13:3"
},
"variableNames": [
{
"name": "start",
"nativeSrc": "17828:5:3",
"nodeType": "YulIdentifier",
"src": "17828:5:3"
}
]
}
]
},
"pre": {
"nativeSrc": "17808:2:3",
"nodeType": "YulBlock",
"src": "17808:2:3",
"statements": []
},
"src": "17804:120:3"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "17744:186:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nativeSrc": "17782:5:3",
"nodeType": "YulTypedName",
"src": "17782:5:3",
"type": ""
},
{
"name": "end",
"nativeSrc": "17789:3:3",
"nodeType": "YulTypedName",
"src": "17789:3:3",
"type": ""
}
],
"src": "17744:186:3"
},
{
"body": {
"nativeSrc": "18015:464:3",
"nodeType": "YulBlock",
"src": "18015:464:3",
"statements": [
{
"body": {
"nativeSrc": "18041:431:3",
"nodeType": "YulBlock",
"src": "18041:431:3",
"statements": [
{
"nativeSrc": "18055:54:3",
"nodeType": "YulVariableDeclaration",
"src": "18055:54:3",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "18103:5:3",
"nodeType": "YulIdentifier",
"src": "18103:5:3"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "18071:31:3",
"nodeType": "YulIdentifier",
"src": "18071:31:3"
},
"nativeSrc": "18071:38:3",
"nodeType": "YulFunctionCall",
"src": "18071:38:3"
},
"variables": [
{
"name": "dataArea",
"nativeSrc": "18059:8:3",
"nodeType": "YulTypedName",
"src": "18059:8:3",
"type": ""
}
]
},
{
"nativeSrc": "18122:63:3",
"nodeType": "YulVariableDeclaration",
"src": "18122:63:3",
"value": {
"arguments": [
{
"name": "dataArea",
"nativeSrc": "18145:8:3",
"nodeType": "YulIdentifier",
"src": "18145:8:3"
},
{
"arguments": [
{
"name": "startIndex",
"nativeSrc": "18173:10:3",
"nodeType": "YulIdentifier",
"src": "18173:10:3"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "18155:17:3",
"nodeType": "YulIdentifier",
"src": "18155:17:3"
},
"nativeSrc": "18155:29:3",
"nodeType": "YulFunctionCall",
"src": "18155:29:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "18141:3:3",
"nodeType": "YulIdentifier",
"src": "18141:3:3"
},
"nativeSrc": "18141:44:3",
"nodeType": "YulFunctionCall",
"src": "18141:44:3"
},
"variables": [
{
"name": "deleteStart",
"nativeSrc": "18126:11:3",
"nodeType": "YulTypedName",
"src": "18126:11:3",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "18342:27:3",
"nodeType": "YulBlock",
"src": "18342:27:3",
"statements": [
{
"nativeSrc": "18344:23:3",
"nodeType": "YulAssignment",
"src": "18344:23:3",
"value": {
"name": "dataArea",
"nativeSrc": "18359:8:3",
"nodeType": "YulIdentifier",
"src": "18359:8:3"
},
"variableNames": [
{
"name": "deleteStart",
"nativeSrc": "18344:11:3",
"nodeType": "YulIdentifier",
"src": "18344:11:3"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nativeSrc": "18326:10:3",
"nodeType": "YulIdentifier",
"src": "18326:10:3"
},
{
"kind": "number",
"nativeSrc": "18338:2:3",
"nodeType": "YulLiteral",
"src": "18338:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "18323:2:3",
"nodeType": "YulIdentifier",
"src": "18323:2:3"
},
"nativeSrc": "18323:18:3",
"nodeType": "YulFunctionCall",
"src": "18323:18:3"
},
"nativeSrc": "18320:49:3",
"nodeType": "YulIf",
"src": "18320:49:3"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nativeSrc": "18411:11:3",
"nodeType": "YulIdentifier",
"src": "18411:11:3"
},
{
"arguments": [
{
"name": "dataArea",
"nativeSrc": "18428:8:3",
"nodeType": "YulIdentifier",
"src": "18428:8:3"
},
{
"arguments": [
{
"name": "len",
"nativeSrc": "18456:3:3",
"nodeType": "YulIdentifier",
"src": "18456:3:3"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "18438:17:3",
"nodeType": "YulIdentifier",
"src": "18438:17:3"
},
"nativeSrc": "18438:22:3",
"nodeType": "YulFunctionCall",
"src": "18438:22:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "18424:3:3",
"nodeType": "YulIdentifier",
"src": "18424:3:3"
},
"nativeSrc": "18424:37:3",
"nodeType": "YulFunctionCall",
"src": "18424:37:3"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "18382:28:3",
"nodeType": "YulIdentifier",
"src": "18382:28:3"
},
"nativeSrc": "18382:80:3",
"nodeType": "YulFunctionCall",
"src": "18382:80:3"
},
"nativeSrc": "18382:80:3",
"nodeType": "YulExpressionStatement",
"src": "18382:80:3"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nativeSrc": "18032:3:3",
"nodeType": "YulIdentifier",
"src": "18032:3:3"
},
{
"kind": "number",
"nativeSrc": "18037:2:3",
"nodeType": "YulLiteral",
"src": "18037:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "18029:2:3",
"nodeType": "YulIdentifier",
"src": "18029:2:3"
},
"nativeSrc": "18029:11:3",
"nodeType": "YulFunctionCall",
"src": "18029:11:3"
},
"nativeSrc": "18026:446:3",
"nodeType": "YulIf",
"src": "18026:446:3"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "17936:543:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nativeSrc": "17991:5:3",
"nodeType": "YulTypedName",
"src": "17991:5:3",
"type": ""
},
{
"name": "len",
"nativeSrc": "17998:3:3",
"nodeType": "YulTypedName",
"src": "17998:3:3",
"type": ""
},
{
"name": "startIndex",
"nativeSrc": "18003:10:3",
"nodeType": "YulTypedName",
"src": "18003:10:3",
"type": ""
}
],
"src": "17936:543:3"
},
{
"body": {
"nativeSrc": "18548:54:3",
"nodeType": "YulBlock",
"src": "18548:54:3",
"statements": [
{
"nativeSrc": "18558:37:3",
"nodeType": "YulAssignment",
"src": "18558:37:3",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "18583:4:3",
"nodeType": "YulIdentifier",
"src": "18583:4:3"
},
{
"name": "value",
"nativeSrc": "18589:5:3",
"nodeType": "YulIdentifier",
"src": "18589:5:3"
}
],
"functionName": {
"name": "shr",
"nativeSrc": "18579:3:3",
"nodeType": "YulIdentifier",
"src": "18579:3:3"
},
"nativeSrc": "18579:16:3",
"nodeType": "YulFunctionCall",
"src": "18579:16:3"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "18558:8:3",
"nodeType": "YulIdentifier",
"src": "18558:8:3"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "18485:117:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "18523:4:3",
"nodeType": "YulTypedName",
"src": "18523:4:3",
"type": ""
},
{
"name": "value",
"nativeSrc": "18529:5:3",
"nodeType": "YulTypedName",
"src": "18529:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "18539:8:3",
"nodeType": "YulTypedName",
"src": "18539:8:3",
"type": ""
}
],
"src": "18485:117:3"
},
{
"body": {
"nativeSrc": "18659:118:3",
"nodeType": "YulBlock",
"src": "18659:118:3",
"statements": [
{
"nativeSrc": "18669:68:3",
"nodeType": "YulVariableDeclaration",
"src": "18669:68:3",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nativeSrc": "18718:1:3",
"nodeType": "YulLiteral",
"src": "18718:1:3",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nativeSrc": "18721:5:3",
"nodeType": "YulIdentifier",
"src": "18721:5:3"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "18714:3:3",
"nodeType": "YulIdentifier",
"src": "18714:3:3"
},
"nativeSrc": "18714:13:3",
"nodeType": "YulFunctionCall",
"src": "18714:13:3"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "18733:1:3",
"nodeType": "YulLiteral",
"src": "18733:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nativeSrc": "18729:3:3",
"nodeType": "YulIdentifier",
"src": "18729:3:3"
},
"nativeSrc": "18729:6:3",
"nodeType": "YulFunctionCall",
"src": "18729:6:3"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "18685:28:3",
"nodeType": "YulIdentifier",
"src": "18685:28:3"
},
"nativeSrc": "18685:51:3",
"nodeType": "YulFunctionCall",
"src": "18685:51:3"
}
],
"functionName": {
"name": "not",
"nativeSrc": "18681:3:3",
"nodeType": "YulIdentifier",
"src": "18681:3:3"
},
"nativeSrc": "18681:56:3",
"nodeType": "YulFunctionCall",
"src": "18681:56:3"
},
"variables": [
{
"name": "mask",
"nativeSrc": "18673:4:3",
"nodeType": "YulTypedName",
"src": "18673:4:3",
"type": ""
}
]
},
{
"nativeSrc": "18746:25:3",
"nodeType": "YulAssignment",
"src": "18746:25:3",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "18760:4:3",
"nodeType": "YulIdentifier",
"src": "18760:4:3"
},
{
"name": "mask",
"nativeSrc": "18766:4:3",
"nodeType": "YulIdentifier",
"src": "18766:4:3"
}
],
"functionName": {
"name": "and",
"nativeSrc": "18756:3:3",
"nodeType": "YulIdentifier",
"src": "18756:3:3"
},
"nativeSrc": "18756:15:3",
"nodeType": "YulFunctionCall",
"src": "18756:15:3"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "18746:6:3",
"nodeType": "YulIdentifier",
"src": "18746:6:3"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nativeSrc": "18608:169:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "18636:4:3",
"nodeType": "YulTypedName",
"src": "18636:4:3",
"type": ""
},
{
"name": "bytes",
"nativeSrc": "18642:5:3",
"nodeType": "YulTypedName",
"src": "18642:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "18652:6:3",
"nodeType": "YulTypedName",
"src": "18652:6:3",
"type": ""
}
],
"src": "18608:169:3"
},
{
"body": {
"nativeSrc": "18863:214:3",
"nodeType": "YulBlock",
"src": "18863:214:3",
"statements": [
{
"nativeSrc": "18996:37:3",
"nodeType": "YulAssignment",
"src": "18996:37:3",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "19023:4:3",
"nodeType": "YulIdentifier",
"src": "19023:4:3"
},
{
"name": "len",
"nativeSrc": "19029:3:3",
"nodeType": "YulIdentifier",
"src": "19029:3:3"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "19004:18:3",
"nodeType": "YulIdentifier",
"src": "19004:18:3"
},
"nativeSrc": "19004:29:3",
"nodeType": "YulFunctionCall",
"src": "19004:29:3"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "18996:4:3",
"nodeType": "YulIdentifier",
"src": "18996:4:3"
}
]
},
{
"nativeSrc": "19042:29:3",
"nodeType": "YulAssignment",
"src": "19042:29:3",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "19053:4:3",
"nodeType": "YulIdentifier",
"src": "19053:4:3"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "19063:1:3",
"nodeType": "YulLiteral",
"src": "19063:1:3",
"type": "",
"value": "2"
},
{
"name": "len",
"nativeSrc": "19066:3:3",
"nodeType": "YulIdentifier",
"src": "19066:3:3"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "19059:3:3",
"nodeType": "YulIdentifier",
"src": "19059:3:3"
},
"nativeSrc": "19059:11:3",
"nodeType": "YulFunctionCall",
"src": "19059:11:3"
}
],
"functionName": {
"name": "or",
"nativeSrc": "19050:2:3",
"nodeType": "YulIdentifier",
"src": "19050:2:3"
},
"nativeSrc": "19050:21:3",
"nodeType": "YulFunctionCall",
"src": "19050:21:3"
},
"variableNames": [
{
"name": "used",
"nativeSrc": "19042:4:3",
"nodeType": "YulIdentifier",
"src": "19042:4:3"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "18782:295:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "18844:4:3",
"nodeType": "YulTypedName",
"src": "18844:4:3",
"type": ""
},
{
"name": "len",
"nativeSrc": "18850:3:3",
"nodeType": "YulTypedName",
"src": "18850:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nativeSrc": "18858:4:3",
"nodeType": "YulTypedName",
"src": "18858:4:3",
"type": ""
}
],
"src": "18782:295:3"
},
{
"body": {
"nativeSrc": "19174:1303:3",
"nodeType": "YulBlock",
"src": "19174:1303:3",
"statements": [
{
"nativeSrc": "19185:51:3",
"nodeType": "YulVariableDeclaration",
"src": "19185:51:3",
"value": {
"arguments": [
{
"name": "src",
"nativeSrc": "19232:3:3",
"nodeType": "YulIdentifier",
"src": "19232:3:3"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "19199:32:3",
"nodeType": "YulIdentifier",
"src": "19199:32:3"
},
"nativeSrc": "19199:37:3",
"nodeType": "YulFunctionCall",
"src": "19199:37:3"
},
"variables": [
{
"name": "newLen",
"nativeSrc": "19189:6:3",
"nodeType": "YulTypedName",
"src": "19189:6:3",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "19321:22:3",
"nodeType": "YulBlock",
"src": "19321:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "19323:16:3",
"nodeType": "YulIdentifier",
"src": "19323:16:3"
},
"nativeSrc": "19323:18:3",
"nodeType": "YulFunctionCall",
"src": "19323:18:3"
},
"nativeSrc": "19323:18:3",
"nodeType": "YulExpressionStatement",
"src": "19323:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "19293:6:3",
"nodeType": "YulIdentifier",
"src": "19293:6:3"
},
{
"kind": "number",
"nativeSrc": "19301:18:3",
"nodeType": "YulLiteral",
"src": "19301:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "19290:2:3",
"nodeType": "YulIdentifier",
"src": "19290:2:3"
},
"nativeSrc": "19290:30:3",
"nodeType": "YulFunctionCall",
"src": "19290:30:3"
},
"nativeSrc": "19287:56:3",
"nodeType": "YulIf",
"src": "19287:56:3"
},
{
"nativeSrc": "19353:52:3",
"nodeType": "YulVariableDeclaration",
"src": "19353:52:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "19399:4:3",
"nodeType": "YulIdentifier",
"src": "19399:4:3"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "19393:5:3",
"nodeType": "YulIdentifier",
"src": "19393:5:3"
},
"nativeSrc": "19393:11:3",
"nodeType": "YulFunctionCall",
"src": "19393:11:3"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nativeSrc": "19367:25:3",
"nodeType": "YulIdentifier",
"src": "19367:25:3"
},
"nativeSrc": "19367:38:3",
"nodeType": "YulFunctionCall",
"src": "19367:38:3"
},
"variables": [
{
"name": "oldLen",
"nativeSrc": "19357:6:3",
"nodeType": "YulTypedName",
"src": "19357:6:3",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "19498:4:3",
"nodeType": "YulIdentifier",
"src": "19498:4:3"
},
{
"name": "oldLen",
"nativeSrc": "19504:6:3",
"nodeType": "YulIdentifier",
"src": "19504:6:3"
},
{
"name": "newLen",
"nativeSrc": "19512:6:3",
"nodeType": "YulIdentifier",
"src": "19512:6:3"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "19452:45:3",
"nodeType": "YulIdentifier",
"src": "19452:45:3"
},
"nativeSrc": "19452:67:3",
"nodeType": "YulFunctionCall",
"src": "19452:67:3"
},
"nativeSrc": "19452:67:3",
"nodeType": "YulExpressionStatement",
"src": "19452:67:3"
},
{
"nativeSrc": "19529:18:3",
"nodeType": "YulVariableDeclaration",
"src": "19529:18:3",
"value": {
"kind": "number",
"nativeSrc": "19546:1:3",
"nodeType": "YulLiteral",
"src": "19546:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nativeSrc": "19533:9:3",
"nodeType": "YulTypedName",
"src": "19533:9:3",
"type": ""
}
]
},
{
"nativeSrc": "19557:17:3",
"nodeType": "YulAssignment",
"src": "19557:17:3",
"value": {
"kind": "number",
"nativeSrc": "19570:4:3",
"nodeType": "YulLiteral",
"src": "19570:4:3",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "19557:9:3",
"nodeType": "YulIdentifier",
"src": "19557:9:3"
}
]
},
{
"cases": [
{
"body": {
"nativeSrc": "19621:611:3",
"nodeType": "YulBlock",
"src": "19621:611:3",
"statements": [
{
"nativeSrc": "19635:37:3",
"nodeType": "YulVariableDeclaration",
"src": "19635:37:3",
"value": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "19654:6:3",
"nodeType": "YulIdentifier",
"src": "19654:6:3"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "19666:4:3",
"nodeType": "YulLiteral",
"src": "19666:4:3",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nativeSrc": "19662:3:3",
"nodeType": "YulIdentifier",
"src": "19662:3:3"
},
"nativeSrc": "19662:9:3",
"nodeType": "YulFunctionCall",
"src": "19662:9:3"
}
],
"functionName": {
"name": "and",
"nativeSrc": "19650:3:3",
"nodeType": "YulIdentifier",
"src": "19650:3:3"
},
"nativeSrc": "19650:22:3",
"nodeType": "YulFunctionCall",
"src": "19650:22:3"
},
"variables": [
{
"name": "loopEnd",
"nativeSrc": "19639:7:3",
"nodeType": "YulTypedName",
"src": "19639:7:3",
"type": ""
}
]
},
{
"nativeSrc": "19686:51:3",
"nodeType": "YulVariableDeclaration",
"src": "19686:51:3",
"value": {
"arguments": [
{
"name": "slot",
"nativeSrc": "19732:4:3",
"nodeType": "YulIdentifier",
"src": "19732:4:3"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "19700:31:3",
"nodeType": "YulIdentifier",
"src": "19700:31:3"
},
"nativeSrc": "19700:37:3",
"nodeType": "YulFunctionCall",
"src": "19700:37:3"
},
"variables": [
{
"name": "dstPtr",
"nativeSrc": "19690:6:3",
"nodeType": "YulTypedName",
"src": "19690:6:3",
"type": ""
}
]
},
{
"nativeSrc": "19750:10:3",
"nodeType": "YulVariableDeclaration",
"src": "19750:10:3",
"value": {
"kind": "number",
"nativeSrc": "19759:1:3",
"nodeType": "YulLiteral",
"src": "19759:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "19754:1:3",
"nodeType": "YulTypedName",
"src": "19754:1:3",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "19818:163:3",
"nodeType": "YulBlock",
"src": "19818:163:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "19843:6:3",
"nodeType": "YulIdentifier",
"src": "19843:6:3"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "19861:3:3",
"nodeType": "YulIdentifier",
"src": "19861:3:3"
},
{
"name": "srcOffset",
"nativeSrc": "19866:9:3",
"nodeType": "YulIdentifier",
"src": "19866:9:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "19857:3:3",
"nodeType": "YulIdentifier",
"src": "19857:3:3"
},
"nativeSrc": "19857:19:3",
"nodeType": "YulFunctionCall",
"src": "19857:19:3"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "19851:5:3",
"nodeType": "YulIdentifier",
"src": "19851:5:3"
},
"nativeSrc": "19851:26:3",
"nodeType": "YulFunctionCall",
"src": "19851:26:3"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "19836:6:3",
"nodeType": "YulIdentifier",
"src": "19836:6:3"
},
"nativeSrc": "19836:42:3",
"nodeType": "YulFunctionCall",
"src": "19836:42:3"
},
"nativeSrc": "19836:42:3",
"nodeType": "YulExpressionStatement",
"src": "19836:42:3"
},
{
"nativeSrc": "19895:24:3",
"nodeType": "YulAssignment",
"src": "19895:24:3",
"value": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "19909:6:3",
"nodeType": "YulIdentifier",
"src": "19909:6:3"
},
{
"kind": "number",
"nativeSrc": "19917:1:3",
"nodeType": "YulLiteral",
"src": "19917:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "19905:3:3",
"nodeType": "YulIdentifier",
"src": "19905:3:3"
},
"nativeSrc": "19905:14:3",
"nodeType": "YulFunctionCall",
"src": "19905:14:3"
},
"variableNames": [
{
"name": "dstPtr",
"nativeSrc": "19895:6:3",
"nodeType": "YulIdentifier",
"src": "19895:6:3"
}
]
},
{
"nativeSrc": "19936:31:3",
"nodeType": "YulAssignment",
"src": "19936:31:3",
"value": {
"arguments": [
{
"name": "srcOffset",
"nativeSrc": "19953:9:3",
"nodeType": "YulIdentifier",
"src": "19953:9:3"
},
{
"kind": "number",
"nativeSrc": "19964:2:3",
"nodeType": "YulLiteral",
"src": "19964:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "19949:3:3",
"nodeType": "YulIdentifier",
"src": "19949:3:3"
},
"nativeSrc": "19949:18:3",
"nodeType": "YulFunctionCall",
"src": "19949:18:3"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "19936:9:3",
"nodeType": "YulIdentifier",
"src": "19936:9:3"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "19784:1:3",
"nodeType": "YulIdentifier",
"src": "19784:1:3"
},
{
"name": "loopEnd",
"nativeSrc": "19787:7:3",
"nodeType": "YulIdentifier",
"src": "19787:7:3"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "19781:2:3",
"nodeType": "YulIdentifier",
"src": "19781:2:3"
},
"nativeSrc": "19781:14:3",
"nodeType": "YulFunctionCall",
"src": "19781:14:3"
},
"nativeSrc": "19773:208:3",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "19796:21:3",
"nodeType": "YulBlock",
"src": "19796:21:3",
"statements": [
{
"nativeSrc": "19798:17:3",
"nodeType": "YulAssignment",
"src": "19798:17:3",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "19807:1:3",
"nodeType": "YulIdentifier",
"src": "19807:1:3"
},
{
"kind": "number",
"nativeSrc": "19810:4:3",
"nodeType": "YulLiteral",
"src": "19810:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "19803:3:3",
"nodeType": "YulIdentifier",
"src": "19803:3:3"
},
"nativeSrc": "19803:12:3",
"nodeType": "YulFunctionCall",
"src": "19803:12:3"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "19798:1:3",
"nodeType": "YulIdentifier",
"src": "19798:1:3"
}
]
}
]
},
"pre": {
"nativeSrc": "19777:3:3",
"nodeType": "YulBlock",
"src": "19777:3:3",
"statements": []
},
"src": "19773:208:3"
},
{
"body": {
"nativeSrc": "20017:156:3",
"nodeType": "YulBlock",
"src": "20017:156:3",
"statements": [
{
"nativeSrc": "20035:43:3",
"nodeType": "YulVariableDeclaration",
"src": "20035:43:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "20062:3:3",
"nodeType": "YulIdentifier",
"src": "20062:3:3"
},
{
"name": "srcOffset",
"nativeSrc": "20067:9:3",
"nodeType": "YulIdentifier",
"src": "20067:9:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "20058:3:3",
"nodeType": "YulIdentifier",
"src": "20058:3:3"
},
"nativeSrc": "20058:19:3",
"nodeType": "YulFunctionCall",
"src": "20058:19:3"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "20052:5:3",
"nodeType": "YulIdentifier",
"src": "20052:5:3"
},
"nativeSrc": "20052:26:3",
"nodeType": "YulFunctionCall",
"src": "20052:26:3"
},
"variables": [
{
"name": "lastValue",
"nativeSrc": "20039:9:3",
"nodeType": "YulTypedName",
"src": "20039:9:3",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "20102:6:3",
"nodeType": "YulIdentifier",
"src": "20102:6:3"
},
{
"arguments": [
{
"name": "lastValue",
"nativeSrc": "20129:9:3",
"nodeType": "YulIdentifier",
"src": "20129:9:3"
},
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "20144:6:3",
"nodeType": "YulIdentifier",
"src": "20144:6:3"
},
{
"kind": "number",
"nativeSrc": "20152:4:3",
"nodeType": "YulLiteral",
"src": "20152:4:3",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "20140:3:3",
"nodeType": "YulIdentifier",
"src": "20140:3:3"
},
"nativeSrc": "20140:17:3",
"nodeType": "YulFunctionCall",
"src": "20140:17:3"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "20110:18:3",
"nodeType": "YulIdentifier",
"src": "20110:18:3"
},
"nativeSrc": "20110:48:3",
"nodeType": "YulFunctionCall",
"src": "20110:48:3"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "20095:6:3",
"nodeType": "YulIdentifier",
"src": "20095:6:3"
},
"nativeSrc": "20095:64:3",
"nodeType": "YulFunctionCall",
"src": "20095:64:3"
},
"nativeSrc": "20095:64:3",
"nodeType": "YulExpressionStatement",
"src": "20095:64:3"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nativeSrc": "20000:7:3",
"nodeType": "YulIdentifier",
"src": "20000:7:3"
},
{
"name": "newLen",
"nativeSrc": "20009:6:3",
"nodeType": "YulIdentifier",
"src": "20009:6:3"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "19997:2:3",
"nodeType": "YulIdentifier",
"src": "19997:2:3"
},
"nativeSrc": "19997:19:3",
"nodeType": "YulFunctionCall",
"src": "19997:19:3"
},
"nativeSrc": "19994:179:3",
"nodeType": "YulIf",
"src": "19994:179:3"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "20193:4:3",
"nodeType": "YulIdentifier",
"src": "20193:4:3"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "20207:6:3",
"nodeType": "YulIdentifier",
"src": "20207:6:3"
},
{
"kind": "number",
"nativeSrc": "20215:1:3",
"nodeType": "YulLiteral",
"src": "20215:1:3",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "20203:3:3",
"nodeType": "YulIdentifier",
"src": "20203:3:3"
},
"nativeSrc": "20203:14:3",
"nodeType": "YulFunctionCall",
"src": "20203:14:3"
},
{
"kind": "number",
"nativeSrc": "20219:1:3",
"nodeType": "YulLiteral",
"src": "20219:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "20199:3:3",
"nodeType": "YulIdentifier",
"src": "20199:3:3"
},
"nativeSrc": "20199:22:3",
"nodeType": "YulFunctionCall",
"src": "20199:22:3"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "20186:6:3",
"nodeType": "YulIdentifier",
"src": "20186:6:3"
},
"nativeSrc": "20186:36:3",
"nodeType": "YulFunctionCall",
"src": "20186:36:3"
},
"nativeSrc": "20186:36:3",
"nodeType": "YulExpressionStatement",
"src": "20186:36:3"
}
]
},
"nativeSrc": "19614:618:3",
"nodeType": "YulCase",
"src": "19614:618:3",
"value": {
"kind": "number",
"nativeSrc": "19619:1:3",
"nodeType": "YulLiteral",
"src": "19619:1:3",
"type": "",
"value": "1"
}
},
{
"body": {
"nativeSrc": "20249:222:3",
"nodeType": "YulBlock",
"src": "20249:222:3",
"statements": [
{
"nativeSrc": "20263:14:3",
"nodeType": "YulVariableDeclaration",
"src": "20263:14:3",
"value": {
"kind": "number",
"nativeSrc": "20276:1:3",
"nodeType": "YulLiteral",
"src": "20276:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nativeSrc": "20267:5:3",
"nodeType": "YulTypedName",
"src": "20267:5:3",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "20300:67:3",
"nodeType": "YulBlock",
"src": "20300:67:3",
"statements": [
{
"nativeSrc": "20318:35:3",
"nodeType": "YulAssignment",
"src": "20318:35:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "20337:3:3",
"nodeType": "YulIdentifier",
"src": "20337:3:3"
},
{
"name": "srcOffset",
"nativeSrc": "20342:9:3",
"nodeType": "YulIdentifier",
"src": "20342:9:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "20333:3:3",
"nodeType": "YulIdentifier",
"src": "20333:3:3"
},
"nativeSrc": "20333:19:3",
"nodeType": "YulFunctionCall",
"src": "20333:19:3"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "20327:5:3",
"nodeType": "YulIdentifier",
"src": "20327:5:3"
},
"nativeSrc": "20327:26:3",
"nodeType": "YulFunctionCall",
"src": "20327:26:3"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "20318:5:3",
"nodeType": "YulIdentifier",
"src": "20318:5:3"
}
]
}
]
},
"condition": {
"name": "newLen",
"nativeSrc": "20293:6:3",
"nodeType": "YulIdentifier",
"src": "20293:6:3"
},
"nativeSrc": "20290:77:3",
"nodeType": "YulIf",
"src": "20290:77:3"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "20387:4:3",
"nodeType": "YulIdentifier",
"src": "20387:4:3"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "20446:5:3",
"nodeType": "YulIdentifier",
"src": "20446:5:3"
},
{
"name": "newLen",
"nativeSrc": "20453:6:3",
"nodeType": "YulIdentifier",
"src": "20453:6:3"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "20393:52:3",
"nodeType": "YulIdentifier",
"src": "20393:52:3"
},
"nativeSrc": "20393:67:3",
"nodeType": "YulFunctionCall",
"src": "20393:67:3"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "20380:6:3",
"nodeType": "YulIdentifier",
"src": "20380:6:3"
},
"nativeSrc": "20380:81:3",
"nodeType": "YulFunctionCall",
"src": "20380:81:3"
},
"nativeSrc": "20380:81:3",
"nodeType": "YulExpressionStatement",
"src": "20380:81:3"
}
]
},
"nativeSrc": "20241:230:3",
"nodeType": "YulCase",
"src": "20241:230:3",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "19594:6:3",
"nodeType": "YulIdentifier",
"src": "19594:6:3"
},
{
"kind": "number",
"nativeSrc": "19602:2:3",
"nodeType": "YulLiteral",
"src": "19602:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "19591:2:3",
"nodeType": "YulIdentifier",
"src": "19591:2:3"
},
"nativeSrc": "19591:14:3",
"nodeType": "YulFunctionCall",
"src": "19591:14:3"
},
"nativeSrc": "19584:887:3",
"nodeType": "YulSwitch",
"src": "19584:887:3"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nativeSrc": "19082:1395:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "19163:4:3",
"nodeType": "YulTypedName",
"src": "19163:4:3",
"type": ""
},
{
"name": "src",
"nativeSrc": "19169:3:3",
"nodeType": "YulTypedName",
"src": "19169:3:3",
"type": ""
}
],
"src": "19082:1395:3"
},
{
"body": {
"nativeSrc": "20511:152:3",
"nodeType": "YulBlock",
"src": "20511:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "20528:1:3",
"nodeType": "YulLiteral",
"src": "20528:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "20531:77:3",
"nodeType": "YulLiteral",
"src": "20531:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "20521:6:3",
"nodeType": "YulIdentifier",
"src": "20521:6:3"
},
"nativeSrc": "20521:88:3",
"nodeType": "YulFunctionCall",
"src": "20521:88:3"
},
"nativeSrc": "20521:88:3",
"nodeType": "YulExpressionStatement",
"src": "20521:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "20625:1:3",
"nodeType": "YulLiteral",
"src": "20625:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "20628:4:3",
"nodeType": "YulLiteral",
"src": "20628:4:3",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "20618:6:3",
"nodeType": "YulIdentifier",
"src": "20618:6:3"
},
"nativeSrc": "20618:15:3",
"nodeType": "YulFunctionCall",
"src": "20618:15:3"
},
"nativeSrc": "20618:15:3",
"nodeType": "YulExpressionStatement",
"src": "20618:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "20649:1:3",
"nodeType": "YulLiteral",
"src": "20649:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "20652:4:3",
"nodeType": "YulLiteral",
"src": "20652:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "20642:6:3",
"nodeType": "YulIdentifier",
"src": "20642:6:3"
},
"nativeSrc": "20642:15:3",
"nodeType": "YulFunctionCall",
"src": "20642:15:3"
},
"nativeSrc": "20642:15:3",
"nodeType": "YulExpressionStatement",
"src": "20642:15:3"
}
]
},
"name": "panic_error_0x11",
"nativeSrc": "20483:180:3",
"nodeType": "YulFunctionDefinition",
"src": "20483:180:3"
},
{
"body": {
"nativeSrc": "20712:190:3",
"nodeType": "YulBlock",
"src": "20712:190:3",
"statements": [
{
"nativeSrc": "20722:33:3",
"nodeType": "YulAssignment",
"src": "20722:33:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "20749:5:3",
"nodeType": "YulIdentifier",
"src": "20749:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "20731:17:3",
"nodeType": "YulIdentifier",
"src": "20731:17:3"
},
"nativeSrc": "20731:24:3",
"nodeType": "YulFunctionCall",
"src": "20731:24:3"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "20722:5:3",
"nodeType": "YulIdentifier",
"src": "20722:5:3"
}
]
},
{
"body": {
"nativeSrc": "20845:22:3",
"nodeType": "YulBlock",
"src": "20845:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "20847:16:3",
"nodeType": "YulIdentifier",
"src": "20847:16:3"
},
"nativeSrc": "20847:18:3",
"nodeType": "YulFunctionCall",
"src": "20847:18:3"
},
"nativeSrc": "20847:18:3",
"nodeType": "YulExpressionStatement",
"src": "20847:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nativeSrc": "20770:5:3",
"nodeType": "YulIdentifier",
"src": "20770:5:3"
},
{
"kind": "number",
"nativeSrc": "20777:66:3",
"nodeType": "YulLiteral",
"src": "20777:66:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "20767:2:3",
"nodeType": "YulIdentifier",
"src": "20767:2:3"
},
"nativeSrc": "20767:77:3",
"nodeType": "YulFunctionCall",
"src": "20767:77:3"
},
"nativeSrc": "20764:103:3",
"nodeType": "YulIf",
"src": "20764:103:3"
},
{
"nativeSrc": "20876:20:3",
"nodeType": "YulAssignment",
"src": "20876:20:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "20887:5:3",
"nodeType": "YulIdentifier",
"src": "20887:5:3"
},
{
"kind": "number",
"nativeSrc": "20894:1:3",
"nodeType": "YulLiteral",
"src": "20894:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "20883:3:3",
"nodeType": "YulIdentifier",
"src": "20883:3:3"
},
"nativeSrc": "20883:13:3",
"nodeType": "YulFunctionCall",
"src": "20883:13:3"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "20876:3:3",
"nodeType": "YulIdentifier",
"src": "20876:3:3"
}
]
}
]
},
"name": "increment_t_uint256",
"nativeSrc": "20669:233:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "20698:5:3",
"nodeType": "YulTypedName",
"src": "20698:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "20708:3:3",
"nodeType": "YulTypedName",
"src": "20708:3:3",
"type": ""
}
],
"src": "20669:233:3"
},
{
"body": {
"nativeSrc": "20973:53:3",
"nodeType": "YulBlock",
"src": "20973:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "20990:3:3",
"nodeType": "YulIdentifier",
"src": "20990:3:3"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "21013:5:3",
"nodeType": "YulIdentifier",
"src": "21013:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "20995:17:3",
"nodeType": "YulIdentifier",
"src": "20995:17:3"
},
"nativeSrc": "20995:24:3",
"nodeType": "YulFunctionCall",
"src": "20995:24:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "20983:6:3",
"nodeType": "YulIdentifier",
"src": "20983:6:3"
},
"nativeSrc": "20983:37:3",
"nodeType": "YulFunctionCall",
"src": "20983:37:3"
},
"nativeSrc": "20983:37:3",
"nodeType": "YulExpressionStatement",
"src": "20983:37:3"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "20908:118:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "20961:5:3",
"nodeType": "YulTypedName",
"src": "20961:5:3",
"type": ""
},
{
"name": "pos",
"nativeSrc": "20968:3:3",
"nodeType": "YulTypedName",
"src": "20968:3:3",
"type": ""
}
],
"src": "20908:118:3"
},
{
"body": {
"nativeSrc": "21130:124:3",
"nodeType": "YulBlock",
"src": "21130:124:3",
"statements": [
{
"nativeSrc": "21140:26:3",
"nodeType": "YulAssignment",
"src": "21140:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "21152:9:3",
"nodeType": "YulIdentifier",
"src": "21152:9:3"
},
{
"kind": "number",
"nativeSrc": "21163:2:3",
"nodeType": "YulLiteral",
"src": "21163:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "21148:3:3",
"nodeType": "YulIdentifier",
"src": "21148:3:3"
},
"nativeSrc": "21148:18:3",
"nodeType": "YulFunctionCall",
"src": "21148:18:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "21140:4:3",
"nodeType": "YulIdentifier",
"src": "21140:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "21220:6:3",
"nodeType": "YulIdentifier",
"src": "21220:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "21233:9:3",
"nodeType": "YulIdentifier",
"src": "21233:9:3"
},
{
"kind": "number",
"nativeSrc": "21244:1:3",
"nodeType": "YulLiteral",
"src": "21244:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "21229:3:3",
"nodeType": "YulIdentifier",
"src": "21229:3:3"
},
"nativeSrc": "21229:17:3",
"nodeType": "YulFunctionCall",
"src": "21229:17:3"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "21176:43:3",
"nodeType": "YulIdentifier",
"src": "21176:43:3"
},
"nativeSrc": "21176:71:3",
"nodeType": "YulFunctionCall",
"src": "21176:71:3"
},
"nativeSrc": "21176:71:3",
"nodeType": "YulExpressionStatement",
"src": "21176:71:3"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nativeSrc": "21032:222:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "21102:9:3",
"nodeType": "YulTypedName",
"src": "21102:9:3",
"type": ""
},
{
"name": "value0",
"nativeSrc": "21114:6:3",
"nodeType": "YulTypedName",
"src": "21114:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "21125:4:3",
"nodeType": "YulTypedName",
"src": "21125:4:3",
"type": ""
}
],
"src": "21032:222:3"
},
{
"body": {
"nativeSrc": "21288:152:3",
"nodeType": "YulBlock",
"src": "21288:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "21305:1:3",
"nodeType": "YulLiteral",
"src": "21305:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "21308:77:3",
"nodeType": "YulLiteral",
"src": "21308:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "21298:6:3",
"nodeType": "YulIdentifier",
"src": "21298:6:3"
},
"nativeSrc": "21298:88:3",
"nodeType": "YulFunctionCall",
"src": "21298:88:3"
},
"nativeSrc": "21298:88:3",
"nodeType": "YulExpressionStatement",
"src": "21298:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "21402:1:3",
"nodeType": "YulLiteral",
"src": "21402:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "21405:4:3",
"nodeType": "YulLiteral",
"src": "21405:4:3",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "21395:6:3",
"nodeType": "YulIdentifier",
"src": "21395:6:3"
},
"nativeSrc": "21395:15:3",
"nodeType": "YulFunctionCall",
"src": "21395:15:3"
},
"nativeSrc": "21395:15:3",
"nodeType": "YulExpressionStatement",
"src": "21395:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "21426:1:3",
"nodeType": "YulLiteral",
"src": "21426:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "21429:4:3",
"nodeType": "YulLiteral",
"src": "21429:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "21419:6:3",
"nodeType": "YulIdentifier",
"src": "21419:6:3"
},
"nativeSrc": "21419:15:3",
"nodeType": "YulFunctionCall",
"src": "21419:15:3"
},
"nativeSrc": "21419:15:3",
"nodeType": "YulExpressionStatement",
"src": "21419:15:3"
}
]
},
"name": "panic_error_0x32",
"nativeSrc": "21260:180:3",
"nodeType": "YulFunctionDefinition",
"src": "21260:180:3"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory_with_cleanup(src, dst, length) {\n\n calldatacopy(dst, src, length)\n mstore(add(dst, length), 0)\n\n }\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory_with_cleanup(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := mul(length, 0x20)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() {\n revert(0, 0)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n // uint256[]\n function abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr(offset, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr(length))\n let dst := array\n\n mstore(array, length)\n dst := add(array, 0x20)\n\n let srcEnd := add(offset, mul(length, 0x20))\n if gt(srcEnd, end) {\n revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef()\n }\n for { let src := offset } lt(src, srcEnd) { src := add(src, 0x20) }\n {\n\n let elementPos := src\n\n mstore(dst, abi_decode_t_uint256(elementPos, end))\n dst := add(dst, 0x20)\n }\n }\n\n // uint256[]\n function abi_decode_t_array$_t_uint256_$dyn_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_array$_t_uint256_$dyn_memory_ptr(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 64))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value2 := abi_decode_t_array$_t_uint256_$dyn_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory_with_cleanup(src, dst, length) {\n\n mcopy(dst, src, length)\n mstore(add(dst, length), 0)\n\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function array_length_t_array$_t_uint256_$dyn_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_dataslot_t_array$_t_uint256_$dyn_memory_ptr(ptr) -> data {\n data := ptr\n\n data := add(ptr, 0x20)\n\n }\n\n function abi_encode_t_uint256_to_t_uint256(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encodeUpdatedPos_t_uint256_to_t_uint256(value0, pos) -> updatedPos {\n abi_encode_t_uint256_to_t_uint256(value0, pos)\n updatedPos := add(pos, 0x20)\n }\n\n function array_nextElement_t_array$_t_uint256_$dyn_memory_ptr(ptr) -> next {\n next := add(ptr, 0x20)\n }\n\n // uint256[] -> uint256[]\n function abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_uint256_$dyn_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack(pos, length)\n let baseRef := array_dataslot_t_array$_t_uint256_$dyn_memory_ptr(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n let elementValue0 := mload(srcPtr)\n pos := abi_encodeUpdatedPos_t_uint256_to_t_uint256(elementValue0, pos)\n srcPtr := array_nextElement_t_array$_t_uint256_$dyn_memory_ptr(srcPtr)\n }\n end := pos\n }\n\n function abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n mstore(add(headStart, 64), sub(tail, headStart))\n tail := abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value2, tail)\n\n }\n\n function array_length_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_dataslot_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr(ptr) -> data {\n data := ptr\n\n data := add(ptr, 0x20)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n // uint256[] -> uint256[]\n function abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr(value, pos) -> end {\n let length := array_length_t_array$_t_uint256_$dyn_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr(pos, length)\n let baseRef := array_dataslot_t_array$_t_uint256_$dyn_memory_ptr(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n let elementValue0 := mload(srcPtr)\n pos := abi_encodeUpdatedPos_t_uint256_to_t_uint256(elementValue0, pos)\n srcPtr := array_nextElement_t_array$_t_uint256_$dyn_memory_ptr(srcPtr)\n }\n end := pos\n }\n\n // struct AddressBook.Contact -> struct AddressBook.Contact\n function abi_encode_t_struct$_Contact_$14_memory_ptr_to_t_struct$_Contact_$14_memory_ptr(value, pos) -> end {\n let tail := add(pos, 0x80)\n\n {\n // id\n\n let memberValue0 := mload(add(value, 0x00))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x00))\n }\n\n {\n // firstName\n\n let memberValue0 := mload(add(value, 0x20))\n\n mstore(add(pos, 0x20), sub(tail, pos))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr(memberValue0, tail)\n\n }\n\n {\n // lastName\n\n let memberValue0 := mload(add(value, 0x40))\n\n mstore(add(pos, 0x40), sub(tail, pos))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr(memberValue0, tail)\n\n }\n\n {\n // phoneNumbers\n\n let memberValue0 := mload(add(value, 0x60))\n\n mstore(add(pos, 0x60), sub(tail, pos))\n tail := abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr(memberValue0, tail)\n\n }\n\n end := tail\n }\n\n function abi_encodeUpdatedPos_t_struct$_Contact_$14_memory_ptr_to_t_struct$_Contact_$14_memory_ptr(value0, pos) -> updatedPos {\n updatedPos := abi_encode_t_struct$_Contact_$14_memory_ptr_to_t_struct$_Contact_$14_memory_ptr(value0, pos)\n }\n\n function array_nextElement_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr(ptr) -> next {\n next := add(ptr, 0x20)\n }\n\n // struct AddressBook.Contact[] -> struct AddressBook.Contact[]\n function abi_encode_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr_fromStack(pos, length)\n let headStart := pos\n let tail := add(pos, mul(length, 0x20))\n let baseRef := array_dataslot_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n mstore(pos, sub(tail, headStart))\n let elementValue0 := mload(srcPtr)\n tail := abi_encodeUpdatedPos_t_struct$_Contact_$14_memory_ptr_to_t_struct$_Contact_$14_memory_ptr(elementValue0, tail)\n srcPtr := array_nextElement_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr(srcPtr)\n pos := add(pos, 0x20)\n }\n pos := tail\n end := pos\n }\n\n function abi_encode_tuple_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_Contact_$14_memory_ptr_$dyn_memory_ptr_fromStack(value0, tail)\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561000f575f80fd5b506004361061007b575f3560e01c8063b9ed6fca11610059578063b9ed6fca146100c3578063e6505e1e146100df578063ef1d6ddd14610111578063f2fde38b1461012f5761007b565b80633f06f6e81461007f578063715018a61461009b5780638da5cb5b146100a5575b5f80fd5b61009960048036038101906100949190610bee565b61014b565b005b6100a36101f9565b005b6100ad61020c565b6040516100ba9190610cd1565b60405180910390f35b6100dd60048036038101906100d89190610cea565b610233565b005b6100f960048036038101906100f49190610cea565b6102dc565b60405161010893929190610e2c565b60405180910390f35b6101196104ba565b6040516101269190611053565b60405180910390f35b6101496004803603810190610144919061109d565b6106ef565b005b610153610773565b604051806080016040528060025481526020018481526020018381526020018281525060015f60025481526020019081526020015f205f820151815f015560208201518160010190816101a691906112c2565b5060408201518160020190816101bc91906112c2565b5060608201518160030190805190602001906101d99291906108c2565b5090505060025f8154809291906101ef906113be565b9190505550505050565b610201610773565b61020a5f6107fa565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61023b610773565b5f60015f8381526020019081526020015f205f01540361029257806040517ff55dec000000000000000000000000000000000000000000000000000000000081526004016102899190611414565b60405180910390fd5b60015f8281526020019081526020015f205f8082015f9055600182015f6102b9919061090d565b600282015f6102c8919061090d565b600382015f6102d7919061094a565b505050565b60608060605f60015f8681526020019081526020015f2090505f815f01540361033c57846040517ff55dec000000000000000000000000000000000000000000000000000000000081526004016103339190611414565b60405180910390fd5b806001018160020182600301828054610354906110f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610380906110f5565b80156103cb5780601f106103a2576101008083540402835291602001916103cb565b820191905f5260205f20905b8154815290600101906020018083116103ae57829003601f168201915b505050505092508180546103de906110f5565b80601f016020809104026020016040519081016040528092919081815260200182805461040a906110f5565b80156104555780601f1061042c57610100808354040283529160200191610455565b820191905f5260205f20905b81548152906001019060200180831161043857829003601f168201915b50505050509150808054806020026020016040519081016040528092919081815260200182805480156104a557602002820191905f5260205f20905b815481526020019060010190808311610491575b50505050509050935093509350509193909250565b60605f60025467ffffffffffffffff8111156104d9576104d86109d3565b5b60405190808252806020026020018201604052801561051257816020015b6104ff610968565b8152602001906001900390816104f75790505b5090505f5b6002548110156106e75760015f8281526020019081526020015f206040518060800160405290815f8201548152602001600182018054610556906110f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610582906110f5565b80156105cd5780601f106105a4576101008083540402835291602001916105cd565b820191905f5260205f20905b8154815290600101906020018083116105b057829003601f168201915b505050505081526020016002820180546105e6906110f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610612906110f5565b801561065d5780601f106106345761010080835404028352916020019161065d565b820191905f5260205f20905b81548152906001019060200180831161064057829003601f168201915b50505050508152602001600382018054806020026020016040519081016040528092919081815260200182805480156106b357602002820191905f5260205f20905b81548152602001906001019080831161069f575b5050505050815250508282815181106106cf576106ce61142d565b5b60200260200101819052508080600101915050610517565b508091505090565b6106f7610773565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610767575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161075e9190610cd1565b60405180910390fd5b610770816107fa565b50565b61077b6108bb565b73ffffffffffffffffffffffffffffffffffffffff1661079961020c565b73ffffffffffffffffffffffffffffffffffffffff16146107f8576107bc6108bb565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107ef9190610cd1565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f33905090565b828054828255905f5260205f209081019282156108fc579160200282015b828111156108fb5782518255916020019190600101906108e0565b5b509050610909919061098f565b5090565b508054610919906110f5565b5f825580601f1061092a5750610947565b601f0160209004905f5260205f2090810190610946919061098f565b5b50565b5080545f8255905f5260205f2090810190610965919061098f565b50565b60405180608001604052805f81526020016060815260200160608152602001606081525090565b5b808211156109a6575f815f905550600101610990565b5090565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610a09826109c3565b810181811067ffffffffffffffff82111715610a2857610a276109d3565b5b80604052505050565b5f610a3a6109aa565b9050610a468282610a00565b919050565b5f67ffffffffffffffff821115610a6557610a646109d3565b5b610a6e826109c3565b9050602081019050919050565b828183375f83830152505050565b5f610a9b610a9684610a4b565b610a31565b905082815260208101848484011115610ab757610ab66109bf565b5b610ac2848285610a7b565b509392505050565b5f82601f830112610ade57610add6109bb565b5b8135610aee848260208601610a89565b91505092915050565b5f67ffffffffffffffff821115610b1157610b106109d3565b5b602082029050602081019050919050565b5f80fd5b5f819050919050565b610b3881610b26565b8114610b42575f80fd5b50565b5f81359050610b5381610b2f565b92915050565b5f610b6b610b6684610af7565b610a31565b90508083825260208201905060208402830185811115610b8e57610b8d610b22565b5b835b81811015610bb75780610ba38882610b45565b845260208401935050602081019050610b90565b5050509392505050565b5f82601f830112610bd557610bd46109bb565b5b8135610be5848260208601610b59565b91505092915050565b5f805f60608486031215610c0557610c046109b3565b5b5f84013567ffffffffffffffff811115610c2257610c216109b7565b5b610c2e86828701610aca565b935050602084013567ffffffffffffffff811115610c4f57610c4e6109b7565b5b610c5b86828701610aca565b925050604084013567ffffffffffffffff811115610c7c57610c7b6109b7565b5b610c8886828701610bc1565b9150509250925092565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610cbb82610c92565b9050919050565b610ccb81610cb1565b82525050565b5f602082019050610ce45f830184610cc2565b92915050565b5f60208284031215610cff57610cfe6109b3565b5b5f610d0c84828501610b45565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f610d4782610d15565b610d518185610d1f565b9350610d61818560208601610d2f565b610d6a816109c3565b840191505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b610da781610b26565b82525050565b5f610db88383610d9e565b60208301905092915050565b5f602082019050919050565b5f610dda82610d75565b610de48185610d7f565b9350610def83610d8f565b805f5b83811015610e1f578151610e068882610dad565b9750610e1183610dc4565b925050600181019050610df2565b5085935050505092915050565b5f6060820190508181035f830152610e448186610d3d565b90508181036020830152610e588185610d3d565b90508181036040830152610e6c8184610dd0565b9050949350505050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b5f82825260208201905092915050565b5f610eb982610d15565b610ec38185610e9f565b9350610ed3818560208601610d2f565b610edc816109c3565b840191505092915050565b5f82825260208201905092915050565b5f610f0182610d75565b610f0b8185610ee7565b9350610f1683610d8f565b805f5b83811015610f46578151610f2d8882610dad565b9750610f3883610dc4565b925050600181019050610f19565b5085935050505092915050565b5f608083015f830151610f685f860182610d9e565b5060208301518482036020860152610f808282610eaf565b91505060408301518482036040860152610f9a8282610eaf565b91505060608301518482036060860152610fb48282610ef7565b9150508091505092915050565b5f610fcc8383610f53565b905092915050565b5f602082019050919050565b5f610fea82610e76565b610ff48185610e80565b93508360208202850161100685610e90565b805f5b8581101561104157848403895281516110228582610fc1565b945061102d83610fd4565b925060208a01995050600181019050611009565b50829750879550505050505092915050565b5f6020820190508181035f83015261106b8184610fe0565b905092915050565b61107c81610cb1565b8114611086575f80fd5b50565b5f8135905061109781611073565b92915050565b5f602082840312156110b2576110b16109b3565b5b5f6110bf84828501611089565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061110c57607f821691505b60208210810361111f5761111e6110c8565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026111817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611146565b61118b8683611146565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6111c66111c16111bc84610b26565b6111a3565b610b26565b9050919050565b5f819050919050565b6111df836111ac565b6111f36111eb826111cd565b848454611152565b825550505050565b5f90565b6112076111fb565b6112128184846111d6565b505050565b5b818110156112355761122a5f826111ff565b600181019050611218565b5050565b601f82111561127a5761124b81611125565b61125484611137565b81016020851015611263578190505b61127761126f85611137565b830182611217565b50505b505050565b5f82821c905092915050565b5f61129a5f198460080261127f565b1980831691505092915050565b5f6112b2838361128b565b9150826002028217905092915050565b6112cb82610d15565b67ffffffffffffffff8111156112e4576112e36109d3565b5b6112ee82546110f5565b6112f9828285611239565b5f60209050601f83116001811461132a575f8415611318578287015190505b61132285826112a7565b865550611389565b601f19841661133886611125565b5f5b8281101561135f5784890151825560018201915060208501945060208101905061133a565b8683101561137c5784890151611378601f89168261128b565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113c882610b26565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036113fa576113f9611391565b5b600182019050919050565b61140e81610b26565b82525050565b5f6020820190506114275f830184611405565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffdfea26469706673582212203e6632bbb37313595a02f559faaca8a4fd7d06c275d7503f85bfc5e1c2d24dbc64736f6c634300081a0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x7B JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB9ED6FCA GT PUSH2 0x59 JUMPI DUP1 PUSH4 0xB9ED6FCA EQ PUSH2 0xC3 JUMPI DUP1 PUSH4 0xE6505E1E EQ PUSH2 0xDF JUMPI DUP1 PUSH4 0xEF1D6DDD EQ PUSH2 0x111 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x12F JUMPI PUSH2 0x7B JUMP JUMPDEST DUP1 PUSH4 0x3F06F6E8 EQ PUSH2 0x7F JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x9B JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xA5 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x99 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x94 SWAP2 SWAP1 PUSH2 0xBEE JUMP JUMPDEST PUSH2 0x14B JUMP JUMPDEST STOP JUMPDEST PUSH2 0xA3 PUSH2 0x1F9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xAD PUSH2 0x20C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBA SWAP2 SWAP1 PUSH2 0xCD1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xD8 SWAP2 SWAP1 PUSH2 0xCEA JUMP JUMPDEST PUSH2 0x233 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xF9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0xCEA JUMP JUMPDEST PUSH2 0x2DC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x108 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xE2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x119 PUSH2 0x4BA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x126 SWAP2 SWAP1 PUSH2 0x1053 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x149 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x144 SWAP2 SWAP1 PUSH2 0x109D JUMP JUMPDEST PUSH2 0x6EF JUMP JUMPDEST STOP JUMPDEST PUSH2 0x153 PUSH2 0x773 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 SLOAD DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE POP PUSH1 0x1 PUSH0 PUSH1 0x2 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP2 PUSH2 0x1A6 SWAP2 SWAP1 PUSH2 0x12C2 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP2 PUSH2 0x1BC SWAP2 SWAP1 PUSH2 0x12C2 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1D9 SWAP3 SWAP2 SWAP1 PUSH2 0x8C2 JUMP JUMPDEST POP SWAP1 POP POP PUSH1 0x2 PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x1EF SWAP1 PUSH2 0x13BE JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP POP POP POP JUMP JUMPDEST PUSH2 0x201 PUSH2 0x773 JUMP JUMPDEST PUSH2 0x20A PUSH0 PUSH2 0x7FA JUMP JUMPDEST JUMP JUMPDEST PUSH0 DUP1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x23B PUSH2 0x773 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD SLOAD SUB PUSH2 0x292 JUMPI DUP1 PUSH1 0x40 MLOAD PUSH32 0xF55DEC0000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x289 SWAP2 SWAP1 PUSH2 0x1414 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP1 DUP3 ADD PUSH0 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD PUSH0 PUSH2 0x2B9 SWAP2 SWAP1 PUSH2 0x90D JUMP JUMPDEST PUSH1 0x2 DUP3 ADD PUSH0 PUSH2 0x2C8 SWAP2 SWAP1 PUSH2 0x90D JUMP JUMPDEST PUSH1 0x3 DUP3 ADD PUSH0 PUSH2 0x2D7 SWAP2 SWAP1 PUSH2 0x94A JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x60 PUSH0 PUSH1 0x1 PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SWAP1 POP PUSH0 DUP2 PUSH0 ADD SLOAD SUB PUSH2 0x33C JUMPI DUP5 PUSH1 0x40 MLOAD PUSH32 0xF55DEC0000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x333 SWAP2 SWAP1 PUSH2 0x1414 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 ADD DUP2 PUSH1 0x2 ADD DUP3 PUSH1 0x3 ADD DUP3 DUP1 SLOAD PUSH2 0x354 SWAP1 PUSH2 0x10F5 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 0x380 SWAP1 PUSH2 0x10F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3CB JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3A2 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3CB JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x3AE JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP3 POP DUP2 DUP1 SLOAD PUSH2 0x3DE SWAP1 PUSH2 0x10F5 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 0x40A SWAP1 PUSH2 0x10F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x455 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x42C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x455 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x438 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP DUP1 DUP1 SLOAD DUP1 PUSH1 0x20 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 DUP1 ISZERO PUSH2 0x4A5 JUMPI PUSH1 0x20 MUL DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 DUP1 DUP4 GT PUSH2 0x491 JUMPI JUMPDEST POP POP POP POP POP SWAP1 POP SWAP4 POP SWAP4 POP SWAP4 POP POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH1 0x2 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4D9 JUMPI PUSH2 0x4D8 PUSH2 0x9D3 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 0x512 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x4FF PUSH2 0x968 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x4F7 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST PUSH1 0x2 SLOAD DUP2 LT ISZERO PUSH2 0x6E7 JUMPI PUSH1 0x1 PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD DUP1 SLOAD PUSH2 0x556 SWAP1 PUSH2 0x10F5 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 0x582 SWAP1 PUSH2 0x10F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5CD JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x5A4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5CD JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x5B0 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD DUP1 SLOAD PUSH2 0x5E6 SWAP1 PUSH2 0x10F5 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 0x612 SWAP1 PUSH2 0x10F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x65D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x634 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x65D JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x640 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD DUP1 SLOAD DUP1 PUSH1 0x20 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 DUP1 ISZERO PUSH2 0x6B3 JUMPI PUSH1 0x20 MUL DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 DUP1 DUP4 GT PUSH2 0x69F JUMPI JUMPDEST POP POP POP POP POP DUP2 MSTORE POP POP DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x6CF JUMPI PUSH2 0x6CE PUSH2 0x142D JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH1 0x1 ADD SWAP2 POP POP PUSH2 0x517 JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH2 0x6F7 PUSH2 0x773 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x767 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1E4FBDF700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75E SWAP2 SWAP1 PUSH2 0xCD1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x770 DUP2 PUSH2 0x7FA JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x77B PUSH2 0x8BB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x799 PUSH2 0x20C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x7F8 JUMPI PUSH2 0x7BC PUSH2 0x8BB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x118CDAA700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7EF SWAP2 SWAP1 PUSH2 0xCD1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 DUP1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH0 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 PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x8FC JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x8FB JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x8E0 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x909 SWAP2 SWAP1 PUSH2 0x98F JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST POP DUP1 SLOAD PUSH2 0x919 SWAP1 PUSH2 0x10F5 JUMP JUMPDEST PUSH0 DUP3 SSTORE DUP1 PUSH1 0x1F LT PUSH2 0x92A JUMPI POP PUSH2 0x947 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x946 SWAP2 SWAP1 PUSH2 0x98F JUMP JUMPDEST JUMPDEST POP JUMP JUMPDEST POP DUP1 SLOAD PUSH0 DUP3 SSTORE SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x965 SWAP2 SWAP1 PUSH2 0x98F JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x60 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x9A6 JUMPI PUSH0 DUP2 PUSH0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x990 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0xA09 DUP3 PUSH2 0x9C3 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0xA28 JUMPI PUSH2 0xA27 PUSH2 0x9D3 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA3A PUSH2 0x9AA JUMP JUMPDEST SWAP1 POP PUSH2 0xA46 DUP3 DUP3 PUSH2 0xA00 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0xA65 JUMPI PUSH2 0xA64 PUSH2 0x9D3 JUMP JUMPDEST JUMPDEST PUSH2 0xA6E DUP3 PUSH2 0x9C3 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA9B PUSH2 0xA96 DUP5 PUSH2 0xA4B JUMP JUMPDEST PUSH2 0xA31 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0xAB7 JUMPI PUSH2 0xAB6 PUSH2 0x9BF JUMP JUMPDEST JUMPDEST PUSH2 0xAC2 DUP5 DUP3 DUP6 PUSH2 0xA7B JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xADE JUMPI PUSH2 0xADD PUSH2 0x9BB JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0xAEE DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0xA89 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0xB11 JUMPI PUSH2 0xB10 PUSH2 0x9D3 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB38 DUP2 PUSH2 0xB26 JUMP JUMPDEST DUP2 EQ PUSH2 0xB42 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB53 DUP2 PUSH2 0xB2F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xB6B PUSH2 0xB66 DUP5 PUSH2 0xAF7 JUMP JUMPDEST PUSH2 0xA31 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x20 DUP5 MUL DUP4 ADD DUP6 DUP2 GT ISZERO PUSH2 0xB8E JUMPI PUSH2 0xB8D PUSH2 0xB22 JUMP JUMPDEST JUMPDEST DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xBB7 JUMPI DUP1 PUSH2 0xBA3 DUP9 DUP3 PUSH2 0xB45 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xB90 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xBD5 JUMPI PUSH2 0xBD4 PUSH2 0x9BB JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0xBE5 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0xB59 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xC05 JUMPI PUSH2 0xC04 PUSH2 0x9B3 JUMP JUMPDEST JUMPDEST PUSH0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xC22 JUMPI PUSH2 0xC21 PUSH2 0x9B7 JUMP JUMPDEST JUMPDEST PUSH2 0xC2E DUP7 DUP3 DUP8 ADD PUSH2 0xACA JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xC4F JUMPI PUSH2 0xC4E PUSH2 0x9B7 JUMP JUMPDEST JUMPDEST PUSH2 0xC5B DUP7 DUP3 DUP8 ADD PUSH2 0xACA JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xC7C JUMPI PUSH2 0xC7B PUSH2 0x9B7 JUMP JUMPDEST JUMPDEST PUSH2 0xC88 DUP7 DUP3 DUP8 ADD PUSH2 0xBC1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xCBB DUP3 PUSH2 0xC92 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xCCB DUP2 PUSH2 0xCB1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCE4 PUSH0 DUP4 ADD DUP5 PUSH2 0xCC2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xCFF JUMPI PUSH2 0xCFE PUSH2 0x9B3 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xD0C DUP5 DUP3 DUP6 ADD PUSH2 0xB45 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 MCOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD47 DUP3 PUSH2 0xD15 JUMP JUMPDEST PUSH2 0xD51 DUP2 DUP6 PUSH2 0xD1F JUMP JUMPDEST SWAP4 POP PUSH2 0xD61 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xD2F JUMP JUMPDEST PUSH2 0xD6A DUP2 PUSH2 0x9C3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xDA7 DUP2 PUSH2 0xB26 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH2 0xDB8 DUP4 DUP4 PUSH2 0xD9E JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xDDA DUP3 PUSH2 0xD75 JUMP JUMPDEST PUSH2 0xDE4 DUP2 DUP6 PUSH2 0xD7F JUMP JUMPDEST SWAP4 POP PUSH2 0xDEF DUP4 PUSH2 0xD8F JUMP JUMPDEST DUP1 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xE1F JUMPI DUP2 MLOAD PUSH2 0xE06 DUP9 DUP3 PUSH2 0xDAD JUMP JUMPDEST SWAP8 POP PUSH2 0xE11 DUP4 PUSH2 0xDC4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xDF2 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xE44 DUP2 DUP7 PUSH2 0xD3D JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0xE58 DUP2 DUP6 PUSH2 0xD3D JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0xE6C DUP2 DUP5 PUSH2 0xDD0 JUMP JUMPDEST SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xEB9 DUP3 PUSH2 0xD15 JUMP JUMPDEST PUSH2 0xEC3 DUP2 DUP6 PUSH2 0xE9F JUMP JUMPDEST SWAP4 POP PUSH2 0xED3 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xD2F JUMP JUMPDEST PUSH2 0xEDC DUP2 PUSH2 0x9C3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xF01 DUP3 PUSH2 0xD75 JUMP JUMPDEST PUSH2 0xF0B DUP2 DUP6 PUSH2 0xEE7 JUMP JUMPDEST SWAP4 POP PUSH2 0xF16 DUP4 PUSH2 0xD8F JUMP JUMPDEST DUP1 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xF46 JUMPI DUP2 MLOAD PUSH2 0xF2D DUP9 DUP3 PUSH2 0xDAD JUMP JUMPDEST SWAP8 POP PUSH2 0xF38 DUP4 PUSH2 0xDC4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xF19 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP4 ADD PUSH0 DUP4 ADD MLOAD PUSH2 0xF68 PUSH0 DUP7 ADD DUP3 PUSH2 0xD9E JUMP JUMPDEST POP PUSH1 0x20 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x20 DUP7 ADD MSTORE PUSH2 0xF80 DUP3 DUP3 PUSH2 0xEAF JUMP JUMPDEST SWAP2 POP POP PUSH1 0x40 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x40 DUP7 ADD MSTORE PUSH2 0xF9A DUP3 DUP3 PUSH2 0xEAF JUMP JUMPDEST SWAP2 POP POP PUSH1 0x60 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x60 DUP7 ADD MSTORE PUSH2 0xFB4 DUP3 DUP3 PUSH2 0xEF7 JUMP JUMPDEST SWAP2 POP POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xFCC DUP4 DUP4 PUSH2 0xF53 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xFEA DUP3 PUSH2 0xE76 JUMP JUMPDEST PUSH2 0xFF4 DUP2 DUP6 PUSH2 0xE80 JUMP JUMPDEST SWAP4 POP DUP4 PUSH1 0x20 DUP3 MUL DUP6 ADD PUSH2 0x1006 DUP6 PUSH2 0xE90 JUMP JUMPDEST DUP1 PUSH0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x1041 JUMPI DUP5 DUP5 SUB DUP10 MSTORE DUP2 MLOAD PUSH2 0x1022 DUP6 DUP3 PUSH2 0xFC1 JUMP JUMPDEST SWAP5 POP PUSH2 0x102D DUP4 PUSH2 0xFD4 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP11 ADD SWAP10 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x1009 JUMP JUMPDEST POP DUP3 SWAP8 POP DUP8 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x106B DUP2 DUP5 PUSH2 0xFE0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x107C DUP2 PUSH2 0xCB1 JUMP JUMPDEST DUP2 EQ PUSH2 0x1086 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1097 DUP2 PUSH2 0x1073 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10B2 JUMPI PUSH2 0x10B1 PUSH2 0x9B3 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x10BF DUP5 DUP3 DUP6 ADD PUSH2 0x1089 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x110C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x111F JUMPI PUSH2 0x111E PUSH2 0x10C8 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH2 0x1181 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x1146 JUMP JUMPDEST PUSH2 0x118B DUP7 DUP4 PUSH2 0x1146 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x11C6 PUSH2 0x11C1 PUSH2 0x11BC DUP5 PUSH2 0xB26 JUMP JUMPDEST PUSH2 0x11A3 JUMP JUMPDEST PUSH2 0xB26 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x11DF DUP4 PUSH2 0x11AC JUMP JUMPDEST PUSH2 0x11F3 PUSH2 0x11EB DUP3 PUSH2 0x11CD JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x1152 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH2 0x1207 PUSH2 0x11FB JUMP JUMPDEST PUSH2 0x1212 DUP2 DUP5 DUP5 PUSH2 0x11D6 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1235 JUMPI PUSH2 0x122A PUSH0 DUP3 PUSH2 0x11FF JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x1218 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x127A JUMPI PUSH2 0x124B DUP2 PUSH2 0x1125 JUMP JUMPDEST PUSH2 0x1254 DUP5 PUSH2 0x1137 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x1263 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x1277 PUSH2 0x126F DUP6 PUSH2 0x1137 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x1217 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x129A PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x127F JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x12B2 DUP4 DUP4 PUSH2 0x128B JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x12CB DUP3 PUSH2 0xD15 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x12E4 JUMPI PUSH2 0x12E3 PUSH2 0x9D3 JUMP JUMPDEST JUMPDEST PUSH2 0x12EE DUP3 SLOAD PUSH2 0x10F5 JUMP JUMPDEST PUSH2 0x12F9 DUP3 DUP3 DUP6 PUSH2 0x1239 JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x132A JUMPI PUSH0 DUP5 ISZERO PUSH2 0x1318 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x1322 DUP6 DUP3 PUSH2 0x12A7 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x1389 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x1338 DUP7 PUSH2 0x1125 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x135F JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x133A JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x137C JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x1378 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x128B JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x13C8 DUP3 PUSH2 0xB26 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x13FA JUMPI PUSH2 0x13F9 PUSH2 0x1391 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x140E DUP2 PUSH2 0xB26 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1427 PUSH0 DUP4 ADD DUP5 PUSH2 0x1405 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 RETURNDATACOPY PUSH7 0x32BBB37313595A MUL CREATE2 MSIZE STATICCALL 0xAC 0xA8 LOG4 REVERT PUSH30 0x6C275D7503F85BFC5E1C2D24DBC64736F6C634300081A00330000000000 ",
"sourceMap": "173:1334:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;488:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2293:101:1;;;:::i;:::-;;1638:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;718:175:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;899:342;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;1247:258;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2543:215:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;488:224:0;1531:13:1;:11;:13::i;:::-;634:53:0::1;;;;;;;;642:6;;634:53;;;;650:10;634:53;;;;662:9;634:53;;;;673:13;634:53;;::::0;615:8:::1;:16;624:6;;615:16;;;;;;;;;;;:72;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;697:6;;:8;;;;;;;;;:::i;:::-;;;;;;488:224:::0;;;:::o;2293:101:1:-;1531:13;:11;:13::i;:::-;2357:30:::1;2384:1;2357:18;:30::i;:::-;2293:101::o:0;1638:85::-;1684:7;1710:6;;;;;;;;;;;1703:13;;1638:85;:::o;718:175:0:-;1531:13:1;:11;:13::i;:::-;802:1:0::1;782:8;:13;791:3;782:13;;;;;;;;;;;:16;;;:21:::0;778:79:::1;;842:3;826:20;;;;;;;;;;;:::i;:::-;;;;;;;;778:79;873:8;:13;882:3;873:13;;;;;;;;;;;;866:20:::0;::::1;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;718:175:::0;:::o;899:342::-;950:23;975:22;999:26;1037:23;1063:8;:13;1072:3;1063:13;;;;;;;;;;;1037:39;;1104:1;1090:7;:10;;;:15;1086:73;;1144:3;1128:20;;;;;;;;;;;:::i;:::-;;;;;;;;1086:73;1176:7;:17;;1195:7;:16;;1213:7;:20;;1168:66;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;899:342;;;;;:::o;1247:258::-;1294:16;1322:28;1367:6;;1353:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1322:52;;1389:6;1384:87;1405:6;;1401:1;:10;1384:87;;;1449:8;:11;1458:1;1449:11;;;;;;;;;;;1432:28;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:11;1444:1;1432:14;;;;;;;;:::i;:::-;;;;;;;:28;;;;1413:3;;;;;;;1384:87;;;;1487:11;1480:18;;;1247:258;:::o;2543:215:1:-;1531:13;:11;:13::i;:::-;2647:1:::1;2627:22;;:8;:22;;::::0;2623:91:::1;;2700:1;2672:31;;;;;;;;;;;:::i;:::-;;;;;;;;2623:91;2723:28;2742:8;2723:18;:28::i;:::-;2543:215:::0;:::o;1796:162::-;1866:12;:10;:12::i;:::-;1855:23;;:7;:5;:7::i;:::-;:23;;;1851:101;;1928:12;:10;:12::i;:::-;1901:40;;;;;;;;;;;:::i;:::-;;;;;;;;1851:101;1796:162::o;2912:187::-;2985:16;3004:6;;;;;;;;;;;2985:25;;3029:8;3020:6;;:17;;;;;;;;;;;;;;;;;;3083:8;3052:40;;3073:8;3052:40;;;;;;;;;;;;2975:124;2912:187;:::o;656:96:2:-;709:7;735:10;728:17;;656:96;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:3:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:148::-;1708:6;1703:3;1698;1685:30;1749:1;1740:6;1735:3;1731:16;1724:27;1610:148;;;:::o;1764:425::-;1842:5;1867:66;1883:49;1925:6;1883:49;:::i;:::-;1867:66;:::i;:::-;1858:75;;1956:6;1949:5;1942:21;1994:4;1987:5;1983:16;2032:3;2023:6;2018:3;2014:16;2011:25;2008:112;;;2039:79;;:::i;:::-;2008:112;2129:54;2176:6;2171:3;2166;2129:54;:::i;:::-;1848:341;1764:425;;;;;:::o;2209:340::-;2265:5;2314:3;2307:4;2299:6;2295:17;2291:27;2281:122;;2322:79;;:::i;:::-;2281:122;2439:6;2426:20;2464:79;2539:3;2531:6;2524:4;2516:6;2512:17;2464:79;:::i;:::-;2455:88;;2271:278;2209:340;;;;:::o;2555:311::-;2632:4;2722:18;2714:6;2711:30;2708:56;;;2744:18;;:::i;:::-;2708:56;2794:4;2786:6;2782:17;2774:25;;2854:4;2848;2844:15;2836:23;;2555:311;;;:::o;2872:117::-;2981:1;2978;2971:12;2995:77;3032:7;3061:5;3050:16;;2995:77;;;:::o;3078:122::-;3151:24;3169:5;3151:24;:::i;:::-;3144:5;3141:35;3131:63;;3190:1;3187;3180:12;3131:63;3078:122;:::o;3206:139::-;3252:5;3290:6;3277:20;3268:29;;3306:33;3333:5;3306:33;:::i;:::-;3206:139;;;;:::o;3368:710::-;3464:5;3489:81;3505:64;3562:6;3505:64;:::i;:::-;3489:81;:::i;:::-;3480:90;;3590:5;3619:6;3612:5;3605:21;3653:4;3646:5;3642:16;3635:23;;3706:4;3698:6;3694:17;3686:6;3682:30;3735:3;3727:6;3724:15;3721:122;;;3754:79;;:::i;:::-;3721:122;3869:6;3852:220;3886:6;3881:3;3878:15;3852:220;;;3961:3;3990:37;4023:3;4011:10;3990:37;:::i;:::-;3985:3;3978:50;4057:4;4052:3;4048:14;4041:21;;3928:144;3912:4;3907:3;3903:14;3896:21;;3852:220;;;3856:21;3470:608;;3368:710;;;;;:::o;4101:370::-;4172:5;4221:3;4214:4;4206:6;4202:17;4198:27;4188:122;;4229:79;;:::i;:::-;4188:122;4346:6;4333:20;4371:94;4461:3;4453:6;4446:4;4438:6;4434:17;4371:94;:::i;:::-;4362:103;;4178:293;4101:370;;;;:::o;4477:1189::-;4599:6;4607;4615;4664:2;4652:9;4643:7;4639:23;4635:32;4632:119;;;4670:79;;:::i;:::-;4632:119;4818:1;4807:9;4803:17;4790:31;4848:18;4840:6;4837:30;4834:117;;;4870:79;;:::i;:::-;4834:117;4975:63;5030:7;5021:6;5010:9;5006:22;4975:63;:::i;:::-;4965:73;;4761:287;5115:2;5104:9;5100:18;5087:32;5146:18;5138:6;5135:30;5132:117;;;5168:79;;:::i;:::-;5132:117;5273:63;5328:7;5319:6;5308:9;5304:22;5273:63;:::i;:::-;5263:73;;5058:288;5413:2;5402:9;5398:18;5385:32;5444:18;5436:6;5433:30;5430:117;;;5466:79;;:::i;:::-;5430:117;5571:78;5641:7;5632:6;5621:9;5617:22;5571:78;:::i;:::-;5561:88;;5356:303;4477:1189;;;;;:::o;5672:126::-;5709:7;5749:42;5742:5;5738:54;5727:65;;5672:126;;;:::o;5804:96::-;5841:7;5870:24;5888:5;5870:24;:::i;:::-;5859:35;;5804:96;;;:::o;5906:118::-;5993:24;6011:5;5993:24;:::i;:::-;5988:3;5981:37;5906:118;;:::o;6030:222::-;6123:4;6161:2;6150:9;6146:18;6138:26;;6174:71;6242:1;6231:9;6227:17;6218:6;6174:71;:::i;:::-;6030:222;;;;:::o;6258:329::-;6317:6;6366:2;6354:9;6345:7;6341:23;6337:32;6334:119;;;6372:79;;:::i;:::-;6334:119;6492:1;6517:53;6562:7;6553:6;6542:9;6538:22;6517:53;:::i;:::-;6507:63;;6463:117;6258:329;;;;:::o;6593:99::-;6645:6;6679:5;6673:12;6663:22;;6593:99;;;:::o;6698:169::-;6782:11;6816:6;6811:3;6804:19;6856:4;6851:3;6847:14;6832:29;;6698:169;;;;:::o;6873:139::-;6962:6;6957:3;6952;6946:23;7003:1;6994:6;6989:3;6985:16;6978:27;6873:139;;;:::o;7018:377::-;7106:3;7134:39;7167:5;7134:39;:::i;:::-;7189:71;7253:6;7248:3;7189:71;:::i;:::-;7182:78;;7269:65;7327:6;7322:3;7315:4;7308:5;7304:16;7269:65;:::i;:::-;7359:29;7381:6;7359:29;:::i;:::-;7354:3;7350:39;7343:46;;7110:285;7018:377;;;;:::o;7401:114::-;7468:6;7502:5;7496:12;7486:22;;7401:114;;;:::o;7521:184::-;7620:11;7654:6;7649:3;7642:19;7694:4;7689:3;7685:14;7670:29;;7521:184;;;;:::o;7711:132::-;7778:4;7801:3;7793:11;;7831:4;7826:3;7822:14;7814:22;;7711:132;;;:::o;7849:108::-;7926:24;7944:5;7926:24;:::i;:::-;7921:3;7914:37;7849:108;;:::o;7963:179::-;8032:10;8053:46;8095:3;8087:6;8053:46;:::i;:::-;8131:4;8126:3;8122:14;8108:28;;7963:179;;;;:::o;8148:113::-;8218:4;8250;8245:3;8241:14;8233:22;;8148:113;;;:::o;8297:732::-;8416:3;8445:54;8493:5;8445:54;:::i;:::-;8515:86;8594:6;8589:3;8515:86;:::i;:::-;8508:93;;8625:56;8675:5;8625:56;:::i;:::-;8704:7;8735:1;8720:284;8745:6;8742:1;8739:13;8720:284;;;8821:6;8815:13;8848:63;8907:3;8892:13;8848:63;:::i;:::-;8841:70;;8934:60;8987:6;8934:60;:::i;:::-;8924:70;;8780:224;8767:1;8764;8760:9;8755:14;;8720:284;;;8724:14;9020:3;9013:10;;8421:608;;;8297:732;;;;:::o;9035:775::-;9274:4;9312:2;9301:9;9297:18;9289:26;;9361:9;9355:4;9351:20;9347:1;9336:9;9332:17;9325:47;9389:78;9462:4;9453:6;9389:78;:::i;:::-;9381:86;;9514:9;9508:4;9504:20;9499:2;9488:9;9484:18;9477:48;9542:78;9615:4;9606:6;9542:78;:::i;:::-;9534:86;;9667:9;9661:4;9657:20;9652:2;9641:9;9637:18;9630:48;9695:108;9798:4;9789:6;9695:108;:::i;:::-;9687:116;;9035:775;;;;;;:::o;9816:137::-;9906:6;9940:5;9934:12;9924:22;;9816:137;;;:::o;9959:207::-;10081:11;10115:6;10110:3;10103:19;10155:4;10150:3;10146:14;10131:29;;9959:207;;;;:::o;10172:155::-;10262:4;10285:3;10277:11;;10315:4;10310:3;10306:14;10298:22;;10172:155;;;:::o;10333:159::-;10407:11;10441:6;10436:3;10429:19;10481:4;10476:3;10472:14;10457:29;;10333:159;;;;:::o;10498:357::-;10576:3;10604:39;10637:5;10604:39;:::i;:::-;10659:61;10713:6;10708:3;10659:61;:::i;:::-;10652:68;;10729:65;10787:6;10782:3;10775:4;10768:5;10764:16;10729:65;:::i;:::-;10819:29;10841:6;10819:29;:::i;:::-;10814:3;10810:39;10803:46;;10580:275;10498:357;;;;:::o;10861:174::-;10950:11;10984:6;10979:3;10972:19;11024:4;11019:3;11015:14;11000:29;;10861:174;;;;:::o;11071:712::-;11180:3;11209:54;11257:5;11209:54;:::i;:::-;11279:76;11348:6;11343:3;11279:76;:::i;:::-;11272:83;;11379:56;11429:5;11379:56;:::i;:::-;11458:7;11489:1;11474:284;11499:6;11496:1;11493:13;11474:284;;;11575:6;11569:13;11602:63;11661:3;11646:13;11602:63;:::i;:::-;11595:70;;11688:60;11741:6;11688:60;:::i;:::-;11678:70;;11534:224;11521:1;11518;11514:9;11509:14;;11474:284;;;11478:14;11774:3;11767:10;;11185:598;;;11071:712;;;;:::o;11853:1127::-;11958:3;11994:4;11989:3;11985:14;12079:4;12072:5;12068:16;12062:23;12098:63;12155:4;12150:3;12146:14;12132:12;12098:63;:::i;:::-;12009:162;12258:4;12251:5;12247:16;12241:23;12311:3;12305:4;12301:14;12294:4;12289:3;12285:14;12278:38;12337:73;12405:4;12391:12;12337:73;:::i;:::-;12329:81;;12181:240;12507:4;12500:5;12496:16;12490:23;12560:3;12554:4;12550:14;12543:4;12538:3;12534:14;12527:38;12586:73;12654:4;12640:12;12586:73;:::i;:::-;12578:81;;12431:239;12760:4;12753:5;12749:16;12743:23;12813:3;12807:4;12803:14;12796:4;12791:3;12787:14;12780:38;12839:103;12937:4;12923:12;12839:103;:::i;:::-;12831:111;;12680:273;12970:4;12963:11;;11963:1017;11853:1127;;;;:::o;12986:248::-;13101:10;13136:92;13224:3;13216:6;13136:92;:::i;:::-;13122:106;;12986:248;;;;:::o;13240:136::-;13333:4;13365;13360:3;13356:14;13348:22;;13240:136;;;:::o;13450:1095::-;13615:3;13644:77;13715:5;13644:77;:::i;:::-;13737:109;13839:6;13834:3;13737:109;:::i;:::-;13730:116;;13872:3;13917:4;13909:6;13905:17;13900:3;13896:27;13947:79;14020:5;13947:79;:::i;:::-;14049:7;14080:1;14065:435;14090:6;14087:1;14084:13;14065:435;;;14161:9;14155:4;14151:20;14146:3;14139:33;14212:6;14206:13;14240:110;14345:4;14330:13;14240:110;:::i;:::-;14232:118;;14373:83;14449:6;14373:83;:::i;:::-;14363:93;;14485:4;14480:3;14476:14;14469:21;;14125:375;14112:1;14109;14105:9;14100:14;;14065:435;;;14069:14;14516:4;14509:11;;14536:3;14529:10;;13620:925;;;;;13450:1095;;;;:::o;14551:465::-;14740:4;14778:2;14767:9;14763:18;14755:26;;14827:9;14821:4;14817:20;14813:1;14802:9;14798:17;14791:47;14855:154;15004:4;14995:6;14855:154;:::i;:::-;14847:162;;14551:465;;;;:::o;15022:122::-;15095:24;15113:5;15095:24;:::i;:::-;15088:5;15085:35;15075:63;;15134:1;15131;15124:12;15075:63;15022:122;:::o;15150:139::-;15196:5;15234:6;15221:20;15212:29;;15250:33;15277:5;15250:33;:::i;:::-;15150:139;;;;:::o;15295:329::-;15354:6;15403:2;15391:9;15382:7;15378:23;15374:32;15371:119;;;15409:79;;:::i;:::-;15371:119;15529:1;15554:53;15599:7;15590:6;15579:9;15575:22;15554:53;:::i;:::-;15544:63;;15500:117;15295:329;;;;:::o;15630:180::-;15678:77;15675:1;15668:88;15775:4;15772:1;15765:15;15799:4;15796:1;15789:15;15816:320;15860:6;15897:1;15891:4;15887:12;15877:22;;15944:1;15938:4;15934:12;15965:18;15955:81;;16021:4;16013:6;16009:17;15999:27;;15955:81;16083:2;16075:6;16072:14;16052:18;16049:38;16046:84;;16102:18;;:::i;:::-;16046:84;15867:269;15816:320;;;:::o;16142:141::-;16191:4;16214:3;16206:11;;16237:3;16234:1;16227:14;16271:4;16268:1;16258:18;16250:26;;16142:141;;;:::o;16289:93::-;16326:6;16373:2;16368;16361:5;16357:14;16353:23;16343:33;;16289:93;;;:::o;16388:107::-;16432:8;16482:5;16476:4;16472:16;16451:37;;16388:107;;;;:::o;16501:393::-;16570:6;16620:1;16608:10;16604:18;16643:97;16673:66;16662:9;16643:97;:::i;:::-;16761:39;16791:8;16780:9;16761:39;:::i;:::-;16749:51;;16833:4;16829:9;16822:5;16818:21;16809:30;;16882:4;16872:8;16868:19;16861:5;16858:30;16848:40;;16577:317;;16501:393;;;;;:::o;16900:60::-;16928:3;16949:5;16942:12;;16900:60;;;:::o;16966:142::-;17016:9;17049:53;17067:34;17076:24;17094:5;17076:24;:::i;:::-;17067:34;:::i;:::-;17049:53;:::i;:::-;17036:66;;16966:142;;;:::o;17114:75::-;17157:3;17178:5;17171:12;;17114:75;;;:::o;17195:269::-;17305:39;17336:7;17305:39;:::i;:::-;17366:91;17415:41;17439:16;17415:41;:::i;:::-;17407:6;17400:4;17394:11;17366:91;:::i;:::-;17360:4;17353:105;17271:193;17195:269;;;:::o;17470:73::-;17515:3;17470:73;:::o;17549:189::-;17626:32;;:::i;:::-;17667:65;17725:6;17717;17711:4;17667:65;:::i;:::-;17602:136;17549:189;;:::o;17744:186::-;17804:120;17821:3;17814:5;17811:14;17804:120;;;17875:39;17912:1;17905:5;17875:39;:::i;:::-;17848:1;17841:5;17837:13;17828:22;;17804:120;;;17744:186;;:::o;17936:543::-;18037:2;18032:3;18029:11;18026:446;;;18071:38;18103:5;18071:38;:::i;:::-;18155:29;18173:10;18155:29;:::i;:::-;18145:8;18141:44;18338:2;18326:10;18323:18;18320:49;;;18359:8;18344:23;;18320:49;18382:80;18438:22;18456:3;18438:22;:::i;:::-;18428:8;18424:37;18411:11;18382:80;:::i;:::-;18041:431;;18026:446;17936:543;;;:::o;18485:117::-;18539:8;18589:5;18583:4;18579:16;18558:37;;18485:117;;;;:::o;18608:169::-;18652:6;18685:51;18733:1;18729:6;18721:5;18718:1;18714:13;18685:51;:::i;:::-;18681:56;18766:4;18760;18756:15;18746:25;;18659:118;18608:169;;;;:::o;18782:295::-;18858:4;19004:29;19029:3;19023:4;19004:29;:::i;:::-;18996:37;;19066:3;19063:1;19059:11;19053:4;19050:21;19042:29;;18782:295;;;;:::o;19082:1395::-;19199:37;19232:3;19199:37;:::i;:::-;19301:18;19293:6;19290:30;19287:56;;;19323:18;;:::i;:::-;19287:56;19367:38;19399:4;19393:11;19367:38;:::i;:::-;19452:67;19512:6;19504;19498:4;19452:67;:::i;:::-;19546:1;19570:4;19557:17;;19602:2;19594:6;19591:14;19619:1;19614:618;;;;20276:1;20293:6;20290:77;;;20342:9;20337:3;20333:19;20327:26;20318:35;;20290:77;20393:67;20453:6;20446:5;20393:67;:::i;:::-;20387:4;20380:81;20249:222;19584:887;;19614:618;19666:4;19662:9;19654:6;19650:22;19700:37;19732:4;19700:37;:::i;:::-;19759:1;19773:208;19787:7;19784:1;19781:14;19773:208;;;19866:9;19861:3;19857:19;19851:26;19843:6;19836:42;19917:1;19909:6;19905:14;19895:24;;19964:2;19953:9;19949:18;19936:31;;19810:4;19807:1;19803:12;19798:17;;19773:208;;;20009:6;20000:7;19997:19;19994:179;;;20067:9;20062:3;20058:19;20052:26;20110:48;20152:4;20144:6;20140:17;20129:9;20110:48;:::i;:::-;20102:6;20095:64;20017:156;19994:179;20219:1;20215;20207:6;20203:14;20199:22;20193:4;20186:36;19621:611;;;19584:887;;19174:1303;;;19082:1395;;:::o;20483:180::-;20531:77;20528:1;20521:88;20628:4;20625:1;20618:15;20652:4;20649:1;20642:15;20669:233;20708:3;20731:24;20749:5;20731:24;:::i;:::-;20722:33;;20777:66;20770:5;20767:77;20764:103;;20847:18;;:::i;:::-;20764:103;20894:1;20887:5;20883:13;20876:20;;20669:233;;;:::o;20908:118::-;20995:24;21013:5;20995:24;:::i;:::-;20990:3;20983:37;20908:118;;:::o;21032:222::-;21125:4;21163:2;21152:9;21148:18;21140:26;;21176:71;21244:1;21233:9;21229:17;21220:6;21176:71;:::i;:::-;21032:222;;;;:::o;21260:180::-;21308:77;21305:1;21298:88;21405:4;21402:1;21395:15;21429:4;21426:1;21419:15"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1052800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"addContact(string,string,uint256[])": "infinite",
"deleteContact(uint256)": "infinite",
"getAllContacts()": "infinite",
"getContact(uint256)": "infinite",
"owner()": "2560",
"renounceOwnership()": "infinite",
"transferOwnership(address)": "infinite"
}
},
"methodIdentifiers": {
"addContact(string,string,uint256[])": "3f06f6e8",
"deleteContact(uint256)": "b9ed6fca",
"getAllContacts()": "ef1d6ddd",
"getContact(uint256)": "e6505e1e",
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "id",
"type": "uint256"
}
],
"name": "ContactNotFound",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "OwnableInvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "OwnableUnauthorizedAccount",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [
{
"internalType": "string",
"name": "_firstName",
"type": "string"
},
{
"internalType": "string",
"name": "_lastName",
"type": "string"
},
{
"internalType": "uint256[]",
"name": "_phoneNumbers",
"type": "uint256[]"
}
],
"name": "addContact",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_id",
"type": "uint256"
}
],
"name": "deleteContact",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "getAllContacts",
"outputs": [
{
"components": [
{
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"internalType": "string",
"name": "firstName",
"type": "string"
},
{
"internalType": "string",
"name": "lastName",
"type": "string"
},
{
"internalType": "uint256[]",
"name": "phoneNumbers",
"type": "uint256[]"
}
],
"internalType": "struct AddressBook.Contact[]",
"name": "",
"type": "tuple[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_id",
"type": "uint256"
}
],
"name": "getContact",
"outputs": [
{
"internalType": "string",
"name": "firstName",
"type": "string"
},
{
"internalType": "string",
"name": "lastName",
"type": "string"
},
{
"internalType": "uint256[]",
"name": "phoneNumbers",
"type": "uint256[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.26+commit.8a97fa7a"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "id",
"type": "uint256"
}
],
"name": "ContactNotFound",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "OwnableInvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "OwnableUnauthorizedAccount",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [
{
"internalType": "string",
"name": "_firstName",
"type": "string"
},
{
"internalType": "string",
"name": "_lastName",
"type": "string"
},
{
"internalType": "uint256[]",
"name": "_phoneNumbers",
"type": "uint256[]"
}
],
"name": "addContact",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_id",
"type": "uint256"
}
],
"name": "deleteContact",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "getAllContacts",
"outputs": [
{
"components": [
{
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"internalType": "string",
"name": "firstName",
"type": "string"
},
{
"internalType": "string",
"name": "lastName",
"type": "string"
},
{
"internalType": "uint256[]",
"name": "phoneNumbers",
"type": "uint256[]"
}
],
"internalType": "struct AddressBook.Contact[]",
"name": "",
"type": "tuple[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_id",
"type": "uint256"
}
],
"name": "getContact",
"outputs": [
{
"internalType": "string",
"name": "firstName",
"type": "string"
},
{
"internalType": "string",
"name": "lastName",
"type": "string"
},
{
"internalType": "uint256[]",
"name": "phoneNumbers",
"type": "uint256[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"errors": {
"OwnableInvalidOwner(address)": [
{
"details": "The owner is not a valid owner account. (eg. `address(0)`)"
}
],
"OwnableUnauthorizedAccount(address)": [
{
"details": "The caller account is not authorized to perform an operation."
}
]
},
"kind": "dev",
"methods": {
"owner()": {
"details": "Returns the address of the current owner."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"NewExercise.sol": "AddressBook"
},
"evmVersion": "cancun",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"NewExercise.sol": {
"keccak256": "0x5864043577a08c1fd1c1bf2083c848c74f8949fb15feb8647e5ce587c732b949",
"license": "Unlicensed",
"urls": [
"bzz-raw://985b7d9db40a85e961f75d34b7cc44d9e4c82cb4437bb2e8dcb65bb9955cadcc",
"dweb:/ipfs/QmZzUJ4X6zJAfKzMkszHKF7MkhKzEpj9it6ow1NnhbsyNe"
]
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol": {
"keccak256": "0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb",
"license": "MIT",
"urls": [
"bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6",
"dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a"
]
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol": {
"keccak256": "0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2",
"license": "MIT",
"urls": [
"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12",
"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF"
]
}
},
"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
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6080604052348015600e575f80fd5b5061183d8061001c5f395ff3fe608060405234801561000f575f80fd5b5060043610610029575f3560e01c8063775c300c1461002d575b5f80fd5b61003561004b565b6040516100429190610169565b60405180910390f35b5f80604051610059906100e2565b604051809103905ff080158015610072573d5f803e3d5ffd5b5090508073ffffffffffffffffffffffffffffffffffffffff1663f2fde38b336040518263ffffffff1660e01b81526004016100ae91906101a2565b5f604051808303815f87803b1580156100c5575f80fd5b505af11580156100d7573d5f803e3d5ffd5b505050508091505090565b61164c806101bc83390190565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f819050919050565b5f61013161012c610127846100ef565b61010e565b6100ef565b9050919050565b5f61014282610117565b9050919050565b5f61015382610138565b9050919050565b61016381610149565b82525050565b5f60208201905061017c5f83018461015a565b92915050565b5f61018c826100ef565b9050919050565b61019c81610182565b82525050565b5f6020820190506101b55f830184610193565b9291505056fe608060405234801561000f575f80fd5b50335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610081575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016100789190610196565b60405180910390fd5b6100908161009660201b60201c565b506101af565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61018082610157565b9050919050565b61019081610176565b82525050565b5f6020820190506101a95f830184610187565b92915050565b611490806101bc5f395ff3fe608060405234801561000f575f80fd5b506004361061007b575f3560e01c8063b9ed6fca11610059578063b9ed6fca146100c3578063e6505e1e146100df578063ef1d6ddd14610111578063f2fde38b1461012f5761007b565b80633f06f6e81461007f578063715018a61461009b5780638da5cb5b146100a5575b5f80fd5b61009960048036038101906100949190610bee565b61014b565b005b6100a36101f9565b005b6100ad61020c565b6040516100ba9190610cd1565b60405180910390f35b6100dd60048036038101906100d89190610cea565b610233565b005b6100f960048036038101906100f49190610cea565b6102dc565b60405161010893929190610e2c565b60405180910390f35b6101196104ba565b6040516101269190611053565b60405180910390f35b6101496004803603810190610144919061109d565b6106ef565b005b610153610773565b604051806080016040528060025481526020018481526020018381526020018281525060015f60025481526020019081526020015f205f820151815f015560208201518160010190816101a691906112c2565b5060408201518160020190816101bc91906112c2565b5060608201518160030190805190602001906101d99291906108c2565b5090505060025f8154809291906101ef906113be565b9190505550505050565b610201610773565b61020a5f6107fa565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61023b610773565b5f60015f8381526020019081526020015f205f01540361029257806040517ff55dec000000000000000000000000000000000000000000000000000000000081526004016102899190611414565b60405180910390fd5b60015f8281526020019081526020015f205f8082015f9055600182015f6102b9919061090d565b600282015f6102c8919061090d565b600382015f6102d7919061094a565b505050565b60608060605f60015f8681526020019081526020015f2090505f815f01540361033c57846040517ff55dec000000000000000000000000000000000000000000000000000000000081526004016103339190611414565b60405180910390fd5b806001018160020182600301828054610354906110f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610380906110f5565b80156103cb5780601f106103a2576101008083540402835291602001916103cb565b820191905f5260205f20905b8154815290600101906020018083116103ae57829003601f168201915b505050505092508180546103de906110f5565b80601f016020809104026020016040519081016040528092919081815260200182805461040a906110f5565b80156104555780601f1061042c57610100808354040283529160200191610455565b820191905f5260205f20905b81548152906001019060200180831161043857829003601f168201915b50505050509150808054806020026020016040519081016040528092919081815260200182805480156104a557602002820191905f5260205f20905b815481526020019060010190808311610491575b50505050509050935093509350509193909250565b60605f60025467ffffffffffffffff8111156104d9576104d86109d3565b5b60405190808252806020026020018201604052801561051257816020015b6104ff610968565b8152602001906001900390816104f75790505b5090505f5b6002548110156106e75760015f8281526020019081526020015f206040518060800160405290815f8201548152602001600182018054610556906110f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610582906110f5565b80156105cd5780601f106105a4576101008083540402835291602001916105cd565b820191905f5260205f20905b8154815290600101906020018083116105b057829003601f168201915b505050505081526020016002820180546105e6906110f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610612906110f5565b801561065d5780601f106106345761010080835404028352916020019161065d565b820191905f5260205f20905b81548152906001019060200180831161064057829003601f168201915b50505050508152602001600382018054806020026020016040519081016040528092919081815260200182805480156106b357602002820191905f5260205f20905b81548152602001906001019080831161069f575b5050505050815250508282815181106106cf576106ce61142d565b5b60200260200101819052508080600101915050610517565b508091505090565b6106f7610773565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610767575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161075e9190610cd1565b60405180910390fd5b610770816107fa565b50565b61077b6108bb565b73ffffffffffffffffffffffffffffffffffffffff1661079961020c565b73ffffffffffffffffffffffffffffffffffffffff16146107f8576107bc6108bb565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107ef9190610cd1565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f33905090565b828054828255905f5260205f209081019282156108fc579160200282015b828111156108fb5782518255916020019190600101906108e0565b5b509050610909919061098f565b5090565b508054610919906110f5565b5f825580601f1061092a5750610947565b601f0160209004905f5260205f2090810190610946919061098f565b5b50565b5080545f8255905f5260205f2090810190610965919061098f565b50565b60405180608001604052805f81526020016060815260200160608152602001606081525090565b5b808211156109a6575f815f905550600101610990565b5090565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610a09826109c3565b810181811067ffffffffffffffff82111715610a2857610a276109d3565b5b80604052505050565b5f610a3a6109aa565b9050610a468282610a00565b919050565b5f67ffffffffffffffff821115610a6557610a646109d3565b5b610a6e826109c3565b9050602081019050919050565b828183375f83830152505050565b5f610a9b610a9684610a4b565b610a31565b905082815260208101848484011115610ab757610ab66109bf565b5b610ac2848285610a7b565b509392505050565b5f82601f830112610ade57610add6109bb565b5b8135610aee848260208601610a89565b91505092915050565b5f67ffffffffffffffff821115610b1157610b106109d3565b5b602082029050602081019050919050565b5f80fd5b5f819050919050565b610b3881610b26565b8114610b42575f80fd5b50565b5f81359050610b5381610b2f565b92915050565b5f610b6b610b6684610af7565b610a31565b90508083825260208201905060208402830185811115610b8e57610b8d610b22565b5b835b81811015610bb75780610ba38882610b45565b845260208401935050602081019050610b90565b5050509392505050565b5f82601f830112610bd557610bd46109bb565b5b8135610be5848260208601610b59565b91505092915050565b5f805f60608486031215610c0557610c046109b3565b5b5f84013567ffffffffffffffff811115610c2257610c216109b7565b5b610c2e86828701610aca565b935050602084013567ffffffffffffffff811115610c4f57610c4e6109b7565b5b610c5b86828701610aca565b925050604084013567ffffffffffffffff811115610c7c57610c7b6109b7565b5b610c8886828701610bc1565b9150509250925092565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610cbb82610c92565b9050919050565b610ccb81610cb1565b82525050565b5f602082019050610ce45f830184610cc2565b92915050565b5f60208284031215610cff57610cfe6109b3565b5b5f610d0c84828501610b45565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f610d4782610d15565b610d518185610d1f565b9350610d61818560208601610d2f565b610d6a816109c3565b840191505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b610da781610b26565b82525050565b5f610db88383610d9e565b60208301905092915050565b5f602082019050919050565b5f610dda82610d75565b610de48185610d7f565b9350610def83610d8f565b805f5b83811015610e1f578151610e068882610dad565b9750610e1183610dc4565b925050600181019050610df2565b5085935050505092915050565b5f6060820190508181035f830152610e448186610d3d565b90508181036020830152610e588185610d3d565b90508181036040830152610e6c8184610dd0565b9050949350505050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b5f82825260208201905092915050565b5f610eb982610d15565b610ec38185610e9f565b9350610ed3818560208601610d2f565b610edc816109c3565b840191505092915050565b5f82825260208201905092915050565b5f610f0182610d75565b610f0b8185610ee7565b9350610f1683610d8f565b805f5b83811015610f46578151610f2d8882610dad565b9750610f3883610dc4565b925050600181019050610f19565b5085935050505092915050565b5f608083015f830151610f685f860182610d9e565b5060208301518482036020860152610f808282610eaf565b91505060408301518482036040860152610f9a8282610eaf565b91505060608301518482036060860152610fb48282610ef7565b9150508091505092915050565b5f610fcc8383610f53565b905092915050565b5f602082019050919050565b5f610fea82610e76565b610ff48185610e80565b93508360208202850161100685610e90565b805f5b8581101561104157848403895281516110228582610fc1565b945061102d83610fd4565b925060208a01995050600181019050611009565b50829750879550505050505092915050565b5f6020820190508181035f83015261106b8184610fe0565b905092915050565b61107c81610cb1565b8114611086575f80fd5b50565b5f8135905061109781611073565b92915050565b5f602082840312156110b2576110b16109b3565b5b5f6110bf84828501611089565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061110c57607f821691505b60208210810361111f5761111e6110c8565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026111817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611146565b61118b8683611146565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6111c66111c16111bc84610b26565b6111a3565b610b26565b9050919050565b5f819050919050565b6111df836111ac565b6111f36111eb826111cd565b848454611152565b825550505050565b5f90565b6112076111fb565b6112128184846111d6565b505050565b5b818110156112355761122a5f826111ff565b600181019050611218565b5050565b601f82111561127a5761124b81611125565b61125484611137565b81016020851015611263578190505b61127761126f85611137565b830182611217565b50505b505050565b5f82821c905092915050565b5f61129a5f198460080261127f565b1980831691505092915050565b5f6112b2838361128b565b9150826002028217905092915050565b6112cb82610d15565b67ffffffffffffffff8111156112e4576112e36109d3565b5b6112ee82546110f5565b6112f9828285611239565b5f60209050601f83116001811461132a575f8415611318578287015190505b61132285826112a7565b865550611389565b601f19841661133886611125565b5f5b8281101561135f5784890151825560018201915060208501945060208101905061133a565b8683101561137c5784890151611378601f89168261128b565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113c882610b26565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036113fa576113f9611391565b5b600182019050919050565b61140e81610b26565b82525050565b5f6020820190506114275f830184611405565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffdfea26469706673582212203e6632bbb37313595a02f559faaca8a4fd7d06c275d7503f85bfc5e1c2d24dbc64736f6c634300081a0033a2646970667358221220644e55dd1c089522d3a454a30c546e8830448e840455e1df26583aeb25ac8b3764736f6c634300081a0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x183D DUP1 PUSH2 0x1C PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x775C300C EQ PUSH2 0x2D JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x35 PUSH2 0x4B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x42 SWAP2 SWAP1 PUSH2 0x169 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 DUP1 PUSH1 0x40 MLOAD PUSH2 0x59 SWAP1 PUSH2 0xE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 PUSH0 CREATE DUP1 ISZERO DUP1 ISZERO PUSH2 0x72 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xF2FDE38B CALLER PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAE SWAP2 SWAP1 PUSH2 0x1A2 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xC5 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xD7 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP DUP1 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH2 0x164C DUP1 PUSH2 0x1BC DUP4 CODECOPY ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x131 PUSH2 0x12C PUSH2 0x127 DUP5 PUSH2 0xEF JUMP JUMPDEST PUSH2 0x10E JUMP JUMPDEST PUSH2 0xEF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x142 DUP3 PUSH2 0x117 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x153 DUP3 PUSH2 0x138 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x163 DUP2 PUSH2 0x149 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x17C PUSH0 DUP4 ADD DUP5 PUSH2 0x15A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x18C DUP3 PUSH2 0xEF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x19C DUP2 PUSH2 0x182 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1B5 PUSH0 DUP4 ADD DUP5 PUSH2 0x193 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP CALLER PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x81 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1E4FBDF700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x78 SWAP2 SWAP1 PUSH2 0x196 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x90 DUP2 PUSH2 0x96 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP PUSH2 0x1AF JUMP JUMPDEST PUSH0 DUP1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH0 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 PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 PUSH2 0x157 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x190 DUP2 PUSH2 0x176 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A9 PUSH0 DUP4 ADD DUP5 PUSH2 0x187 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1490 DUP1 PUSH2 0x1BC PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x7B JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB9ED6FCA GT PUSH2 0x59 JUMPI DUP1 PUSH4 0xB9ED6FCA EQ PUSH2 0xC3 JUMPI DUP1 PUSH4 0xE6505E1E EQ PUSH2 0xDF JUMPI DUP1 PUSH4 0xEF1D6DDD EQ PUSH2 0x111 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x12F JUMPI PUSH2 0x7B JUMP JUMPDEST DUP1 PUSH4 0x3F06F6E8 EQ PUSH2 0x7F JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x9B JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xA5 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x99 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x94 SWAP2 SWAP1 PUSH2 0xBEE JUMP JUMPDEST PUSH2 0x14B JUMP JUMPDEST STOP JUMPDEST PUSH2 0xA3 PUSH2 0x1F9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xAD PUSH2 0x20C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBA SWAP2 SWAP1 PUSH2 0xCD1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xD8 SWAP2 SWAP1 PUSH2 0xCEA JUMP JUMPDEST PUSH2 0x233 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xF9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0xCEA JUMP JUMPDEST PUSH2 0x2DC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x108 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xE2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x119 PUSH2 0x4BA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x126 SWAP2 SWAP1 PUSH2 0x1053 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x149 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x144 SWAP2 SWAP1 PUSH2 0x109D JUMP JUMPDEST PUSH2 0x6EF JUMP JUMPDEST STOP JUMPDEST PUSH2 0x153 PUSH2 0x773 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 SLOAD DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE POP PUSH1 0x1 PUSH0 PUSH1 0x2 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP2 PUSH2 0x1A6 SWAP2 SWAP1 PUSH2 0x12C2 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP2 PUSH2 0x1BC SWAP2 SWAP1 PUSH2 0x12C2 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1D9 SWAP3 SWAP2 SWAP1 PUSH2 0x8C2 JUMP JUMPDEST POP SWAP1 POP POP PUSH1 0x2 PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x1EF SWAP1 PUSH2 0x13BE JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP POP POP POP JUMP JUMPDEST PUSH2 0x201 PUSH2 0x773 JUMP JUMPDEST PUSH2 0x20A PUSH0 PUSH2 0x7FA JUMP JUMPDEST JUMP JUMPDEST PUSH0 DUP1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x23B PUSH2 0x773 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD SLOAD SUB PUSH2 0x292 JUMPI DUP1 PUSH1 0x40 MLOAD PUSH32 0xF55DEC0000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x289 SWAP2 SWAP1 PUSH2 0x1414 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP1 DUP3 ADD PUSH0 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD PUSH0 PUSH2 0x2B9 SWAP2 SWAP1 PUSH2 0x90D JUMP JUMPDEST PUSH1 0x2 DUP3 ADD PUSH0 PUSH2 0x2C8 SWAP2 SWAP1 PUSH2 0x90D JUMP JUMPDEST PUSH1 0x3 DUP3 ADD PUSH0 PUSH2 0x2D7 SWAP2 SWAP1 PUSH2 0x94A JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x60 PUSH0 PUSH1 0x1 PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SWAP1 POP PUSH0 DUP2 PUSH0 ADD SLOAD SUB PUSH2 0x33C JUMPI DUP5 PUSH1 0x40 MLOAD PUSH32 0xF55DEC0000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x333 SWAP2 SWAP1 PUSH2 0x1414 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 ADD DUP2 PUSH1 0x2 ADD DUP3 PUSH1 0x3 ADD DUP3 DUP1 SLOAD PUSH2 0x354 SWAP1 PUSH2 0x10F5 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 0x380 SWAP1 PUSH2 0x10F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3CB JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3A2 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3CB JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x3AE JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP3 POP DUP2 DUP1 SLOAD PUSH2 0x3DE SWAP1 PUSH2 0x10F5 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 0x40A SWAP1 PUSH2 0x10F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x455 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x42C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x455 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x438 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP DUP1 DUP1 SLOAD DUP1 PUSH1 0x20 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 DUP1 ISZERO PUSH2 0x4A5 JUMPI PUSH1 0x20 MUL DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 DUP1 DUP4 GT PUSH2 0x491 JUMPI JUMPDEST POP POP POP POP POP SWAP1 POP SWAP4 POP SWAP4 POP SWAP4 POP POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH1 0x2 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4D9 JUMPI PUSH2 0x4D8 PUSH2 0x9D3 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 0x512 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x4FF PUSH2 0x968 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x4F7 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST PUSH1 0x2 SLOAD DUP2 LT ISZERO PUSH2 0x6E7 JUMPI PUSH1 0x1 PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD DUP1 SLOAD PUSH2 0x556 SWAP1 PUSH2 0x10F5 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 0x582 SWAP1 PUSH2 0x10F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5CD JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x5A4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5CD JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x5B0 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD DUP1 SLOAD PUSH2 0x5E6 SWAP1 PUSH2 0x10F5 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 0x612 SWAP1 PUSH2 0x10F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x65D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x634 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x65D JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x640 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD DUP1 SLOAD DUP1 PUSH1 0x20 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 DUP1 ISZERO PUSH2 0x6B3 JUMPI PUSH1 0x20 MUL DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 DUP1 DUP4 GT PUSH2 0x69F JUMPI JUMPDEST POP POP POP POP POP DUP2 MSTORE POP POP DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x6CF JUMPI PUSH2 0x6CE PUSH2 0x142D JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH1 0x1 ADD SWAP2 POP POP PUSH2 0x517 JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH2 0x6F7 PUSH2 0x773 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x767 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1E4FBDF700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75E SWAP2 SWAP1 PUSH2 0xCD1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x770 DUP2 PUSH2 0x7FA JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x77B PUSH2 0x8BB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x799 PUSH2 0x20C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x7F8 JUMPI PUSH2 0x7BC PUSH2 0x8BB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x118CDAA700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7EF SWAP2 SWAP1 PUSH2 0xCD1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 DUP1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH0 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 PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x8FC JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x8FB JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x8E0 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x909 SWAP2 SWAP1 PUSH2 0x98F JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST POP DUP1 SLOAD PUSH2 0x919 SWAP1 PUSH2 0x10F5 JUMP JUMPDEST PUSH0 DUP3 SSTORE DUP1 PUSH1 0x1F LT PUSH2 0x92A JUMPI POP PUSH2 0x947 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x946 SWAP2 SWAP1 PUSH2 0x98F JUMP JUMPDEST JUMPDEST POP JUMP JUMPDEST POP DUP1 SLOAD PUSH0 DUP3 SSTORE SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x965 SWAP2 SWAP1 PUSH2 0x98F JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x60 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x9A6 JUMPI PUSH0 DUP2 PUSH0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x990 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0xA09 DUP3 PUSH2 0x9C3 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0xA28 JUMPI PUSH2 0xA27 PUSH2 0x9D3 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA3A PUSH2 0x9AA JUMP JUMPDEST SWAP1 POP PUSH2 0xA46 DUP3 DUP3 PUSH2 0xA00 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0xA65 JUMPI PUSH2 0xA64 PUSH2 0x9D3 JUMP JUMPDEST JUMPDEST PUSH2 0xA6E DUP3 PUSH2 0x9C3 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA9B PUSH2 0xA96 DUP5 PUSH2 0xA4B JUMP JUMPDEST PUSH2 0xA31 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0xAB7 JUMPI PUSH2 0xAB6 PUSH2 0x9BF JUMP JUMPDEST JUMPDEST PUSH2 0xAC2 DUP5 DUP3 DUP6 PUSH2 0xA7B JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xADE JUMPI PUSH2 0xADD PUSH2 0x9BB JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0xAEE DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0xA89 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0xB11 JUMPI PUSH2 0xB10 PUSH2 0x9D3 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB38 DUP2 PUSH2 0xB26 JUMP JUMPDEST DUP2 EQ PUSH2 0xB42 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB53 DUP2 PUSH2 0xB2F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xB6B PUSH2 0xB66 DUP5 PUSH2 0xAF7 JUMP JUMPDEST PUSH2 0xA31 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x20 DUP5 MUL DUP4 ADD DUP6 DUP2 GT ISZERO PUSH2 0xB8E JUMPI PUSH2 0xB8D PUSH2 0xB22 JUMP JUMPDEST JUMPDEST DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xBB7 JUMPI DUP1 PUSH2 0xBA3 DUP9 DUP3 PUSH2 0xB45 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xB90 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xBD5 JUMPI PUSH2 0xBD4 PUSH2 0x9BB JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0xBE5 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0xB59 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xC05 JUMPI PUSH2 0xC04 PUSH2 0x9B3 JUMP JUMPDEST JUMPDEST PUSH0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xC22 JUMPI PUSH2 0xC21 PUSH2 0x9B7 JUMP JUMPDEST JUMPDEST PUSH2 0xC2E DUP7 DUP3 DUP8 ADD PUSH2 0xACA JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xC4F JUMPI PUSH2 0xC4E PUSH2 0x9B7 JUMP JUMPDEST JUMPDEST PUSH2 0xC5B DUP7 DUP3 DUP8 ADD PUSH2 0xACA JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xC7C JUMPI PUSH2 0xC7B PUSH2 0x9B7 JUMP JUMPDEST JUMPDEST PUSH2 0xC88 DUP7 DUP3 DUP8 ADD PUSH2 0xBC1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xCBB DUP3 PUSH2 0xC92 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xCCB DUP2 PUSH2 0xCB1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCE4 PUSH0 DUP4 ADD DUP5 PUSH2 0xCC2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xCFF JUMPI PUSH2 0xCFE PUSH2 0x9B3 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xD0C DUP5 DUP3 DUP6 ADD PUSH2 0xB45 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 MCOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD47 DUP3 PUSH2 0xD15 JUMP JUMPDEST PUSH2 0xD51 DUP2 DUP6 PUSH2 0xD1F JUMP JUMPDEST SWAP4 POP PUSH2 0xD61 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xD2F JUMP JUMPDEST PUSH2 0xD6A DUP2 PUSH2 0x9C3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xDA7 DUP2 PUSH2 0xB26 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH2 0xDB8 DUP4 DUP4 PUSH2 0xD9E JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xDDA DUP3 PUSH2 0xD75 JUMP JUMPDEST PUSH2 0xDE4 DUP2 DUP6 PUSH2 0xD7F JUMP JUMPDEST SWAP4 POP PUSH2 0xDEF DUP4 PUSH2 0xD8F JUMP JUMPDEST DUP1 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xE1F JUMPI DUP2 MLOAD PUSH2 0xE06 DUP9 DUP3 PUSH2 0xDAD JUMP JUMPDEST SWAP8 POP PUSH2 0xE11 DUP4 PUSH2 0xDC4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xDF2 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xE44 DUP2 DUP7 PUSH2 0xD3D JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0xE58 DUP2 DUP6 PUSH2 0xD3D JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0xE6C DUP2 DUP5 PUSH2 0xDD0 JUMP JUMPDEST SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xEB9 DUP3 PUSH2 0xD15 JUMP JUMPDEST PUSH2 0xEC3 DUP2 DUP6 PUSH2 0xE9F JUMP JUMPDEST SWAP4 POP PUSH2 0xED3 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xD2F JUMP JUMPDEST PUSH2 0xEDC DUP2 PUSH2 0x9C3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xF01 DUP3 PUSH2 0xD75 JUMP JUMPDEST PUSH2 0xF0B DUP2 DUP6 PUSH2 0xEE7 JUMP JUMPDEST SWAP4 POP PUSH2 0xF16 DUP4 PUSH2 0xD8F JUMP JUMPDEST DUP1 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xF46 JUMPI DUP2 MLOAD PUSH2 0xF2D DUP9 DUP3 PUSH2 0xDAD JUMP JUMPDEST SWAP8 POP PUSH2 0xF38 DUP4 PUSH2 0xDC4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xF19 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP4 ADD PUSH0 DUP4 ADD MLOAD PUSH2 0xF68 PUSH0 DUP7 ADD DUP3 PUSH2 0xD9E JUMP JUMPDEST POP PUSH1 0x20 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x20 DUP7 ADD MSTORE PUSH2 0xF80 DUP3 DUP3 PUSH2 0xEAF JUMP JUMPDEST SWAP2 POP POP PUSH1 0x40 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x40 DUP7 ADD MSTORE PUSH2 0xF9A DUP3 DUP3 PUSH2 0xEAF JUMP JUMPDEST SWAP2 POP POP PUSH1 0x60 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x60 DUP7 ADD MSTORE PUSH2 0xFB4 DUP3 DUP3 PUSH2 0xEF7 JUMP JUMPDEST SWAP2 POP POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xFCC DUP4 DUP4 PUSH2 0xF53 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xFEA DUP3 PUSH2 0xE76 JUMP JUMPDEST PUSH2 0xFF4 DUP2 DUP6 PUSH2 0xE80 JUMP JUMPDEST SWAP4 POP DUP4 PUSH1 0x20 DUP3 MUL DUP6 ADD PUSH2 0x1006 DUP6 PUSH2 0xE90 JUMP JUMPDEST DUP1 PUSH0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x1041 JUMPI DUP5 DUP5 SUB DUP10 MSTORE DUP2 MLOAD PUSH2 0x1022 DUP6 DUP3 PUSH2 0xFC1 JUMP JUMPDEST SWAP5 POP PUSH2 0x102D DUP4 PUSH2 0xFD4 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP11 ADD SWAP10 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x1009 JUMP JUMPDEST POP DUP3 SWAP8 POP DUP8 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x106B DUP2 DUP5 PUSH2 0xFE0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x107C DUP2 PUSH2 0xCB1 JUMP JUMPDEST DUP2 EQ PUSH2 0x1086 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1097 DUP2 PUSH2 0x1073 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10B2 JUMPI PUSH2 0x10B1 PUSH2 0x9B3 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x10BF DUP5 DUP3 DUP6 ADD PUSH2 0x1089 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x110C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x111F JUMPI PUSH2 0x111E PUSH2 0x10C8 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH2 0x1181 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x1146 JUMP JUMPDEST PUSH2 0x118B DUP7 DUP4 PUSH2 0x1146 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x11C6 PUSH2 0x11C1 PUSH2 0x11BC DUP5 PUSH2 0xB26 JUMP JUMPDEST PUSH2 0x11A3 JUMP JUMPDEST PUSH2 0xB26 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x11DF DUP4 PUSH2 0x11AC JUMP JUMPDEST PUSH2 0x11F3 PUSH2 0x11EB DUP3 PUSH2 0x11CD JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x1152 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH2 0x1207 PUSH2 0x11FB JUMP JUMPDEST PUSH2 0x1212 DUP2 DUP5 DUP5 PUSH2 0x11D6 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1235 JUMPI PUSH2 0x122A PUSH0 DUP3 PUSH2 0x11FF JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x1218 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x127A JUMPI PUSH2 0x124B DUP2 PUSH2 0x1125 JUMP JUMPDEST PUSH2 0x1254 DUP5 PUSH2 0x1137 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x1263 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x1277 PUSH2 0x126F DUP6 PUSH2 0x1137 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x1217 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x129A PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x127F JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x12B2 DUP4 DUP4 PUSH2 0x128B JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x12CB DUP3 PUSH2 0xD15 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x12E4 JUMPI PUSH2 0x12E3 PUSH2 0x9D3 JUMP JUMPDEST JUMPDEST PUSH2 0x12EE DUP3 SLOAD PUSH2 0x10F5 JUMP JUMPDEST PUSH2 0x12F9 DUP3 DUP3 DUP6 PUSH2 0x1239 JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x132A JUMPI PUSH0 DUP5 ISZERO PUSH2 0x1318 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x1322 DUP6 DUP3 PUSH2 0x12A7 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x1389 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x1338 DUP7 PUSH2 0x1125 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x135F JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x133A JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x137C JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x1378 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x128B JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x13C8 DUP3 PUSH2 0xB26 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x13FA JUMPI PUSH2 0x13F9 PUSH2 0x1391 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x140E DUP2 PUSH2 0xB26 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1427 PUSH0 DUP4 ADD DUP5 PUSH2 0x1405 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 RETURNDATACOPY PUSH7 0x32BBB37313595A MUL CREATE2 MSIZE STATICCALL 0xAC 0xA8 LOG4 REVERT PUSH30 0x6C275D7503F85BFC5E1C2D24DBC64736F6C634300081A0033A264697066 PUSH20 0x58221220644E55DD1C089522D3A454A30C546E88 ADDRESS PREVRANDAO DUP15 DUP5 DIV SSTORE 0xE1 0xDF 0x26 PC GASPRICE 0xEB 0x25 0xAC DUP12 CALLDATACOPY PUSH5 0x736F6C6343 STOP ADDMOD BYTE STOP CALLER ",
"sourceMap": "1509:231:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@deploy_190": {
"entryPoint": 75,
"id": 190,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 403,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_contract$_AddressBook_$166_to_t_address_fromStack": {
"entryPoint": 346,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 418,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_contract$_AddressBook_$166__to_t_address__fromStack_reversed": {
"entryPoint": 361,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 386,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 239,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_contract$_AddressBook_$166_to_t_address": {
"entryPoint": 329,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_address": {
"entryPoint": 312,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_uint160": {
"entryPoint": 279,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"identity": {
"entryPoint": 270,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:1528:3",
"nodeType": "YulBlock",
"src": "0:1528:3",
"statements": [
{
"body": {
"nativeSrc": "52:81:3",
"nodeType": "YulBlock",
"src": "52:81:3",
"statements": [
{
"nativeSrc": "62:65:3",
"nodeType": "YulAssignment",
"src": "62:65:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "77:5:3",
"nodeType": "YulIdentifier",
"src": "77:5:3"
},
{
"kind": "number",
"nativeSrc": "84:42:3",
"nodeType": "YulLiteral",
"src": "84:42:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "73:3:3",
"nodeType": "YulIdentifier",
"src": "73:3:3"
},
"nativeSrc": "73:54:3",
"nodeType": "YulFunctionCall",
"src": "73:54:3"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "62:7:3",
"nodeType": "YulIdentifier",
"src": "62:7:3"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "7:126:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "34:5:3",
"nodeType": "YulTypedName",
"src": "34:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "44:7:3",
"nodeType": "YulTypedName",
"src": "44:7:3",
"type": ""
}
],
"src": "7:126:3"
},
{
"body": {
"nativeSrc": "171:28:3",
"nodeType": "YulBlock",
"src": "171:28:3",
"statements": [
{
"nativeSrc": "181:12:3",
"nodeType": "YulAssignment",
"src": "181:12:3",
"value": {
"name": "value",
"nativeSrc": "188:5:3",
"nodeType": "YulIdentifier",
"src": "188:5:3"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "181:3:3",
"nodeType": "YulIdentifier",
"src": "181:3:3"
}
]
}
]
},
"name": "identity",
"nativeSrc": "139:60:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "157:5:3",
"nodeType": "YulTypedName",
"src": "157:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "167:3:3",
"nodeType": "YulTypedName",
"src": "167:3:3",
"type": ""
}
],
"src": "139:60:3"
},
{
"body": {
"nativeSrc": "265:82:3",
"nodeType": "YulBlock",
"src": "265:82:3",
"statements": [
{
"nativeSrc": "275:66:3",
"nodeType": "YulAssignment",
"src": "275:66:3",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "333:5:3",
"nodeType": "YulIdentifier",
"src": "333:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "315:17:3",
"nodeType": "YulIdentifier",
"src": "315:17:3"
},
"nativeSrc": "315:24:3",
"nodeType": "YulFunctionCall",
"src": "315:24:3"
}
],
"functionName": {
"name": "identity",
"nativeSrc": "306:8:3",
"nodeType": "YulIdentifier",
"src": "306:8:3"
},
"nativeSrc": "306:34:3",
"nodeType": "YulFunctionCall",
"src": "306:34:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "288:17:3",
"nodeType": "YulIdentifier",
"src": "288:17:3"
},
"nativeSrc": "288:53:3",
"nodeType": "YulFunctionCall",
"src": "288:53:3"
},
"variableNames": [
{
"name": "converted",
"nativeSrc": "275:9:3",
"nodeType": "YulIdentifier",
"src": "275:9:3"
}
]
}
]
},
"name": "convert_t_uint160_to_t_uint160",
"nativeSrc": "205:142:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "245:5:3",
"nodeType": "YulTypedName",
"src": "245:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nativeSrc": "255:9:3",
"nodeType": "YulTypedName",
"src": "255:9:3",
"type": ""
}
],
"src": "205:142:3"
},
{
"body": {
"nativeSrc": "413:66:3",
"nodeType": "YulBlock",
"src": "413:66:3",
"statements": [
{
"nativeSrc": "423:50:3",
"nodeType": "YulAssignment",
"src": "423:50:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "467:5:3",
"nodeType": "YulIdentifier",
"src": "467:5:3"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_uint160",
"nativeSrc": "436:30:3",
"nodeType": "YulIdentifier",
"src": "436:30:3"
},
"nativeSrc": "436:37:3",
"nodeType": "YulFunctionCall",
"src": "436:37:3"
},
"variableNames": [
{
"name": "converted",
"nativeSrc": "423:9:3",
"nodeType": "YulIdentifier",
"src": "423:9:3"
}
]
}
]
},
"name": "convert_t_uint160_to_t_address",
"nativeSrc": "353:126:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "393:5:3",
"nodeType": "YulTypedName",
"src": "393:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nativeSrc": "403:9:3",
"nodeType": "YulTypedName",
"src": "403:9:3",
"type": ""
}
],
"src": "353:126:3"
},
{
"body": {
"nativeSrc": "564:66:3",
"nodeType": "YulBlock",
"src": "564:66:3",
"statements": [
{
"nativeSrc": "574:50:3",
"nodeType": "YulAssignment",
"src": "574:50:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "618:5:3",
"nodeType": "YulIdentifier",
"src": "618:5:3"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_address",
"nativeSrc": "587:30:3",
"nodeType": "YulIdentifier",
"src": "587:30:3"
},
"nativeSrc": "587:37:3",
"nodeType": "YulFunctionCall",
"src": "587:37:3"
},
"variableNames": [
{
"name": "converted",
"nativeSrc": "574:9:3",
"nodeType": "YulIdentifier",
"src": "574:9:3"
}
]
}
]
},
"name": "convert_t_contract$_AddressBook_$166_to_t_address",
"nativeSrc": "485:145:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "544:5:3",
"nodeType": "YulTypedName",
"src": "544:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nativeSrc": "554:9:3",
"nodeType": "YulTypedName",
"src": "554:9:3",
"type": ""
}
],
"src": "485:145:3"
},
{
"body": {
"nativeSrc": "720:85:3",
"nodeType": "YulBlock",
"src": "720:85:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "737:3:3",
"nodeType": "YulIdentifier",
"src": "737:3:3"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "792:5:3",
"nodeType": "YulIdentifier",
"src": "792:5:3"
}
],
"functionName": {
"name": "convert_t_contract$_AddressBook_$166_to_t_address",
"nativeSrc": "742:49:3",
"nodeType": "YulIdentifier",
"src": "742:49:3"
},
"nativeSrc": "742:56:3",
"nodeType": "YulFunctionCall",
"src": "742:56:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "730:6:3",
"nodeType": "YulIdentifier",
"src": "730:6:3"
},
"nativeSrc": "730:69:3",
"nodeType": "YulFunctionCall",
"src": "730:69:3"
},
"nativeSrc": "730:69:3",
"nodeType": "YulExpressionStatement",
"src": "730:69:3"
}
]
},
"name": "abi_encode_t_contract$_AddressBook_$166_to_t_address_fromStack",
"nativeSrc": "636:169:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "708:5:3",
"nodeType": "YulTypedName",
"src": "708:5:3",
"type": ""
},
{
"name": "pos",
"nativeSrc": "715:3:3",
"nodeType": "YulTypedName",
"src": "715:3:3",
"type": ""
}
],
"src": "636:169:3"
},
{
"body": {
"nativeSrc": "928:143:3",
"nodeType": "YulBlock",
"src": "928:143:3",
"statements": [
{
"nativeSrc": "938:26:3",
"nodeType": "YulAssignment",
"src": "938:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "950:9:3",
"nodeType": "YulIdentifier",
"src": "950:9:3"
},
{
"kind": "number",
"nativeSrc": "961:2:3",
"nodeType": "YulLiteral",
"src": "961:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "946:3:3",
"nodeType": "YulIdentifier",
"src": "946:3:3"
},
"nativeSrc": "946:18:3",
"nodeType": "YulFunctionCall",
"src": "946:18:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "938:4:3",
"nodeType": "YulIdentifier",
"src": "938:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "1037:6:3",
"nodeType": "YulIdentifier",
"src": "1037:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1050:9:3",
"nodeType": "YulIdentifier",
"src": "1050:9:3"
},
{
"kind": "number",
"nativeSrc": "1061:1:3",
"nodeType": "YulLiteral",
"src": "1061:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1046:3:3",
"nodeType": "YulIdentifier",
"src": "1046:3:3"
},
"nativeSrc": "1046:17:3",
"nodeType": "YulFunctionCall",
"src": "1046:17:3"
}
],
"functionName": {
"name": "abi_encode_t_contract$_AddressBook_$166_to_t_address_fromStack",
"nativeSrc": "974:62:3",
"nodeType": "YulIdentifier",
"src": "974:62:3"
},
"nativeSrc": "974:90:3",
"nodeType": "YulFunctionCall",
"src": "974:90:3"
},
"nativeSrc": "974:90:3",
"nodeType": "YulExpressionStatement",
"src": "974:90:3"
}
]
},
"name": "abi_encode_tuple_t_contract$_AddressBook_$166__to_t_address__fromStack_reversed",
"nativeSrc": "811:260:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "900:9:3",
"nodeType": "YulTypedName",
"src": "900:9:3",
"type": ""
},
{
"name": "value0",
"nativeSrc": "912:6:3",
"nodeType": "YulTypedName",
"src": "912:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "923:4:3",
"nodeType": "YulTypedName",
"src": "923:4:3",
"type": ""
}
],
"src": "811:260:3"
},
{
"body": {
"nativeSrc": "1122:51:3",
"nodeType": "YulBlock",
"src": "1122:51:3",
"statements": [
{
"nativeSrc": "1132:35:3",
"nodeType": "YulAssignment",
"src": "1132:35:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1161:5:3",
"nodeType": "YulIdentifier",
"src": "1161:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "1143:17:3",
"nodeType": "YulIdentifier",
"src": "1143:17:3"
},
"nativeSrc": "1143:24:3",
"nodeType": "YulFunctionCall",
"src": "1143:24:3"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1132:7:3",
"nodeType": "YulIdentifier",
"src": "1132:7:3"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "1077:96:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1104:5:3",
"nodeType": "YulTypedName",
"src": "1104:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1114:7:3",
"nodeType": "YulTypedName",
"src": "1114:7:3",
"type": ""
}
],
"src": "1077:96:3"
},
{
"body": {
"nativeSrc": "1244:53:3",
"nodeType": "YulBlock",
"src": "1244:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "1261:3:3",
"nodeType": "YulIdentifier",
"src": "1261:3:3"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "1284:5:3",
"nodeType": "YulIdentifier",
"src": "1284:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "1266:17:3",
"nodeType": "YulIdentifier",
"src": "1266:17:3"
},
"nativeSrc": "1266:24:3",
"nodeType": "YulFunctionCall",
"src": "1266:24:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1254:6:3",
"nodeType": "YulIdentifier",
"src": "1254:6:3"
},
"nativeSrc": "1254:37:3",
"nodeType": "YulFunctionCall",
"src": "1254:37:3"
},
"nativeSrc": "1254:37:3",
"nodeType": "YulExpressionStatement",
"src": "1254:37:3"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "1179:118:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1232:5:3",
"nodeType": "YulTypedName",
"src": "1232:5:3",
"type": ""
},
{
"name": "pos",
"nativeSrc": "1239:3:3",
"nodeType": "YulTypedName",
"src": "1239:3:3",
"type": ""
}
],
"src": "1179:118:3"
},
{
"body": {
"nativeSrc": "1401:124:3",
"nodeType": "YulBlock",
"src": "1401:124:3",
"statements": [
{
"nativeSrc": "1411:26:3",
"nodeType": "YulAssignment",
"src": "1411:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "1423:9:3",
"nodeType": "YulIdentifier",
"src": "1423:9:3"
},
{
"kind": "number",
"nativeSrc": "1434:2:3",
"nodeType": "YulLiteral",
"src": "1434:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1419:3:3",
"nodeType": "YulIdentifier",
"src": "1419:3:3"
},
"nativeSrc": "1419:18:3",
"nodeType": "YulFunctionCall",
"src": "1419:18:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "1411:4:3",
"nodeType": "YulIdentifier",
"src": "1411:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "1491:6:3",
"nodeType": "YulIdentifier",
"src": "1491:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1504:9:3",
"nodeType": "YulIdentifier",
"src": "1504:9:3"
},
{
"kind": "number",
"nativeSrc": "1515:1:3",
"nodeType": "YulLiteral",
"src": "1515:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1500:3:3",
"nodeType": "YulIdentifier",
"src": "1500:3:3"
},
"nativeSrc": "1500:17:3",
"nodeType": "YulFunctionCall",
"src": "1500:17:3"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "1447:43:3",
"nodeType": "YulIdentifier",
"src": "1447:43:3"
},
"nativeSrc": "1447:71:3",
"nodeType": "YulFunctionCall",
"src": "1447:71:3"
},
"nativeSrc": "1447:71:3",
"nodeType": "YulExpressionStatement",
"src": "1447:71:3"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nativeSrc": "1303:222:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1373:9:3",
"nodeType": "YulTypedName",
"src": "1373:9:3",
"type": ""
},
{
"name": "value0",
"nativeSrc": "1385:6:3",
"nodeType": "YulTypedName",
"src": "1385:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "1396:4:3",
"nodeType": "YulTypedName",
"src": "1396:4:3",
"type": ""
}
],
"src": "1303:222:3"
}
]
},
"contents": "{\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint160_to_t_uint160(value) -> converted {\n converted := cleanup_t_uint160(identity(cleanup_t_uint160(value)))\n }\n\n function convert_t_uint160_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_uint160(value)\n }\n\n function convert_t_contract$_AddressBook_$166_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_address(value)\n }\n\n function abi_encode_t_contract$_AddressBook_$166_to_t_address_fromStack(value, pos) {\n mstore(pos, convert_t_contract$_AddressBook_$166_to_t_address(value))\n }\n\n function abi_encode_tuple_t_contract$_AddressBook_$166__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_contract$_AddressBook_$166_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561000f575f80fd5b5060043610610029575f3560e01c8063775c300c1461002d575b5f80fd5b61003561004b565b6040516100429190610169565b60405180910390f35b5f80604051610059906100e2565b604051809103905ff080158015610072573d5f803e3d5ffd5b5090508073ffffffffffffffffffffffffffffffffffffffff1663f2fde38b336040518263ffffffff1660e01b81526004016100ae91906101a2565b5f604051808303815f87803b1580156100c5575f80fd5b505af11580156100d7573d5f803e3d5ffd5b505050508091505090565b61164c806101bc83390190565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f819050919050565b5f61013161012c610127846100ef565b61010e565b6100ef565b9050919050565b5f61014282610117565b9050919050565b5f61015382610138565b9050919050565b61016381610149565b82525050565b5f60208201905061017c5f83018461015a565b92915050565b5f61018c826100ef565b9050919050565b61019c81610182565b82525050565b5f6020820190506101b55f830184610193565b9291505056fe608060405234801561000f575f80fd5b50335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610081575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016100789190610196565b60405180910390fd5b6100908161009660201b60201c565b506101af565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61018082610157565b9050919050565b61019081610176565b82525050565b5f6020820190506101a95f830184610187565b92915050565b611490806101bc5f395ff3fe608060405234801561000f575f80fd5b506004361061007b575f3560e01c8063b9ed6fca11610059578063b9ed6fca146100c3578063e6505e1e146100df578063ef1d6ddd14610111578063f2fde38b1461012f5761007b565b80633f06f6e81461007f578063715018a61461009b5780638da5cb5b146100a5575b5f80fd5b61009960048036038101906100949190610bee565b61014b565b005b6100a36101f9565b005b6100ad61020c565b6040516100ba9190610cd1565b60405180910390f35b6100dd60048036038101906100d89190610cea565b610233565b005b6100f960048036038101906100f49190610cea565b6102dc565b60405161010893929190610e2c565b60405180910390f35b6101196104ba565b6040516101269190611053565b60405180910390f35b6101496004803603810190610144919061109d565b6106ef565b005b610153610773565b604051806080016040528060025481526020018481526020018381526020018281525060015f60025481526020019081526020015f205f820151815f015560208201518160010190816101a691906112c2565b5060408201518160020190816101bc91906112c2565b5060608201518160030190805190602001906101d99291906108c2565b5090505060025f8154809291906101ef906113be565b9190505550505050565b610201610773565b61020a5f6107fa565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61023b610773565b5f60015f8381526020019081526020015f205f01540361029257806040517ff55dec000000000000000000000000000000000000000000000000000000000081526004016102899190611414565b60405180910390fd5b60015f8281526020019081526020015f205f8082015f9055600182015f6102b9919061090d565b600282015f6102c8919061090d565b600382015f6102d7919061094a565b505050565b60608060605f60015f8681526020019081526020015f2090505f815f01540361033c57846040517ff55dec000000000000000000000000000000000000000000000000000000000081526004016103339190611414565b60405180910390fd5b806001018160020182600301828054610354906110f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610380906110f5565b80156103cb5780601f106103a2576101008083540402835291602001916103cb565b820191905f5260205f20905b8154815290600101906020018083116103ae57829003601f168201915b505050505092508180546103de906110f5565b80601f016020809104026020016040519081016040528092919081815260200182805461040a906110f5565b80156104555780601f1061042c57610100808354040283529160200191610455565b820191905f5260205f20905b81548152906001019060200180831161043857829003601f168201915b50505050509150808054806020026020016040519081016040528092919081815260200182805480156104a557602002820191905f5260205f20905b815481526020019060010190808311610491575b50505050509050935093509350509193909250565b60605f60025467ffffffffffffffff8111156104d9576104d86109d3565b5b60405190808252806020026020018201604052801561051257816020015b6104ff610968565b8152602001906001900390816104f75790505b5090505f5b6002548110156106e75760015f8281526020019081526020015f206040518060800160405290815f8201548152602001600182018054610556906110f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610582906110f5565b80156105cd5780601f106105a4576101008083540402835291602001916105cd565b820191905f5260205f20905b8154815290600101906020018083116105b057829003601f168201915b505050505081526020016002820180546105e6906110f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610612906110f5565b801561065d5780601f106106345761010080835404028352916020019161065d565b820191905f5260205f20905b81548152906001019060200180831161064057829003601f168201915b50505050508152602001600382018054806020026020016040519081016040528092919081815260200182805480156106b357602002820191905f5260205f20905b81548152602001906001019080831161069f575b5050505050815250508282815181106106cf576106ce61142d565b5b60200260200101819052508080600101915050610517565b508091505090565b6106f7610773565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610767575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161075e9190610cd1565b60405180910390fd5b610770816107fa565b50565b61077b6108bb565b73ffffffffffffffffffffffffffffffffffffffff1661079961020c565b73ffffffffffffffffffffffffffffffffffffffff16146107f8576107bc6108bb565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107ef9190610cd1565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f33905090565b828054828255905f5260205f209081019282156108fc579160200282015b828111156108fb5782518255916020019190600101906108e0565b5b509050610909919061098f565b5090565b508054610919906110f5565b5f825580601f1061092a5750610947565b601f0160209004905f5260205f2090810190610946919061098f565b5b50565b5080545f8255905f5260205f2090810190610965919061098f565b50565b60405180608001604052805f81526020016060815260200160608152602001606081525090565b5b808211156109a6575f815f905550600101610990565b5090565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610a09826109c3565b810181811067ffffffffffffffff82111715610a2857610a276109d3565b5b80604052505050565b5f610a3a6109aa565b9050610a468282610a00565b919050565b5f67ffffffffffffffff821115610a6557610a646109d3565b5b610a6e826109c3565b9050602081019050919050565b828183375f83830152505050565b5f610a9b610a9684610a4b565b610a31565b905082815260208101848484011115610ab757610ab66109bf565b5b610ac2848285610a7b565b509392505050565b5f82601f830112610ade57610add6109bb565b5b8135610aee848260208601610a89565b91505092915050565b5f67ffffffffffffffff821115610b1157610b106109d3565b5b602082029050602081019050919050565b5f80fd5b5f819050919050565b610b3881610b26565b8114610b42575f80fd5b50565b5f81359050610b5381610b2f565b92915050565b5f610b6b610b6684610af7565b610a31565b90508083825260208201905060208402830185811115610b8e57610b8d610b22565b5b835b81811015610bb75780610ba38882610b45565b845260208401935050602081019050610b90565b5050509392505050565b5f82601f830112610bd557610bd46109bb565b5b8135610be5848260208601610b59565b91505092915050565b5f805f60608486031215610c0557610c046109b3565b5b5f84013567ffffffffffffffff811115610c2257610c216109b7565b5b610c2e86828701610aca565b935050602084013567ffffffffffffffff811115610c4f57610c4e6109b7565b5b610c5b86828701610aca565b925050604084013567ffffffffffffffff811115610c7c57610c7b6109b7565b5b610c8886828701610bc1565b9150509250925092565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610cbb82610c92565b9050919050565b610ccb81610cb1565b82525050565b5f602082019050610ce45f830184610cc2565b92915050565b5f60208284031215610cff57610cfe6109b3565b5b5f610d0c84828501610b45565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f610d4782610d15565b610d518185610d1f565b9350610d61818560208601610d2f565b610d6a816109c3565b840191505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b610da781610b26565b82525050565b5f610db88383610d9e565b60208301905092915050565b5f602082019050919050565b5f610dda82610d75565b610de48185610d7f565b9350610def83610d8f565b805f5b83811015610e1f578151610e068882610dad565b9750610e1183610dc4565b925050600181019050610df2565b5085935050505092915050565b5f6060820190508181035f830152610e448186610d3d565b90508181036020830152610e588185610d3d565b90508181036040830152610e6c8184610dd0565b9050949350505050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b5f82825260208201905092915050565b5f610eb982610d15565b610ec38185610e9f565b9350610ed3818560208601610d2f565b610edc816109c3565b840191505092915050565b5f82825260208201905092915050565b5f610f0182610d75565b610f0b8185610ee7565b9350610f1683610d8f565b805f5b83811015610f46578151610f2d8882610dad565b9750610f3883610dc4565b925050600181019050610f19565b5085935050505092915050565b5f608083015f830151610f685f860182610d9e565b5060208301518482036020860152610f808282610eaf565b91505060408301518482036040860152610f9a8282610eaf565b91505060608301518482036060860152610fb48282610ef7565b9150508091505092915050565b5f610fcc8383610f53565b905092915050565b5f602082019050919050565b5f610fea82610e76565b610ff48185610e80565b93508360208202850161100685610e90565b805f5b8581101561104157848403895281516110228582610fc1565b945061102d83610fd4565b925060208a01995050600181019050611009565b50829750879550505050505092915050565b5f6020820190508181035f83015261106b8184610fe0565b905092915050565b61107c81610cb1565b8114611086575f80fd5b50565b5f8135905061109781611073565b92915050565b5f602082840312156110b2576110b16109b3565b5b5f6110bf84828501611089565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061110c57607f821691505b60208210810361111f5761111e6110c8565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026111817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611146565b61118b8683611146565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6111c66111c16111bc84610b26565b6111a3565b610b26565b9050919050565b5f819050919050565b6111df836111ac565b6111f36111eb826111cd565b848454611152565b825550505050565b5f90565b6112076111fb565b6112128184846111d6565b505050565b5b818110156112355761122a5f826111ff565b600181019050611218565b5050565b601f82111561127a5761124b81611125565b61125484611137565b81016020851015611263578190505b61127761126f85611137565b830182611217565b50505b505050565b5f82821c905092915050565b5f61129a5f198460080261127f565b1980831691505092915050565b5f6112b2838361128b565b9150826002028217905092915050565b6112cb82610d15565b67ffffffffffffffff8111156112e4576112e36109d3565b5b6112ee82546110f5565b6112f9828285611239565b5f60209050601f83116001811461132a575f8415611318578287015190505b61132285826112a7565b865550611389565b601f19841661133886611125565b5f5b8281101561135f5784890151825560018201915060208501945060208101905061133a565b8683101561137c5784890151611378601f89168261128b565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113c882610b26565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036113fa576113f9611391565b5b600182019050919050565b61140e81610b26565b82525050565b5f6020820190506114275f830184611405565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffdfea26469706673582212203e6632bbb37313595a02f559faaca8a4fd7d06c275d7503f85bfc5e1c2d24dbc64736f6c634300081a0033a2646970667358221220644e55dd1c089522d3a454a30c546e8830448e840455e1df26583aeb25ac8b3764736f6c634300081a0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x775C300C EQ PUSH2 0x2D JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x35 PUSH2 0x4B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x42 SWAP2 SWAP1 PUSH2 0x169 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 DUP1 PUSH1 0x40 MLOAD PUSH2 0x59 SWAP1 PUSH2 0xE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 PUSH0 CREATE DUP1 ISZERO DUP1 ISZERO PUSH2 0x72 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xF2FDE38B CALLER PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAE SWAP2 SWAP1 PUSH2 0x1A2 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xC5 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xD7 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP DUP1 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH2 0x164C DUP1 PUSH2 0x1BC DUP4 CODECOPY ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x131 PUSH2 0x12C PUSH2 0x127 DUP5 PUSH2 0xEF JUMP JUMPDEST PUSH2 0x10E JUMP JUMPDEST PUSH2 0xEF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x142 DUP3 PUSH2 0x117 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x153 DUP3 PUSH2 0x138 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x163 DUP2 PUSH2 0x149 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x17C PUSH0 DUP4 ADD DUP5 PUSH2 0x15A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x18C DUP3 PUSH2 0xEF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x19C DUP2 PUSH2 0x182 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1B5 PUSH0 DUP4 ADD DUP5 PUSH2 0x193 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP CALLER PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x81 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1E4FBDF700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x78 SWAP2 SWAP1 PUSH2 0x196 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x90 DUP2 PUSH2 0x96 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP PUSH2 0x1AF JUMP JUMPDEST PUSH0 DUP1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH0 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 PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 PUSH2 0x157 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x190 DUP2 PUSH2 0x176 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A9 PUSH0 DUP4 ADD DUP5 PUSH2 0x187 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1490 DUP1 PUSH2 0x1BC PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x7B JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB9ED6FCA GT PUSH2 0x59 JUMPI DUP1 PUSH4 0xB9ED6FCA EQ PUSH2 0xC3 JUMPI DUP1 PUSH4 0xE6505E1E EQ PUSH2 0xDF JUMPI DUP1 PUSH4 0xEF1D6DDD EQ PUSH2 0x111 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x12F JUMPI PUSH2 0x7B JUMP JUMPDEST DUP1 PUSH4 0x3F06F6E8 EQ PUSH2 0x7F JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x9B JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xA5 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x99 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x94 SWAP2 SWAP1 PUSH2 0xBEE JUMP JUMPDEST PUSH2 0x14B JUMP JUMPDEST STOP JUMPDEST PUSH2 0xA3 PUSH2 0x1F9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xAD PUSH2 0x20C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBA SWAP2 SWAP1 PUSH2 0xCD1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xD8 SWAP2 SWAP1 PUSH2 0xCEA JUMP JUMPDEST PUSH2 0x233 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xF9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0xCEA JUMP JUMPDEST PUSH2 0x2DC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x108 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xE2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x119 PUSH2 0x4BA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x126 SWAP2 SWAP1 PUSH2 0x1053 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x149 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x144 SWAP2 SWAP1 PUSH2 0x109D JUMP JUMPDEST PUSH2 0x6EF JUMP JUMPDEST STOP JUMPDEST PUSH2 0x153 PUSH2 0x773 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 SLOAD DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE POP PUSH1 0x1 PUSH0 PUSH1 0x2 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP2 PUSH2 0x1A6 SWAP2 SWAP1 PUSH2 0x12C2 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP2 PUSH2 0x1BC SWAP2 SWAP1 PUSH2 0x12C2 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1D9 SWAP3 SWAP2 SWAP1 PUSH2 0x8C2 JUMP JUMPDEST POP SWAP1 POP POP PUSH1 0x2 PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x1EF SWAP1 PUSH2 0x13BE JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP POP POP POP JUMP JUMPDEST PUSH2 0x201 PUSH2 0x773 JUMP JUMPDEST PUSH2 0x20A PUSH0 PUSH2 0x7FA JUMP JUMPDEST JUMP JUMPDEST PUSH0 DUP1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x23B PUSH2 0x773 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD SLOAD SUB PUSH2 0x292 JUMPI DUP1 PUSH1 0x40 MLOAD PUSH32 0xF55DEC0000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x289 SWAP2 SWAP1 PUSH2 0x1414 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP1 DUP3 ADD PUSH0 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD PUSH0 PUSH2 0x2B9 SWAP2 SWAP1 PUSH2 0x90D JUMP JUMPDEST PUSH1 0x2 DUP3 ADD PUSH0 PUSH2 0x2C8 SWAP2 SWAP1 PUSH2 0x90D JUMP JUMPDEST PUSH1 0x3 DUP3 ADD PUSH0 PUSH2 0x2D7 SWAP2 SWAP1 PUSH2 0x94A JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x60 PUSH0 PUSH1 0x1 PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SWAP1 POP PUSH0 DUP2 PUSH0 ADD SLOAD SUB PUSH2 0x33C JUMPI DUP5 PUSH1 0x40 MLOAD PUSH32 0xF55DEC0000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x333 SWAP2 SWAP1 PUSH2 0x1414 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 ADD DUP2 PUSH1 0x2 ADD DUP3 PUSH1 0x3 ADD DUP3 DUP1 SLOAD PUSH2 0x354 SWAP1 PUSH2 0x10F5 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 0x380 SWAP1 PUSH2 0x10F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3CB JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3A2 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3CB JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x3AE JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP3 POP DUP2 DUP1 SLOAD PUSH2 0x3DE SWAP1 PUSH2 0x10F5 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 0x40A SWAP1 PUSH2 0x10F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x455 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x42C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x455 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x438 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP DUP1 DUP1 SLOAD DUP1 PUSH1 0x20 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 DUP1 ISZERO PUSH2 0x4A5 JUMPI PUSH1 0x20 MUL DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 DUP1 DUP4 GT PUSH2 0x491 JUMPI JUMPDEST POP POP POP POP POP SWAP1 POP SWAP4 POP SWAP4 POP SWAP4 POP POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH1 0x2 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4D9 JUMPI PUSH2 0x4D8 PUSH2 0x9D3 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 0x512 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x4FF PUSH2 0x968 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x4F7 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST PUSH1 0x2 SLOAD DUP2 LT ISZERO PUSH2 0x6E7 JUMPI PUSH1 0x1 PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD DUP1 SLOAD PUSH2 0x556 SWAP1 PUSH2 0x10F5 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 0x582 SWAP1 PUSH2 0x10F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5CD JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x5A4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5CD JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x5B0 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD DUP1 SLOAD PUSH2 0x5E6 SWAP1 PUSH2 0x10F5 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 0x612 SWAP1 PUSH2 0x10F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x65D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x634 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x65D JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x640 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD DUP1 SLOAD DUP1 PUSH1 0x20 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 DUP1 ISZERO PUSH2 0x6B3 JUMPI PUSH1 0x20 MUL DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 DUP1 DUP4 GT PUSH2 0x69F JUMPI JUMPDEST POP POP POP POP POP DUP2 MSTORE POP POP DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x6CF JUMPI PUSH2 0x6CE PUSH2 0x142D JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH1 0x1 ADD SWAP2 POP POP PUSH2 0x517 JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH2 0x6F7 PUSH2 0x773 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x767 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1E4FBDF700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75E SWAP2 SWAP1 PUSH2 0xCD1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x770 DUP2 PUSH2 0x7FA JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x77B PUSH2 0x8BB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x799 PUSH2 0x20C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x7F8 JUMPI PUSH2 0x7BC PUSH2 0x8BB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x118CDAA700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7EF SWAP2 SWAP1 PUSH2 0xCD1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 DUP1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH0 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 PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x8FC JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x8FB JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x8E0 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x909 SWAP2 SWAP1 PUSH2 0x98F JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST POP DUP1 SLOAD PUSH2 0x919 SWAP1 PUSH2 0x10F5 JUMP JUMPDEST PUSH0 DUP3 SSTORE DUP1 PUSH1 0x1F LT PUSH2 0x92A JUMPI POP PUSH2 0x947 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x946 SWAP2 SWAP1 PUSH2 0x98F JUMP JUMPDEST JUMPDEST POP JUMP JUMPDEST POP DUP1 SLOAD PUSH0 DUP3 SSTORE SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x965 SWAP2 SWAP1 PUSH2 0x98F JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x60 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x9A6 JUMPI PUSH0 DUP2 PUSH0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x990 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0xA09 DUP3 PUSH2 0x9C3 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0xA28 JUMPI PUSH2 0xA27 PUSH2 0x9D3 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA3A PUSH2 0x9AA JUMP JUMPDEST SWAP1 POP PUSH2 0xA46 DUP3 DUP3 PUSH2 0xA00 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0xA65 JUMPI PUSH2 0xA64 PUSH2 0x9D3 JUMP JUMPDEST JUMPDEST PUSH2 0xA6E DUP3 PUSH2 0x9C3 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA9B PUSH2 0xA96 DUP5 PUSH2 0xA4B JUMP JUMPDEST PUSH2 0xA31 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0xAB7 JUMPI PUSH2 0xAB6 PUSH2 0x9BF JUMP JUMPDEST JUMPDEST PUSH2 0xAC2 DUP5 DUP3 DUP6 PUSH2 0xA7B JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xADE JUMPI PUSH2 0xADD PUSH2 0x9BB JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0xAEE DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0xA89 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0xB11 JUMPI PUSH2 0xB10 PUSH2 0x9D3 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB38 DUP2 PUSH2 0xB26 JUMP JUMPDEST DUP2 EQ PUSH2 0xB42 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB53 DUP2 PUSH2 0xB2F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xB6B PUSH2 0xB66 DUP5 PUSH2 0xAF7 JUMP JUMPDEST PUSH2 0xA31 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x20 DUP5 MUL DUP4 ADD DUP6 DUP2 GT ISZERO PUSH2 0xB8E JUMPI PUSH2 0xB8D PUSH2 0xB22 JUMP JUMPDEST JUMPDEST DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xBB7 JUMPI DUP1 PUSH2 0xBA3 DUP9 DUP3 PUSH2 0xB45 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xB90 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xBD5 JUMPI PUSH2 0xBD4 PUSH2 0x9BB JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0xBE5 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0xB59 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xC05 JUMPI PUSH2 0xC04 PUSH2 0x9B3 JUMP JUMPDEST JUMPDEST PUSH0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xC22 JUMPI PUSH2 0xC21 PUSH2 0x9B7 JUMP JUMPDEST JUMPDEST PUSH2 0xC2E DUP7 DUP3 DUP8 ADD PUSH2 0xACA JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xC4F JUMPI PUSH2 0xC4E PUSH2 0x9B7 JUMP JUMPDEST JUMPDEST PUSH2 0xC5B DUP7 DUP3 DUP8 ADD PUSH2 0xACA JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xC7C JUMPI PUSH2 0xC7B PUSH2 0x9B7 JUMP JUMPDEST JUMPDEST PUSH2 0xC88 DUP7 DUP3 DUP8 ADD PUSH2 0xBC1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xCBB DUP3 PUSH2 0xC92 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xCCB DUP2 PUSH2 0xCB1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCE4 PUSH0 DUP4 ADD DUP5 PUSH2 0xCC2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xCFF JUMPI PUSH2 0xCFE PUSH2 0x9B3 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xD0C DUP5 DUP3 DUP6 ADD PUSH2 0xB45 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 MCOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD47 DUP3 PUSH2 0xD15 JUMP JUMPDEST PUSH2 0xD51 DUP2 DUP6 PUSH2 0xD1F JUMP JUMPDEST SWAP4 POP PUSH2 0xD61 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xD2F JUMP JUMPDEST PUSH2 0xD6A DUP2 PUSH2 0x9C3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xDA7 DUP2 PUSH2 0xB26 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH2 0xDB8 DUP4 DUP4 PUSH2 0xD9E JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xDDA DUP3 PUSH2 0xD75 JUMP JUMPDEST PUSH2 0xDE4 DUP2 DUP6 PUSH2 0xD7F JUMP JUMPDEST SWAP4 POP PUSH2 0xDEF DUP4 PUSH2 0xD8F JUMP JUMPDEST DUP1 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xE1F JUMPI DUP2 MLOAD PUSH2 0xE06 DUP9 DUP3 PUSH2 0xDAD JUMP JUMPDEST SWAP8 POP PUSH2 0xE11 DUP4 PUSH2 0xDC4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xDF2 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xE44 DUP2 DUP7 PUSH2 0xD3D JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0xE58 DUP2 DUP6 PUSH2 0xD3D JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0xE6C DUP2 DUP5 PUSH2 0xDD0 JUMP JUMPDEST SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xEB9 DUP3 PUSH2 0xD15 JUMP JUMPDEST PUSH2 0xEC3 DUP2 DUP6 PUSH2 0xE9F JUMP JUMPDEST SWAP4 POP PUSH2 0xED3 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xD2F JUMP JUMPDEST PUSH2 0xEDC DUP2 PUSH2 0x9C3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xF01 DUP3 PUSH2 0xD75 JUMP JUMPDEST PUSH2 0xF0B DUP2 DUP6 PUSH2 0xEE7 JUMP JUMPDEST SWAP4 POP PUSH2 0xF16 DUP4 PUSH2 0xD8F JUMP JUMPDEST DUP1 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xF46 JUMPI DUP2 MLOAD PUSH2 0xF2D DUP9 DUP3 PUSH2 0xDAD JUMP JUMPDEST SWAP8 POP PUSH2 0xF38 DUP4 PUSH2 0xDC4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xF19 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP4 ADD PUSH0 DUP4 ADD MLOAD PUSH2 0xF68 PUSH0 DUP7 ADD DUP3 PUSH2 0xD9E JUMP JUMPDEST POP PUSH1 0x20 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x20 DUP7 ADD MSTORE PUSH2 0xF80 DUP3 DUP3 PUSH2 0xEAF JUMP JUMPDEST SWAP2 POP POP PUSH1 0x40 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x40 DUP7 ADD MSTORE PUSH2 0xF9A DUP3 DUP3 PUSH2 0xEAF JUMP JUMPDEST SWAP2 POP POP PUSH1 0x60 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x60 DUP7 ADD MSTORE PUSH2 0xFB4 DUP3 DUP3 PUSH2 0xEF7 JUMP JUMPDEST SWAP2 POP POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xFCC DUP4 DUP4 PUSH2 0xF53 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xFEA DUP3 PUSH2 0xE76 JUMP JUMPDEST PUSH2 0xFF4 DUP2 DUP6 PUSH2 0xE80 JUMP JUMPDEST SWAP4 POP DUP4 PUSH1 0x20 DUP3 MUL DUP6 ADD PUSH2 0x1006 DUP6 PUSH2 0xE90 JUMP JUMPDEST DUP1 PUSH0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x1041 JUMPI DUP5 DUP5 SUB DUP10 MSTORE DUP2 MLOAD PUSH2 0x1022 DUP6 DUP3 PUSH2 0xFC1 JUMP JUMPDEST SWAP5 POP PUSH2 0x102D DUP4 PUSH2 0xFD4 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP11 ADD SWAP10 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x1009 JUMP JUMPDEST POP DUP3 SWAP8 POP DUP8 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x106B DUP2 DUP5 PUSH2 0xFE0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x107C DUP2 PUSH2 0xCB1 JUMP JUMPDEST DUP2 EQ PUSH2 0x1086 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1097 DUP2 PUSH2 0x1073 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10B2 JUMPI PUSH2 0x10B1 PUSH2 0x9B3 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x10BF DUP5 DUP3 DUP6 ADD PUSH2 0x1089 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x110C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x111F JUMPI PUSH2 0x111E PUSH2 0x10C8 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH2 0x1181 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x1146 JUMP JUMPDEST PUSH2 0x118B DUP7 DUP4 PUSH2 0x1146 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x11C6 PUSH2 0x11C1 PUSH2 0x11BC DUP5 PUSH2 0xB26 JUMP JUMPDEST PUSH2 0x11A3 JUMP JUMPDEST PUSH2 0xB26 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x11DF DUP4 PUSH2 0x11AC JUMP JUMPDEST PUSH2 0x11F3 PUSH2 0x11EB DUP3 PUSH2 0x11CD JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x1152 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH2 0x1207 PUSH2 0x11FB JUMP JUMPDEST PUSH2 0x1212 DUP2 DUP5 DUP5 PUSH2 0x11D6 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1235 JUMPI PUSH2 0x122A PUSH0 DUP3 PUSH2 0x11FF JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x1218 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x127A JUMPI PUSH2 0x124B DUP2 PUSH2 0x1125 JUMP JUMPDEST PUSH2 0x1254 DUP5 PUSH2 0x1137 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x1263 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x1277 PUSH2 0x126F DUP6 PUSH2 0x1137 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x1217 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x129A PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x127F JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x12B2 DUP4 DUP4 PUSH2 0x128B JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x12CB DUP3 PUSH2 0xD15 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x12E4 JUMPI PUSH2 0x12E3 PUSH2 0x9D3 JUMP JUMPDEST JUMPDEST PUSH2 0x12EE DUP3 SLOAD PUSH2 0x10F5 JUMP JUMPDEST PUSH2 0x12F9 DUP3 DUP3 DUP6 PUSH2 0x1239 JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x132A JUMPI PUSH0 DUP5 ISZERO PUSH2 0x1318 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x1322 DUP6 DUP3 PUSH2 0x12A7 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x1389 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x1338 DUP7 PUSH2 0x1125 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x135F JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x133A JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x137C JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x1378 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x128B JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x13C8 DUP3 PUSH2 0xB26 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x13FA JUMPI PUSH2 0x13F9 PUSH2 0x1391 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x140E DUP2 PUSH2 0xB26 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1427 PUSH0 DUP4 ADD DUP5 PUSH2 0x1405 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 RETURNDATACOPY PUSH7 0x32BBB37313595A MUL CREATE2 MSIZE STATICCALL 0xAC 0xA8 LOG4 REVERT PUSH30 0x6C275D7503F85BFC5E1C2D24DBC64736F6C634300081A0033A264697066 PUSH20 0x58221220644E55DD1C089522D3A454A30C546E88 ADDRESS PREVRANDAO DUP15 DUP5 DIV SSTORE 0xE1 0xDF 0x26 PC GASPRICE 0xEB 0x25 0xAC DUP12 CALLDATACOPY PUSH5 0x736F6C6343 STOP ADDMOD BYTE STOP CALLER ",
"sourceMap": "1509:231:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1543:195;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;1577:11;1600:26;1629:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;1600:46;;1656:14;:32;;;1689:10;1656:44;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1717:14;1710:21;;;1543:195;:::o;-1:-1:-1:-;;;;;;;;:::o;7:126:3:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:60::-;167:3;188:5;181:12;;139:60;;;:::o;205:142::-;255:9;288:53;306:34;315:24;333:5;315:24;:::i;:::-;306:34;:::i;:::-;288:53;:::i;:::-;275:66;;205:142;;;:::o;353:126::-;403:9;436:37;467:5;436:37;:::i;:::-;423:50;;353:126;;;:::o;485:145::-;554:9;587:37;618:5;587:37;:::i;:::-;574:50;;485:145;;;:::o;636:169::-;742:56;792:5;742:56;:::i;:::-;737:3;730:69;636:169;;:::o;811:260::-;923:4;961:2;950:9;946:18;938:26;;974:90;1061:1;1050:9;1046:17;1037:6;974:90;:::i;:::-;811:260;;;;:::o;1077:96::-;1114:7;1143:24;1161:5;1143:24;:::i;:::-;1132:35;;1077:96;;;:::o;1179:118::-;1266:24;1284:5;1266:24;:::i;:::-;1261:3;1254:37;1179:118;;:::o;1303:222::-;1396:4;1434:2;1423:9;1419:18;1411:26;;1447:71;1515:1;1504:9;1500:17;1491:6;1447:71;:::i;:::-;1303:222;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1241000",
"executionCost": "1286",
"totalCost": "1242286"
},
"external": {
"deploy()": "infinite"
}
},
"methodIdentifiers": {
"deploy()": "775c300c"
}
},
"abi": [
{
"inputs": [],
"name": "deploy",
"outputs": [
{
"internalType": "contract AddressBook",
"name": "",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.26+commit.8a97fa7a"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "deploy",
"outputs": [
{
"internalType": "contract AddressBook",
"name": "",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"NewExercise.sol": "AddressBookFactory"
},
"evmVersion": "cancun",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"NewExercise.sol": {
"keccak256": "0x5864043577a08c1fd1c1bf2083c848c74f8949fb15feb8647e5ce587c732b949",
"license": "Unlicensed",
"urls": [
"bzz-raw://985b7d9db40a85e961f75d34b7cc44d9e4c82cb4437bb2e8dcb65bb9955cadcc",
"dweb:/ipfs/QmZzUJ4X6zJAfKzMkszHKF7MkhKzEpj9it6ow1NnhbsyNe"
]
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol": {
"keccak256": "0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb",
"license": "MIT",
"urls": [
"bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6",
"dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a"
]
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol": {
"keccak256": "0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2",
"license": "MIT",
"urls": [
"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12",
"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF"
]
}
},
"version": 1
}
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;
contract ControlStructures {
function fizzBuzz(uint256 _number) external pure returns (string memory) {
if (_number % 3 == 0 && _number % 5 == 0) {
return "FizzBuzz";
} else if (_number % 3 == 0) {
return "Fizz";
} else if (_number % 5 == 0) {
return "Buzz";
} else {
return "Splat";
}
}
error AfterHours(uint _time);
function doNotDisturb(uint _time) external pure returns (string memory) {
assert(_time <= 2400);
if (_time > 2200 || _time < 800) {
revert AfterHours(_time);
}
if (_time >= 1200 && _time <= 1259) {
revert("At lunch!");
}
if (_time >= 800 && _time <= 1199) {
return "Morning!";
}
if (_time >= 1300 && _time <= 1799) {
return "Afternoon!";
}
if (_time >= 1800 && _time <= 2200) {
return "Evening!";
}
return "AfterHours";
}
}
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;
contract BasicMath {
function adder(uint _a, uint _b) external pure returns (uint sum, bool error) {
unchecked {
sum = _a + _b;
error = sum < _a || sum < _b;
}
}
function subtractor(uint _a, uint _b) external pure returns (uint difference, bool error) {
unchecked {
if (_b > _a) {
error = true;
difference = 0;
} else {
difference = _a - _b;
}
}
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/structs/EnumerableSet.sol";
contract WeightedVoting is ERC20{
uint public maxSupply = 1000000;
error TokensClaimed();
error AllTokensClaimed();
error NoTokensHeld();
error QuorumTooHigh(uint quorum);
error AlreadyVoted();
error VotingClosed();
using EnumerableSet for EnumerableSet.AddressSet;
struct Issue {
EnumerableSet.AddressSet voters;
string issueDesc;
uint votesFor;
uint votesAgainst;
uint votesAbstain;
uint totalVotes;
uint quorum;
bool passed;
bool closed;
}
struct IssueView {
address[] voters;
string issueDesc;
uint votesFor;
uint votesAgainst;
uint votesAbstain;
uint totalVotes;
uint quorum;
bool passed;
bool closed;
}
Issue[] issues;
enum Votes { AGAINST, FOR, ABSTAIN }
constructor() ERC20("WeightedVotingToken", "WVT") {
}
function claim() public{
if (balanceOf(msg.sender) > 0) {
revert TokensClaimed();
}
if (totalSupply() >= maxSupply) {
revert AllTokensClaimed();
}
_mint(msg.sender, 100);
}
function createIssue(string memory _issueDesc, uint _quorum) external returns(uint) {
if(balanceOf(msg.sender) == 0){
revert NoTokensHeld();
}
if(_quorum > totalSupply()){
revert QuorumTooHigh(_quorum);
}
issues.push();
Issue storage newIssue = issues[issues.length - 1];
// newIssue.voters.add(msg.sender);
newIssue.issueDesc = _issueDesc;
newIssue.quorum = _quorum;
return issues.length - 1;
}
function getIssue(uint _id) external view returns (IssueView memory) {
Issue storage issue = issues[_id];
EnumerableSet.AddressSet storage voters = issue.voters;
address[] memory votersArray = new address[](EnumerableSet.length(voters));
for(uint i = 0; i < EnumerableSet.length(voters); i++) {
votersArray[i] = EnumerableSet.at(voters, i);
}
return (
IssueView({
voters: votersArray,
issueDesc: issue.issueDesc,
votesFor: issue.votesFor,
votesAgainst: issue.votesAgainst,
votesAbstain: issue.votesAbstain,
totalVotes: issue.totalVotes,
quorum: issue.quorum,
passed: issue.passed,
closed: issue.closed
})
);
}
function vote(uint _issueId, Votes _vote) public{
if(balanceOf(msg.sender) == 0){
revert NoTokensHeld();
}
if(issues[_issueId].closed){
revert VotingClosed();
}
if(issues[_issueId].voters.contains(msg.sender)){
revert AlreadyVoted();
}
issues[_issueId].voters.add(msg.sender);
issues[_issueId].totalVotes += balanceOf(msg.sender);
if (_vote == Votes.FOR) {
issues[_issueId].votesFor += balanceOf(msg.sender);
} else if (_vote == Votes.AGAINST) {
issues[_issueId].votesAgainst += balanceOf(msg.sender);
} else if (_vote == Votes.ABSTAIN) {
issues[_issueId].votesAbstain += balanceOf(msg.sender);
} else {
revert("Invalid vote option");
}
if (issues[_issueId].totalVotes >= issues[_issueId].quorum) {
issues[_issueId].closed = true;
if (issues[_issueId].votesFor > issues[_issueId].votesAgainst) {
issues[_issueId].passed = true;
}
}
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol";
contract HaikuNFT is ERC721{
struct Haiku {
address author;
string line1;
string line2;
string line3;
}
Haiku[] public haikus;
mapping(address => uint256[]) public sharedHaikus;
mapping(address => uint256) public recipientHaikus;
uint256 public counter;
mapping(string => bool) private lineUsed;
error HaikuNotUnique();
error NotYourHaiku(uint256 _haikuId);
error NoHaikusShared();
constructor() ERC721("Haiku", "HK") { counter = 1; }
function mintHaiku(string memory _line1, string memory _line2, string memory _line3) external {
if(lineUsed[_line1] || lineUsed[_line2] || lineUsed[_line3]){
revert HaikuNotUnique();
}
lineUsed[_line1] = true;
lineUsed[_line2] = true;
lineUsed[_line3] = true;
haikus.push(Haiku(msg.sender, _line1, _line2, _line3));
_safeMint(msg.sender, counter);
counter++;
}
function shareHaiku(address _to, uint256 _haikuId) public {
if(ownerOf(_haikuId) != msg.sender){
revert NotYourHaiku(_haikuId);
}
sharedHaikus[msg.sender].push(_haikuId);
recipientHaikus[_to] = _haikuId;
}
function getMySharedHaikus() public view returns (uint256[] memory) {
uint256[] memory authorSharedHaikus = sharedHaikus[msg.sender];
if (authorSharedHaikus.length == 0) {
revert NoHaikusShared();
}
return authorSharedHaikus;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
contract ErrorTriageExercise {
/**
* Finds the difference between each uint with it's neighbor (a to b, b to c, etc.)
* and returns a uint array with the absolute integer difference of each pairing.
*/
function diffWithNeighbor(
uint _a,
uint _b,
uint _c,
uint _d
) public pure returns (uint[] memory) {
uint[] memory results = new uint[](3);
results[0] = abs(int(_a) - int(_b));
results[1] = abs(int(_b) - int(_c));
results[2] = abs(int(_c) - int(_d));
return results;
}
function abs(int x) internal pure returns (uint) {
return uint(x > 0 ? x : -x);
}
/**
* Changes the _base by the value of _modifier. Base is always >= 1000. Modifiers can be
* between positive and negative 100;
*/
function applyModifier(
uint _base,
int _modifier
) public pure returns (uint) {
int result = int(_base) + _modifier;
require(result >= 1000 || _modifier < 0, "Result must be greater than or equal to 1000");
return uint(result);
}
/**
* Pop the last element from the supplied array, and return the popped
* value (unlike the built-in function)
*/
function popWithReturn() public returns (uint) {
require(arr.length > 0, "Array is empty");
uint index = arr.length - 1;
uint value = arr[index];
arr.pop();
return value;
}
// The utility functions below are working as expected
uint[] arr;
function addToArr(uint _num) public {
arr.push(_num);
}
function getArr() public view returns (uint[] memory) {
return arr;
}
function resetArr() public {
delete arr;
}
}
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.24;
library SillyStringUtils {
struct Haiku {
string line1;
string line2;
string line3;
}
function shruggie(string memory _input) internal pure returns (string memory) {
return string.concat(_input, unicode" 🤷");
}
}
contract ImportsExercise {
SillyStringUtils.Haiku public haiku;
function saveHaiku(string memory _line1, string memory _line2, string memory _line3) public {
haiku = SillyStringUtils.Haiku(_line1, _line2, _line3);
}
function getHaiku() public view returns (SillyStringUtils.Haiku memory) {
return haiku;
}
function shruggieHaiku() public view returns (SillyStringUtils.Haiku memory) {
SillyStringUtils.Haiku memory modifiedHaiku = haiku;
modifiedHaiku.line3 = SillyStringUtils.shruggie(haiku.line3);
return modifiedHaiku;
}
}
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;
// Employee abstract contract
abstract contract Employee {
uint public idNumber;
uint public managerId;
constructor(uint _idNumber, uint _managerId) {
idNumber = _idNumber;
managerId = _managerId;
}
function getAnnualCost() public view virtual returns (uint);
}
// Salaried contract
contract Salaried is Employee {
uint public annualSalary;
constructor(uint _idNumber, uint _managerId, uint _annualSalary) Employee(_idNumber, _managerId) {
annualSalary = _annualSalary;
}
function getAnnualCost() public view override returns (uint) {
return annualSalary;
}
}
// Hourly contract
contract Hourly is Employee {
uint public hourlyRate;
constructor(uint _idNumber, uint _managerId, uint _hourlyRate) Employee(_idNumber, _managerId) {
hourlyRate = _hourlyRate;
}
function getAnnualCost() public view override returns (uint) {
// 2080 hours in a year
return hourlyRate * 2080;
}
}
// Manager contract
contract Manager {
uint[] public employeeIds;
function addReport(uint _employeeId) public {
employeeIds.push(_employeeId);
}
function resetReports() public {
delete employeeIds;
}
}
// Salesperson contract inheriting Hourly
contract Salesperson is Hourly {
constructor() Hourly(55555, 12345, 20) {}
}
// Engineering Manager contract inheriting Salaried and Manager
contract EngineeringManager is Salaried, Manager {
constructor() Salaried(54321, 11111, 200000) Manager() {}
}
// InheritanceSubmission contract
contract InheritanceSubmission {
address public salesPerson;
address public engineeringManager;
constructor(address _salesPerson, address _engineeringManager) {
salesPerson = _salesPerson;
engineeringManager = _engineeringManager;
}
}
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;
error NotApproved(string albumName);
contract FavoriteRecords {
struct Album {
string name;
bool status;
}
mapping(uint256 => Album) public approvedRecords;
mapping(address => mapping(string => bool)) public userFavorites;
constructor() {
approvedRecords[1] = Album("Thriller", true);
approvedRecords[2] = Album("Back in Black", true);
approvedRecords[3] = Album("The Bodyguard", true);
approvedRecords[4] = Album("The Dark Side of the Moon", true);
approvedRecords[5] = Album("Their Greatest Hits (1971-1975)", true);
approvedRecords[6] = Album("Hotel California", true);
approvedRecords[7] = Album("Come On Over", true);
approvedRecords[8] = Album("Rumours", true);
approvedRecords[9] = Album("Saturday Night Fever", true);
}
// retrieve all data ( approvedRecords )
function getApprovedRecords() public view returns(string[] memory) {
string[] memory allApprovedRecords = new string[](9);
for (uint256 i = 1; i <= 9; i++) {
allApprovedRecords[i - 1] = approvedRecords[i].name;
}
return allApprovedRecords;
}
// Helper function to get the albumId by name
function getAlbumId(string memory albumName) internal view returns(uint256) {
for (uint256 i = 1; i <= 9; i++) {
if (keccak256(abi.encodePacked(approvedRecords[i].name)) == keccak256(abi.encodePacked(albumName))) {
return i;
}
}
revert NotApproved(albumName);
}
// Add Record to Favorites
function addRecord(string memory albumName) public {
uint256 albumId = getAlbumId(albumName);
require(approvedRecords[albumId].status, string(abi.encodePacked(albumName, " is not approved")));
userFavorites[msg.sender][albumName] = true;
}
// Users' Lists
function getUserFavorites(address userAddress) public view returns(string[] memory) {
string[] memory favorites = new string[](9);
uint256 count = 0;
for (uint256 i = 1; i <= 9; i++) {
string memory albumName = approvedRecords[i].name;
if (userFavorites[userAddress][albumName]) {
favorites[count] = albumName;
count++;
}
}
// Create a new array with the correct length
string[] memory result = new string[](count);
for (uint256 i = 0; i < count; i++) {
result[i] = favorites[i];
}
return result;
}
// Reset userFavorites for the sender
function resetUserFavorites() public {
for (uint256 i = 1; i <= 9; i++) {
string memory albumName = approvedRecords[i].name;
userFavorites[msg.sender][albumName] = false;
}
}
}
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.17;
contract UnburnableToken {
mapping(address => uint) public balances;
uint public totalSupply;
uint public totalClaimed;
uint public constant amount = 1000;
mapping(address => bool) private claimed;
constructor() {
totalSupply = 100000000;
}
error TokensClaimed();
error AllTokensClaimed();
function claim() public {
// Check if the user has already claimed tokens
if (claimed[msg.sender]) {
revert TokensClaimed();
}
// Check if all tokens have been claimed
if (totalClaimed >= totalSupply) {
revert AllTokensClaimed();
}
balances[msg.sender] = amount;
totalClaimed += amount;
claimed[msg.sender] = true;
}
error UnsafeTransfer(address invalidAddress);
function safeTransfer(address _to, uint _amount) public {
// Check if the recipient address is valid
if (_to == address(0)) {
revert UnsafeTransfer(_to);
}
// Check if the recipient has a balance of greater than zero Base Goerli Eth
if (address(_to).balance <= 0) {
revert UnsafeTransfer(_to);
}
// Perform the transfer
balances[msg.sender] -= _amount;
balances[_to] += _amount;
}
}
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.20;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol";
contract AddressBook is Ownable {
struct Contact {
uint id;
string firstName;
string lastName;
uint[] phoneNumbers;
}
mapping(uint => Contact) private contacts;
uint private nextId;
error ContactNotFound(uint id);
constructor() Ownable(msg.sender) {}
function addContact(string memory _firstName, string memory _lastName, uint[] memory _phoneNumbers) public onlyOwner {
contacts[nextId] = Contact(nextId, _firstName, _lastName, _phoneNumbers);
nextId++;
}
function deleteContact(uint _id) public onlyOwner {
if (contacts[_id].id == 0) {
revert ContactNotFound(_id);
}
delete contacts[_id];
}
function getContact(uint _id) public view returns (string memory firstName, string memory lastName, uint[] memory phoneNumbers) {
Contact storage contact = contacts[_id];
if (contact.id == 0) {
revert ContactNotFound(_id);
}
return (contact.firstName, contact.lastName, contact.phoneNumbers);
}
function getAllContacts() public view returns (Contact[] memory) {
Contact[] memory allContacts = new Contact[](nextId);
for (uint i = 0; i < nextId; i++) {
allContacts[i] = contacts[i];
}
return allContacts;
}
}
contract AddressBookFactory {
function deploy() public returns (AddressBook) {
AddressBook newAddressBook = new AddressBook();
newAddressBook.transferOwnership(msg.sender);
return newAddressBook;
}
}
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;
contract EmployeeStorage{
uint64 public idNumber;
string public name;
uint32 private salary;
uint16 private shares;
constructor(uint16 _shares, string memory _name, uint32 _salary, uint64 _idNumber) {
shares = _shares;
name = _name;
salary = _salary;
idNumber = _idNumber;
}
function viewSalary() external view returns (uint32) {
return salary;
}
function viewShares() external view returns (uint16) {
return shares;
}
error TooManyShares(uint16 totalShares);
function grantShares(uint16 _newShares) external {
require(_newShares <= 5000, "Too many shares");
uint16 totalShares = shares + _newShares;
if (totalShares > 5000) {
revert TooManyShares(totalShares);
}
shares = totalShares;
}
/**
* Do not modify this function. It is used to enable the unit test for this pin
* to check whether or not you have configured your storage variables to make
* use of packing.
*
* If you wish to cheat, simply modify this function to always return `0`
* I'm not your boss ¯\_(ツ)_/¯
*
* Fair warning though, if you do cheat, it will be on the blockchain having been
* deployed by you wallet....FOREVER!
*/
function checkForPacking(uint _slot) public view returns (uint r) {
assembly {
r := sload (_slot)
}
}
/**
* Warning: Anyone can use this function at any time!
*/
function debugResetShares() public {
shares = 1000;
}
}
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;
contract GarageManager {
struct Car {
string make;
string model;
string color;
uint256 numberOfDoors;
}
mapping(address => Car[]) public garage;
function addCar(
string memory _make,
string memory _model,
string memory _color,
uint256 _numberOfDoors
) public {
Car memory newCar = Car(_make, _model, _color, _numberOfDoors);
garage[msg.sender].push(newCar);
}
function getMyCars() public view returns (Car[] memory) {
return garage[msg.sender];
}
function getUserCars(address _user) public view returns (Car[] memory) {
return garage[_user];
}
function updateCar(
uint256 _index,
string memory _make,
string memory _model,
string memory _color,
uint256 _numberOfDoors
) public {
require(_index < garage[msg.sender].length, "BadCarIndex");
garage[msg.sender][_index] = Car(_make, _model, _color, _numberOfDoors);
}
function resetMyGarage() public {
delete garage[msg.sender];
}
}
This file has been truncated, but you can view the full file.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6080604052604051806101400160405280600160ff168152602001600260ff168152602001600360ff168152602001600460ff168152602001600560ff168152602001600660ff168152602001600760ff168152602001600860ff168152602001600960ff168152602001600a60ff168152505f90600a610081929190610093565b5034801561008d575f80fd5b506100fe565b828054828255905f5260205f209081019282156100d2579160200282015b828111156100d1578251829060ff169055916020019190600101906100b1565b5b5090506100df91906100e3565b5090565b5b808211156100fa575f815f9055506001016100e4565b5090565b610bdc8061010b5f395ff3fe608060405234801561000f575f80fd5b506004361061009c575f3560e01c80639977c78a116100645780639977c78a14610133578063a00b7acd14610163578063ade82bfd1461017f578063b1cebac514610189578063d39fa233146101935761009c565b806320aaf79a146100a05780634f9377db146100bf5780637f66b1b8146100db57806389f915f6146100e55780638bc33af314610103575b5f80fd5b6100a86101c3565b6040516100b692919061093e565b60405180910390f35b6100d960048036038101906100d491906109dc565b61028f565b005b6100e36102ec565b005b6100ed6102fb565b6040516100fa9190610a27565b60405180910390f35b61011d60048036038101906101189190610a71565b610350565b60405161012a9190610aab565b60405180910390f35b61014d60048036038101906101489190610a71565b610370565b60405161015a9190610ad3565b60405180910390f35b61017d60048036038101906101789190610a71565b6103ab565b005b610187610434565b005b610191610443565b005b6101ad60048036038101906101a89190610a71565b6104c3565b6040516101ba9190610aab565b60405180910390f35b6060805f63386d89d090506060805f5b6002805490508110156102815783600282815481106101f5576101f4610aec565b5b905f5260205f20015411156102745761022a836002838154811061021c5761021b610aec565b5b905f5260205f2001546104e2565b9250610271826001838154811061024457610243610aec565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166105bb565b91505b80806001019150506101d3565b508181945094505050509091565b5f5b828290508110156102e7575f8383838181106102b0576102af610aec565b5b90506020020135908060018154018082558091505060019003905f5260205f20015f90919091909150558080600101915050610291565b505050565b60015f6102f991906106f0565b565b60605f80548060200260200160405190810160405280929190818152602001828054801561034657602002820191905f5260205f20905b815481526020019060010190808311610332575b5050505050905090565b6002818154811061035f575f80fd5b905f5260205f20015f915090505481565b6001818154811061037f575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600133908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600281908060018154018082558091505060019003905f5260205f20015f909190919091505550565b60025f610441919061070e565b565b604051806101400160405280600160ff168152602001600260ff168152602001600360ff168152602001600460ff168152602001600560ff168152602001600660ff168152602001600760ff168152602001600860ff168152602001600960ff168152602001600a60ff168152505f90600a6104c092919061072c565b50565b5f81815481106104d1575f80fd5b905f5260205f20015f915090505481565b60605f600184516104f39190610b46565b67ffffffffffffffff81111561050c5761050b610b79565b5b60405190808252806020026020018201604052801561053a5781602001602082028036833780820191505090505b5090505f5b845181101561058f5784818151811061055b5761055a610aec565b5b602002602001015182828151811061057657610575610aec565b5b602002602001018181525050808060010191505061053f565b5082818551815181106105a5576105a4610aec565b5b6020026020010181815250508091505092915050565b60605f600184516105cc9190610b46565b67ffffffffffffffff8111156105e5576105e4610b79565b5b6040519080825280602002602001820160405280156106135781602001602082028036833780820191505090505b5090505f5b84518110156106965784818151811061063457610633610aec565b5b602002602001015182828151811061064f5761064e610aec565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508080600101915050610618565b5082818551815181106106ac576106ab610aec565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508091505092915050565b5080545f8255905f5260205f209081019061070b919061077c565b50565b5080545f8255905f5260205f2090810190610729919061077c565b50565b828054828255905f5260205f2090810192821561076b579160200282015b8281111561076a578251829060ff1690559160200191906001019061074a565b5b509050610778919061077c565b5090565b5b80821115610793575f815f90555060010161077d565b5090565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b5f819050919050565b6107d2816107c0565b82525050565b5f6107e383836107c9565b60208301905092915050565b5f602082019050919050565b5f61080582610797565b61080f81856107a1565b935061081a836107b1565b805f5b8381101561084a57815161083188826107d8565b975061083c836107ef565b92505060018101905061081d565b5085935050505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6108a982610880565b9050919050565b6108b98161089f565b82525050565b5f6108ca83836108b0565b60208301905092915050565b5f602082019050919050565b5f6108ec82610857565b6108f68185610861565b935061090183610871565b805f5b8381101561093157815161091888826108bf565b9750610923836108d6565b925050600181019050610904565b5085935050505092915050565b5f6040820190508181035f83015261095681856107fb565b9050818103602083015261096a81846108e2565b90509392505050565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261099c5761099b61097b565b5b8235905067ffffffffffffffff8111156109b9576109b861097f565b5b6020830191508360208202830111156109d5576109d4610983565b5b9250929050565b5f80602083850312156109f2576109f1610973565b5b5f83013567ffffffffffffffff811115610a0f57610a0e610977565b5b610a1b85828601610987565b92509250509250929050565b5f6020820190508181035f830152610a3f81846107fb565b905092915050565b610a50816107c0565b8114610a5a575f80fd5b50565b5f81359050610a6b81610a47565b92915050565b5f60208284031215610a8657610a85610973565b5b5f610a9384828501610a5d565b91505092915050565b610aa5816107c0565b82525050565b5f602082019050610abe5f830184610a9c565b92915050565b610acd8161089f565b82525050565b5f602082019050610ae65f830184610ac4565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610b50826107c0565b9150610b5b836107c0565b9250828201905080821115610b7357610b72610b19565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffdfea2646970667358221220e3069698ddf100ee4b3d35c3563be30023f7fa7cc0f4b7054ddd458bc70ed25664736f6c634300081a0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x6 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x7 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x8 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x9 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0xA PUSH1 0xFF AND DUP2 MSTORE POP PUSH0 SWAP1 PUSH1 0xA PUSH2 0x81 SWAP3 SWAP2 SWAP1 PUSH2 0x93 JUMP JUMPDEST POP CALLVALUE DUP1 ISZERO PUSH2 0x8D JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xFE JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0xD2 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0xD1 JUMPI DUP3 MLOAD DUP3 SWAP1 PUSH1 0xFF AND SWAP1 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0xB1 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0xDF SWAP2 SWAP1 PUSH2 0xE3 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0xFA JUMPI PUSH0 DUP2 PUSH0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0xE4 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0xBDC DUP1 PUSH2 0x10B PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x9C JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x9977C78A GT PUSH2 0x64 JUMPI DUP1 PUSH4 0x9977C78A EQ PUSH2 0x133 JUMPI DUP1 PUSH4 0xA00B7ACD EQ PUSH2 0x163 JUMPI DUP1 PUSH4 0xADE82BFD EQ PUSH2 0x17F JUMPI DUP1 PUSH4 0xB1CEBAC5 EQ PUSH2 0x189 JUMPI DUP1 PUSH4 0xD39FA233 EQ PUSH2 0x193 JUMPI PUSH2 0x9C JUMP JUMPDEST DUP1 PUSH4 0x20AAF79A EQ PUSH2 0xA0 JUMPI DUP1 PUSH4 0x4F9377DB EQ PUSH2 0xBF JUMPI DUP1 PUSH4 0x7F66B1B8 EQ PUSH2 0xDB JUMPI DUP1 PUSH4 0x89F915F6 EQ PUSH2 0xE5 JUMPI DUP1 PUSH4 0x8BC33AF3 EQ PUSH2 0x103 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xA8 PUSH2 0x1C3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB6 SWAP3 SWAP2 SWAP1 PUSH2 0x93E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xD9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xD4 SWAP2 SWAP1 PUSH2 0x9DC JUMP JUMPDEST PUSH2 0x28F JUMP JUMPDEST STOP JUMPDEST PUSH2 0xE3 PUSH2 0x2EC JUMP JUMPDEST STOP JUMPDEST PUSH2 0xED PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFA SWAP2 SWAP1 PUSH2 0xA27 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x11D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x118 SWAP2 SWAP1 PUSH2 0xA71 JUMP JUMPDEST PUSH2 0x350 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x12A SWAP2 SWAP1 PUSH2 0xAAB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x14D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x148 SWAP2 SWAP1 PUSH2 0xA71 JUMP JUMPDEST PUSH2 0x370 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15A SWAP2 SWAP1 PUSH2 0xAD3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x178 SWAP2 SWAP1 PUSH2 0xA71 JUMP JUMPDEST PUSH2 0x3AB JUMP JUMPDEST STOP JUMPDEST PUSH2 0x187 PUSH2 0x434 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x191 PUSH2 0x443 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1AD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A8 SWAP2 SWAP1 PUSH2 0xA71 JUMP JUMPDEST PUSH2 0x4C3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BA SWAP2 SWAP1 PUSH2 0xAAB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 DUP1 PUSH0 PUSH4 0x386D89D0 SWAP1 POP PUSH1 0x60 DUP1 PUSH0 JUMPDEST PUSH1 0x2 DUP1 SLOAD SWAP1 POP DUP2 LT ISZERO PUSH2 0x281 JUMPI DUP4 PUSH1 0x2 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x1F5 JUMPI PUSH2 0x1F4 PUSH2 0xAEC JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD SLOAD GT ISZERO PUSH2 0x274 JUMPI PUSH2 0x22A DUP4 PUSH1 0x2 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x21C JUMPI PUSH2 0x21B PUSH2 0xAEC JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD SLOAD PUSH2 0x4E2 JUMP JUMPDEST SWAP3 POP PUSH2 0x271 DUP3 PUSH1 0x1 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x244 JUMPI PUSH2 0x243 PUSH2 0xAEC JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x5BB JUMP JUMPDEST SWAP2 POP JUMPDEST DUP1 DUP1 PUSH1 0x1 ADD SWAP2 POP POP PUSH2 0x1D3 JUMP JUMPDEST POP DUP2 DUP2 SWAP5 POP SWAP5 POP POP POP POP SWAP1 SWAP2 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP3 SWAP1 POP DUP2 LT ISZERO PUSH2 0x2E7 JUMPI PUSH0 DUP4 DUP4 DUP4 DUP2 DUP2 LT PUSH2 0x2B0 JUMPI PUSH2 0x2AF PUSH2 0xAEC JUMP JUMPDEST JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD PUSH0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE DUP1 DUP1 PUSH1 0x1 ADD SWAP2 POP POP PUSH2 0x291 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH0 PUSH2 0x2F9 SWAP2 SWAP1 PUSH2 0x6F0 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 SLOAD DUP1 PUSH1 0x20 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 DUP1 ISZERO PUSH2 0x346 JUMPI PUSH1 0x20 MUL DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 DUP1 DUP4 GT PUSH2 0x332 JUMPI JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x35F JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD PUSH0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x37F JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD PUSH0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x1 CALLER SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD PUSH0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x2 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD PUSH0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE POP JUMP JUMPDEST PUSH1 0x2 PUSH0 PUSH2 0x441 SWAP2 SWAP1 PUSH2 0x70E JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x6 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x7 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x8 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x9 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0xA PUSH1 0xFF AND DUP2 MSTORE POP PUSH0 SWAP1 PUSH1 0xA PUSH2 0x4C0 SWAP3 SWAP2 SWAP1 PUSH2 0x72C JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x4D1 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD PUSH0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH1 0x1 DUP5 MLOAD PUSH2 0x4F3 SWAP2 SWAP1 PUSH2 0xB46 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x50C JUMPI PUSH2 0x50B PUSH2 0xB79 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 0x53A 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 PUSH0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x58F JUMPI DUP5 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x55B JUMPI PUSH2 0x55A PUSH2 0xAEC JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x576 JUMPI PUSH2 0x575 PUSH2 0xAEC JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 DUP1 PUSH1 0x1 ADD SWAP2 POP POP PUSH2 0x53F JUMP JUMPDEST POP DUP3 DUP2 DUP6 MLOAD DUP2 MLOAD DUP2 LT PUSH2 0x5A5 JUMPI PUSH2 0x5A4 PUSH2 0xAEC JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH1 0x1 DUP5 MLOAD PUSH2 0x5CC SWAP2 SWAP1 PUSH2 0xB46 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5E5 JUMPI PUSH2 0x5E4 PUSH2 0xB79 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 0x613 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 PUSH0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x696 JUMPI DUP5 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x634 JUMPI PUSH2 0x633 PUSH2 0xAEC JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x64F JUMPI PUSH2 0x64E PUSH2 0xAEC JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP DUP1 DUP1 PUSH1 0x1 ADD SWAP2 POP POP PUSH2 0x618 JUMP JUMPDEST POP DUP3 DUP2 DUP6 MLOAD DUP2 MLOAD DUP2 LT PUSH2 0x6AC JUMPI PUSH2 0x6AB PUSH2 0xAEC JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST POP DUP1 SLOAD PUSH0 DUP3 SSTORE SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x70B SWAP2 SWAP1 PUSH2 0x77C JUMP JUMPDEST POP JUMP JUMPDEST POP DUP1 SLOAD PUSH0 DUP3 SSTORE SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x729 SWAP2 SWAP1 PUSH2 0x77C JUMP JUMPDEST POP JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x76B JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x76A JUMPI DUP3 MLOAD DUP3 SWAP1 PUSH1 0xFF AND SWAP1 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x74A JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x778 SWAP2 SWAP1 PUSH2 0x77C JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x793 JUMPI PUSH0 DUP2 PUSH0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x77D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x7D2 DUP2 PUSH2 0x7C0 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH2 0x7E3 DUP4 DUP4 PUSH2 0x7C9 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x805 DUP3 PUSH2 0x797 JUMP JUMPDEST PUSH2 0x80F DUP2 DUP6 PUSH2 0x7A1 JUMP JUMPDEST SWAP4 POP PUSH2 0x81A DUP4 PUSH2 0x7B1 JUMP JUMPDEST DUP1 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x84A JUMPI DUP2 MLOAD PUSH2 0x831 DUP9 DUP3 PUSH2 0x7D8 JUMP JUMPDEST SWAP8 POP PUSH2 0x83C DUP4 PUSH2 0x7EF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x81D JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x8A9 DUP3 PUSH2 0x880 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x8B9 DUP2 PUSH2 0x89F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH2 0x8CA DUP4 DUP4 PUSH2 0x8B0 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x8EC DUP3 PUSH2 0x857 JUMP JUMPDEST PUSH2 0x8F6 DUP2 DUP6 PUSH2 0x861 JUMP JUMPDEST SWAP4 POP PUSH2 0x901 DUP4 PUSH2 0x871 JUMP JUMPDEST DUP1 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x931 JUMPI DUP2 MLOAD PUSH2 0x918 DUP9 DUP3 PUSH2 0x8BF JUMP JUMPDEST SWAP8 POP PUSH2 0x923 DUP4 PUSH2 0x8D6 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x904 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x956 DUP2 DUP6 PUSH2 0x7FB JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x96A DUP2 DUP5 PUSH2 0x8E2 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x99C JUMPI PUSH2 0x99B PUSH2 0x97B JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x9B9 JUMPI PUSH2 0x9B8 PUSH2 0x97F JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x9D5 JUMPI PUSH2 0x9D4 PUSH2 0x983 JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x9F2 JUMPI PUSH2 0x9F1 PUSH2 0x973 JUMP JUMPDEST JUMPDEST PUSH0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA0F JUMPI PUSH2 0xA0E PUSH2 0x977 JUMP JUMPDEST JUMPDEST PUSH2 0xA1B DUP6 DUP3 DUP7 ADD PUSH2 0x987 JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xA3F DUP2 DUP5 PUSH2 0x7FB JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xA50 DUP2 PUSH2 0x7C0 JUMP JUMPDEST DUP2 EQ PUSH2 0xA5A JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xA6B DUP2 PUSH2 0xA47 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA86 JUMPI PUSH2 0xA85 PUSH2 0x973 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xA93 DUP5 DUP3 DUP6 ADD PUSH2 0xA5D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xAA5 DUP2 PUSH2 0x7C0 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xABE PUSH0 DUP4 ADD DUP5 PUSH2 0xA9C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xACD DUP2 PUSH2 0x89F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xAE6 PUSH0 DUP4 ADD DUP5 PUSH2 0xAC4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0xB50 DUP3 PUSH2 0x7C0 JUMP JUMPDEST SWAP2 POP PUSH2 0xB5B DUP4 PUSH2 0x7C0 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0xB73 JUMPI PUSH2 0xB72 PUSH2 0xB19 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE3 MOD SWAP7 SWAP9 0xDD CALL STOP 0xEE 0x4B RETURNDATASIZE CALLDATALOAD 0xC3 JUMP EXTCODESIZE 0xE3 STOP 0x23 0xF7 STATICCALL PUSH29 0xC0F4B7054DDD458BC70ED25664736F6C634300081A0033000000000000 ",
"sourceMap": "65:2428:0:-:0;;;95:55;;;;;;;;120:1;95:55;;;;;;123:1;95:55;;;;;;126:1;95:55;;;;;;129:1;95:55;;;;;;132:1;95:55;;;;;;135:1;95:55;;;;;;138:1;95:55;;;;;;141:1;95:55;;;;;;144:1;95:55;;;;;;147:2;95:55;;;;;;;;;;;;;:::i;:::-;;65:2428;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@afterY2K_163": {
"entryPoint": 451,
"id": 163,
"parameterSlots": 0,
"returnSlots": 2
},
"@appendToArray_233": {
"entryPoint": 1250,
"id": 233,
"parameterSlots": 2,
"returnSlots": 1
},
"@appendToArray_289": {
"entryPoint": 1467,
"id": 289,
"parameterSlots": 2,
"returnSlots": 1
},
"@appendToNumbers_76": {
"entryPoint": 655,
"id": 76,
"parameterSlots": 2,
"returnSlots": 0
},
"@getNumbers_30": {
"entryPoint": 763,
"id": 30,
"parameterSlots": 0,
"returnSlots": 1
},
"@numbers_15": {
"entryPoint": 1219,
"id": 15,
"parameterSlots": 0,
"returnSlots": 0
},
"@resetNumbers_48": {
"entryPoint": 1091,
"id": 48,
"parameterSlots": 0,
"returnSlots": 0
},
"@resetSenders_170": {
"entryPoint": 748,
"id": 170,
"parameterSlots": 0,
"returnSlots": 0
},
"@resetTimestamps_177": {
"entryPoint": 1076,
"id": 177,
"parameterSlots": 0,
"returnSlots": 0
},
"@saveTimestamp_95": {
"entryPoint": 939,
"id": 95,
"parameterSlots": 1,
"returnSlots": 0
},
"@senders_18": {
"entryPoint": 880,
"id": 18,
"parameterSlots": 0,
"returnSlots": 0
},
"@timestamps_21": {
"entryPoint": 848,
"id": 21,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_t_array$_t_uint256_$dyn_calldata_ptr": {
"entryPoint": 2439,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_t_uint256": {
"entryPoint": 2653,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_array$_t_uint256_$dyn_calldata_ptr": {
"entryPoint": 2524,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 2673,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encodeUpdatedPos_t_address_to_t_address": {
"entryPoint": 2239,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encodeUpdatedPos_t_uint256_to_t_uint256": {
"entryPoint": 2008,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address": {
"entryPoint": 2224,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 2756,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_array$_t_address_$dyn_memory_ptr_to_t_array$_t_address_$dyn_memory_ptr_fromStack": {
"entryPoint": 2274,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack": {
"entryPoint": 2043,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256": {
"entryPoint": 1993,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 2716,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 2771,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
"entryPoint": 2599,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_address_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_address_$dyn_memory_ptr__fromStack_reversed": {
"entryPoint": 2366,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 2731,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_dataslot_t_array$_t_address_$dyn_memory_ptr": {
"entryPoint": 2161,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 1969,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_array$_t_address_$dyn_memory_ptr": {
"entryPoint": 2135,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 1943,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_nextElement_t_array$_t_address_$dyn_memory_ptr": {
"entryPoint": 2262,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_nextElement_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 2031,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_array$_t_address_$dyn_memory_ptr_fromStack": {
"entryPoint": 2145,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack": {
"entryPoint": 1953,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 2886,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 2207,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 2176,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1984,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 2841,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 2796,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 2937,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490": {
"entryPoint": 2431,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 2427,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef": {
"entryPoint": 2435,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 2423,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 2419,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 2631,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:8527:1",
"nodeType": "YulBlock",
"src": "0:8527:1",
"statements": [
{
"body": {
"nativeSrc": "81:40:1",
"nodeType": "YulBlock",
"src": "81:40:1",
"statements": [
{
"nativeSrc": "92:22:1",
"nodeType": "YulAssignment",
"src": "92:22:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "108:5:1",
"nodeType": "YulIdentifier",
"src": "108:5:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "102:5:1",
"nodeType": "YulIdentifier",
"src": "102:5:1"
},
"nativeSrc": "102:12:1",
"nodeType": "YulFunctionCall",
"src": "102:12:1"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "92:6:1",
"nodeType": "YulIdentifier",
"src": "92:6:1"
}
]
}
]
},
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "7:114:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "64:5:1",
"nodeType": "YulTypedName",
"src": "64:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "74:6:1",
"nodeType": "YulTypedName",
"src": "74:6:1",
"type": ""
}
],
"src": "7:114:1"
},
{
"body": {
"nativeSrc": "238:73:1",
"nodeType": "YulBlock",
"src": "238:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "255:3:1",
"nodeType": "YulIdentifier",
"src": "255:3:1"
},
{
"name": "length",
"nativeSrc": "260:6:1",
"nodeType": "YulIdentifier",
"src": "260:6:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "248:6:1",
"nodeType": "YulIdentifier",
"src": "248:6:1"
},
"nativeSrc": "248:19:1",
"nodeType": "YulFunctionCall",
"src": "248:19:1"
},
"nativeSrc": "248:19:1",
"nodeType": "YulExpressionStatement",
"src": "248:19:1"
},
{
"nativeSrc": "276:29:1",
"nodeType": "YulAssignment",
"src": "276:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "295:3:1",
"nodeType": "YulIdentifier",
"src": "295:3:1"
},
{
"kind": "number",
"nativeSrc": "300:4:1",
"nodeType": "YulLiteral",
"src": "300:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "291:3:1",
"nodeType": "YulIdentifier",
"src": "291:3:1"
},
"nativeSrc": "291:14:1",
"nodeType": "YulFunctionCall",
"src": "291:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "276:11:1",
"nodeType": "YulIdentifier",
"src": "276:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nativeSrc": "127:184:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "210:3:1",
"nodeType": "YulTypedName",
"src": "210:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "215:6:1",
"nodeType": "YulTypedName",
"src": "215:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "226:11:1",
"nodeType": "YulTypedName",
"src": "226:11:1",
"type": ""
}
],
"src": "127:184:1"
},
{
"body": {
"nativeSrc": "389:60:1",
"nodeType": "YulBlock",
"src": "389:60:1",
"statements": [
{
"nativeSrc": "399:11:1",
"nodeType": "YulAssignment",
"src": "399:11:1",
"value": {
"name": "ptr",
"nativeSrc": "407:3:1",
"nodeType": "YulIdentifier",
"src": "407:3:1"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "399:4:1",
"nodeType": "YulIdentifier",
"src": "399:4:1"
}
]
},
{
"nativeSrc": "420:22:1",
"nodeType": "YulAssignment",
"src": "420:22:1",
"value": {
"arguments": [
{
"name": "ptr",
"nativeSrc": "432:3:1",
"nodeType": "YulIdentifier",
"src": "432:3:1"
},
{
"kind": "number",
"nativeSrc": "437:4:1",
"nodeType": "YulLiteral",
"src": "437:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "428:3:1",
"nodeType": "YulIdentifier",
"src": "428:3:1"
},
"nativeSrc": "428:14:1",
"nodeType": "YulFunctionCall",
"src": "428:14:1"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "420:4:1",
"nodeType": "YulIdentifier",
"src": "420:4:1"
}
]
}
]
},
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "317:132:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "376:3:1",
"nodeType": "YulTypedName",
"src": "376:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nativeSrc": "384:4:1",
"nodeType": "YulTypedName",
"src": "384:4:1",
"type": ""
}
],
"src": "317:132:1"
},
{
"body": {
"nativeSrc": "500:32:1",
"nodeType": "YulBlock",
"src": "500:32:1",
"statements": [
{
"nativeSrc": "510:16:1",
"nodeType": "YulAssignment",
"src": "510:16:1",
"value": {
"name": "value",
"nativeSrc": "521:5:1",
"nodeType": "YulIdentifier",
"src": "521:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "510:7:1",
"nodeType": "YulIdentifier",
"src": "510:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "455:77:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "482:5:1",
"nodeType": "YulTypedName",
"src": "482:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "492:7:1",
"nodeType": "YulTypedName",
"src": "492:7:1",
"type": ""
}
],
"src": "455:77:1"
},
{
"body": {
"nativeSrc": "593:53:1",
"nodeType": "YulBlock",
"src": "593:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "610:3:1",
"nodeType": "YulIdentifier",
"src": "610:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "633:5:1",
"nodeType": "YulIdentifier",
"src": "633:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "615:17:1",
"nodeType": "YulIdentifier",
"src": "615:17:1"
},
"nativeSrc": "615:24:1",
"nodeType": "YulFunctionCall",
"src": "615:24:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "603:6:1",
"nodeType": "YulIdentifier",
"src": "603:6:1"
},
"nativeSrc": "603:37:1",
"nodeType": "YulFunctionCall",
"src": "603:37:1"
},
"nativeSrc": "603:37:1",
"nodeType": "YulExpressionStatement",
"src": "603:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "538:108:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "581:5:1",
"nodeType": "YulTypedName",
"src": "581:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "588:3:1",
"nodeType": "YulTypedName",
"src": "588:3:1",
"type": ""
}
],
"src": "538:108:1"
},
{
"body": {
"nativeSrc": "732:99:1",
"nodeType": "YulBlock",
"src": "732:99:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "776:6:1",
"nodeType": "YulIdentifier",
"src": "776:6:1"
},
{
"name": "pos",
"nativeSrc": "784:3:1",
"nodeType": "YulIdentifier",
"src": "784:3:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "742:33:1",
"nodeType": "YulIdentifier",
"src": "742:33:1"
},
"nativeSrc": "742:46:1",
"nodeType": "YulFunctionCall",
"src": "742:46:1"
},
"nativeSrc": "742:46:1",
"nodeType": "YulExpressionStatement",
"src": "742:46:1"
},
{
"nativeSrc": "797:28:1",
"nodeType": "YulAssignment",
"src": "797:28:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "815:3:1",
"nodeType": "YulIdentifier",
"src": "815:3:1"
},
{
"kind": "number",
"nativeSrc": "820:4:1",
"nodeType": "YulLiteral",
"src": "820:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "811:3:1",
"nodeType": "YulIdentifier",
"src": "811:3:1"
},
"nativeSrc": "811:14:1",
"nodeType": "YulFunctionCall",
"src": "811:14:1"
},
"variableNames": [
{
"name": "updatedPos",
"nativeSrc": "797:10:1",
"nodeType": "YulIdentifier",
"src": "797:10:1"
}
]
}
]
},
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nativeSrc": "652:179:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value0",
"nativeSrc": "705:6:1",
"nodeType": "YulTypedName",
"src": "705:6:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "713:3:1",
"nodeType": "YulTypedName",
"src": "713:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updatedPos",
"nativeSrc": "721:10:1",
"nodeType": "YulTypedName",
"src": "721:10:1",
"type": ""
}
],
"src": "652:179:1"
},
{
"body": {
"nativeSrc": "912:38:1",
"nodeType": "YulBlock",
"src": "912:38:1",
"statements": [
{
"nativeSrc": "922:22:1",
"nodeType": "YulAssignment",
"src": "922:22:1",
"value": {
"arguments": [
{
"name": "ptr",
"nativeSrc": "934:3:1",
"nodeType": "YulIdentifier",
"src": "934:3:1"
},
{
"kind": "number",
"nativeSrc": "939:4:1",
"nodeType": "YulLiteral",
"src": "939:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "930:3:1",
"nodeType": "YulIdentifier",
"src": "930:3:1"
},
"nativeSrc": "930:14:1",
"nodeType": "YulFunctionCall",
"src": "930:14:1"
},
"variableNames": [
{
"name": "next",
"nativeSrc": "922:4:1",
"nodeType": "YulIdentifier",
"src": "922:4:1"
}
]
}
]
},
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "837:113:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "899:3:1",
"nodeType": "YulTypedName",
"src": "899:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "next",
"nativeSrc": "907:4:1",
"nodeType": "YulTypedName",
"src": "907:4:1",
"type": ""
}
],
"src": "837:113:1"
},
{
"body": {
"nativeSrc": "1110:608:1",
"nodeType": "YulBlock",
"src": "1110:608:1",
"statements": [
{
"nativeSrc": "1120:68:1",
"nodeType": "YulVariableDeclaration",
"src": "1120:68:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1182:5:1",
"nodeType": "YulIdentifier",
"src": "1182:5:1"
}
],
"functionName": {
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "1134:47:1",
"nodeType": "YulIdentifier",
"src": "1134:47:1"
},
"nativeSrc": "1134:54:1",
"nodeType": "YulFunctionCall",
"src": "1134:54:1"
},
"variables": [
{
"name": "length",
"nativeSrc": "1124:6:1",
"nodeType": "YulTypedName",
"src": "1124:6:1",
"type": ""
}
]
},
{
"nativeSrc": "1197:93:1",
"nodeType": "YulAssignment",
"src": "1197:93:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "1278:3:1",
"nodeType": "YulIdentifier",
"src": "1278:3:1"
},
{
"name": "length",
"nativeSrc": "1283:6:1",
"nodeType": "YulIdentifier",
"src": "1283:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nativeSrc": "1204:73:1",
"nodeType": "YulIdentifier",
"src": "1204:73:1"
},
"nativeSrc": "1204:86:1",
"nodeType": "YulFunctionCall",
"src": "1204:86:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "1197:3:1",
"nodeType": "YulIdentifier",
"src": "1197:3:1"
}
]
},
{
"nativeSrc": "1299:71:1",
"nodeType": "YulVariableDeclaration",
"src": "1299:71:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1364:5:1",
"nodeType": "YulIdentifier",
"src": "1364:5:1"
}
],
"functionName": {
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "1314:49:1",
"nodeType": "YulIdentifier",
"src": "1314:49:1"
},
"nativeSrc": "1314:56:1",
"nodeType": "YulFunctionCall",
"src": "1314:56:1"
},
"variables": [
{
"name": "baseRef",
"nativeSrc": "1303:7:1",
"nodeType": "YulTypedName",
"src": "1303:7:1",
"type": ""
}
]
},
{
"nativeSrc": "1379:21:1",
"nodeType": "YulVariableDeclaration",
"src": "1379:21:1",
"value": {
"name": "baseRef",
"nativeSrc": "1393:7:1",
"nodeType": "YulIdentifier",
"src": "1393:7:1"
},
"variables": [
{
"name": "srcPtr",
"nativeSrc": "1383:6:1",
"nodeType": "YulTypedName",
"src": "1383:6:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "1469:224:1",
"nodeType": "YulBlock",
"src": "1469:224:1",
"statements": [
{
"nativeSrc": "1483:34:1",
"nodeType": "YulVariableDeclaration",
"src": "1483:34:1",
"value": {
"arguments": [
{
"name": "srcPtr",
"nativeSrc": "1510:6:1",
"nodeType": "YulIdentifier",
"src": "1510:6:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "1504:5:1",
"nodeType": "YulIdentifier",
"src": "1504:5:1"
},
"nativeSrc": "1504:13:1",
"nodeType": "YulFunctionCall",
"src": "1504:13:1"
},
"variables": [
{
"name": "elementValue0",
"nativeSrc": "1487:13:1",
"nodeType": "YulTypedName",
"src": "1487:13:1",
"type": ""
}
]
},
{
"nativeSrc": "1530:70:1",
"nodeType": "YulAssignment",
"src": "1530:70:1",
"value": {
"arguments": [
{
"name": "elementValue0",
"nativeSrc": "1581:13:1",
"nodeType": "YulIdentifier",
"src": "1581:13:1"
},
{
"name": "pos",
"nativeSrc": "1596:3:1",
"nodeType": "YulIdentifier",
"src": "1596:3:1"
}
],
"functionName": {
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nativeSrc": "1537:43:1",
"nodeType": "YulIdentifier",
"src": "1537:43:1"
},
"nativeSrc": "1537:63:1",
"nodeType": "YulFunctionCall",
"src": "1537:63:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "1530:3:1",
"nodeType": "YulIdentifier",
"src": "1530:3:1"
}
]
},
{
"nativeSrc": "1613:70:1",
"nodeType": "YulAssignment",
"src": "1613:70:1",
"value": {
"arguments": [
{
"name": "srcPtr",
"nativeSrc": "1676:6:1",
"nodeType": "YulIdentifier",
"src": "1676:6:1"
}
],
"functionName": {
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "1623:52:1",
"nodeType": "YulIdentifier",
"src": "1623:52:1"
},
"nativeSrc": "1623:60:1",
"nodeType": "YulFunctionCall",
"src": "1623:60:1"
},
"variableNames": [
{
"name": "srcPtr",
"nativeSrc": "1613:6:1",
"nodeType": "YulIdentifier",
"src": "1613:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "1431:1:1",
"nodeType": "YulIdentifier",
"src": "1431:1:1"
},
{
"name": "length",
"nativeSrc": "1434:6:1",
"nodeType": "YulIdentifier",
"src": "1434:6:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "1428:2:1",
"nodeType": "YulIdentifier",
"src": "1428:2:1"
},
"nativeSrc": "1428:13:1",
"nodeType": "YulFunctionCall",
"src": "1428:13:1"
},
"nativeSrc": "1409:284:1",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "1442:18:1",
"nodeType": "YulBlock",
"src": "1442:18:1",
"statements": [
{
"nativeSrc": "1444:14:1",
"nodeType": "YulAssignment",
"src": "1444:14:1",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "1453:1:1",
"nodeType": "YulIdentifier",
"src": "1453:1:1"
},
{
"kind": "number",
"nativeSrc": "1456:1:1",
"nodeType": "YulLiteral",
"src": "1456:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1449:3:1",
"nodeType": "YulIdentifier",
"src": "1449:3:1"
},
"nativeSrc": "1449:9:1",
"nodeType": "YulFunctionCall",
"src": "1449:9:1"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "1444:1:1",
"nodeType": "YulIdentifier",
"src": "1444:1:1"
}
]
}
]
},
"pre": {
"nativeSrc": "1413:14:1",
"nodeType": "YulBlock",
"src": "1413:14:1",
"statements": [
{
"nativeSrc": "1415:10:1",
"nodeType": "YulVariableDeclaration",
"src": "1415:10:1",
"value": {
"kind": "number",
"nativeSrc": "1424:1:1",
"nodeType": "YulLiteral",
"src": "1424:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "1419:1:1",
"nodeType": "YulTypedName",
"src": "1419:1:1",
"type": ""
}
]
}
]
},
"src": "1409:284:1"
},
{
"nativeSrc": "1702:10:1",
"nodeType": "YulAssignment",
"src": "1702:10:1",
"value": {
"name": "pos",
"nativeSrc": "1709:3:1",
"nodeType": "YulIdentifier",
"src": "1709:3:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "1702:3:1",
"nodeType": "YulIdentifier",
"src": "1702:3:1"
}
]
}
]
},
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nativeSrc": "986:732:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1089:5:1",
"nodeType": "YulTypedName",
"src": "1089:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "1096:3:1",
"nodeType": "YulTypedName",
"src": "1096:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "1105:3:1",
"nodeType": "YulTypedName",
"src": "1105:3:1",
"type": ""
}
],
"src": "986:732:1"
},
{
"body": {
"nativeSrc": "1798:40:1",
"nodeType": "YulBlock",
"src": "1798:40:1",
"statements": [
{
"nativeSrc": "1809:22:1",
"nodeType": "YulAssignment",
"src": "1809:22:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1825:5:1",
"nodeType": "YulIdentifier",
"src": "1825:5:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "1819:5:1",
"nodeType": "YulIdentifier",
"src": "1819:5:1"
},
"nativeSrc": "1819:12:1",
"nodeType": "YulFunctionCall",
"src": "1819:12:1"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "1809:6:1",
"nodeType": "YulIdentifier",
"src": "1809:6:1"
}
]
}
]
},
"name": "array_length_t_array$_t_address_$dyn_memory_ptr",
"nativeSrc": "1724:114:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1781:5:1",
"nodeType": "YulTypedName",
"src": "1781:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "1791:6:1",
"nodeType": "YulTypedName",
"src": "1791:6:1",
"type": ""
}
],
"src": "1724:114:1"
},
{
"body": {
"nativeSrc": "1955:73:1",
"nodeType": "YulBlock",
"src": "1955:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "1972:3:1",
"nodeType": "YulIdentifier",
"src": "1972:3:1"
},
{
"name": "length",
"nativeSrc": "1977:6:1",
"nodeType": "YulIdentifier",
"src": "1977:6:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1965:6:1",
"nodeType": "YulIdentifier",
"src": "1965:6:1"
},
"nativeSrc": "1965:19:1",
"nodeType": "YulFunctionCall",
"src": "1965:19:1"
},
"nativeSrc": "1965:19:1",
"nodeType": "YulExpressionStatement",
"src": "1965:19:1"
},
{
"nativeSrc": "1993:29:1",
"nodeType": "YulAssignment",
"src": "1993:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "2012:3:1",
"nodeType": "YulIdentifier",
"src": "2012:3:1"
},
{
"kind": "number",
"nativeSrc": "2017:4:1",
"nodeType": "YulLiteral",
"src": "2017:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2008:3:1",
"nodeType": "YulIdentifier",
"src": "2008:3:1"
},
"nativeSrc": "2008:14:1",
"nodeType": "YulFunctionCall",
"src": "2008:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "1993:11:1",
"nodeType": "YulIdentifier",
"src": "1993:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_array$_t_address_$dyn_memory_ptr_fromStack",
"nativeSrc": "1844:184:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "1927:3:1",
"nodeType": "YulTypedName",
"src": "1927:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "1932:6:1",
"nodeType": "YulTypedName",
"src": "1932:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "1943:11:1",
"nodeType": "YulTypedName",
"src": "1943:11:1",
"type": ""
}
],
"src": "1844:184:1"
},
{
"body": {
"nativeSrc": "2106:60:1",
"nodeType": "YulBlock",
"src": "2106:60:1",
"statements": [
{
"nativeSrc": "2116:11:1",
"nodeType": "YulAssignment",
"src": "2116:11:1",
"value": {
"name": "ptr",
"nativeSrc": "2124:3:1",
"nodeType": "YulIdentifier",
"src": "2124:3:1"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "2116:4:1",
"nodeType": "YulIdentifier",
"src": "2116:4:1"
}
]
},
{
"nativeSrc": "2137:22:1",
"nodeType": "YulAssignment",
"src": "2137:22:1",
"value": {
"arguments": [
{
"name": "ptr",
"nativeSrc": "2149:3:1",
"nodeType": "YulIdentifier",
"src": "2149:3:1"
},
{
"kind": "number",
"nativeSrc": "2154:4:1",
"nodeType": "YulLiteral",
"src": "2154:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2145:3:1",
"nodeType": "YulIdentifier",
"src": "2145:3:1"
},
"nativeSrc": "2145:14:1",
"nodeType": "YulFunctionCall",
"src": "2145:14:1"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "2137:4:1",
"nodeType": "YulIdentifier",
"src": "2137:4:1"
}
]
}
]
},
"name": "array_dataslot_t_array$_t_address_$dyn_memory_ptr",
"nativeSrc": "2034:132:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "2093:3:1",
"nodeType": "YulTypedName",
"src": "2093:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nativeSrc": "2101:4:1",
"nodeType": "YulTypedName",
"src": "2101:4:1",
"type": ""
}
],
"src": "2034:132:1"
},
{
"body": {
"nativeSrc": "2217:81:1",
"nodeType": "YulBlock",
"src": "2217:81:1",
"statements": [
{
"nativeSrc": "2227:65:1",
"nodeType": "YulAssignment",
"src": "2227:65:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "2242:5:1",
"nodeType": "YulIdentifier",
"src": "2242:5:1"
},
{
"kind": "number",
"nativeSrc": "2249:42:1",
"nodeType": "YulLiteral",
"src": "2249:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "2238:3:1",
"nodeType": "YulIdentifier",
"src": "2238:3:1"
},
"nativeSrc": "2238:54:1",
"nodeType": "YulFunctionCall",
"src": "2238:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "2227:7:1",
"nodeType": "YulIdentifier",
"src": "2227:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "2172:126:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2199:5:1",
"nodeType": "YulTypedName",
"src": "2199:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "2209:7:1",
"nodeType": "YulTypedName",
"src": "2209:7:1",
"type": ""
}
],
"src": "2172:126:1"
},
{
"body": {
"nativeSrc": "2349:51:1",
"nodeType": "YulBlock",
"src": "2349:51:1",
"statements": [
{
"nativeSrc": "2359:35:1",
"nodeType": "YulAssignment",
"src": "2359:35:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "2388:5:1",
"nodeType": "YulIdentifier",
"src": "2388:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "2370:17:1",
"nodeType": "YulIdentifier",
"src": "2370:17:1"
},
"nativeSrc": "2370:24:1",
"nodeType": "YulFunctionCall",
"src": "2370:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "2359:7:1",
"nodeType": "YulIdentifier",
"src": "2359:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "2304:96:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2331:5:1",
"nodeType": "YulTypedName",
"src": "2331:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "2341:7:1",
"nodeType": "YulTypedName",
"src": "2341:7:1",
"type": ""
}
],
"src": "2304:96:1"
},
{
"body": {
"nativeSrc": "2461:53:1",
"nodeType": "YulBlock",
"src": "2461:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "2478:3:1",
"nodeType": "YulIdentifier",
"src": "2478:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "2501:5:1",
"nodeType": "YulIdentifier",
"src": "2501:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "2483:17:1",
"nodeType": "YulIdentifier",
"src": "2483:17:1"
},
"nativeSrc": "2483:24:1",
"nodeType": "YulFunctionCall",
"src": "2483:24:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2471:6:1",
"nodeType": "YulIdentifier",
"src": "2471:6:1"
},
"nativeSrc": "2471:37:1",
"nodeType": "YulFunctionCall",
"src": "2471:37:1"
},
"nativeSrc": "2471:37:1",
"nodeType": "YulExpressionStatement",
"src": "2471:37:1"
}
]
},
"name": "abi_encode_t_address_to_t_address",
"nativeSrc": "2406:108:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2449:5:1",
"nodeType": "YulTypedName",
"src": "2449:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "2456:3:1",
"nodeType": "YulTypedName",
"src": "2456:3:1",
"type": ""
}
],
"src": "2406:108:1"
},
{
"body": {
"nativeSrc": "2600:99:1",
"nodeType": "YulBlock",
"src": "2600:99:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "2644:6:1",
"nodeType": "YulIdentifier",
"src": "2644:6:1"
},
{
"name": "pos",
"nativeSrc": "2652:3:1",
"nodeType": "YulIdentifier",
"src": "2652:3:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address",
"nativeSrc": "2610:33:1",
"nodeType": "YulIdentifier",
"src": "2610:33:1"
},
"nativeSrc": "2610:46:1",
"nodeType": "YulFunctionCall",
"src": "2610:46:1"
},
"nativeSrc": "2610:46:1",
"nodeType": "YulExpressionStatement",
"src": "2610:46:1"
},
{
"nativeSrc": "2665:28:1",
"nodeType": "YulAssignment",
"src": "2665:28:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "2683:3:1",
"nodeType": "YulIdentifier",
"src": "2683:3:1"
},
{
"kind": "number",
"nativeSrc": "2688:4:1",
"nodeType": "YulLiteral",
"src": "2688:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2679:3:1",
"nodeType": "YulIdentifier",
"src": "2679:3:1"
},
"nativeSrc": "2679:14:1",
"nodeType": "YulFunctionCall",
"src": "2679:14:1"
},
"variableNames": [
{
"name": "updatedPos",
"nativeSrc": "2665:10:1",
"nodeType": "YulIdentifier",
"src": "2665:10:1"
}
]
}
]
},
"name": "abi_encodeUpdatedPos_t_address_to_t_address",
"nativeSrc": "2520:179:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value0",
"nativeSrc": "2573:6:1",
"nodeType": "YulTypedName",
"src": "2573:6:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "2581:3:1",
"nodeType": "YulTypedName",
"src": "2581:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updatedPos",
"nativeSrc": "2589:10:1",
"nodeType": "YulTypedName",
"src": "2589:10:1",
"type": ""
}
],
"src": "2520:179:1"
},
{
"body": {
"nativeSrc": "2780:38:1",
"nodeType": "YulBlock",
"src": "2780:38:1",
"statements": [
{
"nativeSrc": "2790:22:1",
"nodeType": "YulAssignment",
"src": "2790:22:1",
"value": {
"arguments": [
{
"name": "ptr",
"nativeSrc": "2802:3:1",
"nodeType": "YulIdentifier",
"src": "2802:3:1"
},
{
"kind": "number",
"nativeSrc": "2807:4:1",
"nodeType": "YulLiteral",
"src": "2807:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2798:3:1",
"nodeType": "YulIdentifier",
"src": "2798:3:1"
},
"nativeSrc": "2798:14:1",
"nodeType": "YulFunctionCall",
"src": "2798:14:1"
},
"variableNames": [
{
"name": "next",
"nativeSrc": "2790:4:1",
"nodeType": "YulIdentifier",
"src": "2790:4:1"
}
]
}
]
},
"name": "array_nextElement_t_array$_t_address_$dyn_memory_ptr",
"nativeSrc": "2705:113:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "2767:3:1",
"nodeType": "YulTypedName",
"src": "2767:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "next",
"nativeSrc": "2775:4:1",
"nodeType": "YulTypedName",
"src": "2775:4:1",
"type": ""
}
],
"src": "2705:113:1"
},
{
"body": {
"nativeSrc": "2978:608:1",
"nodeType": "YulBlock",
"src": "2978:608:1",
"statements": [
{
"nativeSrc": "2988:68:1",
"nodeType": "YulVariableDeclaration",
"src": "2988:68:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "3050:5:1",
"nodeType": "YulIdentifier",
"src": "3050:5:1"
}
],
"functionName": {
"name": "array_length_t_array$_t_address_$dyn_memory_ptr",
"nativeSrc": "3002:47:1",
"nodeType": "YulIdentifier",
"src": "3002:47:1"
},
"nativeSrc": "3002:54:1",
"nodeType": "YulFunctionCall",
"src": "3002:54:1"
},
"variables": [
{
"name": "length",
"nativeSrc": "2992:6:1",
"nodeType": "YulTypedName",
"src": "2992:6:1",
"type": ""
}
]
},
{
"nativeSrc": "3065:93:1",
"nodeType": "YulAssignment",
"src": "3065:93:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "3146:3:1",
"nodeType": "YulIdentifier",
"src": "3146:3:1"
},
{
"name": "length",
"nativeSrc": "3151:6:1",
"nodeType": "YulIdentifier",
"src": "3151:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_array$_t_address_$dyn_memory_ptr_fromStack",
"nativeSrc": "3072:73:1",
"nodeType": "YulIdentifier",
"src": "3072:73:1"
},
"nativeSrc": "3072:86:1",
"nodeType": "YulFunctionCall",
"src": "3072:86:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "3065:3:1",
"nodeType": "YulIdentifier",
"src": "3065:3:1"
}
]
},
{
"nativeSrc": "3167:71:1",
"nodeType": "YulVariableDeclaration",
"src": "3167:71:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "3232:5:1",
"nodeType": "YulIdentifier",
"src": "3232:5:1"
}
],
"functionName": {
"name": "array_dataslot_t_array$_t_address_$dyn_memory_ptr",
"nativeSrc": "3182:49:1",
"nodeType": "YulIdentifier",
"src": "3182:49:1"
},
"nativeSrc": "3182:56:1",
"nodeType": "YulFunctionCall",
"src": "3182:56:1"
},
"variables": [
{
"name": "baseRef",
"nativeSrc": "3171:7:1",
"nodeType": "YulTypedName",
"src": "3171:7:1",
"type": ""
}
]
},
{
"nativeSrc": "3247:21:1",
"nodeType": "YulVariableDeclaration",
"src": "3247:21:1",
"value": {
"name": "baseRef",
"nativeSrc": "3261:7:1",
"nodeType": "YulIdentifier",
"src": "3261:7:1"
},
"variables": [
{
"name": "srcPtr",
"nativeSrc": "3251:6:1",
"nodeType": "YulTypedName",
"src": "3251:6:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "3337:224:1",
"nodeType": "YulBlock",
"src": "3337:224:1",
"statements": [
{
"nativeSrc": "3351:34:1",
"nodeType": "YulVariableDeclaration",
"src": "3351:34:1",
"value": {
"arguments": [
{
"name": "srcPtr",
"nativeSrc": "3378:6:1",
"nodeType": "YulIdentifier",
"src": "3378:6:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "3372:5:1",
"nodeType": "YulIdentifier",
"src": "3372:5:1"
},
"nativeSrc": "3372:13:1",
"nodeType": "YulFunctionCall",
"src": "3372:13:1"
},
"variables": [
{
"name": "elementValue0",
"nativeSrc": "3355:13:1",
"nodeType": "YulTypedName",
"src": "3355:13:1",
"type": ""
}
]
},
{
"nativeSrc": "3398:70:1",
"nodeType": "YulAssignment",
"src": "3398:70:1",
"value": {
"arguments": [
{
"name": "elementValue0",
"nativeSrc": "3449:13:1",
"nodeType": "YulIdentifier",
"src": "3449:13:1"
},
{
"name": "pos",
"nativeSrc": "3464:3:1",
"nodeType": "YulIdentifier",
"src": "3464:3:1"
}
],
"functionName": {
"name": "abi_encodeUpdatedPos_t_address_to_t_address",
"nativeSrc": "3405:43:1",
"nodeType": "YulIdentifier",
"src": "3405:43:1"
},
"nativeSrc": "3405:63:1",
"nodeType": "YulFunctionCall",
"src": "3405:63:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "3398:3:1",
"nodeType": "YulIdentifier",
"src": "3398:3:1"
}
]
},
{
"nativeSrc": "3481:70:1",
"nodeType": "YulAssignment",
"src": "3481:70:1",
"value": {
"arguments": [
{
"name": "srcPtr",
"nativeSrc": "3544:6:1",
"nodeType": "YulIdentifier",
"src": "3544:6:1"
}
],
"functionName": {
"name": "array_nextElement_t_array$_t_address_$dyn_memory_ptr",
"nativeSrc": "3491:52:1",
"nodeType": "YulIdentifier",
"src": "3491:52:1"
},
"nativeSrc": "3491:60:1",
"nodeType": "YulFunctionCall",
"src": "3491:60:1"
},
"variableNames": [
{
"name": "srcPtr",
"nativeSrc": "3481:6:1",
"nodeType": "YulIdentifier",
"src": "3481:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "3299:1:1",
"nodeType": "YulIdentifier",
"src": "3299:1:1"
},
{
"name": "length",
"nativeSrc": "3302:6:1",
"nodeType": "YulIdentifier",
"src": "3302:6:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "3296:2:1",
"nodeType": "YulIdentifier",
"src": "3296:2:1"
},
"nativeSrc": "3296:13:1",
"nodeType": "YulFunctionCall",
"src": "3296:13:1"
},
"nativeSrc": "3277:284:1",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "3310:18:1",
"nodeType": "YulBlock",
"src": "3310:18:1",
"statements": [
{
"nativeSrc": "3312:14:1",
"nodeType": "YulAssignment",
"src": "3312:14:1",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "3321:1:1",
"nodeType": "YulIdentifier",
"src": "3321:1:1"
},
{
"kind": "number",
"nativeSrc": "3324:1:1",
"nodeType": "YulLiteral",
"src": "3324:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3317:3:1",
"nodeType": "YulIdentifier",
"src": "3317:3:1"
},
"nativeSrc": "3317:9:1",
"nodeType": "YulFunctionCall",
"src": "3317:9:1"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "3312:1:1",
"nodeType": "YulIdentifier",
"src": "3312:1:1"
}
]
}
]
},
"pre": {
"nativeSrc": "3281:14:1",
"nodeType": "YulBlock",
"src": "3281:14:1",
"statements": [
{
"nativeSrc": "3283:10:1",
"nodeType": "YulVariableDeclaration",
"src": "3283:10:1",
"value": {
"kind": "number",
"nativeSrc": "3292:1:1",
"nodeType": "YulLiteral",
"src": "3292:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "3287:1:1",
"nodeType": "YulTypedName",
"src": "3287:1:1",
"type": ""
}
]
}
]
},
"src": "3277:284:1"
},
{
"nativeSrc": "3570:10:1",
"nodeType": "YulAssignment",
"src": "3570:10:1",
"value": {
"name": "pos",
"nativeSrc": "3577:3:1",
"nodeType": "YulIdentifier",
"src": "3577:3:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "3570:3:1",
"nodeType": "YulIdentifier",
"src": "3570:3:1"
}
]
}
]
},
"name": "abi_encode_t_array$_t_address_$dyn_memory_ptr_to_t_array$_t_address_$dyn_memory_ptr_fromStack",
"nativeSrc": "2854:732:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2957:5:1",
"nodeType": "YulTypedName",
"src": "2957:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "2964:3:1",
"nodeType": "YulTypedName",
"src": "2964:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "2973:3:1",
"nodeType": "YulTypedName",
"src": "2973:3:1",
"type": ""
}
],
"src": "2854:732:1"
},
{
"body": {
"nativeSrc": "3818:408:1",
"nodeType": "YulBlock",
"src": "3818:408:1",
"statements": [
{
"nativeSrc": "3828:26:1",
"nodeType": "YulAssignment",
"src": "3828:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "3840:9:1",
"nodeType": "YulIdentifier",
"src": "3840:9:1"
},
{
"kind": "number",
"nativeSrc": "3851:2:1",
"nodeType": "YulLiteral",
"src": "3851:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3836:3:1",
"nodeType": "YulIdentifier",
"src": "3836:3:1"
},
"nativeSrc": "3836:18:1",
"nodeType": "YulFunctionCall",
"src": "3836:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "3828:4:1",
"nodeType": "YulIdentifier",
"src": "3828:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3875:9:1",
"nodeType": "YulIdentifier",
"src": "3875:9:1"
},
{
"kind": "number",
"nativeSrc": "3886:1:1",
"nodeType": "YulLiteral",
"src": "3886:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3871:3:1",
"nodeType": "YulIdentifier",
"src": "3871:3:1"
},
"nativeSrc": "3871:17:1",
"nodeType": "YulFunctionCall",
"src": "3871:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "3894:4:1",
"nodeType": "YulIdentifier",
"src": "3894:4:1"
},
{
"name": "headStart",
"nativeSrc": "3900:9:1",
"nodeType": "YulIdentifier",
"src": "3900:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "3890:3:1",
"nodeType": "YulIdentifier",
"src": "3890:3:1"
},
"nativeSrc": "3890:20:1",
"nodeType": "YulFunctionCall",
"src": "3890:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3864:6:1",
"nodeType": "YulIdentifier",
"src": "3864:6:1"
},
"nativeSrc": "3864:47:1",
"nodeType": "YulFunctionCall",
"src": "3864:47:1"
},
"nativeSrc": "3864:47:1",
"nodeType": "YulExpressionStatement",
"src": "3864:47:1"
},
{
"nativeSrc": "3920:116:1",
"nodeType": "YulAssignment",
"src": "3920:116:1",
"value": {
"arguments": [
{
"name": "value0",
"nativeSrc": "4022:6:1",
"nodeType": "YulIdentifier",
"src": "4022:6:1"
},
{
"name": "tail",
"nativeSrc": "4031:4:1",
"nodeType": "YulIdentifier",
"src": "4031:4:1"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nativeSrc": "3928:93:1",
"nodeType": "YulIdentifier",
"src": "3928:93:1"
},
"nativeSrc": "3928:108:1",
"nodeType": "YulFunctionCall",
"src": "3928:108:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "3920:4:1",
"nodeType": "YulIdentifier",
"src": "3920:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4057:9:1",
"nodeType": "YulIdentifier",
"src": "4057:9:1"
},
{
"kind": "number",
"nativeSrc": "4068:2:1",
"nodeType": "YulLiteral",
"src": "4068:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4053:3:1",
"nodeType": "YulIdentifier",
"src": "4053:3:1"
},
"nativeSrc": "4053:18:1",
"nodeType": "YulFunctionCall",
"src": "4053:18:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "4077:4:1",
"nodeType": "YulIdentifier",
"src": "4077:4:1"
},
{
"name": "headStart",
"nativeSrc": "4083:9:1",
"nodeType": "YulIdentifier",
"src": "4083:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "4073:3:1",
"nodeType": "YulIdentifier",
"src": "4073:3:1"
},
"nativeSrc": "4073:20:1",
"nodeType": "YulFunctionCall",
"src": "4073:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "4046:6:1",
"nodeType": "YulIdentifier",
"src": "4046:6:1"
},
"nativeSrc": "4046:48:1",
"nodeType": "YulFunctionCall",
"src": "4046:48:1"
},
"nativeSrc": "4046:48:1",
"nodeType": "YulExpressionStatement",
"src": "4046:48:1"
},
{
"nativeSrc": "4103:116:1",
"nodeType": "YulAssignment",
"src": "4103:116:1",
"value": {
"arguments": [
{
"name": "value1",
"nativeSrc": "4205:6:1",
"nodeType": "YulIdentifier",
"src": "4205:6:1"
},
{
"name": "tail",
"nativeSrc": "4214:4:1",
"nodeType": "YulIdentifier",
"src": "4214:4:1"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_address_$dyn_memory_ptr_to_t_array$_t_address_$dyn_memory_ptr_fromStack",
"nativeSrc": "4111:93:1",
"nodeType": "YulIdentifier",
"src": "4111:93:1"
},
"nativeSrc": "4111:108:1",
"nodeType": "YulFunctionCall",
"src": "4111:108:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "4103:4:1",
"nodeType": "YulIdentifier",
"src": "4103:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_address_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_address_$dyn_memory_ptr__fromStack_reversed",
"nativeSrc": "3592:634:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3782:9:1",
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

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