ETH Price: $3,407.07 (-0.26%)
Gas: 12 Gwei

Token

EarHolo (EarHolo)
 

Overview

Max Total Supply

141 EarHolo

Holders

70

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
whatsdao.eth
Balance
1 EarHolo
0x0e37017316b0577ea07d461d8ab2887107e78cd9
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:
EarHoLo

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-29
*/

// SPDX-License-Identifier: MIT


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

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

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

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

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

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

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


// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
pragma solidity ^0.8.0;
/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// File: @openzeppelin/contracts/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/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/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: @openzeppelin/contracts/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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/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/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


// File: @openzeppelin/contracts/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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

contract EarHoLo is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string baseURI;
  string baseExtension = ".json";

  uint256 first_cost = 0.08 ether;
  uint256 second_cost = 0.13 ether;
  uint256 final_cost = 0.15 ether;

  uint256 public maxSupply = 2056;

  uint advancedKey = 20220216;

  uint256 public maxMintAmount = 10;

  uint public mintAmount;
  uint256 mintSupply = 1100;


  uint public advancedMintAmount = 1100;
  uint256 advancedMintSupply = 1500;

  uint public pubMintAmount = 1500;
  uint256 pubMintSupply = 1700;

  uint adminMintAmount = 1700;

  
  bool public paused = true;
  bool public finalPaused = true;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    uint256 supply = mintAmount;

    require(!paused);

    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= mintSupply);

    if (msg.sender != owner()) {
        require(msg.value >= first_cost * _mintAmount);
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }

    // change mint number
    mintAmount += _mintAmount;
  }

   function pub_mint(uint256 _mintAmount) public payable {
    uint256 supply = pubMintAmount;

    require(!paused);

    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= pubMintSupply);

    if (msg.sender != owner()) {
        require(msg.value >= final_cost * _mintAmount);
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }

    // change mint number
    pubMintAmount += _mintAmount;
  }


  function advanced_mint(uint256 _mintAmount, uint key) public payable {
    // save gas
    uint256 supply = advancedMintAmount;

    require(key == advancedKey, "can not mint");
    require(!paused);

    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= advancedMintSupply);

    if (msg.sender != owner()) {
        require(msg.value >= second_cost * _mintAmount);
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
    // change mint num
    advancedMintAmount += _mintAmount;
  }

  function admin_mint(uint256 _mintAmount) public onlyOwner {
    // save gas
    uint256 supply = adminMintAmount;

    require(_mintAmount > 0);
    require(supply + _mintAmount <= maxSupply);

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
    // change mint num
    adminMintAmount += _mintAmount;
  }

  // public
  // uint mintAmount;
  // uint256 mintSupply = 1100;
  // uint advancedMintAmount = 1100;
  // uint256 advancedMintSupply = 1500;
  // uint public pubMintAmount = 1500;
  // uint256 pubMintSupply = 1700;
  function final_mint(uint256 _mintAmount) public payable {
    uint left = (mintSupply - mintAmount) + 
                (advancedMintSupply - advancedMintAmount) +
                (pubMintSupply - pubMintAmount);

    require(!finalPaused);

    uint price;

    uint256 mintLeft = mintSupply - mintAmount;
    uint256 advancedMintLeft = advancedMintSupply - advancedMintAmount;
    
    // uint advancedNeedMint;
    // uint pubNeedMint;

    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(_mintAmount <= left);

    // first mint left
    if(mintLeft > 0) {
        
        // need advancedLeft mint?
        uint advancedNeedMint = mintLeft >= _mintAmount ?
                        0 :
                        _mintAmount - mintLeft;
        
        uint thisMintAmount = _mintAmount - advancedNeedMint;                   

        if (msg.sender != owner()) {
            price += final_cost * thisMintAmount;
            require(msg.value >= price, "price error");
        }

        for (uint256 i = 1; i <= thisMintAmount; i++) {
          _safeMint(msg.sender, mintAmount + i);
        }
        mintAmount += thisMintAmount;

        if(advancedNeedMint == 0) {
            return;
        } else {
            _mintAmount = advancedNeedMint;
        }
    // advanced mint left  
    }
    if(advancedMintLeft > 0) {
        // need pub mint left
        uint pubNeedMint = advancedMintLeft >= _mintAmount ?
                        0 :
                        _mintAmount - advancedMintLeft;

        uint thisMintAmount = _mintAmount - pubNeedMint;                   

        if (msg.sender != owner()) {
            price += final_cost * thisMintAmount;
            require(msg.value >= price, "price error");
        }

        for (uint256 i = 1; i <= thisMintAmount; i++) {
          _safeMint(msg.sender, advancedMintAmount + i);
        }
        advancedMintAmount += thisMintAmount;

        if(pubNeedMint == 0) {
            return;
        } else {
            _mintAmount = pubNeedMint;
        }
    } 

    if (msg.sender != owner()) {
        price += final_cost * _mintAmount;
        require(msg.value >= price, "price error");
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, pubMintAmount + i);
    }
    pubMintAmount += _mintAmount;
  }

  // https://8.210.156.178/nft/json/1.json
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

  function setAdvancedKey(uint _newKey) public onlyOwner {
      advancedKey = _newKey;
  }
  
  function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
    maxMintAmount = _newmaxMintAmount;
  }
  
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

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

  function finalPause(bool _state) public onlyOwner {
    finalPaused = _state;
  }

  // uint256 first_cost = 0.08 ether;
  // uint256 second_cost = 0.13 ether;
  // uint256 final_cost = 0.15 ether;
  function changeFirstCost(uint _p) public onlyOwner {
    first_cost = _p;
  }

  function changeSecondCost(uint _p) public onlyOwner {
    second_cost = _p;
  }

  function changeFinalCost(uint _p) public onlyOwner {
    final_cost = _p;
  }



  function withdraw() public onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"uint256","name":"_mintAmount","type":"uint256"}],"name":"admin_mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"advancedMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"key","type":"uint256"}],"name":"advanced_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_p","type":"uint256"}],"name":"changeFinalCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_p","type":"uint256"}],"name":"changeFirstCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_p","type":"uint256"}],"name":"changeSecondCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"finalPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finalPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"final_mint","outputs":[],"stateMutability":"payable","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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"mintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pubMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"pub_mint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"_newKey","type":"uint256"}],"name":"setAdvancedKey","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001ee565b5067011c37937e080000600d556701cdda4faccd0000600e55670214e8348c4f0000600f556108086010556301348938601155600a60125561044c60148190556015556105dc60168190556017556106a46018819055601955601a805461ffff19166101011790553480156200009d57600080fd5b5060405162002cf938038062002cf9833981016040819052620000c09162000347565b825183908390620000d9906000906020850190620001ee565b508051620000ef906001906020840190620001ee565b5050506200010c620001066200012060201b60201c565b62000124565b620001178162000176565b50505062000427565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001d55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ea90600b906020840190620001ee565b5050565b828054620001fc90620003d4565b90600052602060002090601f0160209004810192826200022057600085556200026b565b82601f106200023b57805160ff19168380011785556200026b565b828001600101855582156200026b579182015b828111156200026b5782518255916020019190600101906200024e565b50620002799291506200027d565b5090565b5b808211156200027957600081556001016200027e565b600082601f830112620002a5578081fd5b81516001600160401b0380821115620002c257620002c262000411565b604051601f8301601f19908116603f01168101908282118183101715620002ed57620002ed62000411565b8160405283815260209250868385880101111562000309578485fd5b8491505b838210156200032c57858201830151818301840152908201906200030d565b838211156200033d57848385830101525b9695505050505050565b6000806000606084860312156200035c578283fd5b83516001600160401b038082111562000373578485fd5b620003818783880162000294565b9450602086015191508082111562000397578384fd5b620003a58783880162000294565b93506040860151915080821115620003bb578283fd5b50620003ca8682870162000294565b9150509250925092565b600181811c90821680620003e957607f821691505b602082108114156200040b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6128c280620004376000396000f3fe6080604052600436106102465760003560e01c80636352211e11610139578063a22cb465116100b6578063d4297b041161007a578063d4297b0414610659578063d5abeb0114610679578063da3ef23f1461068f578063e985e9c5146106af578063f2fde38b146106f8578063fd41c8001461071857610246565b8063a22cb465146105c6578063b49ff00a146105e6578063b5256f82146105f9578063b88d4fde14610619578063c87b56dd1461063957610246565b80637feccbb6116100fd5780637feccbb61461054e5780638da5cb5b1461056d578063936d8c541461058b57806395d89b411461059e578063a0712d68146105b357610246565b80636352211e146104c657806370a08231146104e6578063715018a6146105065780637645f7951461051b5780637bfd1da21461052e57610246565b806323b872dd116101c757806342842e0e1161018b57806342842e0e146104365780634f6ccce71461045657806355f804b3146104765780635a2bcc18146104965780635c975abb146104ac57610246565b806323b872dd146103a1578063272f96cb146103c157806329d69568146103e15780632f745c59146104015780633ccfd60b1461042157610246565b8063095ea7b31161020e578063095ea7b31461031c5780630bb88e4f1461033c578063175688901461036057806318160ddd14610376578063239c70ae1461038b57610246565b806301ffc9a71461024b57806302329a291461028057806306fdde03146102a2578063081812fc146102c4578063088a4ed0146102fc575b600080fd5b34801561025757600080fd5b5061026b61026636600461244a565b610738565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102a061029b366004612430565b610765565b005b3480156102ae57600080fd5b506102b76107ab565b604051610277919061262c565b3480156102d057600080fd5b506102e46102df3660046124c8565b61083d565b6040516001600160a01b039091168152602001610277565b34801561030857600080fd5b506102a06103173660046124c8565b6108d2565b34801561032857600080fd5b506102a0610337366004612407565b610901565b34801561034857600080fd5b5061035260155481565b604051908152602001610277565b34801561036c57600080fd5b5061035260175481565b34801561038257600080fd5b50600854610352565b34801561039757600080fd5b5061035260125481565b3480156103ad57600080fd5b506102a06103bc36600461232a565b610a17565b3480156103cd57600080fd5b506102a06103dc3660046124c8565b610a48565b3480156103ed57600080fd5b506102a06103fc3660046124c8565b610a77565b34801561040d57600080fd5b5061035261041c366004612407565b610aa6565b34801561042d57600080fd5b506102a0610b3c565b34801561044257600080fd5b506102a061045136600461232a565b610bbe565b34801561046257600080fd5b506103526104713660046124c8565b610bd9565b34801561048257600080fd5b506102a0610491366004612482565b610c7a565b3480156104a257600080fd5b5061035260135481565b3480156104b857600080fd5b50601a5461026b9060ff1681565b3480156104d257600080fd5b506102e46104e13660046124c8565b610cbb565b3480156104f257600080fd5b506103526105013660046122de565b610d32565b34801561051257600080fd5b506102a0610db9565b6102a06105293660046124c8565b610def565b34801561053a57600080fd5b506102a06105493660046124c8565b610ead565b34801561055a57600080fd5b50601a5461026b90610100900460ff1681565b34801561057957600080fd5b50600a546001600160a01b03166102e4565b6102a06105993660046124c8565b610f39565b3480156105aa57600080fd5b506102b7611262565b6102a06105c13660046124c8565b611271565b3480156105d257600080fd5b506102a06105e13660046123de565b611321565b6102a06105f43660046124e0565b6113f3565b34801561060557600080fd5b506102a0610614366004612430565b6114ed565b34801561062557600080fd5b506102a0610634366004612365565b611531565b34801561064557600080fd5b506102b76106543660046124c8565b611569565b34801561066557600080fd5b506102a06106743660046124c8565b611647565b34801561068557600080fd5b5061035260105481565b34801561069b57600080fd5b506102a06106aa366004612482565b611676565b3480156106bb57600080fd5b5061026b6106ca3660046122f8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561070457600080fd5b506102a06107133660046122de565b6116b3565b34801561072457600080fd5b506102a06107333660046124c8565b61174b565b60006001600160e01b0319821663780e9d6360e01b148061075d575061075d8261177a565b90505b919050565b600a546001600160a01b031633146107985760405162461bcd60e51b815260040161078f906126b6565b60405180910390fd5b601a805460ff1916911515919091179055565b6060600080546107ba906127ca565b80601f01602080910402602001604051908101604052809291908181526020018280546107e6906127ca565b80156108335780601f1061080857610100808354040283529160200191610833565b820191906000526020600020905b81548152906001019060200180831161081657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108b65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161078f565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146108fc5760405162461bcd60e51b815260040161078f906126b6565b601255565b600061090c82610cbb565b9050806001600160a01b0316836001600160a01b0316141561097a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161078f565b336001600160a01b0382161480610996575061099681336106ca565b610a085760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161078f565b610a1283836117ca565b505050565b610a213382611838565b610a3d5760405162461bcd60e51b815260040161078f906126eb565b610a1283838361192f565b600a546001600160a01b03163314610a725760405162461bcd60e51b815260040161078f906126b6565b600e55565b600a546001600160a01b03163314610aa15760405162461bcd60e51b815260040161078f906126b6565b600d55565b6000610ab183610d32565b8210610b135760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161078f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b665760405162461bcd60e51b815260040161078f906126b6565b604051600090339047908381818185875af1925050503d8060008114610ba8576040519150601f19603f3d011682016040523d82523d6000602084013e610bad565b606091505b5050905080610bbb57600080fd5b50565b610a1283838360405180602001604052806000815250611531565b6000610be460085490565b8210610c475760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161078f565b60088281548110610c6857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610ca45760405162461bcd60e51b815260040161078f906126b6565b8051610cb790600b9060208401906121a8565b5050565b6000818152600260205260408120546001600160a01b03168061075d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161078f565b60006001600160a01b038216610d9d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161078f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610de35760405162461bcd60e51b815260040161078f906126b6565b610ded6000611ada565b565b601754601a5460ff1615610e0257600080fd5b60008211610e0f57600080fd5b601254821115610e1e57600080fd5b601854610e2b838361273c565b1115610e3657600080fd5b600a546001600160a01b03163314610e625781600f54610e569190612768565b341015610e6257600080fd5b60015b828111610e9157610e7f33610e7a838561273c565b611b2c565b80610e8981612805565b915050610e65565b508160176000828254610ea4919061273c565b90915550505050565b600a546001600160a01b03163314610ed75760405162461bcd60e51b815260040161078f906126b6565b60195481610ee457600080fd5b601054610ef1838361273c565b1115610efc57600080fd5b60015b828111610f2657610f1433610e7a838561273c565b80610f1e81612805565b915050610eff565b508160196000828254610ea4919061273c565b6000601754601854610f4b9190612787565b601554601654610f5b9190612787565b601354601454610f6b9190612787565b610f75919061273c565b610f7f919061273c565b601a54909150610100900460ff1615610f9757600080fd5b600080601354601454610faa9190612787565b90506000601554601654610fbe9190612787565b905060008511610fcd57600080fd5b601254851115610fdc57600080fd5b83851115610fe957600080fd5b81156110d957600085831015611008576110038387612787565b61100b565b60005b905060006110198288612787565b905061102d600a546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461107f5780600f546110539190612768565b61105d908661273c565b94508434101561107f5760405162461bcd60e51b815260040161078f90612691565b60015b8181116110ad5761109b3382601354610e7a919061273c565b806110a581612805565b915050611082565b5080601360008282546110c0919061273c565b9091555050816110d557505050505050610bbb565b5094505b80156111c9576000858210156110f8576110f38287612787565b6110fb565b60005b905060006111098288612787565b905061111d600a546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461116f5780600f546111439190612768565b61114d908661273c565b94508434101561116f5760405162461bcd60e51b815260040161078f90612691565b60015b81811161119d5761118b3382601554610e7a919061273c565b8061119581612805565b915050611172565b5080601560008282546111b0919061273c565b9091555050816111c557505050505050610bbb565b5094505b600a546001600160a01b031633146112155784600f546111e99190612768565b6111f3908461273c565b9250823410156112155760405162461bcd60e51b815260040161078f90612691565b60015b858111611243576112313382601754610e7a919061273c565b8061123b81612805565b915050611218565b508460176000828254611256919061273c565b90915550505050505050565b6060600180546107ba906127ca565b601354601a5460ff161561128457600080fd5b6000821161129157600080fd5b6012548211156112a057600080fd5b6014546112ad838361273c565b11156112b857600080fd5b600a546001600160a01b031633146112e45781600d546112d89190612768565b3410156112e457600080fd5b60015b82811161130e576112fc33610e7a838561273c565b8061130681612805565b9150506112e7565b508160136000828254610ea4919061273c565b6001600160a01b03821633141561137a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161078f565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113e7911515815260200190565b60405180910390a35050565b60155460115482146114365760405162461bcd60e51b815260206004820152600c60248201526b18d85b881b9bdd081b5a5b9d60a21b604482015260640161078f565b601a5460ff161561144657600080fd5b6000831161145357600080fd5b60125483111561146257600080fd5b60165461146f848361273c565b111561147a57600080fd5b600a546001600160a01b031633146114a65782600e5461149a9190612768565b3410156114a657600080fd5b60015b8381116114d0576114be33610e7a838561273c565b806114c881612805565b9150506114a9565b5082601560008282546114e3919061273c565b9091555050505050565b600a546001600160a01b031633146115175760405162461bcd60e51b815260040161078f906126b6565b601a80549115156101000261ff0019909216919091179055565b61153b3383611838565b6115575760405162461bcd60e51b815260040161078f906126eb565b61156384848484611b46565b50505050565b6000818152600260205260409020546060906001600160a01b03166115e85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161078f565b60006115f2611b79565b905060008151116116125760405180602001604052806000815250611640565b8061161c84611b88565b600c6040516020016116309392919061252d565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116715760405162461bcd60e51b815260040161078f906126b6565b600f55565b600a546001600160a01b031633146116a05760405162461bcd60e51b815260040161078f906126b6565b8051610cb790600c9060208401906121a8565b600a546001600160a01b031633146116dd5760405162461bcd60e51b815260040161078f906126b6565b6001600160a01b0381166117425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078f565b610bbb81611ada565b600a546001600160a01b031633146117755760405162461bcd60e51b815260040161078f906126b6565b601155565b60006001600160e01b031982166380ac58cd60e01b14806117ab57506001600160e01b03198216635b5e139f60e01b145b8061075d57506301ffc9a760e01b6001600160e01b031983161461075d565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117ff82610cbb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161078f565b60006118bc83610cbb565b9050806001600160a01b0316846001600160a01b031614806118f75750836001600160a01b03166118ec8461083d565b6001600160a01b0316145b8061192757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661194282610cbb565b6001600160a01b0316146119aa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161078f565b6001600160a01b038216611a0c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161078f565b611a17838383611ca3565b611a226000826117ca565b6001600160a01b0383166000908152600360205260408120805460019290611a4b908490612787565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a7990849061273c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cb7828260405180602001604052806000815250611d60565b611b5184848461192f565b611b5d84848484611d93565b6115635760405162461bcd60e51b815260040161078f9061263f565b6060600b80546107ba906127ca565b606081611bad57506040805180820190915260018152600360fc1b6020820152610760565b8160005b8115611bd75780611bc181612805565b9150611bd09050600a83612754565b9150611bb1565b60008167ffffffffffffffff811115611c0057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c2a576020820181803683370190505b5090505b841561192757611c3f600183612787565b9150611c4c600a86612820565b611c5790603061273c565b60f81b818381518110611c7a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611c9c600a86612754565b9450611c2e565b6001600160a01b038316611cfe57611cf981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d21565b816001600160a01b0316836001600160a01b031614611d2157611d218382611ea0565b6001600160a01b038216611d3d57611d3881611f3d565b610a12565b826001600160a01b0316826001600160a01b031614610a1257610a128282612016565b611d6a838361205a565b611d776000848484611d93565b610a125760405162461bcd60e51b815260040161078f9061263f565b60006001600160a01b0384163b15611e9557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611dd79033908990889088906004016125ef565b602060405180830381600087803b158015611df157600080fd5b505af1925050508015611e21575060408051601f3d908101601f19168201909252611e1e91810190612466565b60015b611e7b573d808015611e4f576040519150601f19603f3d011682016040523d82523d6000602084013e611e54565b606091505b508051611e735760405162461bcd60e51b815260040161078f9061263f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611927565b506001949350505050565b60006001611ead84610d32565b611eb79190612787565b600083815260076020526040902054909150808214611f0a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f4f90600190612787565b60008381526009602052604081205460088054939450909284908110611f8557634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611fb457634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ffa57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061202183610d32565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120b05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161078f565b6000818152600260205260409020546001600160a01b0316156121155760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161078f565b61212160008383611ca3565b6001600160a01b038216600090815260036020526040812080546001929061214a90849061273c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121b4906127ca565b90600052602060002090601f0160209004810192826121d6576000855561221c565b82601f106121ef57805160ff191683800117855561221c565b8280016001018555821561221c579182015b8281111561221c578251825591602001919060010190612201565b5061222892915061222c565b5090565b5b80821115612228576000815560010161222d565b600067ffffffffffffffff8084111561225c5761225c612860565b604051601f8501601f19908116603f0116810190828211818310171561228457612284612860565b8160405280935085815286868601111561229d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461076057600080fd5b8035801515811461076057600080fd5b6000602082840312156122ef578081fd5b611640826122b7565b6000806040838503121561230a578081fd5b612313836122b7565b9150612321602084016122b7565b90509250929050565b60008060006060848603121561233e578081fd5b612347846122b7565b9250612355602085016122b7565b9150604084013590509250925092565b6000806000806080858703121561237a578081fd5b612383856122b7565b9350612391602086016122b7565b925060408501359150606085013567ffffffffffffffff8111156123b3578182fd5b8501601f810187136123c3578182fd5b6123d287823560208401612241565b91505092959194509250565b600080604083850312156123f0578182fd5b6123f9836122b7565b9150612321602084016122ce565b60008060408385031215612419578182fd5b612422836122b7565b946020939093013593505050565b600060208284031215612441578081fd5b611640826122ce565b60006020828403121561245b578081fd5b813561164081612876565b600060208284031215612477578081fd5b815161164081612876565b600060208284031215612493578081fd5b813567ffffffffffffffff8111156124a9578182fd5b8201601f810184136124b9578182fd5b61192784823560208401612241565b6000602082840312156124d9578081fd5b5035919050565b600080604083850312156124f2578182fd5b50508035926020909101359150565b6000815180845261251981602086016020860161279e565b601f01601f19169290920160200192915050565b6000845160206125408285838a0161279e565b8551918401916125538184848a0161279e565b85549201918390600181811c908083168061256f57607f831692505b85831081141561258d57634e487b7160e01b88526022600452602488fd5b8080156125a157600181146125b2576125de565b60ff198516885283880195506125de565b60008b815260209020895b858110156125d65781548a8201529084019088016125bd565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061262290830184612501565b9695505050505050565b6000602082526116406020830184612501565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600b908201526a383934b1b29032b93937b960a91b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561274f5761274f612834565b500190565b6000826127635761276361284a565b500490565b600081600019048311821515161561278257612782612834565b500290565b60008282101561279957612799612834565b500390565b60005b838110156127b95781810151838201526020016127a1565b838111156115635750506000910152565b600181811c908216806127de57607f821691505b602082108114156127ff57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561281957612819612834565b5060010190565b60008261282f5761282f61284a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bbb57600080fdfea2646970667358221220a0d49db7b524c1d040030f46797f0e57f3d10a5d0525ca7808f4b2a739f659af64736f6c63430008030033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000007456172486f6c6f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007456172486f6c6f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f382e3231302e3135362e3137382f6e66742f6a736f6e2f00

