ETH Price: $2,278.69 (+1.55%)

Token

Seals and Eels (SEALSANDEELS)
 

Overview

Max Total Supply

1,035 SEALSANDEELS

Holders

76

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ronakd.eth
Balance
1 SEALSANDEELS
0x262e6fa1CF63768C3C59D30b5A831795D22a716E
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SealsAndEels

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-09
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @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);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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);
}

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: contracts/SealsAndEels.sol


/*
 ____             _                       _   _____     _     
/ ___|  ___  __ _| |___    __ _ _ __   __| | | ____|___| |___ 
\___ \ / _ \/ _` | / __|  / _` | '_ \ / _` | |  _| / _ \ / __|
 ___) |  __/ (_| | \__ \ | (_| | | | | (_| | | |__|  __/ \__ \
|____/ \___|\__,_|_|___/  \__,_|_| |_|\__,_| |_____\___|_|___/ by @mindrash

Special thanks:
- Steve Rinella and krose for the inspiration
- NFT.Storage for the pins
- Matplotlib - data can be beautiful and meaningful
- Chiru Labs, Openzeppelin
*/
pragma solidity >=0.8.12 <0.9.0;




contract SealsAndEels is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;
  uint constant public supply = 13333;
  string[supply] public sealOrEel;
  string constant private seal = "seal";
  string constant private eel = "eel";
  string constant private badWeather = "bw-";
  string constant private specialWeather = "sp-";
  bool public sealHasBadWeather = false;
  bool public eelHasBadWeather = false;
  bool public sealHasSpecialWeather = false;
  bool public eelHasSpecialWeather = false;
  uint8 public badWeatherThreshold = 100;
  uint8 public specialWeatherThreshold = 100;
  uint public sealCounter = 0;
  uint public eelCounter = 0;
  string private uriPrefix;
  string private uriSuffix = ".json";
  string private hiddenMetadataUri;
  uint public cost;
  uint public maxSupply;
  bool private paused = true;
  bool private revealed = true;

  constructor() ERC721A("Seals and Eels", "SEALSANDEELS"){
    cost = 0;
    maxSupply = supply;
    hiddenMetadataUri = "";
    uriPrefix = "ipfs://bafybeiaki2zqikpdn2b4qp6w4tsnbbv6pwbii33udx77bbvhnqx3nyxzia/";
  }

  function getHour(uint timestamp) internal pure returns (uint8) {
    return uint8((timestamp / 60 / 60) % 24);
  }

  function makeSealOrEel(uint256 _mintAmount) internal {
    uint currentHour = getHour(block.timestamp);   
    string memory _sealOrEel = currentHour % 2 == 0 ? seal : eel;
    string[supply] storage _soe = sealOrEel;
    uint _indexIncrement = 1;

    for (uint i = 0; i < _mintAmount; i++){
      string memory sealOrEelType = _sealOrEel;

      if (keccak256(abi.encodePacked(_sealOrEel)) == keccak256(abi.encodePacked(seal))){
        sealCounter++;
        eelCounter = 0;
      
        if (sealHasSpecialWeather){
          sealOrEelType = string.concat(specialWeather, _sealOrEel);
          sealHasSpecialWeather = false;
        } else if (sealHasBadWeather) {
          sealOrEelType = string.concat(badWeather, _sealOrEel);
          sealHasBadWeather = false;
        }

        if (sealCounter % badWeatherThreshold == 0){
          eelHasBadWeather = true;
        }

        if (sealCounter % specialWeatherThreshold == 0){
          sealHasSpecialWeather = true;
        }
      } else {
        eelCounter++;
        sealCounter = 0;    

        if (eelHasSpecialWeather){
          sealOrEelType = string.concat(specialWeather, _sealOrEel);
          eelHasSpecialWeather = false;
        } else if (eelHasBadWeather) {
          sealOrEelType = string.concat(badWeather, _sealOrEel);
          eelHasBadWeather = false;
        }

        if (eelCounter % badWeatherThreshold == 0){
          sealHasBadWeather = true;
        }

        if (eelCounter % specialWeatherThreshold == 0){
          eelHasSpecialWeather = true;
        }
      }

      _soe[_currentIndex - _indexIncrement] = sealOrEelType;
      _indexIncrement++;
    }
  }

  function _baseURI() internal view virtual override returns (string memory){
    return uriPrefix;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount){
    require(!paused, "Minting is paused.");
    _safeMint(_msgSender(), _mintAmount);
    makeSealOrEel(_mintAmount);
  }
 
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
    makeSealOrEel(_mintAmount);
  }

  function _startTokenId() internal view virtual override returns (uint256){
    return 1;
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory){
    require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

    if (revealed == false){
      return hiddenMetadataUri;
    }
    string memory currentBaseURI = _baseURI();
    string memory soe = sealOrEel[_tokenId];

    currentBaseURI = string.concat(currentBaseURI, soe);

    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, string.concat("-", _tokenId.toString()), uriSuffix))
        : '';
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setBadWeatherThreshold(uint8 _badWeatherThreshold) public onlyOwner {
    badWeatherThreshold = _badWeatherThreshold;
  }

  function setSpecialWeatherThreshold(uint8 _specialWeatherThreshold) public onlyOwner {
    specialWeatherThreshold = _specialWeatherThreshold;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }

  modifier mintCompliance(uint256 _mintAmount){
    require(_mintAmount > 0, "Invalid mint amount.");
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded.");
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount){
    require(msg.value >= cost * _mintAmount, "Insufficient funds.");
    _;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"badWeatherThreshold","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eelCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eelHasBadWeather","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eelHasSpecialWeather","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sealCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sealHasBadWeather","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sealHasSpecialWeather","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"sealOrEel","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_badWeatherThreshold","type":"uint8"}],"name":"setBadWeatherThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_specialWeatherThreshold","type":"uint8"}],"name":"setSpecialWeatherThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"specialWeatherThreshold","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61341f805465ffffffffffff19166564640000000017905560006134208190556134215560c06040526005608090815264173539b7b760d91b60a052613423906200004b908262000244565b50613427805461ffff19166101011790553480156200006957600080fd5b506040518060400160405280600e81526020016d5365616c7320616e642045656c7360901b8152506040518060400160405280600c81526020016b5345414c53414e4445454c5360a01b8152508160029081620000c7919062000244565b506003620000d6828262000244565b5050600160005550620000e9336200014d565b60016009556000613425819055613415613426556040805160208101909152908152613424906200011b908262000244565b5060405180608001604052806043815260200162002880604391396134229062000146908262000244565b5062000310565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001ca57607f821691505b602082108103620001eb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023f57600081815260208120601f850160051c810160208610156200021a5750805b601f850160051c820191505b818110156200023b5782815560010162000226565b5050505b505050565b81516001600160401b038111156200026057620002606200019f565b6200027881620002718454620001b5565b84620001f1565b602080601f831160018114620002b05760008415620002975750858301515b600019600386901b1c1916600185901b1785556200023b565b600085815260208120601f198616915b82811015620002e157888601518255948401946001909101908401620002c0565b5085821015620003005787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61256080620003206000396000f3fe60806040526004361061023b5760003560e01c80634fdd43cb1161012e578063a0712d68116100ab578063d5c613fa1161006f578063d5c613fa14610691578063e0a80853146106b3578063e985e9c5146106d3578063efbd73f41461071c578063f2fde38b1461073c57600080fd5b8063a0712d6814610607578063a22cb4651461061a578063b88d4fde1461063a578063c87b56dd1461065a578063d5abeb011461067a57600080fd5b8063715018a6116100f2578063715018a6146105845780637ec4a659146105995780638d36c4f2146105b95780638da5cb5b146105d457806395d89b41146105f257600080fd5b80634fdd43cb146104e4578063541411ec146105045780636352211e1461052457806367600d381461054457806370a082311461056457600080fd5b806323b872dd116101bc5780634253fa2f116101805780634253fa2f1461044c57806342842e0e1461046c57806344a0d68a1461048c5780634ca6e9a1146104ac5780634f5690cb146104c357600080fd5b806323b872dd146103be5780632d9353b3146103de5780633b927f3b146104005780633ccfd60b1461042057806341e16a8b1461043557600080fd5b806313faede61161020357806313faede61461031557806316949ca91461032c57806316ba10e01461036157806316c38b3c1461038157806318160ddd146103a157600080fd5b806301ffc9a714610240578063047fc9aa1461027557806306fdde0314610299578063081812fc146102bb578063095ea7b3146102f3575b600080fd5b34801561024c57600080fd5b5061026061025b366004611e47565b61075c565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028b61341581565b60405190815260200161026c565b3480156102a557600080fd5b506102ae6107ae565b60405161026c9190611ec3565b3480156102c757600080fd5b506102db6102d6366004611ed6565b610840565b6040516001600160a01b03909116815260200161026c565b3480156102ff57600080fd5b5061031361030e366004611f0b565b610884565b005b34801561032157600080fd5b5061028b6134255481565b34801561033857600080fd5b5061341f5461034f90640100000000900460ff1681565b60405160ff909116815260200161026c565b34801561036d57600080fd5b5061031361037c366004611fc1565b610911565b34801561038d57600080fd5b5061031361039c36600461201a565b61092a565b3480156103ad57600080fd5b50600154600054036000190161028b565b3480156103ca57600080fd5b506103136103d9366004612035565b610946565b3480156103ea57600080fd5b5061341f54610260906301000000900460ff1681565b34801561040c57600080fd5b506102ae61041b366004611ed6565b610951565b34801561042c57600080fd5b506103136109f2565b34801561044157600080fd5b5061028b6134205481565b34801561045857600080fd5b50610313610467366004612071565b610acf565b34801561047857600080fd5b50610313610487366004612035565b610afa565b34801561049857600080fd5b506103136104a7366004611ed6565b610b15565b3480156104b857600080fd5b5061028b6134215481565b3480156104cf57600080fd5b5061341f546102609062010000900460ff1681565b3480156104f057600080fd5b506103136104ff366004611fc1565b610b23565b34801561051057600080fd5b5061031361051f366004612071565b610b38565b34801561053057600080fd5b506102db61053f366004611ed6565b610b63565b34801561055057600080fd5b5061341f5461026090610100900460ff1681565b34801561057057600080fd5b5061028b61057f366004612094565b610b75565b34801561059057600080fd5b50610313610bc4565b3480156105a557600080fd5b506103136105b4366004611fc1565b610bd8565b3480156105c557600080fd5b5061341f546102609060ff1681565b3480156105e057600080fd5b506008546001600160a01b03166102db565b3480156105fe57600080fd5b506102ae610bed565b610313610615366004611ed6565b610bfc565b34801561062657600080fd5b506103136106353660046120af565b610d56565b34801561064657600080fd5b506103136106553660046120e2565b610deb565b34801561066657600080fd5b506102ae610675366004611ed6565b610e3c565b34801561068657600080fd5b5061028b6134265481565b34801561069d57600080fd5b5061341f5461034f90600160281b900460ff1681565b3480156106bf57600080fd5b506103136106ce36600461201a565b611097565b3480156106df57600080fd5b506102606106ee36600461215e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561072857600080fd5b50610313610737366004612188565b6110ba565b34801561074857600080fd5b50610313610757366004612094565b611175565b60006001600160e01b031982166380ac58cd60e01b148061078d57506001600160e01b03198216635b5e139f60e01b145b806107a857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107bd906121ab565b80601f01602080910402602001604051908101604052809291908181526020018280546107e9906121ab565b80156108365780601f1061080b57610100808354040283529160200191610836565b820191906000526020600020905b81548152906001019060200180831161081957829003601f168201915b5050505050905090565b600061084b826111ee565b610868576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061088f82610b63565b9050806001600160a01b0316836001600160a01b0316036108c35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108e357506108e181336106ee565b155b15610901576040516367d9dca160e11b815260040160405180910390fd5b61090c838383611227565b505050565b610919611283565b613423610926828261222b565b5050565b610932611283565b613427805460ff1916911515919091179055565b61090c8383836112dd565b600a81613415811061096257600080fd5b018054909150610971906121ab565b80601f016020809104026020016040519081016040528092919081815260200182805461099d906121ab565b80156109ea5780601f106109bf576101008083540402835291602001916109ea565b820191906000526020600020905b8154815290600101906020018083116109cd57829003601f168201915b505050505081565b6109fa611283565b600260095403610a515760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026009556000610a6a6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ab4576040519150601f19603f3d011682016040523d82523d6000602084013e610ab9565b606091505b5050905080610ac757600080fd5b506001600955565b610ad7611283565b61341f805460ff9092166401000000000264ff0000000019909216919091179055565b61090c83838360405180602001604052806000815250610deb565b610b1d611283565b61342555565b610b2b611283565b613424610926828261222b565b610b40611283565b61341f805460ff909216600160281b0265ff000000000019909216919091179055565b6000610b6e826114cd565b5192915050565b60006001600160a01b038216610b9e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610bcc611283565b610bd660006115f6565b565b610be0611283565b613422610926828261222b565b6060600380546107bd906121ab565b8060008111610c445760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b6044820152606401610a48565b613426546001546000548391900360001901610c609190612301565b1115610ca55760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b6044820152606401610a48565b818061342554610cb59190612319565b341015610cfa5760405162461bcd60e51b815260206004820152601360248201527224b739bab33334b1b4b2b73a10333ab732399760691b6044820152606401610a48565b6134275460ff1615610d435760405162461bcd60e51b815260206004820152601260248201527126b4b73a34b7339034b9903830bab9b2b21760711b6044820152606401610a48565b610d4d3384611648565b61090c83611662565b336001600160a01b03831603610d7f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610df68484846112dd565b6001600160a01b0383163b15158015610e185750610e1684848484611a32565b155b15610e36576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e47826111ee565b610eab5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a48565b61342754610100900460ff161515600003610f53576134248054610ece906121ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa906121ab565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b50505050509050919050565b6000610f5d611b1d565b90506000600a846134158110610f7557610f75612338565b018054610f81906121ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610fad906121ab565b8015610ffa5780601f10610fcf57610100808354040283529160200191610ffa565b820191906000526020600020905b815481529060010190602001808311610fdd57829003601f168201915b50505050509050818160405160200161101492919061234e565b60405160208183030381529060405291506000825111611043576040518060200160405280600081525061108f565b8161104d85611b2d565b60405160200161105d919061237d565b60408051601f198184030181529082905261107f9291613423906020016123a6565b6040516020818303038152906040525b949350505050565b61109f611283565b61342780549115156101000261ff0019909216919091179055565b81600081116111025760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b6044820152606401610a48565b61342654600154600054839190036000190161111e9190612301565b11156111635760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b6044820152606401610a48565b61116b611283565b610d4d8284611648565b61117d611283565b6001600160a01b0381166111e25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a48565b6111eb816115f6565b50565b600081600111158015611202575060005482105b80156107a8575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610bd65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a48565b60006112e8826114cd565b9050836001600160a01b031681600001516001600160a01b03161461131f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061133d575061133d85336106ee565b8061135857503361134d84610840565b6001600160a01b0316145b90508061137857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661139f57604051633a954ecd60e21b815260040160405180910390fd5b6113ab60008487611227565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611481576000548214611481578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156114fd575060005481105b156115dd57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115db5780516001600160a01b031615611571579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115d6579392505050565b611571565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610926828260405180602001604052806000815250611c2e565b600061166d42611c3b565b60ff169050600061167f60028361245c565b156116a5576040518060400160405280600381526020016219595b60ea1b8152506116c3565b604051806040016040528060048152602001631cd9585b60e21b8152505b9050600a600160005b85811015611a2a576000849050604051806040016040528060048152602001631cd9585b60e21b8152506040516020016117069190612470565b604051602081830303815290604052805190602001208560405160200161172d9190612470565b60405160208183030381529060405280519060200120036118905761342080549060006117598361248c565b909155505060006134215561341f5462010000900460ff16156117c8576040518060400160405280600381526020016273702d60e81b815250856040516020016117a492919061234e565b60408051601f1981840301815291905261341f805462ff0000191690559050611820565b61341f5460ff1615611820576040518060400160405280600381526020016262772d60e81b8152508560405160200161180292919061234e565b60408051601f1981840301815291905261341f805460ff1916905590505b61341f546134205461183d91640100000000900460ff169061245c565b6000036118555761341f805461ff0019166101001790555b61341f546134205461187191600160281b900460ff169061245c565b60000361188b5761341f805462ff00001916620100001790555b6119db565b61342180549060006118a18361248c565b909155505060006134205561341f546301000000900460ff1615611912576040518060400160405280600381526020016273702d60e81b815250856040516020016118ed92919061234e565b60408051601f1981840301815291905261341f805463ff000000191690559050611970565b61341f54610100900460ff1615611970576040518060400160405280600381526020016262772d60e81b8152508560405160200161195192919061234e565b60408051601f1981840301815291905261341f805461ff001916905590505b61341f546134215461198d91640100000000900460ff169061245c565b6000036119a35761341f805460ff191660011790555b61341f54613421546119bf91600160281b900460ff169061245c565b6000036119db5761341f805463ff000000191663010000001790555b8084846000546119eb91906124a5565b61341581106119fc576119fc612338565b0190611a08908261222b565b5082611a138161248c565b935050508080611a229061248c565b9150506116cc565b505050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a679033908990889088906004016124bc565b6020604051808303816000875af1925050508015611aa2575060408051601f3d908101601f19168201909252611a9f918101906124f9565b60015b611b00573d808015611ad0576040519150601f19603f3d011682016040523d82523d6000602084013e611ad5565b606091505b508051600003611af8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606061342280546107bd906121ab565b606081600003611b545750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b7e5780611b688161248c565b9150611b779050600a83612516565b9150611b58565b60008167ffffffffffffffff811115611b9957611b99611f35565b6040519080825280601f01601f191660200182016040528015611bc3576020820181803683370190505b5090505b841561108f57611bd86001836124a5565b9150611be5600a8661245c565b611bf0906030612301565b60f81b818381518110611c0557611c05612338565b60200101906001600160f81b031916908160001a905350611c27600a86612516565b9450611bc7565b61090c8383836001611c5f565b60006018603c611c4b8185612516565b611c559190612516565b6107a8919061245c565b6000546001600160a01b038516611c8857604051622e076360e81b815260040160405180910390fd5b83600003611ca95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d5b57506001600160a01b0387163b15155b15611de3575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611dac6000888480600101955088611a32565b611dc9576040516368d2bf6b60e11b815260040160405180910390fd5b808203611d61578260005414611dde57600080fd5b611e28565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611de4575b506000556114c6565b6001600160e01b0319811681146111eb57600080fd5b600060208284031215611e5957600080fd5b8135611e6481611e31565b9392505050565b60005b83811015611e86578181015183820152602001611e6e565b83811115610e365750506000910152565b60008151808452611eaf816020860160208601611e6b565b601f01601f19169290920160200192915050565b602081526000611e646020830184611e97565b600060208284031215611ee857600080fd5b5035919050565b80356001600160a01b0381168114611f0657600080fd5b919050565b60008060408385031215611f1e57600080fd5b611f2783611eef565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f6657611f66611f35565b604051601f8501601f19908116603f01168101908282118183101715611f8e57611f8e611f35565b81604052809350858152868686011115611fa757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fd357600080fd5b813567ffffffffffffffff811115611fea57600080fd5b8201601f81018413611ffb57600080fd5b61108f84823560208401611f4b565b80358015158114611f0657600080fd5b60006020828403121561202c57600080fd5b611e648261200a565b60008060006060848603121561204a57600080fd5b61205384611eef565b925061206160208501611eef565b9150604084013590509250925092565b60006020828403121561208357600080fd5b813560ff81168114611e6457600080fd5b6000602082840312156120a657600080fd5b611e6482611eef565b600080604083850312156120c257600080fd5b6120cb83611eef565b91506120d96020840161200a565b90509250929050565b600080600080608085870312156120f857600080fd5b61210185611eef565b935061210f60208601611eef565b925060408501359150606085013567ffffffffffffffff81111561213257600080fd5b8501601f8101871361214357600080fd5b61215287823560208401611f4b565b91505092959194509250565b6000806040838503121561217157600080fd5b61217a83611eef565b91506120d960208401611eef565b6000806040838503121561219b57600080fd5b823591506120d960208401611eef565b600181811c908216806121bf57607f821691505b6020821081036121df57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561090c57600081815260208120601f850160051c8101602086101561220c5750805b601f850160051c820191505b81811015611a2a57828155600101612218565b815167ffffffffffffffff81111561224557612245611f35565b6122598161225384546121ab565b846121e5565b602080601f83116001811461228e57600084156122765750858301515b600019600386901b1c1916600185901b178555611a2a565b600085815260208120601f198616915b828110156122bd5788860151825594840194600190910190840161229e565b50858210156122db5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60008219821115612314576123146122eb565b500190565b6000816000190483118215151615612333576123336122eb565b500290565b634e487b7160e01b600052603260045260246000fd5b60008351612360818460208801611e6b565b835190830190612374818360208801611e6b565b01949350505050565b602d60f81b815260008251612399816001850160208701611e6b565b9190910160010192915050565b6000845160206123b98285838a01611e6b565b8551918401916123cc8184848a01611e6b565b85549201916000906123dd816121ab565b600182811680156123f5576001811461240a57612436565b60ff1984168752821515830287019450612436565b896000528560002060005b8481101561242e57815489820152908301908701612415565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052601260045260246000fd5b60008261246b5761246b612446565b500690565b60008251612482818460208701611e6b565b9190910192915050565b60006001820161249e5761249e6122eb565b5060010190565b6000828210156124b7576124b76122eb565b500390565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124ef90830184611e97565b9695505050505050565b60006020828403121561250b57600080fd5b8151611e6481611e31565b60008261252557612525612446565b50049056fea2646970667358221220c08018e598db604b4113c6bc979b4924d89f4c357456bd31bbf620f0eee2497e64736f6c634300080f0033697066733a2f2f62616679626569616b69327a71696b70646e326234717036773474736e62627636707762696933337564783737626276686e7178336e79787a69612f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80634fdd43cb1161012e578063a0712d68116100ab578063d5c613fa1161006f578063d5c613fa14610691578063e0a80853146106b3578063e985e9c5146106d3578063efbd73f41461071c578063f2fde38b1461073c57600080fd5b8063a0712d6814610607578063a22cb4651461061a578063b88d4fde1461063a578063c87b56dd1461065a578063d5abeb011461067a57600080fd5b8063715018a6116100f2578063715018a6146105845780637ec4a659146105995780638d36c4f2146105b95780638da5cb5b146105d457806395d89b41146105f257600080fd5b80634fdd43cb146104e4578063541411ec146105045780636352211e1461052457806367600d381461054457806370a082311461056457600080fd5b806323b872dd116101bc5780634253fa2f116101805780634253fa2f1461044c57806342842e0e1461046c57806344a0d68a1461048c5780634ca6e9a1146104ac5780634f5690cb146104c357600080fd5b806323b872dd146103be5780632d9353b3146103de5780633b927f3b146104005780633ccfd60b1461042057806341e16a8b1461043557600080fd5b806313faede61161020357806313faede61461031557806316949ca91461032c57806316ba10e01461036157806316c38b3c1461038157806318160ddd146103a157600080fd5b806301ffc9a714610240578063047fc9aa1461027557806306fdde0314610299578063081812fc146102bb578063095ea7b3146102f3575b600080fd5b34801561024c57600080fd5b5061026061025b366004611e47565b61075c565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028b61341581565b60405190815260200161026c565b3480156102a557600080fd5b506102ae6107ae565b60405161026c9190611ec3565b3480156102c757600080fd5b506102db6102d6366004611ed6565b610840565b6040516001600160a01b03909116815260200161026c565b3480156102ff57600080fd5b5061031361030e366004611f0b565b610884565b005b34801561032157600080fd5b5061028b6134255481565b34801561033857600080fd5b5061341f5461034f90640100000000900460ff1681565b60405160ff909116815260200161026c565b34801561036d57600080fd5b5061031361037c366004611fc1565b610911565b34801561038d57600080fd5b5061031361039c36600461201a565b61092a565b3480156103ad57600080fd5b50600154600054036000190161028b565b3480156103ca57600080fd5b506103136103d9366004612035565b610946565b3480156103ea57600080fd5b5061341f54610260906301000000900460ff1681565b34801561040c57600080fd5b506102ae61041b366004611ed6565b610951565b34801561042c57600080fd5b506103136109f2565b34801561044157600080fd5b5061028b6134205481565b34801561045857600080fd5b50610313610467366004612071565b610acf565b34801561047857600080fd5b50610313610487366004612035565b610afa565b34801561049857600080fd5b506103136104a7366004611ed6565b610b15565b3480156104b857600080fd5b5061028b6134215481565b3480156104cf57600080fd5b5061341f546102609062010000900460ff1681565b3480156104f057600080fd5b506103136104ff366004611fc1565b610b23565b34801561051057600080fd5b5061031361051f366004612071565b610b38565b34801561053057600080fd5b506102db61053f366004611ed6565b610b63565b34801561055057600080fd5b5061341f5461026090610100900460ff1681565b34801561057057600080fd5b5061028b61057f366004612094565b610b75565b34801561059057600080fd5b50610313610bc4565b3480156105a557600080fd5b506103136105b4366004611fc1565b610bd8565b3480156105c557600080fd5b5061341f546102609060ff1681565b3480156105e057600080fd5b506008546001600160a01b03166102db565b3480156105fe57600080fd5b506102ae610bed565b610313610615366004611ed6565b610bfc565b34801561062657600080fd5b506103136106353660046120af565b610d56565b34801561064657600080fd5b506103136106553660046120e2565b610deb565b34801561066657600080fd5b506102ae610675366004611ed6565b610e3c565b34801561068657600080fd5b5061028b6134265481565b34801561069d57600080fd5b5061341f5461034f90600160281b900460ff1681565b3480156106bf57600080fd5b506103136106ce36600461201a565b611097565b3480156106df57600080fd5b506102606106ee36600461215e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561072857600080fd5b50610313610737366004612188565b6110ba565b34801561074857600080fd5b50610313610757366004612094565b611175565b60006001600160e01b031982166380ac58cd60e01b148061078d57506001600160e01b03198216635b5e139f60e01b145b806107a857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107bd906121ab565b80601f01602080910402602001604051908101604052809291908181526020018280546107e9906121ab565b80156108365780601f1061080b57610100808354040283529160200191610836565b820191906000526020600020905b81548152906001019060200180831161081957829003601f168201915b5050505050905090565b600061084b826111ee565b610868576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061088f82610b63565b9050806001600160a01b0316836001600160a01b0316036108c35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108e357506108e181336106ee565b155b15610901576040516367d9dca160e11b815260040160405180910390fd5b61090c838383611227565b505050565b610919611283565b613423610926828261222b565b5050565b610932611283565b613427805460ff1916911515919091179055565b61090c8383836112dd565b600a81613415811061096257600080fd5b018054909150610971906121ab565b80601f016020809104026020016040519081016040528092919081815260200182805461099d906121ab565b80156109ea5780601f106109bf576101008083540402835291602001916109ea565b820191906000526020600020905b8154815290600101906020018083116109cd57829003601f168201915b505050505081565b6109fa611283565b600260095403610a515760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026009556000610a6a6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ab4576040519150601f19603f3d011682016040523d82523d6000602084013e610ab9565b606091505b5050905080610ac757600080fd5b506001600955565b610ad7611283565b61341f805460ff9092166401000000000264ff0000000019909216919091179055565b61090c83838360405180602001604052806000815250610deb565b610b1d611283565b61342555565b610b2b611283565b613424610926828261222b565b610b40611283565b61341f805460ff909216600160281b0265ff000000000019909216919091179055565b6000610b6e826114cd565b5192915050565b60006001600160a01b038216610b9e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610bcc611283565b610bd660006115f6565b565b610be0611283565b613422610926828261222b565b6060600380546107bd906121ab565b8060008111610c445760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b6044820152606401610a48565b613426546001546000548391900360001901610c609190612301565b1115610ca55760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b6044820152606401610a48565b818061342554610cb59190612319565b341015610cfa5760405162461bcd60e51b815260206004820152601360248201527224b739bab33334b1b4b2b73a10333ab732399760691b6044820152606401610a48565b6134275460ff1615610d435760405162461bcd60e51b815260206004820152601260248201527126b4b73a34b7339034b9903830bab9b2b21760711b6044820152606401610a48565b610d4d3384611648565b61090c83611662565b336001600160a01b03831603610d7f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610df68484846112dd565b6001600160a01b0383163b15158015610e185750610e1684848484611a32565b155b15610e36576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e47826111ee565b610eab5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a48565b61342754610100900460ff161515600003610f53576134248054610ece906121ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa906121ab565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b50505050509050919050565b6000610f5d611b1d565b90506000600a846134158110610f7557610f75612338565b018054610f81906121ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610fad906121ab565b8015610ffa5780601f10610fcf57610100808354040283529160200191610ffa565b820191906000526020600020905b815481529060010190602001808311610fdd57829003601f168201915b50505050509050818160405160200161101492919061234e565b60405160208183030381529060405291506000825111611043576040518060200160405280600081525061108f565b8161104d85611b2d565b60405160200161105d919061237d565b60408051601f198184030181529082905261107f9291613423906020016123a6565b6040516020818303038152906040525b949350505050565b61109f611283565b61342780549115156101000261ff0019909216919091179055565b81600081116111025760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b6044820152606401610a48565b61342654600154600054839190036000190161111e9190612301565b11156111635760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b6044820152606401610a48565b61116b611283565b610d4d8284611648565b61117d611283565b6001600160a01b0381166111e25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a48565b6111eb816115f6565b50565b600081600111158015611202575060005482105b80156107a8575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610bd65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a48565b60006112e8826114cd565b9050836001600160a01b031681600001516001600160a01b03161461131f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061133d575061133d85336106ee565b8061135857503361134d84610840565b6001600160a01b0316145b90508061137857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661139f57604051633a954ecd60e21b815260040160405180910390fd5b6113ab60008487611227565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611481576000548214611481578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156114fd575060005481105b156115dd57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115db5780516001600160a01b031615611571579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115d6579392505050565b611571565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610926828260405180602001604052806000815250611c2e565b600061166d42611c3b565b60ff169050600061167f60028361245c565b156116a5576040518060400160405280600381526020016219595b60ea1b8152506116c3565b604051806040016040528060048152602001631cd9585b60e21b8152505b9050600a600160005b85811015611a2a576000849050604051806040016040528060048152602001631cd9585b60e21b8152506040516020016117069190612470565b604051602081830303815290604052805190602001208560405160200161172d9190612470565b60405160208183030381529060405280519060200120036118905761342080549060006117598361248c565b909155505060006134215561341f5462010000900460ff16156117c8576040518060400160405280600381526020016273702d60e81b815250856040516020016117a492919061234e565b60408051601f1981840301815291905261341f805462ff0000191690559050611820565b61341f5460ff1615611820576040518060400160405280600381526020016262772d60e81b8152508560405160200161180292919061234e565b60408051601f1981840301815291905261341f805460ff1916905590505b61341f546134205461183d91640100000000900460ff169061245c565b6000036118555761341f805461ff0019166101001790555b61341f546134205461187191600160281b900460ff169061245c565b60000361188b5761341f805462ff00001916620100001790555b6119db565b61342180549060006118a18361248c565b909155505060006134205561341f546301000000900460ff1615611912576040518060400160405280600381526020016273702d60e81b815250856040516020016118ed92919061234e565b60408051601f1981840301815291905261341f805463ff000000191690559050611970565b61341f54610100900460ff1615611970576040518060400160405280600381526020016262772d60e81b8152508560405160200161195192919061234e565b60408051601f1981840301815291905261341f805461ff001916905590505b61341f546134215461198d91640100000000900460ff169061245c565b6000036119a35761341f805460ff191660011790555b61341f54613421546119bf91600160281b900460ff169061245c565b6000036119db5761341f805463ff000000191663010000001790555b8084846000546119eb91906124a5565b61341581106119fc576119fc612338565b0190611a08908261222b565b5082611a138161248c565b935050508080611a229061248c565b9150506116cc565b505050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a679033908990889088906004016124bc565b6020604051808303816000875af1925050508015611aa2575060408051601f3d908101601f19168201909252611a9f918101906124f9565b60015b611b00573d808015611ad0576040519150601f19603f3d011682016040523d82523d6000602084013e611ad5565b606091505b508051600003611af8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606061342280546107bd906121ab565b606081600003611b545750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b7e5780611b688161248c565b9150611b779050600a83612516565b9150611b58565b60008167ffffffffffffffff811115611b9957611b99611f35565b6040519080825280601f01601f191660200182016040528015611bc3576020820181803683370190505b5090505b841561108f57611bd86001836124a5565b9150611be5600a8661245c565b611bf0906030612301565b60f81b818381518110611c0557611c05612338565b60200101906001600160f81b031916908160001a905350611c27600a86612516565b9450611bc7565b61090c8383836001611c5f565b60006018603c611c4b8185612516565b611c559190612516565b6107a8919061245c565b6000546001600160a01b038516611c8857604051622e076360e81b815260040160405180910390fd5b83600003611ca95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d5b57506001600160a01b0387163b15155b15611de3575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611dac6000888480600101955088611a32565b611dc9576040516368d2bf6b60e11b815260040160405180910390fd5b808203611d61578260005414611dde57600080fd5b611e28565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611de4575b506000556114c6565b6001600160e01b0319811681146111eb57600080fd5b600060208284031215611e5957600080fd5b8135611e6481611e31565b9392505050565b60005b83811015611e86578181015183820152602001611e6e565b83811115610e365750506000910152565b60008151808452611eaf816020860160208601611e6b565b601f01601f19169290920160200192915050565b602081526000611e646020830184611e97565b600060208284031215611ee857600080fd5b5035919050565b80356001600160a01b0381168114611f0657600080fd5b919050565b60008060408385031215611f1e57600080fd5b611f2783611eef565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f6657611f66611f35565b604051601f8501601f19908116603f01168101908282118183101715611f8e57611f8e611f35565b81604052809350858152868686011115611fa757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fd357600080fd5b813567ffffffffffffffff811115611fea57600080fd5b8201601f81018413611ffb57600080fd5b61108f84823560208401611f4b565b80358015158114611f0657600080fd5b60006020828403121561202c57600080fd5b611e648261200a565b60008060006060848603121561204a57600080fd5b61205384611eef565b925061206160208501611eef565b9150604084013590509250925092565b60006020828403121561208357600080fd5b813560ff81168114611e6457600080fd5b6000602082840312156120a657600080fd5b611e6482611eef565b600080604083850312156120c257600080fd5b6120cb83611eef565b91506120d96020840161200a565b90509250929050565b600080600080608085870312156120f857600080fd5b61210185611eef565b935061210f60208601611eef565b925060408501359150606085013567ffffffffffffffff81111561213257600080fd5b8501601f8101871361214357600080fd5b61215287823560208401611f4b565b91505092959194509250565b6000806040838503121561217157600080fd5b61217a83611eef565b91506120d960208401611eef565b6000806040838503121561219b57600080fd5b823591506120d960208401611eef565b600181811c908216806121bf57607f821691505b6020821081036121df57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561090c57600081815260208120601f850160051c8101602086101561220c5750805b601f850160051c820191505b81811015611a2a57828155600101612218565b815167ffffffffffffffff81111561224557612245611f35565b6122598161225384546121ab565b846121e5565b602080601f83116001811461228e57600084156122765750858301515b600019600386901b1c1916600185901b178555611a2a565b600085815260208120601f198616915b828110156122bd5788860151825594840194600190910190840161229e565b50858210156122db5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60008219821115612314576123146122eb565b500190565b6000816000190483118215151615612333576123336122eb565b500290565b634e487b7160e01b600052603260045260246000fd5b60008351612360818460208801611e6b565b835190830190612374818360208801611e6b565b01949350505050565b602d60f81b815260008251612399816001850160208701611e6b565b9190910160010192915050565b6000845160206123b98285838a01611e6b565b8551918401916123cc8184848a01611e6b565b85549201916000906123dd816121ab565b600182811680156123f5576001811461240a57612436565b60ff1984168752821515830287019450612436565b896000528560002060005b8481101561242e57815489820152908301908701612415565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052601260045260246000fd5b60008261246b5761246b612446565b500690565b60008251612482818460208701611e6b565b9190910192915050565b60006001820161249e5761249e6122eb565b5060010190565b6000828210156124b7576124b76122eb565b500390565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124ef90830184611e97565b9695505050505050565b60006020828403121561250b57600080fd5b8151611e6481611e31565b60008261252557612525612446565b50049056fea2646970667358221220c08018e598db604b4113c6bc979b4924d89f4c357456bd31bbf620f0eee2497e64736f6c634300080f0033

Deployed Bytecode Sourcemap

48693:5564:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30351:305;;;;;;;;;;-1:-1:-1;30351:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;30351:305:0;;;;;;;;48787:35;;;;;;;;;;;;48817:5;48787:35;;;;;738:25:1;;;726:2;711:18;48787:35:0;592:177:1;33464:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34967:204::-;;;;;;;;;;-1:-1:-1;34967:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;34967:204:0;1710:203:1;34530:371:0;;;;;;;;;;-1:-1:-1;34530:371:0;;;;;:::i;:::-;;:::i;:::-;;49475:16;;;;;;;;;;;;;;;;49217:38;;;;;;;;;;-1:-1:-1;49217:38:0;;;;;;;;;;;;;;2527:4:1;2515:17;;;2497:36;;2485:2;2470:18;49217:38:0;2355:184:1;53577:100:0;;;;;;;;;;-1:-1:-1;53577:100:0;;;;;:::i;:::-;;:::i;53683:77::-;;;;;;;;;;-1:-1:-1;53683:77:0;;;;;:::i;:::-;;:::i;29600:303::-;;;;;;;;;;-1:-1:-1;52286:1:0;29854:12;29644:7;29838:13;:28;-1:-1:-1;;29838:46:0;29600:303;;35832:170;;;;;;;;;;-1:-1:-1;35832:170:0;;;;;:::i;:::-;;:::i;49172:40::-;;;;;;;;;;-1:-1:-1;49172:40:0;;;;;;;;;;;48827:31;;;;;;;;;;-1:-1:-1;48827:31:0;;;;;:::i;:::-;;:::i;53766:150::-;;;;;;;;;;;;;:::i;49307:27::-;;;;;;;;;;;;;;;;53041:132;;;;;;;;;;-1:-1:-1;53041:132:0;;;;;:::i;:::-;;:::i;36073:185::-;;;;;;;;;;-1:-1:-1;36073:185:0;;;;;:::i;:::-;;:::i;52961:74::-;;;;;;;;;;-1:-1:-1;52961:74:0;;;;;:::i;:::-;;:::i;49339:26::-;;;;;;;;;;;;;;;;49126:41;;;;;;;;;;-1:-1:-1;49126:41:0;;;;;;;;;;;53333:132;;;;;;;;;;-1:-1:-1;53333:132:0;;;;;:::i;:::-;;:::i;53179:148::-;;;;;;;;;;-1:-1:-1;53179:148:0;;;;;:::i;:::-;;:::i;33272:125::-;;;;;;;;;;-1:-1:-1;33272:125:0;;;;;:::i;:::-;;:::i;49085:36::-;;;;;;;;;;-1:-1:-1;49085:36:0;;;;;;;;;;;30720:206;;;;;;;;;;-1:-1:-1;30720:206:0;;;;;:::i;:::-;;:::i;8032:103::-;;;;;;;;;;;;;:::i;53471:100::-;;;;;;;;;;-1:-1:-1;53471:100:0;;;;;:::i;:::-;;:::i;49043:37::-;;;;;;;;;;-1:-1:-1;49043:37:0;;;;;;;;7384:87;;;;;;;;;;-1:-1:-1;7457:6:0;;-1:-1:-1;;;;;7457:6:0;7384:87;;33633:104;;;;;;;;;;;;;:::i;51761:237::-;;;;;;:::i;:::-;;:::i;35243:287::-;;;;;;;;;;-1:-1:-1;35243:287:0;;;;;:::i;:::-;;:::i;36329:369::-;;;;;;;;;;-1:-1:-1;36329:369:0;;;;;:::i;:::-;;:::i;52299:569::-;;;;;;;;;;-1:-1:-1;52299:569:0;;;;;:::i;:::-;;:::i;49496:21::-;;;;;;;;;;;;;;;;49260:42;;;;;;;;;;-1:-1:-1;49260:42:0;;;;-1:-1:-1;;;49260:42:0;;;;;;52874:81;;;;;;;;;;-1:-1:-1;52874:81:0;;;;;:::i;:::-;;:::i;35601:164::-;;;;;;;;;;-1:-1:-1;35601:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35722:25:0;;;35698:4;35722:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35601:164;52005:188;;;;;;;;;;-1:-1:-1;52005:188:0;;;;;:::i;:::-;;:::i;8290:201::-;;;;;;;;;;-1:-1:-1;8290:201:0;;;;;:::i;:::-;;:::i;30351:305::-;30453:4;-1:-1:-1;;;;;;30490:40:0;;-1:-1:-1;;;30490:40:0;;:105;;-1:-1:-1;;;;;;;30547:48:0;;-1:-1:-1;;;30547:48:0;30490:105;:158;;;-1:-1:-1;;;;;;;;;;20347:40:0;;;30612:36;30470:178;30351:305;-1:-1:-1;;30351:305:0:o;33464:100::-;33518:13;33551:5;33544:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33464:100;:::o;34967:204::-;35035:7;35060:16;35068:7;35060;:16::i;:::-;35055:64;;35085:34;;-1:-1:-1;;;35085:34:0;;;;;;;;;;;35055:64;-1:-1:-1;35139:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35139:24:0;;34967:204::o;34530:371::-;34603:13;34619:24;34635:7;34619:15;:24::i;:::-;34603:40;;34664:5;-1:-1:-1;;;;;34658:11:0;:2;-1:-1:-1;;;;;34658:11:0;;34654:48;;34678:24;;-1:-1:-1;;;34678:24:0;;;;;;;;;;;34654:48;6015:10;-1:-1:-1;;;;;34719:21:0;;;;;;:63;;-1:-1:-1;34745:37:0;34762:5;6015:10;35601:164;:::i;34745:37::-;34744:38;34719:63;34715:138;;;34806:35;;-1:-1:-1;;;34806:35:0;;;;;;;;;;;34715:138;34865:28;34874:2;34878:7;34887:5;34865:8;:28::i;:::-;34592:309;34530:371;;:::o;53577:100::-;7270:13;:11;:13::i;:::-;53649:9:::1;:22;53661:10:::0;53649:9;:22:::1;:::i;:::-;;53577:100:::0;:::o;53683:77::-;7270:13;:11;:13::i;:::-;53739:6:::1;:15:::0;;-1:-1:-1;;53739:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53683:77::o;35832:170::-;35966:28;35976:4;35982:2;35986:7;35966:9;:28::i;48827:31::-;;;;;;;;;;;;;;;;;-1:-1:-1;48827:31:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53766:150::-;7270:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19:::0;2402:63:::1;;;::::0;-1:-1:-1;;;2402:63:0;;9163:2:1;2402:63:0::1;::::0;::::1;9145:21:1::0;9202:2;9182:18;;;9175:30;9241:33;9221:18;;;9214:61;9292:18;;2402:63:0::1;;;;;;;;;1812:1;2543:7;:18:::0;53824:7:::2;53845;7457:6:::0;;-1:-1:-1;;;;;7457:6:0;;7384:87;53845:7:::2;-1:-1:-1::0;;;;;53837:21:0::2;53866;53837:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53823:69;;;53907:2;53899:11;;;::::0;::::2;;-1:-1:-1::0;1768:1:0::1;2722:7;:22:::0;53766:150::o;53041:132::-;7270:13;:11;:13::i;:::-;53125:19:::1;:42:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;53125:42:0;;::::1;::::0;;;::::1;::::0;;53041:132::o;36073:185::-;36211:39;36228:4;36234:2;36238:7;36211:39;;;;;;;;;;;;:16;:39::i;52961:74::-;7270:13;:11;:13::i;:::-;53017:4:::1;:12:::0;52961:74::o;53333:132::-;7270:13;:11;:13::i;:::-;53421:17:::1;:38;53441:18:::0;53421:17;:38:::1;:::i;53179:148::-:0;7270:13;:11;:13::i;:::-;53271:23:::1;:50:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;53271:50:0::1;-1:-1:-1::0;;53271:50:0;;::::1;::::0;;;::::1;::::0;;53179:148::o;33272:125::-;33336:7;33363:21;33376:7;33363:12;:21::i;:::-;:26;;33272:125;-1:-1:-1;;33272:125:0:o;30720:206::-;30784:7;-1:-1:-1;;;;;30808:19:0;;30804:60;;30836:28;;-1:-1:-1;;;30836:28:0;;;;;;;;;;;30804:60;-1:-1:-1;;;;;;30890:19:0;;;;;:12;:19;;;;;:27;;;;30720:206::o;8032:103::-;7270:13;:11;:13::i;:::-;8097:30:::1;8124:1;8097:18;:30::i;:::-;8032:103::o:0;53471:100::-;7270:13;:11;:13::i;:::-;53543:9:::1;:22;53555:10:::0;53543:9;:22:::1;:::i;33633:104::-:0;33689:13;33722:7;33715:14;;;;;:::i;51761:237::-;51826:11;53995:1;53981:11;:15;53973:48;;;;-1:-1:-1;;;53973:48:0;;9733:2:1;53973:48:0;;;9715:21:1;9772:2;9752:18;;;9745:30;-1:-1:-1;;;9791:18:1;;;9784:50;9851:18;;53973:48:0;9531:344:1;53973:48:0;54067:9;;52286:1;29854:12;29644:7;29838:13;54052:11;;29838:28;;-1:-1:-1;;29838:46:0;54036:27;;;;:::i;:::-;:40;;54028:73;;;;-1:-1:-1;;;54028:73:0;;10347:2:1;54028:73:0;;;10329:21:1;10386:2;10366:18;;;10359:30;-1:-1:-1;;;10405:18:1;;;10398:50;10465:18;;54028:73:0;10145:344:1;54028:73:0;51859:11:::1;54205;54198:4;;:18;;;;:::i;:::-;54185:9;:31;;54177:63;;;::::0;-1:-1:-1;;;54177:63:0;;10869:2:1;54177:63:0::1;::::0;::::1;10851:21:1::0;10908:2;10888:18;;;10881:30;-1:-1:-1;;;10927:18:1;;;10920:49;10986:18;;54177:63:0::1;10667:343:1::0;54177:63:0::1;51887:6:::2;::::0;::::2;;51886:7;51878:38;;;::::0;-1:-1:-1;;;51878:38:0;;11217:2:1;51878:38:0::2;::::0;::::2;11199:21:1::0;11256:2;11236:18;;;11229:30;-1:-1:-1;;;11275:18:1;;;11268:48;11333:18;;51878:38:0::2;11015:342:1::0;51878:38:0::2;51923:36;6015:10:::0;51947:11:::2;51923:9;:36::i;:::-;51966:26;51980:11;51966:13;:26::i;35243:287::-:0;6015:10;-1:-1:-1;;;;;35342:24:0;;;35338:54;;35375:17;;-1:-1:-1;;;35375:17:0;;;;;;;;;;;35338:54;6015:10;35405:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35405:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35405:53:0;;;;;;;;;;35474:48;;540:41:1;;;35405:42:0;;6015:10;35474:48;;513:18:1;35474:48:0;;;;;;;35243:287;;:::o;36329:369::-;36496:28;36506:4;36512:2;36516:7;36496:9;:28::i;:::-;-1:-1:-1;;;;;36539:13:0;;10377:19;:23;;36539:76;;;;;36559:56;36590:4;36596:2;36600:7;36609:5;36559:30;:56::i;:::-;36558:57;36539:76;36535:156;;;36639:40;;-1:-1:-1;;;36639:40:0;;;;;;;;;;;36535:156;36329:369;;;;:::o;52299:569::-;52373:13;52402:17;52410:8;52402:7;:17::i;:::-;52394:77;;;;-1:-1:-1;;;52394:77:0;;11564:2:1;52394:77:0;;;11546:21:1;11603:2;11583:18;;;11576:30;11642:34;11622:18;;;11615:62;-1:-1:-1;;;11693:18:1;;;11686:45;11748:19;;52394:77:0;11362:411:1;52394:77:0;52484:8;;;;;;;:17;;52496:5;52484:17;52480:63;;52518:17;52511:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52299:569;;;:::o;52480:63::-;52549:28;52580:10;:8;:10::i;:::-;52549:41;;52597:17;52617:9;52627:8;52617:19;;;;;;;:::i;:::-;;52597:39;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52676:14;52692:3;52662:34;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52645:51;;52743:1;52718:14;52712:28;:32;:150;;;;;;;;;;;;;;;;;52780:14;52815:19;:8;:17;:19::i;:::-;52796:39;;;;;;;;:::i;:::-;;;;-1:-1:-1;;52796:39:0;;;;;;;;;;52763:84;;;52837:9;;52796:39;52763:84;;:::i;:::-;;;;;;;;;;;;;52712:150;52705:157;52299:569;-1:-1:-1;;;;52299:569:0:o;52874:81::-;7270:13;:11;:13::i;:::-;52932:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;52932:17:0;;::::1;::::0;;;::::1;::::0;;52874:81::o;52005:188::-;52091:11;53995:1;53981:11;:15;53973:48;;;;-1:-1:-1;;;53973:48:0;;9733:2:1;53973:48:0;;;9715:21:1;9772:2;9752:18;;;9745:30;-1:-1:-1;;;9791:18:1;;;9784:50;9851:18;;53973:48:0;9531:344:1;53973:48:0;54067:9;;52286:1;29854:12;29644:7;29838:13;54052:11;;29838:28;;-1:-1:-1;;29838:46:0;54036:27;;;;:::i;:::-;:40;;54028:73;;;;-1:-1:-1;;;54028:73:0;;10347:2:1;54028:73:0;;;10329:21:1;10386:2;10366:18;;;10359:30;-1:-1:-1;;;10405:18:1;;;10398:50;10465:18;;54028:73:0;10145:344:1;54028:73:0;7270:13:::1;:11;:13::i;:::-;52121:33:::2;52131:9;52142:11;52121:9;:33::i;8290:201::-:0;7270:13;:11;:13::i;:::-;-1:-1:-1;;;;;8379:22:0;::::1;8371:73;;;::::0;-1:-1:-1;;;8371:73:0;;14234:2:1;8371:73:0::1;::::0;::::1;14216:21:1::0;14273:2;14253:18;;;14246:30;14312:34;14292:18;;;14285:62;-1:-1:-1;;;14363:18:1;;;14356:36;14409:19;;8371:73:0::1;14032:402:1::0;8371:73:0::1;8455:28;8474:8;8455:18;:28::i;:::-;8290:201:::0;:::o;36953:174::-;37010:4;37053:7;52286:1;37034:26;;:53;;;;;37074:13;;37064:7;:23;37034:53;:85;;;;-1:-1:-1;;37092:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37092:27:0;;;;37091:28;;36953:174::o;45110:196::-;45225:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45225:29:0;-1:-1:-1;;;;;45225:29:0;;;;;;;;;45270:28;;45225:24;;45270:28;;;;;;;45110:196;;;:::o;7549:132::-;7457:6;;-1:-1:-1;;;;;7457:6:0;6015:10;7613:23;7605:68;;;;-1:-1:-1;;;7605:68:0;;14641:2:1;7605:68:0;;;14623:21:1;;;14660:18;;;14653:30;14719:34;14699:18;;;14692:62;14771:18;;7605:68:0;14439:356:1;40053:2130:0;40168:35;40206:21;40219:7;40206:12;:21::i;:::-;40168:59;;40266:4;-1:-1:-1;;;;;40244:26:0;:13;:18;;;-1:-1:-1;;;;;40244:26:0;;40240:67;;40279:28;;-1:-1:-1;;;40279:28:0;;;;;;;;;;;40240:67;40320:22;6015:10;-1:-1:-1;;;;;40346:20:0;;;;:73;;-1:-1:-1;40383:36:0;40400:4;6015:10;35601:164;:::i;40383:36::-;40346:126;;;-1:-1:-1;6015:10:0;40436:20;40448:7;40436:11;:20::i;:::-;-1:-1:-1;;;;;40436:36:0;;40346:126;40320:153;;40491:17;40486:66;;40517:35;;-1:-1:-1;;;40517:35:0;;;;;;;;;;;40486:66;-1:-1:-1;;;;;40567:16:0;;40563:52;;40592:23;;-1:-1:-1;;;40592:23:0;;;;;;;;;;;40563:52;40736:35;40753:1;40757:7;40766:4;40736:8;:35::i;:::-;-1:-1:-1;;;;;41067:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41067:31:0;;;;;;;-1:-1:-1;;41067:31:0;;;;;;;41113:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41113:29:0;;;;;;;;;;;41193:20;;;:11;:20;;;;;;41228:18;;-1:-1:-1;;;;;;41261:49:0;;;;-1:-1:-1;;;41294:15:0;41261:49;;;;;;;;;;41584:11;;41644:24;;;;;41687:13;;41193:20;;41644:24;;41687:13;41683:384;;41897:13;;41882:11;:28;41878:174;;41935:20;;42004:28;;;;41978:54;;-1:-1:-1;;;41978:54:0;-1:-1:-1;;;;;;41978:54:0;;;-1:-1:-1;;;;;41935:20:0;;41978:54;;;;41878:174;41042:1036;;;42114:7;42110:2;-1:-1:-1;;;;;42095:27:0;42104:4;-1:-1:-1;;;;;42095:27:0;;;;;;;;;;;42133:42;40157:2026;;40053:2130;;;:::o;32101:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;32212:7:0;;52286:1;32261:23;;:47;;;;;32295:13;;32288:4;:20;32261:47;32257:886;;;32329:31;32363:17;;;:11;:17;;;;;;;;;32329:51;;;;;;;;;-1:-1:-1;;;;;32329:51:0;;;;-1:-1:-1;;;32329:51:0;;;;;;;;;;;-1:-1:-1;;;32329:51:0;;;;;;;;;;;;;;32399:729;;32449:14;;-1:-1:-1;;;;;32449:28:0;;32445:101;;32513:9;32101:1109;-1:-1:-1;;;32101:1109:0:o;32445:101::-;-1:-1:-1;;;32888:6:0;32933:17;;;;:11;:17;;;;;;;;;32921:29;;;;;;;;;-1:-1:-1;;;;;32921:29:0;;;;;-1:-1:-1;;;32921:29:0;;;;;;;;;;;-1:-1:-1;;;32921:29:0;;;;;;;;;;;;;32981:28;32977:109;;33049:9;32101:1109;-1:-1:-1;;;32101:1109:0:o;32977:109::-;32848:261;;;32310:833;32257:886;33171:31;;-1:-1:-1;;;33171:31:0;;;;;;;;;;;8651:191;8744:6;;;-1:-1:-1;;;;;8761:17:0;;;-1:-1:-1;;;;;;8761:17:0;;;;;;;8794:40;;8744:6;;;8761:17;8744:6;;8794:40;;8725:16;;8794:40;8714:128;8651:191;:::o;37135:104::-;37204:27;37214:2;37218:8;37204:27;;;;;;;;;;;;:9;:27::i;49934:1712::-;49994:16;50013:24;50021:15;50013:7;:24::i;:::-;49994:43;;;-1:-1:-1;50047:24:0;50074:15;50088:1;49994:43;50074:15;:::i;:::-;:20;:33;;50104:3;;;;;;;;;;;;;-1:-1:-1;;;50104:3:0;;;50074:33;;;50097:4;;;;;;;;;;;;;-1:-1:-1;;;50097:4:0;;;50074:33;50047:60;-1:-1:-1;50144:9:0;50183:1;50114:27;50193:1448;50214:11;50210:1;:15;50193:1448;;;50240:27;50270:10;50240:40;;50365:4;;;;;;;;;;;;;-1:-1:-1;;;50365:4:0;;;50348:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;50338:33;;;;;;50322:10;50305:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;50295:39;;;;;;:76;50291:1253;;50383:11;:13;;;:11;:13;;;:::i;:::-;;;;-1:-1:-1;;50420:1:0;50407:10;:14;50444:21;;;;;;;50440:295;;;50509:14;;;;;;;;;;;;;-1:-1:-1;;;50509:14:0;;;50525:10;50495:41;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;50495:41:0;;;;;;;;;50549:21;:29;;-1:-1:-1;;50549:29:0;;;50495:41;-1:-1:-1;50440:295:0;;;50600:17;;;;50596:139;;;50662:10;;;;;;;;;;;;;-1:-1:-1;;;50662:10:0;;;50674;50648:37;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;50648:37:0;;;;;;;;;50698:17;:25;;-1:-1:-1;;50698:25:0;;;50648:37;-1:-1:-1;50596:139:0;50765:19;;50751:11;;:33;;50765:19;;;;;;50751:33;:::i;:::-;50788:1;50751:38;50747:91;;50803:16;:23;;-1:-1:-1;;50803:23:0;;;;;50747:91;50868:23;;50854:11;;:37;;-1:-1:-1;;;50868:23:0;;;;;50854:37;:::i;:::-;50895:1;50854:42;50850:100;;50910:21;:28;;-1:-1:-1;;50910:28:0;;;;;50850:100;50291:1253;;;50976:10;:12;;;:10;:12;;;:::i;:::-;;;;-1:-1:-1;;51013:1:0;50999:11;:15;51035:20;;;;;;;51031:291;;;51099:14;;;;;;;;;;;;;-1:-1:-1;;;51099:14:0;;;51115:10;51085:41;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;51085:41:0;;;;;;;;;51139:20;:28;;-1:-1:-1;;51139:28:0;;;51085:41;-1:-1:-1;51031:291:0;;;51189:16;;;;;;;51185:137;;;51250:10;;;;;;;;;;;;;-1:-1:-1;;;51250:10:0;;;51262;51236:37;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;51236:37:0;;;;;;;;;51286:16;:24;;-1:-1:-1;;51286:24:0;;;51236:37;-1:-1:-1;51185:137:0;51351:19;;51338:10;;:32;;51351:19;;;;;;51338:32;:::i;:::-;51374:1;51338:37;51334:91;;51389:17;:24;;-1:-1:-1;;51389:24:0;51409:4;51389:24;;;51334:91;51454:23;;51441:10;;:36;;-1:-1:-1;;;51454:23:0;;;;;51441:36;:::i;:::-;51481:1;51441:41;51437:98;;51496:20;:27;;-1:-1:-1;;51496:27:0;;;;;51437:98;51594:13;51554:4;51575:15;51559:13;;:31;;;;:::i;:::-;51554:37;;;;;;;:::i;:::-;;;:53;;:37;:53;:::i;:::-;-1:-1:-1;51616:17:0;;;;:::i;:::-;;;;50231:1410;50227:3;;;;;:::i;:::-;;;;50193:1448;;;;49987:1659;;;;49934:1712;:::o;45798:667::-;45982:72;;-1:-1:-1;;;45982:72:0;;45961:4;;-1:-1:-1;;;;;45982:36:0;;;;;:72;;6015:10;;46033:4;;46039:7;;46048:5;;45982:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45982:72:0;;;;;;;;-1:-1:-1;;45982:72:0;;;;;;;;;;;;:::i;:::-;;;45978:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46216:6;:13;46233:1;46216:18;46212:235;;46262:40;;-1:-1:-1;;;46262:40:0;;;;;;;;;;;46212:235;46405:6;46399:13;46390:6;46386:2;46382:15;46375:38;45978:480;-1:-1:-1;;;;;;46101:55:0;-1:-1:-1;;;46101:55:0;;-1:-1:-1;45798:667:0;;;;;;:::o;51652:103::-;51712:13;51740:9;51733:16;;;;;:::i;3189:723::-;3245:13;3466:5;3475:1;3466:10;3462:53;;-1:-1:-1;;3493:10:0;;;;;;;;;;;;-1:-1:-1;;;3493:10:0;;;;;3189:723::o;3462:53::-;3540:5;3525:12;3581:78;3588:9;;3581:78;;3614:8;;;;:::i;:::-;;-1:-1:-1;3637:10:0;;-1:-1:-1;3645:2:0;3637:10;;:::i;:::-;;;3581:78;;;3669:19;3701:6;3691:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3691:17:0;;3669:39;;3719:154;3726:10;;3719:154;;3753:11;3763:1;3753:11;;:::i;:::-;;-1:-1:-1;3822:10:0;3830:2;3822:5;:10;:::i;:::-;3809:24;;:2;:24;:::i;:::-;3796:39;;3779:6;3786;3779:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3779:56:0;;;;;;;;-1:-1:-1;3850:11:0;3859:2;3850:11;;:::i;:::-;;;3719:154;;37602:163;37725:32;37731:2;37735:8;37745:5;37752:4;37725:5;:32::i;49812:116::-;49868:5;49919:2;49913;49896:14;49913:2;49896:9;:14;:::i;:::-;:19;;;;:::i;:::-;49895:26;;;;:::i;38024:1775::-;38163:20;38186:13;-1:-1:-1;;;;;38214:16:0;;38210:48;;38239:19;;-1:-1:-1;;;38239:19:0;;;;;;;;;;;38210:48;38273:8;38285:1;38273:13;38269:44;;38295:18;;-1:-1:-1;;;38295:18:0;;;;;;;;;;;38269:44;-1:-1:-1;;;;;38664:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38723:49:0;;38664:44;;;;;;;;38723:49;;;;-1:-1:-1;;38664:44:0;;;;;;38723:49;;;;;;;;;;;;;;;;38789:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;38839:66:0;;;;-1:-1:-1;;;38889:15:0;38839:66;;;;;;;;;;38789:25;38986:23;;;39030:4;:23;;;;-1:-1:-1;;;;;;39038:13:0;;10377:19;:23;;39038:15;39026:641;;;39074:314;39105:38;;39130:12;;-1:-1:-1;;;;;39105:38:0;;;39122:1;;39105:38;;39122:1;;39105:38;39171:69;39210:1;39214:2;39218:14;;;;;;39234:5;39171:30;:69::i;:::-;39166:174;;39276:40;;-1:-1:-1;;;39276:40:0;;;;;;;;;;;39166:174;39383:3;39367:12;:19;39074:314;;39469:12;39452:13;;:29;39448:43;;39483:8;;;39448:43;39026:641;;;39532:120;39563:40;;39588:14;;;;;-1:-1:-1;;;;;39563:40:0;;;39580:1;;39563:40;;39580:1;;39563:40;39647:3;39631:12;:19;39532:120;;39026:641;-1:-1:-1;39681:13:0;:28;39731:60;36329:369;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2544:127::-;2605:10;2600:3;2596:20;2593:1;2586:31;2636:4;2633:1;2626:15;2660:4;2657:1;2650:15;2676:632;2741:5;2771:18;2812:2;2804:6;2801:14;2798:40;;;2818:18;;:::i;:::-;2893:2;2887:9;2861:2;2947:15;;-1:-1:-1;;2943:24:1;;;2969:2;2939:33;2935:42;2923:55;;;2993:18;;;3013:22;;;2990:46;2987:72;;;3039:18;;:::i;:::-;3079:10;3075:2;3068:22;3108:6;3099:15;;3138:6;3130;3123:22;3178:3;3169:6;3164:3;3160:16;3157:25;3154:45;;;3195:1;3192;3185:12;3154:45;3245:6;3240:3;3233:4;3225:6;3221:17;3208:44;3300:1;3293:4;3284:6;3276;3272:19;3268:30;3261:41;;;;2676:632;;;;;:::o;3313:451::-;3382:6;3435:2;3423:9;3414:7;3410:23;3406:32;3403:52;;;3451:1;3448;3441:12;3403:52;3491:9;3478:23;3524:18;3516:6;3513:30;3510:50;;;3556:1;3553;3546:12;3510:50;3579:22;;3632:4;3624:13;;3620:27;-1:-1:-1;3610:55:1;;3661:1;3658;3651:12;3610:55;3684:74;3750:7;3745:2;3732:16;3727:2;3723;3719:11;3684:74;:::i;3769:160::-;3834:20;;3890:13;;3883:21;3873:32;;3863:60;;3919:1;3916;3909:12;3934:180;3990:6;4043:2;4031:9;4022:7;4018:23;4014:32;4011:52;;;4059:1;4056;4049:12;4011:52;4082:26;4098:9;4082:26;:::i;4119:328::-;4196:6;4204;4212;4265:2;4253:9;4244:7;4240:23;4236:32;4233:52;;;4281:1;4278;4271:12;4233:52;4304:29;4323:9;4304:29;:::i;:::-;4294:39;;4352:38;4386:2;4375:9;4371:18;4352:38;:::i;:::-;4342:48;;4437:2;4426:9;4422:18;4409:32;4399:42;;4119:328;;;;;:::o;4452:269::-;4509:6;4562:2;4550:9;4541:7;4537:23;4533:32;4530:52;;;4578:1;4575;4568:12;4530:52;4617:9;4604:23;4667:4;4660:5;4656:16;4649:5;4646:27;4636:55;;4687:1;4684;4677:12;4726:186;4785:6;4838:2;4826:9;4817:7;4813:23;4809:32;4806:52;;;4854:1;4851;4844:12;4806:52;4877:29;4896:9;4877:29;:::i;4917:254::-;4982:6;4990;5043:2;5031:9;5022:7;5018:23;5014:32;5011:52;;;5059:1;5056;5049:12;5011:52;5082:29;5101:9;5082:29;:::i;:::-;5072:39;;5130:35;5161:2;5150:9;5146:18;5130:35;:::i;:::-;5120:45;;4917:254;;;;;:::o;5176:667::-;5271:6;5279;5287;5295;5348:3;5336:9;5327:7;5323:23;5319:33;5316:53;;;5365:1;5362;5355:12;5316:53;5388:29;5407:9;5388:29;:::i;:::-;5378:39;;5436:38;5470:2;5459:9;5455:18;5436:38;:::i;:::-;5426:48;;5521:2;5510:9;5506:18;5493:32;5483:42;;5576:2;5565:9;5561:18;5548:32;5603:18;5595:6;5592:30;5589:50;;;5635:1;5632;5625:12;5589:50;5658:22;;5711:4;5703:13;;5699:27;-1:-1:-1;5689:55:1;;5740:1;5737;5730:12;5689:55;5763:74;5829:7;5824:2;5811:16;5806:2;5802;5798:11;5763:74;:::i;:::-;5753:84;;;5176:667;;;;;;;:::o;5848:260::-;5916:6;5924;5977:2;5965:9;5956:7;5952:23;5948:32;5945:52;;;5993:1;5990;5983:12;5945:52;6016:29;6035:9;6016:29;:::i;:::-;6006:39;;6064:38;6098:2;6087:9;6083:18;6064:38;:::i;6113:254::-;6181:6;6189;6242:2;6230:9;6221:7;6217:23;6213:32;6210:52;;;6258:1;6255;6248:12;6210:52;6294:9;6281:23;6271:33;;6323:38;6357:2;6346:9;6342:18;6323:38;:::i;6372:380::-;6451:1;6447:12;;;;6494;;;6515:61;;6569:4;6561:6;6557:17;6547:27;;6515:61;6622:2;6614:6;6611:14;6591:18;6588:38;6585:161;;6668:10;6663:3;6659:20;6656:1;6649:31;6703:4;6700:1;6693:15;6731:4;6728:1;6721:15;6585:161;;6372:380;;;:::o;6883:545::-;6985:2;6980:3;6977:11;6974:448;;;7021:1;7046:5;7042:2;7035:17;7091:4;7087:2;7077:19;7161:2;7149:10;7145:19;7142:1;7138:27;7132:4;7128:38;7197:4;7185:10;7182:20;7179:47;;;-1:-1:-1;7220:4:1;7179:47;7275:2;7270:3;7266:12;7263:1;7259:20;7253:4;7249:31;7239:41;;7330:82;7348:2;7341:5;7338:13;7330:82;;;7393:17;;;7374:1;7363:13;7330:82;;7604:1352;7730:3;7724:10;7757:18;7749:6;7746:30;7743:56;;;7779:18;;:::i;:::-;7808:97;7898:6;7858:38;7890:4;7884:11;7858:38;:::i;:::-;7852:4;7808:97;:::i;:::-;7960:4;;8024:2;8013:14;;8041:1;8036:663;;;;8743:1;8760:6;8757:89;;;-1:-1:-1;8812:19:1;;;8806:26;8757:89;-1:-1:-1;;7561:1:1;7557:11;;;7553:24;7549:29;7539:40;7585:1;7581:11;;;7536:57;8859:81;;8006:944;;8036:663;6830:1;6823:14;;;6867:4;6854:18;;-1:-1:-1;;8072:20:1;;;8190:236;8204:7;8201:1;8198:14;8190:236;;;8293:19;;;8287:26;8272:42;;8385:27;;;;8353:1;8341:14;;;;8220:19;;8190:236;;;8194:3;8454:6;8445:7;8442:19;8439:201;;;8515:19;;;8509:26;-1:-1:-1;;8598:1:1;8594:14;;;8610:3;8590:24;8586:37;8582:42;8567:58;8552:74;;8439:201;-1:-1:-1;;;;;8686:1:1;8670:14;;;8666:22;8653:36;;-1:-1:-1;7604:1352:1:o;9880:127::-;9941:10;9936:3;9932:20;9929:1;9922:31;9972:4;9969:1;9962:15;9996:4;9993:1;9986:15;10012:128;10052:3;10083:1;10079:6;10076:1;10073:13;10070:39;;;10089:18;;:::i;:::-;-1:-1:-1;10125:9:1;;10012:128::o;10494:168::-;10534:7;10600:1;10596;10592:6;10588:14;10585:1;10582:21;10577:1;10570:9;10563:17;10559:45;10556:71;;;10607:18;;:::i;:::-;-1:-1:-1;10647:9:1;;10494:168::o;11778:127::-;11839:10;11834:3;11830:20;11827:1;11820:31;11870:4;11867:1;11860:15;11894:4;11891:1;11884:15;11910:470;12089:3;12127:6;12121:13;12143:53;12189:6;12184:3;12177:4;12169:6;12165:17;12143:53;:::i;:::-;12259:13;;12218:16;;;;12281:57;12259:13;12218:16;12315:4;12303:17;;12281:57;:::i;:::-;12354:20;;11910:470;-1:-1:-1;;;;11910:470:1:o;12385:407::-;-1:-1:-1;;;12631:3:1;12624:16;12606:3;12669:6;12663:13;12685:61;12739:6;12735:1;12730:3;12726:11;12719:4;12711:6;12707:17;12685:61;:::i;:::-;12766:16;;;;12784:1;12762:24;;12385:407;-1:-1:-1;;12385:407:1:o;12797:1230::-;13021:3;13059:6;13053:13;13085:4;13098:51;13142:6;13137:3;13132:2;13124:6;13120:15;13098:51;:::i;:::-;13212:13;;13171:16;;;;13234:55;13212:13;13171:16;13256:15;;;13234:55;:::i;:::-;13378:13;;13311:20;;;13351:1;;13416:36;13378:13;13416:36;:::i;:::-;13471:1;13488:18;;;13515:141;;;;13670:1;13665:337;;;;13481:521;;13515:141;-1:-1:-1;;13550:24:1;;13536:39;;13627:16;;13620:24;13606:39;;13595:51;;;-1:-1:-1;13515:141:1;;13665:337;13696:6;13693:1;13686:17;13744:2;13741:1;13731:16;13769:1;13783:169;13797:8;13794:1;13791:15;13783:169;;;13879:14;;13864:13;;;13857:37;13922:16;;;;13814:10;;13783:169;;;13787:3;;13983:8;13976:5;13972:20;13965:27;;13481:521;-1:-1:-1;14018:3:1;;12797:1230;-1:-1:-1;;;;;;;;;;12797:1230:1:o;14800:127::-;14861:10;14856:3;14852:20;14849:1;14842:31;14892:4;14889:1;14882:15;14916:4;14913:1;14906:15;14932:112;14964:1;14990;14980:35;;14995:18;;:::i;:::-;-1:-1:-1;15029:9:1;;14932:112::o;15049:276::-;15180:3;15218:6;15212:13;15234:53;15280:6;15275:3;15268:4;15260:6;15256:17;15234:53;:::i;:::-;15303:16;;;;;15049:276;-1:-1:-1;;15049:276:1:o;15330:135::-;15369:3;15390:17;;;15387:43;;15410:18;;:::i;:::-;-1:-1:-1;15457:1:1;15446:13;;15330:135::o;15470:125::-;15510:4;15538:1;15535;15532:8;15529:34;;;15543:18;;:::i;:::-;-1:-1:-1;15580:9:1;;15470:125::o;15600:489::-;-1:-1:-1;;;;;15869:15:1;;;15851:34;;15921:15;;15916:2;15901:18;;15894:43;15968:2;15953:18;;15946:34;;;16016:3;16011:2;15996:18;;15989:31;;;15794:4;;16037:46;;16063:19;;16055:6;16037:46;:::i;:::-;16029:54;15600:489;-1:-1:-1;;;;;;15600:489:1:o;16094:249::-;16163:6;16216:2;16204:9;16195:7;16191:23;16187:32;16184:52;;;16232:1;16229;16222:12;16184:52;16264:9;16258:16;16283:30;16307:5;16283:30;:::i;16348:120::-;16388:1;16414;16404:35;;16419:18;;:::i;:::-;-1:-1:-1;16453:9:1;;16348:120::o

Swarm Source

ipfs://c08018e598db604b4113c6bc979b4924d89f4c357456bd31bbf620f0eee2497e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.