ETH Price: $3,321.41 (+2.51%)
Gas: 3 Gwei

Token

Haunted Hype Beasts (HHB)
 

Overview

Max Total Supply

666 HHB

Holders

189

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
fishheadsoup.eth
Balance
4 HHB
0x67012765A786184DF1d3157732F047dAB4aAD0f4
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:
HauntedHypeBeasts

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-15
*/

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

/**
 * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/ContextMixin.sol
 */
abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

/**
 * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/Initializable.sol
 */
contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

/**
 * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/EIP712Base.sol
 */
contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contractsa that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

pragma solidity >=0.7.0 <0.9.0;
contract HauntedHypeBeasts is ERC721Enumerable, ContextMixin, Ownable {
  using Strings for uint256;

  string baseURI;
  //string public baseExtension = ".json";
  uint256 public cost = .005 ether;
  uint256 public maxSupply = 666;
  uint256 public maxMintAmount = 5;
  bool public paused = false;
  bool public revealed = false;
  string public notRevealedUri;

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

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

  // public
  function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

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

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

    function airDrop(address recipient) public onlyOwner
    {
        uint256 supply = totalSupply() + 1;
        _safeMint(recipient, supply);
    }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
   
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
 
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }
 
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  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 withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function _msgSender()
        internal
        override
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }
}

/**
 * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/NativeMetaTransaction.sol
 */
contract NativeMetaTransaction is EIP712Base {
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });
        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress] + 1;

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