Deployed Bytecode

0x6080604052600436106102465760003560e01c80636352211e11610139578063a22cb465116100b6578063d4297b041161007a578063d4297b0414610659578063d5abeb0114610679578063da3ef23f1461068f578063e985e9c5146106af578063f2fde38b146106f8578063fd41c8001461071857610246565b8063a22cb465146105c6578063b49ff00a146105e6578063b5256f82146105f9578063b88d4fde14610619578063c87b56dd1461063957610246565b80637feccbb6116100fd5780637feccbb61461054e5780638da5cb5b1461056d578063936d8c541461058b57806395d89b411461059e578063a0712d68146105b357610246565b80636352211e146104c657806370a08231146104e6578063715018a6146105065780637645f7951461051b5780637bfd1da21461052e57610246565b806323b872dd116101c757806342842e0e1161018b57806342842e0e146104365780634f6ccce71461045657806355f804b3146104765780635a2bcc18146104965780635c975abb146104ac57610246565b806323b872dd146103a1578063272f96cb146103c157806329d69568146103e15780632f745c59146104015780633ccfd60b1461042157610246565b8063095ea7b31161020e578063095ea7b31461031c5780630bb88e4f1461033c578063175688901461036057806318160ddd14610376578063239c70ae1461038b57610246565b806301ffc9a71461024b57806302329a291461028057806306fdde03146102a2578063081812fc146102c4578063088a4ed0146102fc575b600080fd5b34801561025757600080fd5b5061026b61026636600461244a565b610738565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102a061029b366004612430565b610765565b005b3480156102ae57600080fd5b506102b76107ab565b604051610277919061262c565b3480156102d057600080fd5b506102e46102df3660046124c8565b61083d565b6040516001600160a01b039091168152602001610277565b34801561030857600080fd5b506102a06103173660046124c8565b6108d2565b34801561032857600080fd5b506102a0610337366004612407565b610901565b34801561034857600080fd5b5061035260155481565b604051908152602001610277565b34801561036c57600080fd5b5061035260175481565b34801561038257600080fd5b50600854610352565b34801561039757600080fd5b5061035260125481565b3480156103ad57600080fd5b506102a06103bc36600461232a565b610a17565b3480156103cd57600080fd5b506102a06103dc3660046124c8565b610a48565b3480156103ed57600080fd5b506102a06103fc3660046124c8565b610a77565b34801561040d57600080fd5b5061035261041c366004612407565b610aa6565b34801561042d57600080fd5b506102a0610b3c565b34801561044257600080fd5b506102a061045136600461232a565b610bbe565b34801561046257600080fd5b506103526104713660046124c8565b610bd9565b34801561048257600080fd5b506102a0610491366004612482565b610c7a565b3480156104a257600080fd5b5061035260135481565b3480156104b857600080fd5b50601a5461026b9060ff1681565b3480156104d257600080fd5b506102e46104e13660046124c8565b610cbb565b3480156104f257600080fd5b506103526105013660046122de565b610d32565b34801561051257600080fd5b506102a0610db9565b6102a06105293660046124c8565b610def565b34801561053a57600080fd5b506102a06105493660046124c8565b610ead565b34801561055a57600080fd5b50601a5461026b90610100900460ff1681565b34801561057957600080fd5b50600a546001600160a01b03166102e4565b6102a06105993660046124c8565b610f39565b3480156105aa57600080fd5b506102b7611262565b6102a06105c13660046124c8565b611271565b3480156105d257600080fd5b506102a06105e13660046123de565b611321565b6102a06105f43660046124e0565b6113f3565b34801561060557600080fd5b506102a0610614366004612430565b6114ed565b34801561062557600080fd5b506102a0610634366004612365565b611531565b34801561064557600080fd5b506102b76106543660046124c8565b611569565b34801561066557600080fd5b506102a06106743660046124c8565b611647565b34801561068557600080fd5b5061035260105481565b34801561069b57600080fd5b506102a06106aa366004612482565b611676565b3480156106bb57600080fd5b5061026b6106ca3660046122f8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561070457600080fd5b506102a06107133660046122de565b6116b3565b34801561072457600080fd5b506102a06107333660046124c8565b61174b565b60006001600160e01b0319821663780e9d6360e01b148061075d575061075d8261177a565b90505b919050565b600a546001600160a01b031633146107985760405162461bcd60e51b815260040161078f906126b6565b60405180910390fd5b601a805460ff1916911515919091179055565b6060600080546107ba906127ca565b80601f01602080910402602001604051908101604052809291908181526020018280546107e6906127ca565b80156108335780601f1061080857610100808354040283529160200191610833565b820191906000526020600020905b81548152906001019060200180831161081657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108b65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161078f565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146108fc5760405162461bcd60e51b815260040161078f906126b6565b601255565b600061090c82610cbb565b9050806001600160a01b0316836001600160a01b0316141561097a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161078f565b336001600160a01b0382161480610996575061099681336106ca565b610a085760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161078f565b610a1283836117ca565b505050565b610a213382611838565b610a3d5760405162461bcd60e51b815260040161078f906126eb565b610a1283838361192f565b600a546001600160a01b03163314610a725760405162461bcd60e51b815260040161078f906126b6565b600e55565b600a546001600160a01b03163314610aa15760405162461bcd60e51b815260040161078f906126b6565b600d55565b6000610ab183610d32565b8210610b135760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161078f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b665760405162461bcd60e51b815260040161078f906126b6565b604051600090339047908381818185875af1925050503d8060008114610ba8576040519150601f19603f3d011682016040523d82523d6000602084013e610bad565b606091505b5050905080610bbb57600080fd5b50565b610a1283838360405180602001604052806000815250611531565b6000610be460085490565b8210610c475760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161078f565b60088281548110610c6857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610ca45760405162461bcd60e51b815260040161078f906126b6565b8051610cb790600b9060208401906121a8565b5050565b6000818152600260205260408120546001600160a01b03168061075d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161078f565b60006001600160a01b038216610d9d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161078f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610de35760405162461bcd60e51b815260040161078f906126b6565b610ded6000611ada565b565b601754601a5460ff1615610e0257600080fd5b60008211610e0f57600080fd5b601254821115610e1e57600080fd5b601854610e2b838361273c565b1115610e3657600080fd5b600a546001600160a01b03163314610e625781600f54610e569190612768565b341015610e6257600080fd5b60015b828111610e9157610e7f33610e7a838561273c565b611b2c565b80610e8981612805565b915050610e65565b508160176000828254610ea4919061273c565b90915550505050565b600a546001600160a01b03163314610ed75760405162461bcd60e51b815260040161078f906126b6565b60195481610ee457600080fd5b601054610ef1838361273c565b1115610efc57600080fd5b60015b828111610f2657610f1433610e7a838561273c565b80610f1e81612805565b915050610eff565b508160196000828254610ea4919061273c565b6000601754601854610f4b9190612787565b601554601654610f5b9190612787565b601354601454610f6b9190612787565b610f75919061273c565b610f7f919061273c565b601a54909150610100900460ff1615610f9757600080fd5b600080601354601454610faa9190612787565b90506000601554601654610fbe9190612787565b905060008511610fcd57600080fd5b601254851115610fdc57600080fd5b83851115610fe957600080fd5b81156110d957600085831015611008576110038387612787565b61100b565b60005b905060006110198288612787565b905061102d600a546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461107f5780600f546110539190612768565b61105d908661273c565b94508434101561107f5760405162461bcd60e51b815260040161078f90612691565b60015b8181116110ad5761109b3382601354610e7a919061273c565b806110a581612805565b915050611082565b5080601360008282546110c0919061273c565b9091555050816110d557505050505050610bbb565b5094505b80156111c9576000858210156110f8576110f38287612787565b6110fb565b60005b905060006111098288612787565b905061111d600a546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461116f5780600f546111439190612768565b61114d908661273c565b94508434101561116f5760405162461bcd60e51b815260040161078f90612691565b60015b81811161119d5761118b3382601554610e7a919061273c565b8061119581612805565b915050611172565b5080601560008282546111b0919061273c565b9091555050816111c557505050505050610bbb565b5094505b600a546001600160a01b031633146112155784600f546111e99190612768565b6111f3908461273c565b9250823410156112155760405162461bcd60e51b815260040161078f90612691565b60015b858111611243576112313382601754610e7a919061273c565b8061123b81612805565b915050611218565b508460176000828254611256919061273c565b90915550505050505050565b6060600180546107ba906127ca565b601354601a5460ff161561128457600080fd5b6000821161129157600080fd5b6012548211156112a057600080fd5b6014546112ad838361273c565b11156112b857600080fd5b600a546001600160a01b031633146112e45781600d546112d89190612768565b3410156112e457600080fd5b60015b82811161130e576112fc33610e7a838561273c565b8061130681612805565b9150506112e7565b508160136000828254610ea4919061273c565b6001600160a01b03821633141561137a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161078f565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113e7911515815260200190565b60405180910390a35050565b60155460115482146114365760405162461bcd60e51b815260206004820152600c60248201526b18d85b881b9bdd081b5a5b9d60a21b604482015260640161078f565b601a5460ff161561144657600080fd5b6000831161145357600080fd5b60125483111561146257600080fd5b60165461146f848361273c565b111561147a57600080fd5b600a546001600160a01b031633146114a65782600e5461149a9190612768565b3410156114a657600080fd5b60015b8381116114d0576114be33610e7a838561273c565b806114c881612805565b9150506114a9565b5082601560008282546114e3919061273c565b9091555050505050565b600a546001600160a01b031633146115175760405162461bcd60e51b815260040161078f906126b6565b601a80549115156101000261ff0019909216919091179055565b61153b3383611838565b6115575760405162461bcd60e51b815260040161078f906126eb565b61156384848484611b46565b50505050565b6000818152600260205260409020546060906001600160a01b03166115e85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161078f565b60006115f2611b79565b905060008151116116125760405180602001604052806000815250611640565b8061161c84611b88565b600c6040516020016116309392919061252d565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116715760405162461bcd60e51b815260040161078f906126b6565b600f55565b600a546001600160a01b031633146116a05760405162461bcd60e51b815260040161078f906126b6565b8051610cb790600c9060208401906121a8565b600a546001600160a01b031633146116dd5760405162461bcd60e51b815260040161078f906126b6565b6001600160a01b0381166117425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078f565b610bbb81611ada565b600a546001600160a01b031633146117755760405162461bcd60e51b815260040161078f906126b6565b601155565b60006001600160e01b031982166380ac58cd60e01b14806117ab57506001600160e01b03198216635b5e139f60e01b145b8061075d57506301ffc9a760e01b6001600160e01b031983161461075d565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117ff82610cbb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161078f565b60006118bc83610cbb565b9050806001600160a01b0316846001600160a01b031614806118f75750836001600160a01b03166118ec8461083d565b6001600160a01b0316145b8061192757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661194282610cbb565b6001600160a01b0316146119aa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161078f565b6001600160a01b038216611a0c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161078f565b611a17838383611ca3565b611a226000826117ca565b6001600160a01b0383166000908152600360205260408120805460019290611a4b908490612787565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a7990849061273c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cb7828260405180602001604052806000815250611d60565b611b5184848461192f565b611b5d84848484611d93565b6115635760405162461bcd60e51b815260040161078f9061263f565b6060600b80546107ba906127ca565b606081611bad57506040805180820190915260018152600360fc1b6020820152610760565b8160005b8115611bd75780611bc181612805565b9150611bd09050600a83612754565b9150611bb1565b60008167ffffffffffffffff811115611c0057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c2a576020820181803683370190505b5090505b841561192757611c3f600183612787565b9150611c4c600a86612820565b611c5790603061273c565b60f81b818381518110611c7a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611c9c600a86612754565b9450611c2e565b6001600160a01b038316611cfe57611cf981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d21565b816001600160a01b0316836001600160a01b031614611d2157611d218382611ea0565b6001600160a01b038216611d3d57611d3881611f3d565b610a12565b826001600160a01b0316826001600160a01b031614610a1257610a128282612016565b611d6a838361205a565b611d776000848484611d93565b610a125760405162461bcd60e51b815260040161078f9061263f565b60006001600160a01b0384163b15611e9557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611dd79033908990889088906004016125ef565b602060405180830381600087803b158015611df157600080fd5b505af1925050508015611e21575060408051601f3d908101601f19168201909252611e1e91810190612466565b60015b611e7b573d808015611e4f576040519150601f19603f3d011682016040523d82523d6000602084013e611e54565b606091505b508051611e735760405162461bcd60e51b815260040161078f9061263f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611927565b506001949350505050565b60006001611ead84610d32565b611eb79190612787565b600083815260076020526040902054909150808214611f0a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f4f90600190612787565b60008381526009602052604081205460088054939450909284908110611f8557634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611fb457634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ffa57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061202183610d32565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120b05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161078f565b6000818152600260205260409020546001600160a01b0316156121155760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161078f565b61212160008383611ca3565b6001600160a01b038216600090815260036020526040812080546001929061214a90849061273c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121b4906127ca565b90600052602060002090601f0160209004810192826121d6576000855561221c565b82601f106121ef57805160ff191683800117855561221c565b8280016001018555821561221c579182015b8281111561221c578251825591602001919060010190612201565b5061222892915061222c565b5090565b5b80821115612228576000815560010161222d565b600067ffffffffffffffff8084111561225c5761225c612860565b604051601f8501601f19908116603f0116810190828211818310171561228457612284612860565b8160405280935085815286868601111561229d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461076057600080fd5b8035801515811461076057600080fd5b6000602082840312156122ef578081fd5b611640826122b7565b6000806040838503121561230a578081fd5b612313836122b7565b9150612321602084016122b7565b90509250929050565b60008060006060848603121561233e578081fd5b612347846122b7565b9250612355602085016122b7565b9150604084013590509250925092565b6000806000806080858703121561237a578081fd5b612383856122b7565b9350612391602086016122b7565b925060408501359150606085013567ffffffffffffffff8111156123b3578182fd5b8501601f810187136123c3578182fd5b6123d287823560208401612241565b91505092959194509250565b600080604083850312156123f0578182fd5b6123f9836122b7565b9150612321602084016122ce565b60008060408385031215612419578182fd5b612422836122b7565b946020939093013593505050565b600060208284031215612441578081fd5b611640826122ce565b60006020828403121561245b578081fd5b813561164081612876565b600060208284031215612477578081fd5b815161164081612876565b600060208284031215612493578081fd5b813567ffffffffffffffff8111156124a9578182fd5b8201601f810184136124b9578182fd5b61192784823560208401612241565b6000602082840312156124d9578081fd5b5035919050565b600080604083850312156124f2578182fd5b50508035926020909101359150565b6000815180845261251981602086016020860161279e565b601f01601f19169290920160200192915050565b6000845160206125408285838a0161279e565b8551918401916125538184848a0161279e565b85549201918390600181811c908083168061256f57607f831692505b85831081141561258d57634e487b7160e01b88526022600452602488fd5b8080156125a157600181146125b2576125de565b60ff198516885283880195506125de565b60008b815260209020895b858110156125d65781548a8201529084019088016125bd565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061262290830184612501565b9695505050505050565b6000602082526116406020830184612501565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600b908201526a383934b1b29032b93937b960a91b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561274f5761274f612834565b500190565b6000826127635761276361284a565b500490565b600081600019048311821515161561278257612782612834565b500290565b60008282101561279957612799612834565b500390565b60005b838110156127b95781810151838201526020016127a1565b838111156115635750506000910152565b600181811c908216806127de57607f821691505b602082108114156127ff57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561281957612819612834565b5060010190565b60008261282f5761282f61284a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bbb57600080fdfea2646970667358221220a0d49db7b524c1d040030f46797f0e57f3d10a5d0525ca7808f4b2a739f659af64736f6c63430008030033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000007456172486f6c6f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007456172486f6c6f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f382e3231302e3135362e3137382f6e66742f6a736f6e2f00