contract ERC721MetaTransactionMatic is ERC721, ContextMixin, NativeMetaTransaction {

    constructor (string memory name_, string memory symbol_) ERC721(name_, symbol_) {
        _initializeEIP712(name_);
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender()
        internal
        override
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }

    /**
    * As another option for supporting trading without requiring meta transactions, override isApprovedForAll to whitelist OpenSea proxy accounts on Matic
    */
    function isApprovedForAll(
        address _owner,
        address _operator
    ) public override view returns (bool isOperator) {
        if (_operator == address(0x58807baD0B376efc12F5AD86aAc70E78ed67deaE)) {
            return true;
        }
       
        return ERC721.isApprovedForAll(_owner, _operator);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","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":"address","name":"recipient","type":"address"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","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":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526611c37937e08000600c5561029a600d556005600e55600f805461ffff191690553480156200003257600080fd5b5060405162002af038038062002af0833981016040819052620000559162000340565b8383600062000065838262000488565b50600162000074828262000488565b505050620000916200008b620000b160201b60201c565b620000cd565b6200009c826200011f565b620000a781620001a2565b5050505062000554565b6000620000c86200021d60201b620014031760201c565b905090565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000129620000b1565b6001600160a01b031662000145600a546001600160a01b031690565b6001600160a01b031614620001905760405162461bcd60e51b8152602060048201819052602482015260008051602062002ad083398151915260448201526064015b60405180910390fd5b600b6200019e828262000488565b5050565b620001ac620000b1565b6001600160a01b0316620001c8600a546001600160a01b031690565b6001600160a01b0316146200020f5760405162461bcd60e51b8152602060048201819052602482015260008051602062002ad0833981519152604482015260640162000187565b60106200019e828262000488565b60003033036200027557600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620002789050565b50335b90565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002a357600080fd5b81516001600160401b0380821115620002c057620002c06200027b565b604051601f8301601f19908116603f01168101908282118183101715620002eb57620002eb6200027b565b816040528381526020925086838588010111156200030857600080fd5b600091505b838210156200032c57858201830151818301840152908201906200030d565b600093810190920192909252949350505050565b600080600080608085870312156200035757600080fd5b84516001600160401b03808211156200036f57600080fd5b6200037d8883890162000291565b955060208701519150808211156200039457600080fd5b620003a28883890162000291565b94506040870151915080821115620003b957600080fd5b620003c78883890162000291565b93506060870151915080821115620003de57600080fd5b50620003ed8782880162000291565b91505092959194509250565b600181811c908216806200040e57607f821691505b6020821081036200042f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200048357600081815260208120601f850160051c810160208610156200045e5750805b601f850160051c820191505b818110156200047f578281556001016200046a565b5050505b505050565b81516001600160401b03811115620004a457620004a46200027b565b620004bc81620004b58454620003f9565b8462000435565b602080601f831160018114620004f45760008415620004db5750858301515b600019600386901b1c1916600185901b1785556200047f565b600085815260208120601f198616915b82811015620005255788860151825594840194600190910190840162000504565b5085821015620005445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61256c80620005646000396000f3fe6080604052600436106102045760003560e01c806355f804b311610118578063a22cb465116100a0578063cd18d5a41161006f578063cd18d5a4146105a9578063d5abeb01146105c9578063e985e9c5146105df578063f2c4ce1e14610628578063f2fde38b1461064857600080fd5b8063a22cb46514610534578063a475b5dd14610554578063b88d4fde14610569578063c87b56dd1461058957600080fd5b8063715018a6116100e7578063715018a6146104b95780637f00c7a6146104ce5780638da5cb5b146104ee57806395d89b411461050c578063a0712d681461052157600080fd5b806355f804b31461043f5780635c975abb1461045f5780636352211e1461047957806370a082311461049957600080fd5b8063239c70ae1161019b57806342842e0e1161016a57806342842e0e14610393578063438b6300146103b357806344a0d68a146103e05780634f6ccce714610400578063518302271461042057600080fd5b8063239c70ae1461032857806323b872dd1461033e5780632f745c591461035e5780633ccfd60b1461037e57600080fd5b8063081c8c44116101d7578063081c8c44146102ba578063095ea7b3146102cf57806313faede6146102ef57806318160ddd1461031357600080fd5b806301ffc9a71461020957806302329a291461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611e64565b610668565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611e96565b610693565b005b34801561026c57600080fd5b506102756106f8565b6040516102359190611f01565b34801561028e57600080fd5b506102a261029d366004611f14565b61078a565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b5061027561081f565b3480156102db57600080fd5b5061025e6102ea366004611f44565b6108ad565b3480156102fb57600080fd5b50610305600c5481565b604051908152602001610235565b34801561031f57600080fd5b50600854610305565b34801561033457600080fd5b50610305600e5481565b34801561034a57600080fd5b5061025e610359366004611f6e565b6109d4565b34801561036a57600080fd5b50610305610379366004611f44565b610a0c565b34801561038a57600080fd5b5061025e610aa2565b34801561039f57600080fd5b5061025e6103ae366004611f6e565b610b1e565b3480156103bf57600080fd5b506103d36103ce366004611faa565b610b39565b6040516102359190611fc5565b3480156103ec57600080fd5b5061025e6103fb366004611f14565b610bdb565b34801561040c57600080fd5b5061030561041b366004611f14565b610c29565b34801561042c57600080fd5b50600f5461022990610100900460ff1681565b34801561044b57600080fd5b5061025e61045a366004612095565b610cbc565b34801561046b57600080fd5b50600f546102299060ff1681565b34801561048557600080fd5b506102a2610494366004611f14565b610d11565b3480156104a557600080fd5b506103056104b4366004611faa565b610d88565b3480156104c557600080fd5b5061025e610e0f565b3480156104da57600080fd5b5061025e6104e9366004611f14565b610e64565b3480156104fa57600080fd5b50600a546001600160a01b03166102a2565b34801561051857600080fd5b50610275610eb2565b61025e61052f366004611f14565b610ec1565b34801561054057600080fd5b5061025e61054f3660046120de565b610f6e565b34801561056057600080fd5b5061025e61106f565b34801561057557600080fd5b5061025e610584366004612111565b6110c9565b34801561059557600080fd5b506102756105a4366004611f14565b611108565b3480156105b557600080fd5b5061025e6105c4366004611faa565b611289565b3480156105d557600080fd5b50610305600d5481565b3480156105eb57600080fd5b506102296105fa36600461218d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063457600080fd5b5061025e610643366004612095565b6112f4565b34801561065457600080fd5b5061025e610663366004611faa565b611349565b60006001600160e01b0319821663780e9d6360e01b148061068d575061068d8261145f565b92915050565b61069b6114af565b6001600160a01b03166106b6600a546001600160a01b031690565b6001600160a01b0316146106e55760405162461bcd60e51b81526004016106dc906121b7565b60405180910390fd5b600f805460ff1916911515919091179055565b606060008054610707906121ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610733906121ec565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108035760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106dc565b506000908152600460205260409020546001600160a01b031690565b6010805461082c906121ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610858906121ec565b80156108a55780601f1061087a576101008083540402835291602001916108a5565b820191906000526020600020905b81548152906001019060200180831161088857829003601f168201915b505050505081565b60006108b882610d11565b9050806001600160a01b0316836001600160a01b0316036109255760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106dc565b806001600160a01b03166109376114af565b6001600160a01b031614806109535750610953816105fa6114af565b6109c55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106dc565b6109cf83836114be565b505050565b6109e56109df6114af565b8261152c565b610a015760405162461bcd60e51b81526004016106dc90612226565b6109cf838383611623565b6000610a1783610d88565b8210610a795760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106dc565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610aaa6114af565b6001600160a01b0316610ac5600a546001600160a01b031690565b6001600160a01b031614610aeb5760405162461bcd60e51b81526004016106dc906121b7565b6040514790339082156108fc029083906000818181858888f19350505050158015610b1a573d6000803e3d6000fd5b5050565b6109cf838383604051806020016040528060008152506110c9565b60606000610b4683610d88565b905060008167ffffffffffffffff811115610b6357610b63612009565b604051908082528060200260200182016040528015610b8c578160200160208202803683370190505b50905060005b82811015610bd357610ba48582610a0c565b828281518110610bb657610bb6612277565b602090810291909101015280610bcb816122a3565b915050610b92565b509392505050565b610be36114af565b6001600160a01b0316610bfe600a546001600160a01b031690565b6001600160a01b031614610c245760405162461bcd60e51b81526004016106dc906121b7565b600c55565b6000610c3460085490565b8210610c975760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106dc565b60088281548110610caa57610caa612277565b90600052602060002001549050919050565b610cc46114af565b6001600160a01b0316610cdf600a546001600160a01b031690565b6001600160a01b031614610d055760405162461bcd60e51b81526004016106dc906121b7565b600b610b1a828261230a565b6000818152600260205260408120546001600160a01b03168061068d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106dc565b60006001600160a01b038216610df35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106dc565b506001600160a01b031660009081526003602052604090205490565b610e176114af565b6001600160a01b0316610e32600a546001600160a01b031690565b6001600160a01b031614610e585760405162461bcd60e51b81526004016106dc906121b7565b610e6260006117ce565b565b610e6c6114af565b6001600160a01b0316610e87600a546001600160a01b031690565b6001600160a01b031614610ead5760405162461bcd60e51b81526004016106dc906121b7565b600e55565b606060018054610707906121ec565b6000610ecc60085490565b600f5490915060ff1615610edf57600080fd5b60008211610eec57600080fd5b600e54821115610efb57600080fd5b600d54610f0883836123ca565b1115610f1357600080fd5b600a546001600160a01b03163314610f3f5781600c54610f3391906123dd565b341015610f3f57600080fd5b60015b8281116109cf57610f5c33610f5783856123ca565b611820565b80610f66816122a3565b915050610f42565b610f766114af565b6001600160a01b0316826001600160a01b031603610fd65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106dc565b8060056000610fe36114af565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556110276114af565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611063911515815260200190565b60405180910390a35050565b6110776114af565b6001600160a01b0316611092600a546001600160a01b031690565b6001600160a01b0316146110b85760405162461bcd60e51b81526004016106dc906121b7565b600f805461ff001916610100179055565b6110da6110d46114af565b8361152c565b6110f65760405162461bcd60e51b81526004016106dc90612226565b6111028484848461183a565b50505050565b6000818152600260205260409020546060906001600160a01b03166111875760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106dc565b600f54610100900460ff16151560000361122d57601080546111a8906121ec565b80601f01602080910402602001604051908101604052809291908181526020018280546111d4906121ec565b80156112215780601f106111f657610100808354040283529160200191611221565b820191906000526020600020905b81548152906001019060200180831161120457829003601f168201915b50505050509050919050565b600061123761186d565b905060008151116112575760405180602001604052806000815250611282565b806112618461187c565b6040516020016112729291906123f4565b6040516020818303038152906040525b9392505050565b6112916114af565b6001600160a01b03166112ac600a546001600160a01b031690565b6001600160a01b0316146112d25760405162461bcd60e51b81526004016106dc906121b7565b60006112dd60085490565b6112e89060016123ca565b9050610b1a8282611820565b6112fc6114af565b6001600160a01b0316611317600a546001600160a01b031690565b6001600160a01b03161461133d5760405162461bcd60e51b81526004016106dc906121b7565b6010610b1a828261230a565b6113516114af565b6001600160a01b031661136c600a546001600160a01b031690565b6001600160a01b0316146113925760405162461bcd60e51b81526004016106dc906121b7565b6001600160a01b0381166113f75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106dc565b611400816117ce565b50565b600030330361145957600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b0316915061145c9050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b148061149057506001600160e01b03198216635b5e139f60e01b145b8061068d57506301ffc9a760e01b6001600160e01b031983161461068d565b60006114b9611403565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114f382610d11565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115a55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106dc565b60006115b083610d11565b9050806001600160a01b0316846001600160a01b031614806115eb5750836001600160a01b03166115e08461078a565b6001600160a01b0316145b8061161b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661163682610d11565b6001600160a01b03161461169e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106dc565b6001600160a01b0382166117005760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106dc565b61170b83838361197d565b6117166000826114be565b6001600160a01b038316600090815260036020526040812080546001929061173f908490612423565b90915550506001600160a01b038216600090815260036020526040812080546001929061176d9084906123ca565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b1a828260405180602001604052806000815250611a35565b611845848484611623565b61185184848484611a68565b6111025760405162461bcd60e51b81526004016106dc90612436565b6060600b8054610707906121ec565b6060816000036118a35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118cd57806118b7816122a3565b91506118c69050600a8361249e565b91506118a7565b60008167ffffffffffffffff8111156118e8576118e8612009565b6040519080825280601f01601f191660200182016040528015611912576020820181803683370190505b5090505b841561161b57611927600183612423565b9150611934600a866124b2565b61193f9060306123ca565b60f81b81838151811061195457611954612277565b60200101906001600160f81b031916908160001a905350611976600a8661249e565b9450611916565b6001600160a01b0383166119d8576119d381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119fb565b816001600160a01b0316836001600160a01b0316146119fb576119fb8382611b70565b6001600160a01b038216611a12576109cf81611c0d565b826001600160a01b0316826001600160a01b0316146109cf576109cf8282611cbc565b611a3f8383611d00565b611a4c6000848484611a68565b6109cf5760405162461bcd60e51b81526004016106dc90612436565b60006001600160a01b0384163b15611b6557836001600160a01b031663150b7a02611a916114af565b8786866040518563ffffffff1660e01b8152600401611ab394939291906124c6565b6020604051808303816000875af1925050508015611aee575060408051601f3d908101601f19168201909252611aeb91810190612503565b60015b611b4b573d808015611b1c576040519150601f19603f3d011682016040523d82523d6000602084013e611b21565b606091505b508051600003611b435760405162461bcd60e51b81526004016106dc90612436565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061161b565b506001949350505050565b60006001611b7d84610d88565b611b879190612423565b600083815260076020526040902054909150808214611bda576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c1f90600190612423565b60008381526009602052604081205460088054939450909284908110611c4757611c47612277565b906000526020600020015490508060088381548110611c6857611c68612277565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ca057611ca0612520565b6001900381819060005260206000200160009055905550505050565b6000611cc783610d88565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d565760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106dc565b6000818152600260205260409020546001600160a01b031615611dbb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106dc565b611dc76000838361197d565b6001600160a01b0382166000908152600360205260408120805460019290611df09084906123ca565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461140057600080fd5b600060208284031215611e7657600080fd5b813561128281611e4e565b80358015158114611e9157600080fd5b919050565b600060208284031215611ea857600080fd5b61128282611e81565b60005b83811015611ecc578181015183820152602001611eb4565b50506000910152565b60008151808452611eed816020860160208601611eb1565b601f01601f19169290920160200192915050565b6020815260006112826020830184611ed5565b600060208284031215611f2657600080fd5b5035919050565b80356001600160a01b0381168114611e9157600080fd5b60008060408385031215611f5757600080fd5b611f6083611f2d565b946020939093013593505050565b600080600060608486031215611f8357600080fd5b611f8c84611f2d565b9250611f9a60208501611f2d565b9150604084013590509250925092565b600060208284031215611fbc57600080fd5b61128282611f2d565b6020808252825182820181905260009190848201906040850190845b81811015611ffd57835183529284019291840191600101611fe1565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561203a5761203a612009565b604051601f8501601f19908116603f0116810190828211818310171561206257612062612009565b8160405280935085815286868601111561207b57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120a757600080fd5b813567ffffffffffffffff8111156120be57600080fd5b8201601f810184136120cf57600080fd5b61161b8482356020840161201f565b600080604083850312156120f157600080fd5b6120fa83611f2d565b915061210860208401611e81565b90509250929050565b6000806000806080858703121561212757600080fd5b61213085611f2d565b935061213e60208601611f2d565b925060408501359150606085013567ffffffffffffffff81111561216157600080fd5b8501601f8101871361217257600080fd5b6121818782356020840161201f565b91505092959194509250565b600080604083850312156121a057600080fd5b6121a983611f2d565b915061210860208401611f2d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061220057607f821691505b60208210810361222057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016122b5576122b561228d565b5060010190565b601f8211156109cf57600081815260208120601f850160051c810160208610156122e35750805b601f850160051c820191505b81811015612302578281556001016122ef565b505050505050565b815167ffffffffffffffff81111561232457612324612009565b6123388161233284546121ec565b846122bc565b602080601f83116001811461236d57600084156123555750858301515b600019600386901b1c1916600185901b178555612302565b600085815260208120601f198616915b8281101561239c5788860151825594840194600190910190840161237d565b50858210156123ba5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561068d5761068d61228d565b808202811582820484141761068d5761068d61228d565b60008351612406818460208801611eb1565b83519083019061241a818360208801611eb1565b01949350505050565b8181038181111561068d5761068d61228d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826124ad576124ad612488565b500490565b6000826124c1576124c1612488565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124f990830184611ed5565b9695505050505050565b60006020828403121561251557600080fd5b815161128281611e4e565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220df40858426f7cf865cf2ddef0b025ec2ecdd386183310dc7ebb7c25235d6833d64736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000134861756e7465642048797065204265617374730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034848420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f6861756e74656468622e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f446174612f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003368747470733a2f2f6861756e74656468622e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f48696464656e00000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c806355f804b311610118578063a22cb465116100a0578063cd18d5a41161006f578063cd18d5a4146105a9578063d5abeb01146105c9578063e985e9c5146105df578063f2c4ce1e14610628578063f2fde38b1461064857600080fd5b8063a22cb46514610534578063a475b5dd14610554578063b88d4fde14610569578063c87b56dd1461058957600080fd5b8063715018a6116100e7578063715018a6146104b95780637f00c7a6146104ce5780638da5cb5b146104ee57806395d89b411461050c578063a0712d681461052157600080fd5b806355f804b31461043f5780635c975abb1461045f5780636352211e1461047957806370a082311461049957600080fd5b8063239c70ae1161019b57806342842e0e1161016a57806342842e0e14610393578063438b6300146103b357806344a0d68a146103e05780634f6ccce714610400578063518302271461042057600080fd5b8063239c70ae1461032857806323b872dd1461033e5780632f745c591461035e5780633ccfd60b1461037e57600080fd5b8063081c8c44116101d7578063081c8c44146102ba578063095ea7b3146102cf57806313faede6146102ef57806318160ddd1461031357600080fd5b806301ffc9a71461020957806302329a291461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611e64565b610668565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611e96565b610693565b005b34801561026c57600080fd5b506102756106f8565b6040516102359190611f01565b34801561028e57600080fd5b506102a261029d366004611f14565b61078a565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b5061027561081f565b3480156102db57600080fd5b5061025e6102ea366004611f44565b6108ad565b3480156102fb57600080fd5b50610305600c5481565b604051908152602001610235565b34801561031f57600080fd5b50600854610305565b34801561033457600080fd5b50610305600e5481565b34801561034a57600080fd5b5061025e610359366004611f6e565b6109d4565b34801561036a57600080fd5b50610305610379366004611f44565b610a0c565b34801561038a57600080fd5b5061025e610aa2565b34801561039f57600080fd5b5061025e6103ae366004611f6e565b610b1e565b3480156103bf57600080fd5b506103d36103ce366004611faa565b610b39565b6040516102359190611fc5565b3480156103ec57600080fd5b5061025e6103fb366004611f14565b610bdb565b34801561040c57600080fd5b5061030561041b366004611f14565b610c29565b34801561042c57600080fd5b50600f5461022990610100900460ff1681565b34801561044b57600080fd5b5061025e61045a366004612095565b610cbc565b34801561046b57600080fd5b50600f546102299060ff1681565b34801561048557600080fd5b506102a2610494366004611f14565b610d11565b3480156104a557600080fd5b506103056104b4366004611faa565b610d88565b3480156104c557600080fd5b5061025e610e0f565b3480156104da57600080fd5b5061025e6104e9366004611f14565b610e64565b3480156104fa57600080fd5b50600a546001600160a01b03166102a2565b34801561051857600080fd5b50610275610eb2565b61025e61052f366004611f14565b610ec1565b34801561054057600080fd5b5061025e61054f3660046120de565b610f6e565b34801561056057600080fd5b5061025e61106f565b34801561057557600080fd5b5061025e610584366004612111565b6110c9565b34801561059557600080fd5b506102756105a4366004611f14565b611108565b3480156105b557600080fd5b5061025e6105c4366004611faa565b611289565b3480156105d557600080fd5b50610305600d5481565b3480156105eb57600080fd5b506102296105fa36600461218d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063457600080fd5b5061025e610643366004612095565b6112f4565b34801561065457600080fd5b5061025e610663366004611faa565b611349565b60006001600160e01b0319821663780e9d6360e01b148061068d575061068d8261145f565b92915050565b61069b6114af565b6001600160a01b03166106b6600a546001600160a01b031690565b6001600160a01b0316146106e55760405162461bcd60e51b81526004016106dc906121b7565b60405180910390fd5b600f805460ff1916911515919091179055565b606060008054610707906121ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610733906121ec565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108035760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106dc565b506000908152600460205260409020546001600160a01b031690565b6010805461082c906121ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610858906121ec565b80156108a55780601f1061087a576101008083540402835291602001916108a5565b820191906000526020600020905b81548152906001019060200180831161088857829003601f168201915b505050505081565b60006108b882610d11565b9050806001600160a01b0316836001600160a01b0316036109255760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106dc565b806001600160a01b03166109376114af565b6001600160a01b031614806109535750610953816105fa6114af565b6109c55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106dc565b6109cf83836114be565b505050565b6109e56109df6114af565b8261152c565b610a015760405162461bcd60e51b81526004016106dc90612226565b6109cf838383611623565b6000610a1783610d88565b8210610a795760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106dc565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610aaa6114af565b6001600160a01b0316610ac5600a546001600160a01b031690565b6001600160a01b031614610aeb5760405162461bcd60e51b81526004016106dc906121b7565b6040514790339082156108fc029083906000818181858888f19350505050158015610b1a573d6000803e3d6000fd5b5050565b6109cf838383604051806020016040528060008152506110c9565b60606000610b4683610d88565b905060008167ffffffffffffffff811115610b6357610b63612009565b604051908082528060200260200182016040528015610b8c578160200160208202803683370190505b50905060005b82811015610bd357610ba48582610a0c565b828281518110610bb657610bb6612277565b602090810291909101015280610bcb816122a3565b915050610b92565b509392505050565b610be36114af565b6001600160a01b0316610bfe600a546001600160a01b031690565b6001600160a01b031614610c245760405162461bcd60e51b81526004016106dc906121b7565b600c55565b6000610c3460085490565b8210610c975760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106dc565b60088281548110610caa57610caa612277565b90600052602060002001549050919050565b610cc46114af565b6001600160a01b0316610cdf600a546001600160a01b031690565b6001600160a01b031614610d055760405162461bcd60e51b81526004016106dc906121b7565b600b610b1a828261230a565b6000818152600260205260408120546001600160a01b03168061068d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106dc565b60006001600160a01b038216610df35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106dc565b506001600160a01b031660009081526003602052604090205490565b610e176114af565b6001600160a01b0316610e32600a546001600160a01b031690565b6001600160a01b031614610e585760405162461bcd60e51b81526004016106dc906121b7565b610e6260006117ce565b565b610e6c6114af565b6001600160a01b0316610e87600a546001600160a01b031690565b6001600160a01b031614610ead5760405162461bcd60e51b81526004016106dc906121b7565b600e55565b606060018054610707906121ec565b6000610ecc60085490565b600f5490915060ff1615610edf57600080fd5b60008211610eec57600080fd5b600e54821115610efb57600080fd5b600d54610f0883836123ca565b1115610f1357600080fd5b600a546001600160a01b03163314610f3f5781600c54610f3391906123dd565b341015610f3f57600080fd5b60015b8281116109cf57610f5c33610f5783856123ca565b611820565b80610f66816122a3565b915050610f42565b610f766114af565b6001600160a01b0316826001600160a01b031603610fd65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106dc565b8060056000610fe36114af565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556110276114af565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611063911515815260200190565b60405180910390a35050565b6110776114af565b6001600160a01b0316611092600a546001600160a01b031690565b6001600160a01b0316146110b85760405162461bcd60e51b81526004016106dc906121b7565b600f805461ff001916610100179055565b6110da6110d46114af565b8361152c565b6110f65760405162461bcd60e51b81526004016106dc90612226565b6111028484848461183a565b50505050565b6000818152600260205260409020546060906001600160a01b03166111875760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106dc565b600f54610100900460ff16151560000361122d57601080546111a8906121ec565b80601f01602080910402602001604051908101604052809291908181526020018280546111d4906121ec565b80156112215780601f106111f657610100808354040283529160200191611221565b820191906000526020600020905b81548152906001019060200180831161120457829003601f168201915b50505050509050919050565b600061123761186d565b905060008151116112575760405180602001604052806000815250611282565b806112618461187c565b6040516020016112729291906123f4565b6040516020818303038152906040525b9392505050565b6112916114af565b6001600160a01b03166112ac600a546001600160a01b031690565b6001600160a01b0316146112d25760405162461bcd60e51b81526004016106dc906121b7565b60006112dd60085490565b6112e89060016123ca565b9050610b1a8282611820565b6112fc6114af565b6001600160a01b0316611317600a546001600160a01b031690565b6001600160a01b03161461133d5760405162461bcd60e51b81526004016106dc906121b7565b6010610b1a828261230a565b6113516114af565b6001600160a01b031661136c600a546001600160a01b031690565b6001600160a01b0316146113925760405162461bcd60e51b81526004016106dc906121b7565b6001600160a01b0381166113f75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106dc565b611400816117ce565b50565b600030330361145957600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b0316915061145c9050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b148061149057506001600160e01b03198216635b5e139f60e01b145b8061068d57506301ffc9a760e01b6001600160e01b031983161461068d565b60006114b9611403565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114f382610d11565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115a55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106dc565b60006115b083610d11565b9050806001600160a01b0316846001600160a01b031614806115eb5750836001600160a01b03166115e08461078a565b6001600160a01b0316145b8061161b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661163682610d11565b6001600160a01b03161461169e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106dc565b6001600160a01b0382166117005760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106dc565b61170b83838361197d565b6117166000826114be565b6001600160a01b038316600090815260036020526040812080546001929061173f908490612423565b90915550506001600160a01b038216600090815260036020526040812080546001929061176d9084906123ca565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b1a828260405180602001604052806000815250611a35565b611845848484611623565b61185184848484611a68565b6111025760405162461bcd60e51b81526004016106dc90612436565b6060600b8054610707906121ec565b6060816000036118a35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118cd57806118b7816122a3565b91506118c69050600a8361249e565b91506118a7565b60008167ffffffffffffffff8111156118e8576118e8612009565b6040519080825280601f01601f191660200182016040528015611912576020820181803683370190505b5090505b841561161b57611927600183612423565b9150611934600a866124b2565b61193f9060306123ca565b60f81b81838151811061195457611954612277565b60200101906001600160f81b031916908160001a905350611976600a8661249e565b9450611916565b6001600160a01b0383166119d8576119d381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119fb565b816001600160a01b0316836001600160a01b0316146119fb576119fb8382611b70565b6001600160a01b038216611a12576109cf81611c0d565b826001600160a01b0316826001600160a01b0316146109cf576109cf8282611cbc565b611a3f8383611d00565b611a4c6000848484611a68565b6109cf5760405162461bcd60e51b81526004016106dc90612436565b60006001600160a01b0384163b15611b6557836001600160a01b031663150b7a02611a916114af565b8786866040518563ffffffff1660e01b8152600401611ab394939291906124c6565b6020604051808303816000875af1925050508015611aee575060408051601f3d908101601f19168201909252611aeb91810190612503565b60015b611b4b573d808015611b1c576040519150601f19603f3d011682016040523d82523d6000602084013e611b21565b606091505b508051600003611b435760405162461bcd60e51b81526004016106dc90612436565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061161b565b506001949350505050565b60006001611b7d84610d88565b611b879190612423565b600083815260076020526040902054909150808214611bda576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c1f90600190612423565b60008381526009602052604081205460088054939450909284908110611c4757611c47612277565b906000526020600020015490508060088381548110611c6857611c68612277565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ca057611ca0612520565b6001900381819060005260206000200160009055905550505050565b6000611cc783610d88565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d565760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106dc565b6000818152600260205260409020546001600160a01b031615611dbb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106dc565b611dc76000838361197d565b6001600160a01b0382166000908152600360205260408120805460019290611df09084906123ca565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461140057600080fd5b600060208284031215611e7657600080fd5b813561128281611e4e565b80358015158114611e9157600080fd5b919050565b600060208284031215611ea857600080fd5b61128282611e81565b60005b83811015611ecc578181015183820152602001611eb4565b50506000910152565b60008151808452611eed816020860160208601611eb1565b601f01601f19169290920160200192915050565b6020815260006112826020830184611ed5565b600060208284031215611f2657600080fd5b5035919050565b80356001600160a01b0381168114611e9157600080fd5b60008060408385031215611f5757600080fd5b611f6083611f2d565b946020939093013593505050565b600080600060608486031215611f8357600080fd5b611f8c84611f2d565b9250611f9a60208501611f2d565b9150604084013590509250925092565b600060208284031215611fbc57600080fd5b61128282611f2d565b6020808252825182820181905260009190848201906040850190845b81811015611ffd57835183529284019291840191600101611fe1565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561203a5761203a612009565b604051601f8501601f19908116603f0116810190828211818310171561206257612062612009565b8160405280935085815286868601111561207b57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120a757600080fd5b813567ffffffffffffffff8111156120be57600080fd5b8201601f810184136120cf57600080fd5b61161b8482356020840161201f565b600080604083850312156120f157600080fd5b6120fa83611f2d565b915061210860208401611e81565b90509250929050565b6000806000806080858703121561212757600080fd5b61213085611f2d565b935061213e60208601611f2d565b925060408501359150606085013567ffffffffffffffff81111561216157600080fd5b8501601f8101871361217257600080fd5b6121818782356020840161201f565b91505092959194509250565b600080604083850312156121a057600080fd5b6121a983611f2d565b915061210860208401611f2d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061220057607f821691505b60208210810361222057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016122b5576122b561228d565b5060010190565b601f8211156109cf57600081815260208120601f850160051c810160208610156122e35750805b601f850160051c820191505b81811015612302578281556001016122ef565b505050505050565b815167ffffffffffffffff81111561232457612324612009565b6123388161233284546121ec565b846122bc565b602080601f83116001811461236d57600084156123555750858301515b600019600386901b1c1916600185901b178555612302565b600085815260208120601f198616915b8281101561239c5788860151825594840194600190910190840161237d565b50858210156123ba5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561068d5761068d61228d565b808202811582820484141761068d5761068d61228d565b60008351612406818460208801611eb1565b83519083019061241a818360208801611eb1565b01949350505050565b8181038181111561068d5761068d61228d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826124ad576124ad612488565b500490565b6000826124c1576124c1612488565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124f990830184611ed5565b9695505050505050565b60006020828403121561251557600080fd5b815161128281611e4e565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220df40858426f7cf865cf2ddef0b025ec2ecdd386183310dc7ebb7c25235d6833d64736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000134861756e7465642048797065204265617374730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034848420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f6861756e74656468622e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f446174612f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003368747470733a2f2f6861756e74656468622e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f48696464656e00000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Haunted Hype Beasts
Arg [1] : _symbol (string): HHB
Arg [2] : _initBaseURI (string): https://hauntedhb.s3.us-west-1.amazonaws.com/Data/
Arg [3] : _initNotRevealedUri (string): https://hauntedhb.s3.us-west-1.amazonaws.com/Hidden

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [5] : 4861756e74656420487970652042656173747300000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4848420000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [9] : 68747470733a2f2f6861756e74656468622e73332e75732d776573742d312e61
Arg [10] : 6d617a6f6e6177732e636f6d2f446174612f0000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000033
Arg [12] : 68747470733a2f2f6861756e74656468622e73332e75732d776573742d312e61
Arg [13] : 6d617a6f6e6177732e636f6d2f48696464656e00000000000000000000000000


Deployed Bytecode Sourcemap

46390:3270:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34662:224;;;;;;;;;;-1:-1:-1;34662:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34662:224:0;;;;;;;;49267:73;;;;;;;;;;-1:-1:-1;49267:73:0;;;;;:::i;:::-;;:::i;:::-;;22554:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24113:221::-;;;;;;;;;;-1:-1:-1;24113:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2047:32:1;;;2029:51;;2017:2;2002:18;24113:221:0;1883:203:1;46733:28:0;;;;;;;;;;;;;:::i;23636:411::-;;;;;;;;;;-1:-1:-1;23636:411:0;;;;;:::i;:::-;;:::i;46560:32::-;;;;;;;;;;;;;;;;;;;2674:25:1;;;2662:2;2647:18;46560:32:0;2528:177:1;35302:113:0;;;;;;;;;;-1:-1:-1;35390:10:0;:17;35302:113;;46632:32;;;;;;;;;;;;;;;;25003:339;;;;;;;;;;-1:-1:-1;25003:339:0;;;;;:::i;:::-;;:::i;34970:256::-;;;;;;;;;;-1:-1:-1;34970:256:0;;;;;:::i;:::-;;:::i;49348:140::-;;;;;;;;;;;;;:::i;25413:185::-;;;;;;;;;;-1:-1:-1;25413:185:0;;;;;:::i;:::-;;:::i;47765:348::-;;;;;;;;;;-1:-1:-1;47765:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48694:80::-;;;;;;;;;;-1:-1:-1;48694:80:0;;;;;:::i;:::-;;:::i;35492:233::-;;;;;;;;;;-1:-1:-1;35492:233:0;;;;;:::i;:::-;;:::i;46700:28::-;;;;;;;;;;-1:-1:-1;46700:28:0;;;;;;;;;;;49029:98;;;;;;;;;;-1:-1:-1;49029:98:0;;;;;:::i;:::-;;:::i;46669:26::-;;;;;;;;;;-1:-1:-1;46669:26:0;;;;;;;;22248:239;;;;;;;;;;-1:-1:-1;22248:239:0;;;;;:::i;:::-;;:::i;21978:208::-;;;;;;;;;;-1:-1:-1;21978:208:0;;;;;:::i;:::-;;:::i;42451:94::-;;;;;;;;;;;;;:::i;48780:116::-;;;;;;;;;;-1:-1:-1;48780:116:0;;;;;:::i;:::-;;:::i;41800:87::-;;;;;;;;;;-1:-1:-1;41873:6:0;;-1:-1:-1;;;;;41873:6:0;41800:87;;22723:104;;;;;;;;;;;;;:::i;47159:442::-;;;;;;:::i;:::-;;:::i;24406:295::-;;;;;;;;;;-1:-1:-1;24406:295:0;;;;;:::i;:::-;;:::i;48622:65::-;;;;;;;;;;;;;:::i;25669:328::-;;;;;;;;;;-1:-1:-1;25669:328:0;;;;;:::i;:::-;;:::i;48119:481::-;;;;;;;;;;-1:-1:-1;48119:481:0;;;;;:::i;:::-;;:::i;47609:150::-;;;;;;;;;;-1:-1:-1;47609:150:0;;;;;:::i;:::-;;:::i;46597:30::-;;;;;;;;;;;;;;;;24772:164;;;;;;;;;;-1:-1:-1;24772:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24893:25:0;;;24869:4;24893:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24772:164;48903:120;;;;;;;;;;-1:-1:-1;48903:120:0;;;;;:::i;:::-;;:::i;42700:192::-;;;;;;;;;;-1:-1:-1;42700:192:0;;;;;:::i;:::-;;:::i;34662:224::-;34764:4;-1:-1:-1;;;;;;34788:50:0;;-1:-1:-1;;;34788:50:0;;:90;;;34842:36;34866:11;34842:23;:36::i;:::-;34781:97;34662:224;-1:-1:-1;;34662:224:0:o;49267:73::-;42031:12;:10;:12::i;:::-;-1:-1:-1;;;;;42020:23:0;:7;41873:6;;-1:-1:-1;;;;;41873:6:0;;41800:87;42020:7;-1:-1:-1;;;;;42020:23:0;;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;;;;;;;;;49319:6:::1;:15:::0;;-1:-1:-1;;49319:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49267:73::o;22554:100::-;22608:13;22641:5;22634:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22554:100;:::o;24113:221::-;24189:7;27596:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27596:16:0;24209:73;;;;-1:-1:-1;;;24209:73:0;;7240:2:1;24209:73:0;;;7222:21:1;7279:2;7259:18;;;7252:30;7318:34;7298:18;;;7291:62;-1:-1:-1;;;7369:18:1;;;7362:42;7421:19;;24209:73:0;7038:408:1;24209:73:0;-1:-1:-1;24302:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24302:24:0;;24113:221::o;46733:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23636:411::-;23717:13;23733:23;23748:7;23733:14;:23::i;:::-;23717:39;;23781:5;-1:-1:-1;;;;;23775:11:0;:2;-1:-1:-1;;;;;23775:11:0;;23767:57;;;;-1:-1:-1;;;23767:57:0;;7653:2:1;23767:57:0;;;7635:21:1;7692:2;7672:18;;;7665:30;7731:34;7711:18;;;7704:62;-1:-1:-1;;;7782:18:1;;;7775:31;7823:19;;23767:57:0;7451:397:1;23767:57:0;23875:5;-1:-1:-1;;;;;23859:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;23859:21:0;;:62;;;;23884:37;23901:5;23908:12;:10;:12::i;23884:37::-;23837:168;;;;-1:-1:-1;;;23837:168:0;;8055:2:1;23837:168:0;;;8037:21:1;8094:2;8074:18;;;8067:30;8133:34;8113:18;;;8106:62;8204:26;8184:18;;;8177:54;8248:19;;23837:168:0;7853:420:1;23837:168:0;24018:21;24027:2;24031:7;24018:8;:21::i;:::-;23706:341;23636:411;;:::o;25003:339::-;25198:41;25217:12;:10;:12::i;:::-;25231:7;25198:18;:41::i;:::-;25190:103;;;;-1:-1:-1;;;25190:103:0;;;;;;;:::i;:::-;25306:28;25316:4;25322:2;25326:7;25306:9;:28::i;34970:256::-;35067:7;35103:23;35120:5;35103:16;:23::i;:::-;35095:5;:31;35087:87;;;;-1:-1:-1;;;35087:87:0;;8898:2:1;35087:87:0;;;8880:21:1;8937:2;8917:18;;;8910:30;8976:34;8956:18;;;8949:62;-1:-1:-1;;;9027:18:1;;;9020:41;9078:19;;35087:87:0;8696:407:1;35087:87:0;-1:-1:-1;;;;;;35192:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34970:256::o;49348:140::-;42031:12;:10;:12::i;:::-;-1:-1:-1;;;;;42020:23:0;:7;41873:6;;-1:-1:-1;;;;;41873:6:0;;41800:87;42020:7;-1:-1:-1;;;;;42020:23:0;;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;49443:37:::1;::::0;49411:21:::1;::::0;49451:10:::1;::::0;49443:37;::::1;;;::::0;49411:21;;49396:12:::1;49443:37:::0;49396:12;49443:37;49411:21;49451:10;49443:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49385:103;49348:140::o:0;25413:185::-;25551:39;25568:4;25574:2;25578:7;25551:39;;;;;;;;;;;;:16;:39::i;47765:348::-;47840:16;47868:23;47894:17;47904:6;47894:9;:17::i;:::-;47868:43;;47918:25;47960:15;47946:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47946:30:0;;47918:58;;47988:9;47983:103;48003:15;47999:1;:19;47983:103;;;48048:30;48068:6;48076:1;48048:19;:30::i;:::-;48034:8;48043:1;48034:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;48020:3;;;;:::i;:::-;;;;47983:103;;;-1:-1:-1;48099:8:0;47765:348;-1:-1:-1;;;47765:348:0:o;48694:80::-;42031:12;:10;:12::i;:::-;-1:-1:-1;;;;;42020:23:0;:7;41873:6;;-1:-1:-1;;;;;41873:6:0;;41800:87;42020:7;-1:-1:-1;;;;;42020:23:0;;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;48753:4:::1;:15:::0;48694:80::o;35492:233::-;35567:7;35603:30;35390:10;:17;;35302:113;35603:30;35595:5;:38;35587:95;;;;-1:-1:-1;;;35587:95:0;;9714:2:1;35587:95:0;;;9696:21:1;9753:2;9733:18;;;9726:30;9792:34;9772:18;;;9765:62;-1:-1:-1;;;9843:18:1;;;9836:42;9895:19;;35587:95:0;9512:408:1;35587:95:0;35700:10;35711:5;35700:17;;;;;;;;:::i;:::-;;;;;;;;;35693:24;;35492:233;;;:::o;49029:98::-;42031:12;:10;:12::i;:::-;-1:-1:-1;;;;;42020:23:0;:7;41873:6;;-1:-1:-1;;;;;41873:6:0;;41800:87;42020:7;-1:-1:-1;;;;;42020:23:0;;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;49100:7:::1;:21;49110:11:::0;49100:7;:21:::1;:::i;22248:239::-:0;22320:7;22356:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22356:16:0;;22383:73;;;;-1:-1:-1;;;22383:73:0;;12331:2:1;22383:73:0;;;12313:21:1;12370:2;12350:18;;;12343:30;12409:34;12389:18;;;12382:62;-1:-1:-1;;;12460:18:1;;;12453:39;12509:19;;22383:73:0;12129:405:1;21978:208:0;22050:7;-1:-1:-1;;;;;22078:19:0;;22070:74;;;;-1:-1:-1;;;22070:74:0;;12741:2:1;22070:74:0;;;12723:21:1;12780:2;12760:18;;;12753:30;12819:34;12799:18;;;12792:62;-1:-1:-1;;;12870:18:1;;;12863:40;12920:19;;22070:74:0;12539:406:1;22070:74:0;-1:-1:-1;;;;;;22162:16:0;;;;;:9;:16;;;;;;;21978:208::o;42451:94::-;42031:12;:10;:12::i;:::-;-1:-1:-1;;;;;42020:23:0;:7;41873:6;;-1:-1:-1;;;;;41873:6:0;;41800:87;42020:7;-1:-1:-1;;;;;42020:23:0;;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;42516:21:::1;42534:1;42516:9;:21::i;:::-;42451:94::o:0;48780:116::-;42031:12;:10;:12::i;:::-;-1:-1:-1;;;;;42020:23:0;:7;41873:6;;-1:-1:-1;;;;;41873:6:0;;41800:87;42020:7;-1:-1:-1;;;;;42020:23:0;;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;48857:13:::1;:33:::0;48780:116::o;22723:104::-;22779:13;22812:7;22805:14;;;;;:::i;47159:442::-;47216:14;47233:13;35390:10;:17;;35302:113;47233:13;47262:6;;47216:30;;-1:-1:-1;47262:6:0;;47261:7;47253:16;;;;;;47298:1;47284:11;:15;47276:24;;;;;;47330:13;;47315:11;:28;;47307:37;;;;;;47383:9;;47359:20;47368:11;47359:6;:20;:::i;:::-;:33;;47351:42;;;;;;41873:6;;-1:-1:-1;;;;;41873:6:0;47406:10;:21;47402:84;;47466:11;47459:4;;:18;;;;:::i;:::-;47446:9;:31;;47438:40;;;;;;47511:1;47494:102;47519:11;47514:1;:16;47494:102;;47555:33;47565:10;47577;47586:1;47577:6;:10;:::i;:::-;47555:9;:33::i;:::-;47532:3;;;;:::i;:::-;;;;47494:102;;24406:295;24521:12;:10;:12::i;:::-;-1:-1:-1;;;;;24509:24:0;:8;-1:-1:-1;;;;;24509:24:0;;24501:62;;;;-1:-1:-1;;;24501:62:0;;13455:2:1;24501:62:0;;;13437:21:1;13494:2;13474:18;;;13467:30;13533:27;13513:18;;;13506:55;13578:18;;24501:62:0;13253:349:1;24501:62:0;24621:8;24576:18;:32;24595:12;:10;:12::i;:::-;-1:-1:-1;;;;;24576:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;24576:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;24576:53:0;;;;;;;;;;;24660:12;:10;:12::i;:::-;-1:-1:-1;;;;;24645:48:0;;24684:8;24645:48;;;;565:14:1;558:22;540:41;;528:2;513:18;;400:187;24645:48:0;;;;;;;;24406:295;;:::o;48622:65::-;42031:12;:10;:12::i;:::-;-1:-1:-1;;;;;42020:23:0;:7;41873:6;;-1:-1:-1;;;;;41873:6:0;;41800:87;42020:7;-1:-1:-1;;;;;42020:23:0;;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;48666:8:::1;:15:::0;;-1:-1:-1;;48666:15:0::1;;;::::0;;48622:65::o;25669:328::-;25844:41;25863:12;:10;:12::i;:::-;25877:7;25844:18;:41::i;:::-;25836:103;;;;-1:-1:-1;;;25836:103:0;;;;;;;:::i;:::-;25950:39;25964:4;25970:2;25974:7;25983:5;25950:13;:39::i;:::-;25669:328;;;;:::o;48119:481::-;27572:4;27596:16;;;:7;:16;;;;;;48217:13;;-1:-1:-1;;;;;27596:16:0;48242:97;;;;-1:-1:-1;;;48242:97:0;;13809:2:1;48242:97:0;;;13791:21:1;13848:2;13828:18;;;13821:30;13887:34;13867:18;;;13860:62;-1:-1:-1;;;13938:18:1;;;13931:45;13993:19;;48242:97:0;13607:411:1;48242:97:0;48354:8;;;;;;;:17;;48366:5;48354:17;48351:62;;48391:14;48384:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48119:481;;;:::o;48351:62::-;48421:28;48452:10;:8;:10::i;:::-;48421:41;;48507:1;48482:14;48476:28;:32;:118;;;;;;;;;;;;;;;;;48544:14;48560:18;:7;:16;:18::i;:::-;48527:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48476:118;48469:125;48119:481;-1:-1:-1;;;48119:481:0:o;47609:150::-;42031:12;:10;:12::i;:::-;-1:-1:-1;;;;;42020:23:0;:7;41873:6;;-1:-1:-1;;;;;41873:6:0;;41800:87;42020:7;-1:-1:-1;;;;;42020:23:0;;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;47678:14:::1;47695:13;35390:10:::0;:17;;35302:113;47695:13:::1;:17;::::0;47711:1:::1;47695:17;:::i;:::-;47678:34;;47723:28;47733:9;47744:6;47723:9;:28::i;48903:120::-:0;42031:12;:10;:12::i;:::-;-1:-1:-1;;;;;42020:23:0;:7;41873:6;;-1:-1:-1;;;;;41873:6:0;;41800:87;42020:7;-1:-1:-1;;;;;42020:23:0;;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;48985:14:::1;:32;49002:15:::0;48985:14;:32:::1;:::i;42700:192::-:0;42031:12;:10;:12::i;:::-;-1:-1:-1;;;;;42020:23:0;:7;41873:6;;-1:-1:-1;;;;;41873:6:0;;41800:87;42020:7;-1:-1:-1;;;;;42020:23:0;;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42789:22:0;::::1;42781:73;;;::::0;-1:-1:-1;;;42781:73:0;;14726:2:1;42781:73:0::1;::::0;::::1;14708:21:1::0;14765:2;14745:18;;;14738:30;14804:34;14784:18;;;14777:62;-1:-1:-1;;;14855:18:1;;;14848:36;14901:19;;42781:73:0::1;14524:402:1::0;42781:73:0::1;42865:19;42875:8;42865:9;:19::i;:::-;42700:192:::0;:::o;43221:650::-;43292:22;43358:4;43336:10;:27;43332:508;;43380:18;43401:8;;43380:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;43440:8:0;43651:17;43645:24;-1:-1:-1;;;;;43619:134:0;;-1:-1:-1;43332:508:0;;-1:-1:-1;43332:508:0;;-1:-1:-1;43817:10:0;43332:508;43221:650;:::o;21609:305::-;21711:4;-1:-1:-1;;;;;;21748:40:0;;-1:-1:-1;;;21748:40:0;;:105;;-1:-1:-1;;;;;;;21805:48:0;;-1:-1:-1;;;21805:48:0;21748:105;:158;;;-1:-1:-1;;;;;;;;;;7549:40:0;;;21870:36;7440:157;49496:161;49586:14;49625:24;:22;:24::i;:::-;49618:31;;49496:161;:::o;31489:174::-;31564:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31564:29:0;-1:-1:-1;;;;;31564:29:0;;;;;;;;:24;;31618:23;31564:24;31618:14;:23::i;:::-;-1:-1:-1;;;;;31609:46:0;;;;;;;;;;;31489:174;;:::o;27801:348::-;27894:4;27596:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27596:16:0;27911:73;;;;-1:-1:-1;;;27911:73:0;;15133:2:1;27911:73:0;;;15115:21:1;15172:2;15152:18;;;15145:30;15211:34;15191:18;;;15184:62;-1:-1:-1;;;15262:18:1;;;15255:42;15314:19;;27911:73:0;14931:408:1;27911:73:0;27995:13;28011:23;28026:7;28011:14;:23::i;:::-;27995:39;;28064:5;-1:-1:-1;;;;;28053:16:0;:7;-1:-1:-1;;;;;28053:16:0;;:51;;;;28097:7;-1:-1:-1;;;;;28073:31:0;:20;28085:7;28073:11;:20::i;:::-;-1:-1:-1;;;;;28073:31:0;;28053:51;:87;;;-1:-1:-1;;;;;;24893:25:0;;;24869:4;24893:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28108:32;28045:96;27801:348;-1:-1:-1;;;;27801:348:0:o;30793:578::-;30952:4;-1:-1:-1;;;;;30925:31:0;:23;30940:7;30925:14;:23::i;:::-;-1:-1:-1;;;;;30925:31:0;;30917:85;;;;-1:-1:-1;;;30917:85:0;;15546:2:1;30917:85:0;;;15528:21:1;15585:2;15565:18;;;15558:30;15624:34;15604:18;;;15597:62;-1:-1:-1;;;15675:18:1;;;15668:39;15724:19;;30917:85:0;15344:405:1;30917:85:0;-1:-1:-1;;;;;31021:16:0;;31013:65;;;;-1:-1:-1;;;31013:65:0;;15956:2:1;31013:65:0;;;15938:21:1;15995:2;15975:18;;;15968:30;16034:34;16014:18;;;16007:62;-1:-1:-1;;;16085:18:1;;;16078:34;16129:19;;31013:65:0;15754:400:1;31013:65:0;31091:39;31112:4;31118:2;31122:7;31091:20;:39::i;:::-;31195:29;31212:1;31216:7;31195:8;:29::i;:::-;-1:-1:-1;;;;;31237:15:0;;;;;;:9;:15;;;;;:20;;31256:1;;31237:15;:20;;31256:1;;31237:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31268:13:0;;;;;;:9;:13;;;;;:18;;31285:1;;31268:13;:18;;31285:1;;31268:18;:::i;:::-;;;;-1:-1:-1;;31297:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31297:21:0;-1:-1:-1;;;;;31297:21:0;;;;;;;;;31336:27;;31297:16;;31336:27;;;;;;;30793:578;;;:::o;42900:173::-;42975:6;;;-1:-1:-1;;;;;42992:17:0;;;-1:-1:-1;;;;;;42992:17:0;;;;;;;43025:40;;42975:6;;;42992:17;42975:6;;43025:40;;42956:16;;43025:40;42945:128;42900:173;:::o;28491:110::-;28567:26;28577:2;28581:7;28567:26;;;;;;;;;;;;:9;:26::i;26879:315::-;27036:28;27046:4;27052:2;27056:7;27036:9;:28::i;:::-;27083:48;27106:4;27112:2;27116:7;27125:5;27083:22;:48::i;:::-;27075:111;;;;-1:-1:-1;;;27075:111:0;;;;;;;:::i;47038:102::-;47098:13;47127:7;47120:14;;;;;:::i;7915:723::-;7971:13;8192:5;8201:1;8192:10;8188:53;;-1:-1:-1;;8219:10:0;;;;;;;;;;;;-1:-1:-1;;;8219:10:0;;;;;7915:723::o;8188:53::-;8266:5;8251:12;8307:78;8314:9;;8307:78;;8340:8;;;;:::i;:::-;;-1:-1:-1;8363:10:0;;-1:-1:-1;8371:2:0;8363:10;;:::i;:::-;;;8307:78;;;8395:19;8427:6;8417:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8417:17:0;;8395:39;;8445:154;8452:10;;8445:154;;8479:11;8489:1;8479:11;;:::i;:::-;;-1:-1:-1;8548:10:0;8556:2;8548:5;:10;:::i;:::-;8535:24;;:2;:24;:::i;:::-;8522:39;;8505:6;8512;8505:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8505:56:0;;;;;;;;-1:-1:-1;8576:11:0;8585:2;8576:11;;:::i;:::-;;;8445:154;;36338:589;-1:-1:-1;;;;;36544:18:0;;36540:187;;36579:40;36611:7;37754:10;:17;;37727:24;;;;:15;:24;;;;;:44;;;37782:24;;;;;;;;;;;;37650:164;36579:40;36540:187;;;36649:2;-1:-1:-1;;;;;36641:10:0;:4;-1:-1:-1;;;;;36641:10:0;;36637:90;;36668:47;36701:4;36707:7;36668:32;:47::i;:::-;-1:-1:-1;;;;;36741:16:0;;36737:183;;36774:45;36811:7;36774:36;:45::i;36737:183::-;36847:4;-1:-1:-1;;;;;36841:10:0;:2;-1:-1:-1;;;;;36841:10:0;;36837:83;;36868:40;36896:2;36900:7;36868:27;:40::i;28828:321::-;28958:18;28964:2;28968:7;28958:5;:18::i;:::-;29009:54;29040:1;29044:2;29048:7;29057:5;29009:22;:54::i;:::-;28987:154;;;;-1:-1:-1;;;28987:154:0;;;;;;;:::i;32228:799::-;32383:4;-1:-1:-1;;;;;32404:13:0;;10763:20;10811:8;32400:620;;32456:2;-1:-1:-1;;;;;32440:36:0;;32477:12;:10;:12::i;:::-;32491:4;32497:7;32506:5;32440:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32440:72:0;;;;;;;;-1:-1:-1;;32440:72:0;;;;;;;;;;;;:::i;:::-;;;32436:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32682:6;:13;32699:1;32682:18;32678:272;;32725:60;;-1:-1:-1;;;32725:60:0;;;;;;;:::i;32678:272::-;32900:6;32894:13;32885:6;32881:2;32877:15;32870:38;32436:529;-1:-1:-1;;;;;;32563:51:0;-1:-1:-1;;;32563:51:0;;-1:-1:-1;32556:58:0;;32400:620;-1:-1:-1;33004:4:0;32228:799;;;;;;:::o;38441:988::-;38707:22;38757:1;38732:22;38749:4;38732:16;:22::i;:::-;:26;;;;:::i;:::-;38769:18;38790:26;;;:17;:26;;;;;;38707:51;;-1:-1:-1;38923:28:0;;;38919:328;;-1:-1:-1;;;;;38990:18:0;;38968:19;38990:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39041:30;;;;;;:44;;;39158:30;;:17;:30;;;;;:43;;;38919:328;-1:-1:-1;39343:26:0;;;;:17;:26;;;;;;;;39336:33;;;-1:-1:-1;;;;;39387:18:0;;;;;:12;:18;;;;;:34;;;;;;;39380:41;38441:988::o;39724:1079::-;40002:10;:17;39977:22;;40002:21;;40022:1;;40002:21;:::i;:::-;40034:18;40055:24;;;:15;:24;;;;;;40428:10;:26;;39977:46;;-1:-1:-1;40055:24:0;;39977:46;;40428:26;;;;;;:::i;:::-;;;;;;;;;40406:48;;40492:11;40467:10;40478;40467:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40572:28;;;:15;:28;;;;;;;:41;;;40744:24;;;;;40737:31;40779:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39795:1008;;;39724:1079;:::o;37228:221::-;37313:14;37330:20;37347:2;37330:16;:20::i;:::-;-1:-1:-1;;;;;37361:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37406:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37228:221:0:o;29485:382::-;-1:-1:-1;;;;;29565:16:0;;29557:61;;;;-1:-1:-1;;;29557:61:0;;18167:2:1;29557:61:0;;;18149:21:1;;;18186:18;;;18179:30;18245:34;18225:18;;;18218:62;18297:18;;29557:61:0;17965:356:1;29557:61:0;27572:4;27596:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27596:16:0;:30;29629:58;;;;-1:-1:-1;;;29629:58:0;;18528:2:1;29629:58:0;;;18510:21:1;18567:2;18547:18;;;18540:30;18606;18586:18;;;18579:58;18654:18;;29629:58:0;18326:352:1;29629:58:0;29700:45;29729:1;29733:2;29737:7;29700:20;:45::i;:::-;-1:-1:-1;;;;;29758:13:0;;;;;;:9;:13;;;;;:18;;29775:1;;29758:13;:18;;29775:1;;29758:18;:::i;:::-;;;;-1:-1:-1;;29787:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29787:21:0;-1:-1:-1;;;;;29787:21:0;;;;;;;;29826:33;;29787:16;;;29826:33;;29787:16;;29826:33;29485:382;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:250::-;1027:1;1037:113;1051:6;1048:1;1045:13;1037:113;;;1127:11;;;1121:18;1108:11;;;1101:39;1073:2;1066:10;1037:113;;;-1:-1:-1;;1184:1:1;1166:16;;1159:27;942:250::o;1197:271::-;1239:3;1277:5;1271:12;1304:6;1299:3;1292:19;1320:76;1389:6;1382:4;1377:3;1373:14;1366:4;1359:5;1355:16;1320:76;:::i;:::-;1450:2;1429:15;-1:-1:-1;;1425:29:1;1416:39;;;;1457:4;1412:50;;1197:271;-1:-1:-1;;1197:271:1:o;1473:220::-;1622:2;1611:9;1604:21;1585:4;1642:45;1683:2;1672:9;1668:18;1660:6;1642:45;:::i;1698:180::-;1757:6;1810:2;1798:9;1789:7;1785:23;1781:32;1778:52;;;1826:1;1823;1816:12;1778:52;-1:-1:-1;1849:23:1;;1698:180;-1:-1:-1;1698:180:1:o;2091:173::-;2159:20;;-1:-1:-1;;;;;2208:31:1;;2198:42;;2188:70;;2254:1;2251;2244:12;2269:254;2337:6;2345;2398:2;2386:9;2377:7;2373:23;2369:32;2366:52;;;2414:1;2411;2404:12;2366:52;2437:29;2456:9;2437:29;:::i;:::-;2427:39;2513:2;2498:18;;;;2485:32;;-1:-1:-1;;;2269:254:1:o;2710:328::-;2787:6;2795;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;3028:2;3017:9;3013:18;3000:32;2990:42;;2710:328;;;;;:::o;3043:186::-;3102:6;3155:2;3143:9;3134:7;3130:23;3126:32;3123:52;;;3171:1;3168;3161:12;3123:52;3194:29;3213:9;3194:29;:::i;3234:632::-;3405:2;3457:21;;;3527:13;;3430:18;;;3549:22;;;3376:4;;3405:2;3628:15;;;;3602:2;3587:18;;;3376:4;3671:169;3685:6;3682:1;3679:13;3671:169;;;3746:13;;3734:26;;3815:15;;;;3780:12;;;;3707:1;3700:9;3671:169;;;-1:-1:-1;3857:3:1;;3234:632;-1:-1:-1;;;;;;3234:632:1:o;3871:127::-;3932:10;3927:3;3923:20;3920:1;3913:31;3963:4;3960:1;3953:15;3987:4;3984:1;3977:15;4003:632;4068:5;4098:18;4139:2;4131:6;4128:14;4125:40;;;4145:18;;:::i;:::-;4220:2;4214:9;4188:2;4274:15;;-1:-1:-1;;4270:24:1;;;4296:2;4266:33;4262:42;4250:55;;;4320:18;;;4340:22;;;4317:46;4314:72;;;4366:18;;:::i;:::-;4406:10;4402:2;4395:22;4435:6;4426:15;;4465:6;4457;4450:22;4505:3;4496:6;4491:3;4487:16;4484:25;4481:45;;;4522:1;4519;4512:12;4481:45;4572:6;4567:3;4560:4;4552:6;4548:17;4535:44;4627:1;4620:4;4611:6;4603;4599:19;4595:30;4588:41;;;;4003:632;;;;;:::o;4640:451::-;4709:6;4762:2;4750:9;4741:7;4737:23;4733:32;4730:52;;;4778:1;4775;4768:12;4730:52;4818:9;4805:23;4851:18;4843:6;4840:30;4837:50;;;4883:1;4880;4873:12;4837:50;4906:22;;4959:4;4951:13;;4947:27;-1:-1:-1;4937:55:1;;4988:1;4985;4978:12;4937:55;5011:74;5077:7;5072:2;5059:16;5054:2;5050;5046:11;5011:74;:::i;5096:254::-;5161:6;5169;5222:2;5210:9;5201:7;5197:23;5193:32;5190:52;;;5238:1;5235;5228:12;5190:52;5261:29;5280:9;5261:29;:::i;:::-;5251:39;;5309:35;5340:2;5329:9;5325:18;5309:35;:::i;:::-;5299:45;;5096:254;;;;;:::o;5355:667::-;5450:6;5458;5466;5474;5527:3;5515:9;5506:7;5502:23;5498:33;5495:53;;;5544:1;5541;5534:12;5495:53;5567:29;5586:9;5567:29;:::i;:::-;5557:39;;5615:38;5649:2;5638:9;5634:18;5615:38;:::i;:::-;5605:48;;5700:2;5689:9;5685:18;5672:32;5662:42;;5755:2;5744:9;5740:18;5727:32;5782:18;5774:6;5771:30;5768:50;;;5814:1;5811;5804:12;5768:50;5837:22;;5890:4;5882:13;;5878:27;-1:-1:-1;5868:55:1;;5919:1;5916;5909:12;5868:55;5942:74;6008:7;6003:2;5990:16;5985:2;5981;5977:11;5942:74;:::i;:::-;5932:84;;;5355:667;;;;;;;:::o;6027:260::-;6095:6;6103;6156:2;6144:9;6135:7;6131:23;6127:32;6124:52;;;6172:1;6169;6162:12;6124:52;6195:29;6214:9;6195:29;:::i;:::-;6185:39;;6243:38;6277:2;6266:9;6262:18;6243:38;:::i;6292:356::-;6494:2;6476:21;;;6513:18;;;6506:30;6572:34;6567:2;6552:18;;6545:62;6639:2;6624:18;;6292:356::o;6653:380::-;6732:1;6728:12;;;;6775;;;6796:61;;6850:4;6842:6;6838:17;6828:27;;6796:61;6903:2;6895:6;6892:14;6872:18;6869:38;6866:161;;6949:10;6944:3;6940:20;6937:1;6930:31;6984:4;6981:1;6974:15;7012:4;7009:1;7002:15;6866:161;;6653:380;;;:::o;8278:413::-;8480:2;8462:21;;;8519:2;8499:18;;;8492:30;8558:34;8553:2;8538:18;;8531:62;-1:-1:-1;;;8624:2:1;8609:18;;8602:47;8681:3;8666:19;;8278:413::o;9108:127::-;9169:10;9164:3;9160:20;9157:1;9150:31;9200:4;9197:1;9190:15;9224:4;9221:1;9214:15;9240:127;9301:10;9296:3;9292:20;9289:1;9282:31;9332:4;9329:1;9322:15;9356:4;9353:1;9346:15;9372:135;9411:3;9432:17;;;9429:43;;9452:18;;:::i;:::-;-1:-1:-1;9499:1:1;9488:13;;9372:135::o;10051:545::-;10153:2;10148:3;10145:11;10142:448;;;10189:1;10214:5;10210:2;10203:17;10259:4;10255:2;10245:19;10329:2;10317:10;10313:19;10310:1;10306:27;10300:4;10296:38;10365:4;10353:10;10350:20;10347:47;;;-1:-1:-1;10388:4:1;10347:47;10443:2;10438:3;10434:12;10431:1;10427:20;10421:4;10417:31;10407:41;;10498:82;10516:2;10509:5;10506:13;10498:82;;;10561:17;;;10542:1;10531:13;10498:82;;;10502:3;;;10051:545;;;:::o;10772:1352::-;10898:3;10892:10;10925:18;10917:6;10914:30;10911:56;;;10947:18;;:::i;:::-;10976:97;11066:6;11026:38;11058:4;11052:11;11026:38;:::i;:::-;11020:4;10976:97;:::i;:::-;11128:4;;11192:2;11181:14;;11209:1;11204:663;;;;11911:1;11928:6;11925:89;;;-1:-1:-1;11980:19:1;;;11974:26;11925:89;-1:-1:-1;;10729:1:1;10725:11;;;10721:24;10717:29;10707:40;10753:1;10749:11;;;10704:57;12027:81;;11174:944;;11204:663;9998:1;9991:14;;;10035:4;10022:18;;-1:-1:-1;;11240:20:1;;;11358:236;11372:7;11369:1;11366:14;11358:236;;;11461:19;;;11455:26;11440:42;;11553:27;;;;11521:1;11509:14;;;;11388:19;;11358:236;;;11362:3;11622:6;11613:7;11610:19;11607:201;;;11683:19;;;11677:26;-1:-1:-1;;11766:1:1;11762:14;;;11778:3;11758:24;11754:37;11750:42;11735:58;11720:74;;11607:201;-1:-1:-1;;;;;11854:1:1;11838:14;;;11834:22;11821:36;;-1:-1:-1;10772:1352:1:o;12950:125::-;13015:9;;;13036:10;;;13033:36;;;13049:18;;:::i;13080:168::-;13153:9;;;13184;;13201:15;;;13195:22;;13181:37;13171:71;;13222:18;;:::i;14023:496::-;14202:3;14240:6;14234:13;14256:66;14315:6;14310:3;14303:4;14295:6;14291:17;14256:66;:::i;:::-;14385:13;;14344:16;;;;14407:70;14385:13;14344:16;14454:4;14442:17;;14407:70;:::i;:::-;14493:20;;14023:496;-1:-1:-1;;;;14023:496:1:o;16159:128::-;16226:9;;;16247:11;;;16244:37;;;16261:18;;:::i;16292:414::-;16494:2;16476:21;;;16533:2;16513:18;;;16506:30;16572:34;16567:2;16552:18;;16545:62;-1:-1:-1;;;16638:2:1;16623:18;;16616:48;16696:3;16681:19;;16292:414::o;16711:127::-;16772:10;16767:3;16763:20;16760:1;16753:31;16803:4;16800:1;16793:15;16827:4;16824:1;16817:15;16843:120;16883:1;16909;16899:35;;16914:18;;:::i;:::-;-1:-1:-1;16948:9:1;;16843:120::o;16968:112::-;17000:1;17026;17016:35;;17031:18;;:::i;:::-;-1:-1:-1;17065:9:1;;16968:112::o;17085:489::-;-1:-1:-1;;;;;17354:15:1;;;17336:34;;17406:15;;17401:2;17386:18;;17379:43;17453:2;17438:18;;17431:34;;;17501:3;17496:2;17481:18;;17474:31;;;17279:4;;17522:46;;17548:19;;17540:6;17522:46;:::i;:::-;17514:54;17085:489;-1:-1:-1;;;;;;17085:489:1:o;17579:249::-;17648:6;17701:2;17689:9;17680:7;17676:23;17672:32;17669:52;;;17717:1;17714;17707:12;17669:52;17749:9;17743:16;17768:30;17792:5;17768:30;:::i;17833:127::-;17894:10;17889:3;17885:20;17882:1;17875:31;17925:4;17922:1;17915:15;17949:4;17946:1;17939:15

Swarm Source

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