-----Decoded View---------------
Arg [0] : _name (string): EarHolo
Arg [1] : _symbol (string): EarHolo
Arg [2] : _initBaseURI (string): https://8.210.156.178/nft/json/

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 456172486f6c6f00000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 456172486f6c6f00000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [8] : 68747470733a2f2f382e3231302e3135362e3137382f6e66742f6a736f6e2f00


Deployed Bytecode Sourcemap

43109:7289:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34664:224;;;;;;;;;;-1:-1:-1;34664:224:0;;;;;:::i;:::-;;:::i;:::-;;;7587:14:1;;7580:22;7562:41;;7550:2;7535:18;34664:224:0;;;;;;;;49698:73;;;;;;;;;;-1:-1:-1;49698:73:0;;;;;:::i;:::-;;:::i;:::-;;22556:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24115:221::-;;;;;;;;;;-1:-1:-1;24115:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6885:32:1;;;6867:51;;6855:2;6840:18;24115:221:0;6822:102:1;49340:118:0;;;;;;;;;;-1:-1:-1;49340:118:0;;;;;:::i;:::-;;:::i;23638:411::-;;;;;;;;;;-1:-1:-1;23638:411:0;;;;;:::i;:::-;;:::i;43532:37::-;;;;;;;;;;;;;;;;;;;15872:25:1;;;15860:2;15845:18;43532:37:0;15827:76:1;43614:32:0;;;;;;;;;;;;;;;;35304:113;;;;;;;;;;-1:-1:-1;35392:10:0;:17;35304:113;;43431:33;;;;;;;;;;;;;;;;25005:339;;;;;;;;;;-1:-1:-1;25005:339:0;;;;;:::i;:::-;;:::i;50069:81::-;;;;;;;;;;-1:-1:-1;50069:81:0;;;;;:::i;:::-;;:::i;49984:79::-;;;;;;;;;;-1:-1:-1;49984:79:0;;;;;:::i;:::-;;:::i;34972:256::-;;;;;;;;;;-1:-1:-1;34972:256:0;;;;;:::i;:::-;;:::i;50245:150::-;;;;;;;;;;;;;:::i;25415:185::-;;;;;;;;;;-1:-1:-1;25415:185:0;;;;;:::i;:::-;;:::i;35494:233::-;;;;;;;;;;-1:-1:-1;35494:233:0;;;;;:::i;:::-;;:::i;49466:98::-;;;;;;;;;;-1:-1:-1;49466:98:0;;;;;:::i;:::-;;:::i;43471:22::-;;;;;;;;;;;;;;;;43724:25;;;;;;;;;;-1:-1:-1;43724:25:0;;;;;;;;22250:239;;;;;;;;;;-1:-1:-1;22250:239:0;;;;;:::i;:::-;;:::i;21980:208::-;;;;;;;;;;-1:-1:-1;21980:208:0;;;;;:::i;:::-;;:::i;42453:94::-;;;;;;;;;;;;;:::i;44608:517::-;;;;;;:::i;:::-;;:::i;45749:364::-;;;;;;;;;;-1:-1:-1;45749:364:0;;;;;:::i;:::-;;:::i;43754:30::-;;;;;;;;;;-1:-1:-1;43754:30:0;;;;;;;;;;;41802:87;;;;;;;;;;-1:-1:-1;41875:6:0;;-1:-1:-1;;;;;41875:6:0;41802:87;;46343:2419;;;;;;:::i;:::-;;:::i;22725:104::-;;;;;;;;;;;;;:::i;44097:504::-;;;;;;:::i;:::-;;:::i;24408:295::-;;;;;;;;;;-1:-1:-1;24408:295:0;;;;;:::i;:::-;;:::i;45133:610::-;;;;;;:::i;:::-;;:::i;49777:83::-;;;;;;;;;;-1:-1:-1;49777:83:0;;;;;:::i;:::-;;:::i;25671:328::-;;;;;;;;;;-1:-1:-1;25671:328:0;;;;;:::i;:::-;;:::i;48812:423::-;;;;;;;;;;-1:-1:-1;48812:423:0;;;;;:::i;:::-;;:::i;50156:79::-;;;;;;;;;;-1:-1:-1;50156:79:0;;;;;:::i;:::-;;:::i;43359:31::-;;;;;;;;;;;;;;;;49570:122;;;;;;;;;;-1:-1:-1;49570:122:0;;;;;:::i;:::-;;:::i;24774:164::-;;;;;;;;;;-1:-1:-1;24774:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24895:25:0;;;24871:4;24895:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24774:164;42702:192;;;;;;;;;;-1:-1:-1;42702:192:0;;;;;:::i;:::-;;:::i;49241:91::-;;;;;;;;;;-1:-1:-1;49241:91:0;;;;;:::i;:::-;;:::i;34664:224::-;34766:4;-1:-1:-1;;;;;;34790:50:0;;-1:-1:-1;;;34790:50:0;;:90;;;34844:36;34868:11;34844:23;:36::i;:::-;34783:97;;34664:224;;;;:::o;49698:73::-;41875:6;;-1:-1:-1;;;;;41875:6:0;20165:10;42022:23;42014:68;;;;-1:-1:-1;;;42014:68:0;;;;;;;:::i;:::-;;;;;;;;;49750:6:::1;:15:::0;;-1:-1:-1;;49750:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49698:73::o;22556:100::-;22610:13;22643:5;22636:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22556:100;:::o;24115:221::-;24191:7;27598:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27598:16:0;24211:73;;;;-1:-1:-1;;;24211:73:0;;12754:2:1;24211:73:0;;;12736:21:1;12793:2;12773:18;;;12766:30;12832:34;12812:18;;;12805:62;-1:-1:-1;;;12883:18:1;;;12876:42;12935:19;;24211:73:0;12726:234:1;24211:73:0;-1:-1:-1;24304:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24304:24:0;;24115:221::o;49340:118::-;41875:6;;-1:-1:-1;;;;;41875:6:0;20165:10;42022:23;42014:68;;;;-1:-1:-1;;;42014:68:0;;;;;;;:::i;:::-;49419:13:::1;:33:::0;49340:118::o;23638:411::-;23719:13;23735:23;23750:7;23735:14;:23::i;:::-;23719:39;;23783:5;-1:-1:-1;;;;;23777:11:0;:2;-1:-1:-1;;;;;23777:11:0;;;23769:57;;;;-1:-1:-1;;;23769:57:0;;14354:2:1;23769:57:0;;;14336:21:1;14393:2;14373:18;;;14366:30;14432:34;14412:18;;;14405:62;-1:-1:-1;;;14483:18:1;;;14476:31;14524:19;;23769:57:0;14326:223:1;23769:57:0;20165:10;-1:-1:-1;;;;;23861:21:0;;;;:62;;-1:-1:-1;23886:37:0;23903:5;20165:10;23910:12;20085:98;23886:37;23839:168;;;;-1:-1:-1;;;23839:168:0;;11147:2:1;23839:168:0;;;11129:21:1;11186:2;11166:18;;;11159:30;11225:34;11205:18;;;11198:62;11296:26;11276:18;;;11269:54;11340:19;;23839:168:0;11119:246:1;23839:168:0;24020:21;24029:2;24033:7;24020:8;:21::i;:::-;23638:411;;;:::o;25005:339::-;25200:41;20165:10;25233:7;25200:18;:41::i;:::-;25192:103;;;;-1:-1:-1;;;25192:103:0;;;;;;;:::i;:::-;25308:28;25318:4;25324:2;25328:7;25308:9;:28::i;50069:81::-;41875:6;;-1:-1:-1;;;;;41875:6:0;20165:10;42022:23;42014:68;;;;-1:-1:-1;;;42014:68:0;;;;;;;:::i;:::-;50128:11:::1;:16:::0;50069:81::o;49984:79::-;41875:6;;-1:-1:-1;;;;;41875:6:0;20165:10;42022:23;42014:68;;;;-1:-1:-1;;;42014:68:0;;;;;;;:::i;:::-;50042:10:::1;:15:::0;49984:79::o;34972:256::-;35069:7;35105:23;35122:5;35105:16;:23::i;:::-;35097:5;:31;35089:87;;;;-1:-1:-1;;;35089:87:0;;8040:2:1;35089:87:0;;;8022:21:1;8079:2;8059:18;;;8052:30;8118:34;8098:18;;;8091:62;-1:-1:-1;;;8169:18:1;;;8162:41;8220:19;;35089:87:0;8012:233:1;35089:87:0;-1:-1:-1;;;;;;35194:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34972:256::o;50245:150::-;41875:6;;-1:-1:-1;;;;;41875:6:0;20165:10;42022:23;42014:68;;;;-1:-1:-1;;;42014:68:0;;;;;;;:::i;:::-;50308:58:::1;::::0;50290:12:::1;::::0;50316:10:::1;::::0;50340:21:::1;::::0;50290:12;50308:58;50290:12;50308:58;50340:21;50316:10;50308:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50289:77;;;50381:7;50373:16;;;::::0;::::1;;42093:1;50245:150::o:0;25415:185::-;25553:39;25570:4;25576:2;25580:7;25553:39;;;;;;;;;;;;:16;:39::i;35494:233::-;35569:7;35605:30;35392:10;:17;35304:113;;35605:30;35597:5;:38;35589:95;;;;-1:-1:-1;;;35589:95:0;;15515:2:1;35589:95:0;;;15497:21:1;15554:2;15534:18;;;15527:30;15593:34;15573:18;;;15566:62;-1:-1:-1;;;15644:18:1;;;15637:42;15696:19;;35589:95:0;15487:234:1;35589:95:0;35702:10;35713:5;35702:17;;;;;;-1:-1:-1;;;35702:17:0;;;;;;;;;;;;;;;;;35695:24;;35494:233;;;:::o;49466:98::-;41875:6;;-1:-1:-1;;;;;41875:6:0;20165:10;42022:23;42014:68;;;;-1:-1:-1;;;42014:68:0;;;;;;;:::i;:::-;49537:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49466:98:::0;:::o;22250:239::-;22322:7;22358:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22358:16:0;22393:19;22385:73;;;;-1:-1:-1;;;22385:73:0;;11983:2:1;22385:73:0;;;11965:21:1;12022:2;12002:18;;;11995:30;12061:34;12041:18;;;12034:62;-1:-1:-1;;;12112:18:1;;;12105:39;12161:19;;22385:73:0;11955:231:1;21980:208:0;22052:7;-1:-1:-1;;;;;22080:19:0;;22072:74;;;;-1:-1:-1;;;22072:74:0;;11572:2:1;22072:74:0;;;11554:21:1;11611:2;11591:18;;;11584:30;11650:34;11630:18;;;11623:62;-1:-1:-1;;;11701:18:1;;;11694:40;11751:19;;22072:74:0;11544:232:1;22072:74:0;-1:-1:-1;;;;;;22164:16:0;;;;;:9;:16;;;;;;;21980:208::o;42453:94::-;41875:6;;-1:-1:-1;;;;;41875:6:0;20165:10;42022:23;42014:68;;;;-1:-1:-1;;;42014:68:0;;;;;;;:::i;:::-;42518:21:::1;42536:1;42518:9;:21::i;:::-;42453:94::o:0;44608:517::-;44686:13;;44717:6;;;;44716:7;44708:16;;;;;;44755:1;44741:11;:15;44733:24;;;;;;44787:13;;44772:11;:28;;44764:37;;;;;;44840:13;;44816:20;44825:11;44816:6;:20;:::i;:::-;:37;;44808:46;;;;;;41875:6;;-1:-1:-1;;;;;41875:6:0;44867:10;:21;44863:92;;44935:11;44922:10;;:24;;;;:::i;:::-;44909:9;:37;;44901:46;;;;;;44980:1;44963:93;44988:11;44983:1;:16;44963:93;;45015:33;45025:10;45037;45046:1;45037:6;:10;:::i;:::-;45015:9;:33::i;:::-;45001:3;;;;:::i;:::-;;;;44963:93;;;;45108:11;45091:13;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;44608:517:0:o;45749:364::-;41875:6;;-1:-1:-1;;;;;41875:6:0;20165:10;42022:23;42014:68;;;;-1:-1:-1;;;42014:68:0;;;;;;;:::i;:::-;45848:15:::1;::::0;45880;45872:24:::1;;;::::0;::::1;;45935:9;::::0;45911:20:::1;45920:11:::0;45911:6;:20:::1;:::i;:::-;:33;;45903:42;;;::::0;::::1;;45971:1;45954:93;45979:11;45974:1;:16;45954:93;;46006:33;46016:10;46028;46037:1:::0;46028:6;:10:::1;:::i;46006:33::-;45992:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45954:93;;;;46096:11;46077:15;;:30;;;;;;;:::i;46343:2419::-:0;46406:9;46542:13;;46526;;:29;;;;:::i;:::-;46486:18;;46465;;:39;;;;:::i;:::-;46432:10;;46419;;:23;;;;:::i;:::-;46418:87;;;;:::i;:::-;:138;;;;:::i;:::-;46574:11;;46406:150;;-1:-1:-1;46574:11:0;;;;;46573:12;46565:21;;;;;;46595:10;46614:16;46646:10;;46633;;:23;;;;:::i;:::-;46614:42;;46663:24;46711:18;;46690;;:39;;;;:::i;:::-;46663:66;;46823:1;46809:11;:15;46801:24;;;;;;46855:13;;46840:11;:28;;46832:37;;;;;;46899:4;46884:11;:19;;46876:28;;;;;;46940:12;;46937:781;;47011:21;47047:11;47035:8;:23;;:102;;47115:22;47129:8;47115:11;:22;:::i;:::-;47035:102;;;47086:1;47035:102;47011:126;-1:-1:-1;47158:19:0;47180:30;47011:126;47180:11;:30;:::i;:::-;47158:52;;47260:7;41875:6;;-1:-1:-1;;;;;41875:6:0;41802:87;;47260:7;-1:-1:-1;;;;;47246:21:0;:10;-1:-1:-1;;;;;47246:21:0;;47242:147;;47306:14;47293:10;;:27;;;;:::i;:::-;47284:36;;;;:::i;:::-;;;47356:5;47343:9;:18;;47335:42;;;;-1:-1:-1;;;47335:42:0;;;;;;;:::i;:::-;47418:1;47401:108;47426:14;47421:1;:19;47401:108;;47460:37;47470:10;47495:1;47482:10;;:14;;;;:::i;47460:37::-;47442:3;;;;:::i;:::-;;;;47401:108;;;;47533:14;47519:10;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;;47563:21:0;47560:122;;47601:7;;;;;;;;47560:122;-1:-1:-1;47654:16:0;-1:-1:-1;46937:781:0;47727:20;;47724:749;;47791:16;47830:11;47810:16;:31;;:118;;47898:30;47912:16;47898:11;:30;:::i;:::-;47810:118;;;47869:1;47810:118;47791:137;-1:-1:-1;47941:19:0;47963:25;47791:137;47963:11;:25;:::i;:::-;47941:47;;48038:7;41875:6;;-1:-1:-1;;;;;41875:6:0;41802:87;;48038:7;-1:-1:-1;;;;;48024:21:0;:10;-1:-1:-1;;;;;48024:21:0;;48020:147;;48084:14;48071:10;;:27;;;;:::i;:::-;48062:36;;;;:::i;:::-;;;48134:5;48121:9;:18;;48113:42;;;;-1:-1:-1;;;48113:42:0;;;;;;;:::i;:::-;48196:1;48179:116;48204:14;48199:1;:19;48179:116;;48238:45;48248:10;48281:1;48260:18;;:22;;;;:::i;48238:45::-;48220:3;;;;:::i;:::-;;;;48179:116;;;;48327:14;48305:18;;:36;;;;;;;:::i;:::-;;;;-1:-1:-1;;48357:16:0;48354:112;;48390:7;;;;;;;;48354:112;-1:-1:-1;48443:11:0;-1:-1:-1;47724:749:0;41875:6;;-1:-1:-1;;;;;41875:6:0;48486:10;:21;48482:132;;48542:11;48529:10;;:24;;;;:::i;:::-;48520:33;;;;:::i;:::-;;;48585:5;48572:9;:18;;48564:42;;;;-1:-1:-1;;;48564:42:0;;;;;;;:::i;:::-;48639:1;48622:100;48647:11;48642:1;:16;48622:100;;48674:40;48684:10;48712:1;48696:13;;:17;;;;:::i;48674:40::-;48660:3;;;;:::i;:::-;;;;48622:100;;;;48745:11;48728:13;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;46343:2419:0;:::o;22725:104::-;22781:13;22814:7;22807:14;;;;;:::i;44097:504::-;44171:10;;44199:6;;;;44198:7;44190:16;;;;;;44237:1;44223:11;:15;44215:24;;;;;;44269:13;;44254:11;:28;;44246:37;;;;;;44322:10;;44298:20;44307:11;44298:6;:20;:::i;:::-;:34;;44290:43;;;;;;41875:6;;-1:-1:-1;;;;;41875:6:0;44346:10;:21;44342:92;;44414:11;44401:10;;:24;;;;:::i;:::-;44388:9;:37;;44380:46;;;;;;44459:1;44442:93;44467:11;44462:1;:16;44442:93;;44494:33;44504:10;44516;44525:1;44516:6;:10;:::i;44494:33::-;44480:3;;;;:::i;:::-;;;;44442:93;;;;44584:11;44570:10;;:25;;;;;;;:::i;24408:295::-;-1:-1:-1;;;;;24511:24:0;;20165:10;24511:24;;24503:62;;;;-1:-1:-1;;;24503:62:0;;10380:2:1;24503:62:0;;;10362:21:1;10419:2;10399:18;;;10392:30;10458:27;10438:18;;;10431:55;10503:18;;24503:62:0;10352:175:1;24503:62:0;20165:10;24578:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24578:42:0;;;;;;;;;;:53;;-1:-1:-1;;24578:53:0;;;;;;;:42;-1:-1:-1;;;;;24647:48:0;;24686:8;24647:48;;;;7587:14:1;7580:22;7562:41;;7550:2;7535:18;;7517:92;24647:48:0;;;;;;;;24408:295;;:::o;45133:610::-;45243:18;;45285:11;;45278:18;;45270:43;;;;-1:-1:-1;;;45270:43:0;;14756:2:1;45270:43:0;;;14738:21:1;14795:2;14775:18;;;14768:30;-1:-1:-1;;;14814:18:1;;;14807:42;14866:18;;45270:43:0;14728:162:1;45270:43:0;45329:6;;;;45328:7;45320:16;;;;;;45367:1;45353:11;:15;45345:24;;;;;;45399:13;;45384:11;:28;;45376:37;;;;;;45452:18;;45428:20;45437:11;45428:6;:20;:::i;:::-;:42;;45420:51;;;;;;41875:6;;-1:-1:-1;;;;;41875:6:0;45484:10;:21;45480:93;;45553:11;45539;;:25;;;;:::i;:::-;45526:9;:38;;45518:47;;;;;;45598:1;45581:93;45606:11;45601:1;:16;45581:93;;45633:33;45643:10;45655;45664:1;45655:6;:10;:::i;45633:33::-;45619:3;;;;:::i;:::-;;;;45581:93;;;;45726:11;45704:18;;:33;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;45133:610:0:o;49777:83::-;41875:6;;-1:-1:-1;;;;;41875:6:0;20165:10;42022:23;42014:68;;;;-1:-1:-1;;;42014:68:0;;;;;;;:::i;:::-;49834:11:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;49834:20:0;;::::1;::::0;;;::::1;::::0;;49777:83::o;25671:328::-;25846:41;20165:10;25879:7;25846:18;:41::i;:::-;25838:103;;;;-1:-1:-1;;;25838:103:0;;;;;;;:::i;:::-;25952:39;25966:4;25972:2;25976:7;25985:5;25952:13;:39::i;:::-;25671:328;;;;:::o;48812:423::-;27574:4;27598:16;;;:7;:16;;;;;;48910:13;;-1:-1:-1;;;;;27598:16:0;48935:97;;;;-1:-1:-1;;;48935:97:0;;13938:2:1;48935:97:0;;;13920:21:1;13977:2;13957:18;;;13950:30;14016:34;13996:18;;;13989:62;-1:-1:-1;;;14067:18:1;;;14060:45;14122:19;;48935:97:0;13910:237:1;48935:97:0;49041:28;49072:10;:8;:10::i;:::-;49041:41;;49127:1;49102:14;49096:28;:32;:133;;;;;;;;;;;;;;;;;49164:14;49180:18;:7;:16;:18::i;:::-;49200:13;49147:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49096:133;49089:140;48812:423;-1:-1:-1;;;48812:423:0:o;50156:79::-;41875:6;;-1:-1:-1;;;;;41875:6:0;20165:10;42022:23;42014:68;;;;-1:-1:-1;;;42014:68:0;;;;;;;:::i;:::-;50214:10:::1;:15:::0;50156:79::o;49570:122::-;41875:6;;-1:-1:-1;;;;;41875:6:0;20165:10;42022:23;42014:68;;;;-1:-1:-1;;;42014:68:0;;;;;;;:::i;:::-;49653:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;42702:192::-:0;41875:6;;-1:-1:-1;;;;;41875:6:0;20165:10;42022:23;42014:68;;;;-1:-1:-1;;;42014:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42791:22:0;::::1;42783:73;;;::::0;-1:-1:-1;;;42783:73:0;;8871:2:1;42783:73:0::1;::::0;::::1;8853:21:1::0;8910:2;8890:18;;;8883:30;8949:34;8929:18;;;8922:62;-1:-1:-1;;;9000:18:1;;;8993:36;9046:19;;42783:73:0::1;8843:228:1::0;42783:73:0::1;42867:19;42877:8;42867:9;:19::i;49241:91::-:0;41875:6;;-1:-1:-1;;;;;41875:6:0;20165:10;42022:23;42014:68;;;;-1:-1:-1;;;42014:68:0;;;;;;;:::i;:::-;49305:11:::1;:21:::0;49241:91::o;21611:305::-;21713:4;-1:-1:-1;;;;;;21750:40:0;;-1:-1:-1;;;21750:40:0;;:105;;-1:-1:-1;;;;;;;21807:48:0;;-1:-1:-1;;;21807:48:0;21750:105;:158;;;-1:-1:-1;;;;;;;;;;7553:40:0;;;21872:36;7444:157;31491:174;31566:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31566:29:0;-1:-1:-1;;;;;31566:29:0;;;;;;;;:24;;31620:23;31566:24;31620:14;:23::i;:::-;-1:-1:-1;;;;;31611:46:0;;;;;;;;;;;31491:174;;:::o;27803:348::-;27896:4;27598:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27598:16:0;27913:73;;;;-1:-1:-1;;;27913:73:0;;10734:2:1;27913:73:0;;;10716:21:1;10773:2;10753:18;;;10746:30;10812:34;10792:18;;;10785:62;-1:-1:-1;;;10863:18:1;;;10856:42;10915:19;;27913:73:0;10706:234:1;27913:73:0;27997:13;28013:23;28028:7;28013:14;:23::i;:::-;27997:39;;28066:5;-1:-1:-1;;;;;28055:16:0;:7;-1:-1:-1;;;;;28055:16:0;;:51;;;;28099:7;-1:-1:-1;;;;;28075:31:0;:20;28087:7;28075:11;:20::i;:::-;-1:-1:-1;;;;;28075:31:0;;28055:51;:87;;;-1:-1:-1;;;;;;24895:25:0;;;24871:4;24895:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28110:32;28047:96;27803:348;-1:-1:-1;;;;27803:348:0:o;30795:578::-;30954:4;-1:-1:-1;;;;;30927:31:0;:23;30942:7;30927:14;:23::i;:::-;-1:-1:-1;;;;;30927:31:0;;30919:85;;;;-1:-1:-1;;;30919:85:0;;13528:2:1;30919:85:0;;;13510:21:1;13567:2;13547:18;;;13540:30;13606:34;13586:18;;;13579:62;-1:-1:-1;;;13657:18:1;;;13650:39;13706:19;;30919:85:0;13500:231:1;30919:85:0;-1:-1:-1;;;;;31023:16:0;;31015:65;;;;-1:-1:-1;;;31015:65:0;;9975:2:1;31015:65:0;;;9957:21:1;10014:2;9994:18;;;9987:30;10053:34;10033:18;;;10026:62;-1:-1:-1;;;10104:18:1;;;10097:34;10148:19;;31015:65:0;9947:226:1;31015:65:0;31093:39;31114:4;31120:2;31124:7;31093:20;:39::i;:::-;31197:29;31214:1;31218:7;31197:8;:29::i;:::-;-1:-1:-1;;;;;31239:15:0;;;;;;:9;:15;;;;;:20;;31258:1;;31239:15;:20;;31258:1;;31239:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31270:13:0;;;;;;:9;:13;;;;;:18;;31287:1;;31270:13;:18;;31287:1;;31270:18;:::i;:::-;;;;-1:-1:-1;;31299:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31299:21:0;-1:-1:-1;;;;;31299:21:0;;;;;;;;;31338:27;;31299:16;;31338:27;;;;;;;30795:578;;;:::o;42902:173::-;42977:6;;;-1:-1:-1;;;;;42994:17:0;;;-1:-1:-1;;;;;;42994:17:0;;;;;;;43027:40;;42977:6;;;42994:17;42977:6;;43027:40;;42958:16;;43027:40;42902:173;;:::o;28493:110::-;28569:26;28579:2;28583:7;28569:26;;;;;;;;;;;;:9;:26::i;26881:315::-;27038:28;27048:4;27054:2;27058:7;27038:9;:28::i;:::-;27085:48;27108:4;27114:2;27118:7;27127:5;27085:22;:48::i;:::-;27077:111;;;;-1:-1:-1;;;27077:111:0;;;;;;;:::i;43976:102::-;44036:13;44065:7;44058:14;;;;;:::i;7919:723::-;7975:13;8196:10;8192:53;;-1:-1:-1;8223:10:0;;;;;;;;;;;;-1:-1:-1;;;8223:10:0;;;;;;8192:53;8270:5;8255:12;8311:78;8318:9;;8311:78;;8344:8;;;;:::i;:::-;;-1:-1:-1;8367:10:0;;-1:-1:-1;8375:2:0;8367:10;;:::i;:::-;;;8311:78;;;8399:19;8431:6;8421:17;;;;;;-1:-1:-1;;;8421:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8421:17:0;;8399:39;;8449:154;8456:10;;8449:154;;8483:11;8493:1;8483:11;;:::i;:::-;;-1:-1:-1;8552:10:0;8560:2;8552:5;:10;:::i;:::-;8539:24;;:2;:24;:::i;:::-;8526:39;;8509:6;8516;8509:14;;;;;;-1:-1:-1;;;8509:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;8509:56:0;;;;;;;;-1:-1:-1;8580:11:0;8589:2;8580:11;;:::i;:::-;;;8449:154;;36340:589;-1:-1:-1;;;;;36546:18:0;;36542:187;;36581:40;36613:7;37756:10;:17;;37729:24;;;;:15;:24;;;;;:44;;;37784:24;;;;;;;;;;;;37652:164;36581:40;36542:187;;;36651:2;-1:-1:-1;;;;;36643:10:0;:4;-1:-1:-1;;;;;36643:10:0;;36639:90;;36670:47;36703:4;36709:7;36670:32;:47::i;:::-;-1:-1:-1;;;;;36743:16:0;;36739:183;;36776:45;36813:7;36776:36;:45::i;:::-;36739:183;;;36849:4;-1:-1:-1;;;;;36843:10:0;:2;-1:-1:-1;;;;;36843:10:0;;36839:83;;36870:40;36898:2;36902:7;36870:27;:40::i;28830:321::-;28960:18;28966:2;28970:7;28960:5;:18::i;:::-;29011:54;29042:1;29046:2;29050:7;29059:5;29011:22;:54::i;:::-;28989:154;;;;-1:-1:-1;;;28989:154:0;;;;;;;:::i;32230:799::-;32385:4;-1:-1:-1;;;;;32406:13:0;;10765:20;10813:8;32402:620;;32442:72;;-1:-1:-1;;;32442:72:0;;-1:-1:-1;;;;;32442:36:0;;;;;:72;;20165:10;;32493:4;;32499:7;;32508:5;;32442:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32442:72:0;;;;;;;;-1:-1:-1;;32442:72:0;;;;;;;;;;;;:::i;:::-;;;32438:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32684:13:0;;32680:272;;32727:60;;-1:-1:-1;;;32727:60:0;;;;;;;:::i;32680:272::-;32902:6;32896:13;32887:6;32883:2;32879:15;32872:38;32438:529;-1:-1:-1;;;;;;32565:51:0;-1:-1:-1;;;32565:51:0;;-1:-1:-1;32558:58:0;;32402:620;-1:-1:-1;33006:4:0;32230:799;;;;;;:::o;38443:988::-;38709:22;38759:1;38734:22;38751:4;38734:16;:22::i;:::-;:26;;;;:::i;:::-;38771:18;38792:26;;;:17;:26;;;;;;38709:51;;-1:-1:-1;38925:28:0;;;38921:328;;-1:-1:-1;;;;;38992:18:0;;38970:19;38992:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39043:30;;;;;;:44;;;39160:30;;:17;:30;;;;;:43;;;38921:328;-1:-1:-1;39345:26:0;;;;:17;:26;;;;;;;;39338:33;;;-1:-1:-1;;;;;39389:18:0;;;;;:12;:18;;;;;:34;;;;;;;39382:41;38443:988::o;39726:1079::-;40004:10;:17;39979:22;;40004:21;;40024:1;;40004:21;:::i;:::-;40036:18;40057:24;;;:15;:24;;;;;;40430:10;:26;;39979:46;;-1:-1:-1;40057:24:0;;39979:46;;40430:26;;;;-1:-1:-1;;;40430:26:0;;;;;;;;;;;;;;;;;40408:48;;40494:11;40469:10;40480;40469:22;;;;;;-1:-1:-1;;;40469:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40574:28;;;:15;:28;;;;;;;:41;;;40746:24;;;;;40739:31;40781:10;:16;;;;;-1:-1:-1;;;40781:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39726:1079;;;;:::o;37230:221::-;37315:14;37332:20;37349:2;37332:16;:20::i;:::-;-1:-1:-1;;;;;37363:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37408:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37230:221:0:o;29487:382::-;-1:-1:-1;;;;;29567:16:0;;29559:61;;;;-1:-1:-1;;;29559:61:0;;12393:2:1;29559:61:0;;;12375:21:1;;;12412:18;;;12405:30;12471:34;12451:18;;;12444:62;12523:18;;29559:61:0;12365:182:1;29559:61:0;27574:4;27598:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27598:16:0;:30;29631:58;;;;-1:-1:-1;;;29631:58:0;;9278:2:1;29631:58:0;;;9260:21:1;9317:2;9297:18;;;9290:30;9356;9336:18;;;9329:58;9404:18;;29631:58:0;9250:178:1;29631:58:0;29702:45;29731:1;29735:2;29739:7;29702:20;:45::i;:::-;-1:-1:-1;;;;;29760:13:0;;;;;;:9;:13;;;;;:18;;29777:1;;29760:13;:18;;29777:1;;29760:18;:::i;:::-;;;;-1:-1:-1;;29789:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29789:21:0;-1:-1:-1;;;;;29789:21:0;;;;;;;;29828:33;;29789:16;;;29828:33;;29789:16;;29828:33;29487:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;1194:270::-;;;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;;;;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;;;;;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;;;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:190::-;;3160:2;3148:9;3139:7;3135:23;3131:32;3128:2;;;3181:6;3173;3166:22;3128:2;3209:26;3225:9;3209:26;:::i;3246:255::-;;3357:2;3345:9;3336:7;3332:23;3328:32;3325:2;;;3378:6;3370;3363:22;3325:2;3422:9;3409:23;3441:30;3465:5;3441:30;:::i;3506:259::-;;3628:2;3616:9;3607:7;3603:23;3599:32;3596:2;;;3649:6;3641;3634:22;3596:2;3686:9;3680:16;3705:30;3729:5;3705:30;:::i;3770:480::-;;3892:2;3880:9;3871:7;3867:23;3863:32;3860:2;;;3913:6;3905;3898:22;3860:2;3958:9;3945:23;3991:18;3983:6;3980:30;3977:2;;;4028:6;4020;4013:22;3977:2;4056:22;;4109:4;4101:13;;4097:27;-1:-1:-1;4087:2:1;;4143:6;4135;4128:22;4087:2;4171:73;4236:7;4231:2;4218:16;4213:2;4209;4205:11;4171:73;:::i;4255:190::-;;4367:2;4355:9;4346:7;4342:23;4338:32;4335:2;;;4388:6;4380;4373:22;4335:2;-1:-1:-1;4416:23:1;;4325:120;-1:-1:-1;4325:120:1:o;4450:258::-;;;4579:2;4567:9;4558:7;4554:23;4550:32;4547:2;;;4600:6;4592;4585:22;4547:2;-1:-1:-1;;4628:23:1;;;4698:2;4683:18;;;4670:32;;-1:-1:-1;4537:171:1:o;4713:257::-;;4792:5;4786:12;4819:6;4814:3;4807:19;4835:63;4891:6;4884:4;4879:3;4875:14;4868:4;4861:5;4857:16;4835:63;:::i;:::-;4952:2;4931:15;-1:-1:-1;;4927:29:1;4918:39;;;;4959:4;4914:50;;4762:208;-1:-1:-1;;4762:208:1:o;4975:1531::-;;5237:6;5231:13;5263:4;5276:51;5320:6;5315:3;5310:2;5302:6;5298:15;5276:51;:::i;:::-;5390:13;;5349:16;;;;5412:55;5390:13;5349:16;5434:15;;;5412:55;:::i;:::-;5558:13;;5489:20;;;5529:3;;5618:1;5640:18;;;;5693;;;;5720:2;;5798:4;5788:8;5784:19;5772:31;;5720:2;5861;5851:8;5848:16;5828:18;5825:40;5822:2;;;-1:-1:-1;;;5888:33:1;;5944:4;5941:1;5934:15;5974:4;5895:3;5962:17;5822:2;6005:18;6032:110;;;;6156:1;6151:330;;;;5998:483;;6032:110;-1:-1:-1;;6067:24:1;;6053:39;;6112:20;;;;-1:-1:-1;6032:110:1;;6151:330;15908:127;15974:17;;;16024:4;16008:21;;6246:3;6262:169;6276:8;6273:1;6270:15;6262:169;;;6358:14;;6343:13;;;6336:37;6401:16;;;;6293:10;;6262:169;;;6266:3;;6462:8;6455:5;6451:20;6444:27;;5998:483;-1:-1:-1;6497:3:1;;5207:1299;-1:-1:-1;;;;;;;;;;;5207:1299:1:o;6929:488::-;-1:-1:-1;;;;;7198:15:1;;;7180:34;;7250:15;;7245:2;7230:18;;7223:43;7297:2;7282:18;;7275:34;;;7345:3;7340:2;7325:18;;7318:31;;;6929:488;;7366:45;;7391:19;;7383:6;7366:45;:::i;:::-;7358:53;7132:285;-1:-1:-1;;;;;;7132:285:1:o;7614:219::-;;7763:2;7752:9;7745:21;7783:44;7823:2;7812:9;7808:18;7800:6;7783:44;:::i;8250:414::-;8452:2;8434:21;;;8491:2;8471:18;;;8464:30;8530:34;8525:2;8510:18;;8503:62;-1:-1:-1;;;8596:2:1;8581:18;;8574:48;8654:3;8639:19;;8424:240::o;9433:335::-;9635:2;9617:21;;;9674:2;9654:18;;;9647:30;-1:-1:-1;;;9708:2:1;9693:18;;9686:41;9759:2;9744:18;;9607:161::o;12965:356::-;13167:2;13149:21;;;13186:18;;;13179:30;13245:34;13240:2;13225:18;;13218:62;13312:2;13297:18;;13139:182::o;14895:413::-;15097:2;15079:21;;;15136:2;15116:18;;;15109:30;15175:34;15170:2;15155:18;;15148:62;-1:-1:-1;;;15241:2:1;15226:18;;15219:47;15298:3;15283:19;;15069:239::o;16040:128::-;;16111:1;16107:6;16104:1;16101:13;16098:2;;;16117:18;;:::i;:::-;-1:-1:-1;16153:9:1;;16088:80::o;16173:120::-;;16239:1;16229:2;;16244:18;;:::i;:::-;-1:-1:-1;16278:9:1;;16219:74::o;16298:168::-;;16404:1;16400;16396:6;16392:14;16389:1;16386:21;16381:1;16374:9;16367:17;16363:45;16360:2;;;16411:18;;:::i;:::-;-1:-1:-1;16451:9:1;;16350:116::o;16471:125::-;;16539:1;16536;16533:8;16530:2;;;16544:18;;:::i;:::-;-1:-1:-1;16581:9:1;;16520:76::o;16601:258::-;16673:1;16683:113;16697:6;16694:1;16691:13;16683:113;;;16773:11;;;16767:18;16754:11;;;16747:39;16719:2;16712:10;16683:113;;;16814:6;16811:1;16808:13;16805:2;;;-1:-1:-1;;16849:1:1;16831:16;;16824:27;16654:205::o;16864:380::-;16943:1;16939:12;;;;16986;;;17007:2;;17061:4;17053:6;17049:17;17039:27;;17007:2;17114;17106:6;17103:14;17083:18;17080:38;17077:2;;;17160:10;17155:3;17151:20;17148:1;17141:31;17195:4;17192:1;17185:15;17223:4;17220:1;17213:15;17077:2;;16919:325;;;:::o;17249:135::-;;-1:-1:-1;;17309:17:1;;17306:2;;;17329:18;;:::i;:::-;-1:-1:-1;17376:1:1;17365:13;;17296:88::o;17389:112::-;;17447:1;17437:2;;17452:18;;:::i;:::-;-1:-1:-1;17486:9:1;;17427:74::o;17506:127::-;17567:10;17562:3;17558:20;17555:1;17548:31;17598:4;17595:1;17588:15;17622:4;17619:1;17612:15;17638:127;17699:10;17694:3;17690:20;17687:1;17680:31;17730:4;17727:1;17720:15;17754:4;17751:1;17744:15;17770:127;17831:10;17826:3;17822:20;17819:1;17812:31;17862:4;17859:1;17852:15;17886:4;17883:1;17876:15;17902:131;-1:-1:-1;;;;;;17976:32:1;;17966:43;;17956:2;;18023:1;18020;18013:12

Swarm Source

ipfs://a0d49db7b524c1d040030f46797f0e57f3d10a5d0525ca7808f4b2a739f659af
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.