ETH Price: $3,408.89 (-0.21%)
Gas: 8 Gwei

Token

CryptoRats (RATS)
 

Overview

Max Total Supply

2,500 RATS

Holders

993

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
moelnaggar.eth
Balance
2 RATS
0x38f50d4086b8a4bf68238dff96a2fd406e9e2fea
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:
CryptoRats

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : CryptoRats.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

// dev is @elbrupt on telegram

contract CryptoRats is ERC721, Ownable {
    using Strings for uint256;

    address private memberOne = 0x847dcb02Cb3Ee2A292b8b3440d2E5A9363EB1201;
    address private memberTwo = 0xBf4d452Be8b6c0Bf38525292A59e156CC60A7B22;
    address private memberThree = 0xA9568E6803567aaC4b3C8595a74D5d7Cd383dceD;
    address private memberFour = 0xCae9565Ba534CC6a3Eb1D1CbbB868A36DF2A4D19;

    uint256 public NFT_MAX = 1500;
    uint256 public NFT_PRICE = 0.06 ether;
    uint256 public constant NFTS_PER_MINT = 8;
    string private _contractURI;
    string private _tokenBaseURI;
    string public _mysteryURI;

    bool public revealed;
    bool public saleLive;
    bool public giftLive = true;

    uint256 public totalSupply;

    constructor() ERC721("CryptoRats", "RATS") {}

    function mintGiftAsOwner(uint256 tokenQuantity, address wallet)
        external
        onlyOwner
    {
        require(giftLive, "GIFTING_CLOSED");
        require(totalSupply < NFT_MAX, "OUT_OF_STOCK");
        require(totalSupply + tokenQuantity <= NFT_MAX, "EXCEED_STOCK");

        for (uint256 i = 0; i < tokenQuantity; i++) {
            _safeMint(wallet, totalSupply + i + 1);
        }

        totalSupply += tokenQuantity;
    }

    function mint(uint256 tokenQuantity) external payable {
        require(saleLive, "SALE_CLOSED");
        require(totalSupply < NFT_MAX, "OUT_OF_STOCK");
        require(totalSupply + tokenQuantity <= NFT_MAX, "EXCEED_STOCK");
        require(NFT_PRICE * tokenQuantity <= msg.value, "INSUFFICIENT_ETH");
        require(tokenQuantity <= NFTS_PER_MINT, "EXCEED_NFTS_PER_MINT");

        for (uint256 i = 0; i < tokenQuantity; i++) {
            _safeMint(msg.sender, totalSupply + i + 1);
        }

        totalSupply += tokenQuantity;
    }

    function withdraw() external {
        uint256 currentBalance = address(this).balance;
        payable(memberOne).transfer((currentBalance * 6) / 100);
        payable(memberTwo).transfer((currentBalance * 4) / 100);
        payable(memberThree).transfer((currentBalance * 2) / 100);
        payable(memberFour).transfer((currentBalance * 88) / 100);
    }

    function toggleSaleStatus() external onlyOwner {
        saleLive = !saleLive;
    }

    function toggleSaleGiftStatus() external onlyOwner {
        giftLive = !giftLive;
    }

    function toggleMysteryURI() public onlyOwner {
        revealed = !revealed;
    }

    function setMysteryURI(string calldata URI) public onlyOwner {
        _mysteryURI = URI;
    }

    function setPriceOfNFT(uint256 price) external onlyOwner {
        // 70000000000000000 = .07 eth
        NFT_PRICE = price;
    }

    function setNFTMax(uint256 max) external onlyOwner {
        NFT_MAX = max;
    }

    function setContractURI(string calldata URI) external onlyOwner {
        _contractURI = URI;
    }

    function setBaseURI(string calldata URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(_exists(tokenId), "Cannot query non-existent token");

        if (revealed == false) {
            return _mysteryURI;
        }

        return
            string(
                abi.encodePacked(_tokenBaseURI, tokenId.toString(), ".json")
            );
    }
}

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 {
        _transferOwnership(address(0));
    }

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

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

File 4 of 12 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 5 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 7 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 9 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"name":"NFTS_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mysteryURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giftLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"}],"name":"mintGiftAsOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setMysteryURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setNFTMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPriceOfNFT","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":[],"name":"toggleMysteryURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleGiftStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273847dcb02cb3ee2a292b8b3440d2e5a9363eb1201600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073bf4d452be8b6c0bf38525292a59e156cc60a7b22600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a9568e6803567aac4b3c8595a74d5d7cd383dced600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073cae9565ba534cc6a3eb1d1cbbb868a36df2a4d19600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506105dc600b5566d529ae9e860000600c556001601060026101000a81548160ff0219169083151502179055503480156200019157600080fd5b506040518060400160405280600a81526020017f43727970746f52617473000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f524154530000000000000000000000000000000000000000000000000000000081525081600090805190602001906200021692919062000326565b5080600190805190602001906200022f92919062000326565b50505062000252620002466200025860201b60201c565b6200026060201b60201c565b6200043b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200033490620003d6565b90600052602060002090601f016020900481019282620003585760008555620003a4565b82601f106200037357805160ff1916838001178555620003a4565b82800160010185558215620003a4579182015b82811115620003a357825182559160200191906001019062000386565b5b509050620003b39190620003b7565b5090565b5b80821115620003d2576000816000905550600101620003b8565b5090565b60006002820490506001821680620003ef57607f821691505b602082108114156200040657620004056200040c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614115806200044b6000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063c30e7684116100a0578063e423a5111161006f578063e423a5111461071e578063e72be68a14610747578063e8a3d48514610770578063e985e9c51461079b578063f2fde38b146107d85761020f565b8063c30e768414610674578063c87b56dd1461069f578063cb908cce146106dc578063e081b781146106f35761020f565b806395d89b41116100e757806395d89b41146105b0578063a0712d68146105db578063a22cb465146105f7578063a4f8eaeb14610620578063b88d4fde1461064b5761020f565b8063715018a61461051a57806372bfb1af146105315780638da5cb5b1461055c578063938e3d7b146105875761020f565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146104235780635b0c52fd1461044c5780636352211e14610475578063676dd563146104b257806370a08231146104dd5761020f565b80633ccfd60b146103a157806342842e0e146103b857806345bcf17f146103e157806351830227146103f85761020f565b8063095ea7b3116101e2578063095ea7b3146102d057806318160ddd146102f95780631bd98e721461032457806323b872dd1461034d5780632cff9e06146103765761020f565b806301ffc9a714610214578063049c5c491461025157806306fdde0314610268578063081812fc14610293575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612d8c565b610801565b60405161024891906133aa565b60405180910390f35b34801561025d57600080fd5b506102666108e3565b005b34801561027457600080fd5b5061027d61098b565b60405161028a91906133c5565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190612e33565b610a1d565b6040516102c79190613343565b60405180910390f35b3480156102dc57600080fd5b506102f760048036038101906102f29190612d4c565b610aa2565b005b34801561030557600080fd5b5061030e610bba565b60405161031b91906136a7565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190612e60565b610bc0565b005b34801561035957600080fd5b50610374600480360381019061036f9190612c36565b610d82565b005b34801561038257600080fd5b5061038b610de2565b60405161039891906133aa565b60405180910390f35b3480156103ad57600080fd5b506103b6610df5565b005b3480156103c457600080fd5b506103df60048036038101906103da9190612c36565b611001565b005b3480156103ed57600080fd5b506103f6611021565b005b34801561040457600080fd5b5061040d6110c9565b60405161041a91906133aa565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190612de6565b6110dc565b005b34801561045857600080fd5b50610473600480360381019061046e9190612e33565b61116e565b005b34801561048157600080fd5b5061049c60048036038101906104979190612e33565b6111f4565b6040516104a99190613343565b60405180910390f35b3480156104be57600080fd5b506104c76112a6565b6040516104d491906136a7565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190612bc9565b6112ac565b60405161051191906136a7565b60405180910390f35b34801561052657600080fd5b5061052f611364565b005b34801561053d57600080fd5b506105466113ec565b60405161055391906136a7565b60405180910390f35b34801561056857600080fd5b506105716113f1565b60405161057e9190613343565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190612de6565b61141b565b005b3480156105bc57600080fd5b506105c56114ad565b6040516105d291906133c5565b60405180910390f35b6105f560048036038101906105f09190612e33565b61153f565b005b34801561060357600080fd5b5061061e60048036038101906106199190612d0c565b611718565b005b34801561062c57600080fd5b5061063561172e565b60405161064291906133c5565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190612c89565b6117bc565b005b34801561068057600080fd5b5061068961181e565b60405161069691906136a7565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190612e33565b611824565b6040516106d391906133c5565b60405180910390f35b3480156106e857600080fd5b506106f161194f565b005b3480156106ff57600080fd5b506107086119f7565b60405161071591906133aa565b60405180910390f35b34801561072a57600080fd5b5061074560048036038101906107409190612e33565b611a0a565b005b34801561075357600080fd5b5061076e60048036038101906107699190612de6565b611a90565b005b34801561077c57600080fd5b50610785611b22565b60405161079291906133c5565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190612bf6565b611bb4565b6040516107cf91906133aa565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190612bc9565b611c48565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108cc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108dc57506108db82611d40565b5b9050919050565b6108eb611daa565b73ffffffffffffffffffffffffffffffffffffffff166109096113f1565b73ffffffffffffffffffffffffffffffffffffffff161461095f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610956906135a7565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b60606000805461099a9061393b565b80601f01602080910402602001604051908101604052809291908181526020018280546109c69061393b565b8015610a135780601f106109e857610100808354040283529160200191610a13565b820191906000526020600020905b8154815290600101906020018083116109f657829003601f168201915b5050505050905090565b6000610a2882611db2565b610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e90613587565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aad826111f4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590613607565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3d611daa565b73ffffffffffffffffffffffffffffffffffffffff161480610b6c5750610b6b81610b66611daa565b611bb4565b5b610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba290613507565b60405180910390fd5b610bb58383611e1e565b505050565b60115481565b610bc8611daa565b73ffffffffffffffffffffffffffffffffffffffff16610be66113f1565b73ffffffffffffffffffffffffffffffffffffffff1614610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c33906135a7565b60405180910390fd5b601060029054906101000a900460ff16610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290613687565b60405180910390fd5b600b5460115410610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc8906134a7565b60405180910390fd5b600b5482601154610ce29190613770565b1115610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a90613427565b60405180910390fd5b60005b82811015610d6457610d5182600183601154610d429190613770565b610d4c9190613770565b611ed7565b8080610d5c9061399e565b915050610d26565b508160116000828254610d779190613770565b925050819055505050565b610d93610d8d611daa565b82611ef5565b610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990613627565b60405180910390fd5b610ddd838383611fd3565b505050565b601060029054906101000a900460ff1681565b6000479050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600684610e4591906137f7565b610e4f91906137c6565b9081150290604051600060405180830381858888f19350505050158015610e7a573d6000803e3d6000fd5b50600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600484610ec691906137f7565b610ed091906137c6565b9081150290604051600060405180830381858888f19350505050158015610efb573d6000803e3d6000fd5b50600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600284610f4791906137f7565b610f5191906137c6565b9081150290604051600060405180830381858888f19350505050158015610f7c573d6000803e3d6000fd5b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064605884610fc891906137f7565b610fd291906137c6565b9081150290604051600060405180830381858888f19350505050158015610ffd573d6000803e3d6000fd5b5050565b61101c838383604051806020016040528060008152506117bc565b505050565b611029611daa565b73ffffffffffffffffffffffffffffffffffffffff166110476113f1565b73ffffffffffffffffffffffffffffffffffffffff161461109d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611094906135a7565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b601060009054906101000a900460ff1681565b6110e4611daa565b73ffffffffffffffffffffffffffffffffffffffff166111026113f1565b73ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f906135a7565b60405180910390fd5b8181600e91906111699291906129f7565b505050565b611176611daa565b73ffffffffffffffffffffffffffffffffffffffff166111946113f1565b73ffffffffffffffffffffffffffffffffffffffff16146111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e1906135a7565b60405180910390fd5b80600b8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561129d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129490613547565b60405180910390fd5b80915050919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561131d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131490613527565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61136c611daa565b73ffffffffffffffffffffffffffffffffffffffff1661138a6113f1565b73ffffffffffffffffffffffffffffffffffffffff16146113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d7906135a7565b60405180910390fd5b6113ea600061222f565b565b600881565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611423611daa565b73ffffffffffffffffffffffffffffffffffffffff166114416113f1565b73ffffffffffffffffffffffffffffffffffffffff1614611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e906135a7565b60405180910390fd5b8181600d91906114a89291906129f7565b505050565b6060600180546114bc9061393b565b80601f01602080910402602001604051908101604052809291908181526020018280546114e89061393b565b80156115355780601f1061150a57610100808354040283529160200191611535565b820191906000526020600020905b81548152906001019060200180831161151857829003601f168201915b5050505050905090565b601060019054906101000a900460ff1661158e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611585906134c7565b60405180910390fd5b600b54601154106115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb906134a7565b60405180910390fd5b600b54816011546115e59190613770565b1115611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90613427565b60405180910390fd5b3481600c5461163591906137f7565b1115611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d90613667565b60405180910390fd5b60088111156116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b190613647565b60405180910390fd5b60005b818110156116fb576116e8336001836011546116d99190613770565b6116e39190613770565b611ed7565b80806116f39061399e565b9150506116bd565b50806011600082825461170e9190613770565b9250508190555050565b61172a611723611daa565b83836122f5565b5050565b600f805461173b9061393b565b80601f01602080910402602001604051908101604052809291908181526020018280546117679061393b565b80156117b45780601f10611789576101008083540402835291602001916117b4565b820191906000526020600020905b81548152906001019060200180831161179757829003601f168201915b505050505081565b6117cd6117c7611daa565b83611ef5565b61180c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180390613627565b60405180910390fd5b61181884848484612462565b50505050565b600b5481565b606061182f82611db2565b61186e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611865906135e7565b60405180910390fd5b60001515601060009054906101000a900460ff161515141561191c57600f80546118979061393b565b80601f01602080910402602001604051908101604052809291908181526020018280546118c39061393b565b80156119105780601f106118e557610100808354040283529160200191611910565b820191906000526020600020905b8154815290600101906020018083116118f357829003601f168201915b5050505050905061194a565b600e611927836124be565b604051602001611938929190613314565b60405160208183030381529060405290505b919050565b611957611daa565b73ffffffffffffffffffffffffffffffffffffffff166119756113f1565b73ffffffffffffffffffffffffffffffffffffffff16146119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c2906135a7565b60405180910390fd5b601060029054906101000a900460ff1615601060026101000a81548160ff021916908315150217905550565b601060019054906101000a900460ff1681565b611a12611daa565b73ffffffffffffffffffffffffffffffffffffffff16611a306113f1565b73ffffffffffffffffffffffffffffffffffffffff1614611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d906135a7565b60405180910390fd5b80600c8190555050565b611a98611daa565b73ffffffffffffffffffffffffffffffffffffffff16611ab66113f1565b73ffffffffffffffffffffffffffffffffffffffff1614611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b03906135a7565b60405180910390fd5b8181600f9190611b1d9291906129f7565b505050565b6060600d8054611b319061393b565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5d9061393b565b8015611baa5780601f10611b7f57610100808354040283529160200191611baa565b820191906000526020600020905b815481529060010190602001808311611b8d57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c50611daa565b73ffffffffffffffffffffffffffffffffffffffff16611c6e6113f1565b73ffffffffffffffffffffffffffffffffffffffff1614611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb906135a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b90613407565b60405180910390fd5b611d3d8161222f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e91836111f4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611ef182826040518060200160405280600081525061261f565b5050565b6000611f0082611db2565b611f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f36906134e7565b60405180910390fd5b6000611f4a836111f4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fb957508373ffffffffffffffffffffffffffffffffffffffff16611fa184610a1d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fca5750611fc98185611bb4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ff3826111f4565b73ffffffffffffffffffffffffffffffffffffffff1614612049576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612040906135c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b090613467565b60405180910390fd5b6120c483838361267a565b6120cf600082611e1e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461211f9190613851565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121769190613770565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b90613487565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161245591906133aa565b60405180910390a3505050565b61246d848484611fd3565b6124798484848461267f565b6124b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124af906133e7565b60405180910390fd5b50505050565b60606000821415612506576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061261a565b600082905060005b600082146125385780806125219061399e565b915050600a8261253191906137c6565b915061250e565b60008167ffffffffffffffff81111561255457612553613ad4565b5b6040519080825280601f01601f1916602001820160405280156125865781602001600182028036833780820191505090505b5090505b600085146126135760018261259f9190613851565b9150600a856125ae91906139e7565b60306125ba9190613770565b60f81b8183815181106125d0576125cf613aa5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561260c91906137c6565b945061258a565b8093505050505b919050565b6126298383612816565b612636600084848461267f565b612675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266c906133e7565b60405180910390fd5b505050565b505050565b60006126a08473ffffffffffffffffffffffffffffffffffffffff166129e4565b15612809578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126c9611daa565b8786866040518563ffffffff1660e01b81526004016126eb949392919061335e565b602060405180830381600087803b15801561270557600080fd5b505af192505050801561273657506040513d601f19601f820116820180604052508101906127339190612db9565b60015b6127b9573d8060008114612766576040519150601f19603f3d011682016040523d82523d6000602084013e61276b565b606091505b506000815114156127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a8906133e7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061280e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287d90613567565b60405180910390fd5b61288f81611db2565b156128cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c690613447565b60405180910390fd5b6128db6000838361267a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461292b9190613770565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612a039061393b565b90600052602060002090601f016020900481019282612a255760008555612a6c565b82601f10612a3e57803560ff1916838001178555612a6c565b82800160010185558215612a6c579182015b82811115612a6b578235825591602001919060010190612a50565b5b509050612a799190612a7d565b5090565b5b80821115612a96576000816000905550600101612a7e565b5090565b6000612aad612aa8846136e7565b6136c2565b905082815260208101848484011115612ac957612ac8613b12565b5b612ad48482856138f9565b509392505050565b600081359050612aeb81614083565b92915050565b600081359050612b008161409a565b92915050565b600081359050612b15816140b1565b92915050565b600081519050612b2a816140b1565b92915050565b600082601f830112612b4557612b44613b08565b5b8135612b55848260208601612a9a565b91505092915050565b60008083601f840112612b7457612b73613b08565b5b8235905067ffffffffffffffff811115612b9157612b90613b03565b5b602083019150836001820283011115612bad57612bac613b0d565b5b9250929050565b600081359050612bc3816140c8565b92915050565b600060208284031215612bdf57612bde613b1c565b5b6000612bed84828501612adc565b91505092915050565b60008060408385031215612c0d57612c0c613b1c565b5b6000612c1b85828601612adc565b9250506020612c2c85828601612adc565b9150509250929050565b600080600060608486031215612c4f57612c4e613b1c565b5b6000612c5d86828701612adc565b9350506020612c6e86828701612adc565b9250506040612c7f86828701612bb4565b9150509250925092565b60008060008060808587031215612ca357612ca2613b1c565b5b6000612cb187828801612adc565b9450506020612cc287828801612adc565b9350506040612cd387828801612bb4565b925050606085013567ffffffffffffffff811115612cf457612cf3613b17565b5b612d0087828801612b30565b91505092959194509250565b60008060408385031215612d2357612d22613b1c565b5b6000612d3185828601612adc565b9250506020612d4285828601612af1565b9150509250929050565b60008060408385031215612d6357612d62613b1c565b5b6000612d7185828601612adc565b9250506020612d8285828601612bb4565b9150509250929050565b600060208284031215612da257612da1613b1c565b5b6000612db084828501612b06565b91505092915050565b600060208284031215612dcf57612dce613b1c565b5b6000612ddd84828501612b1b565b91505092915050565b60008060208385031215612dfd57612dfc613b1c565b5b600083013567ffffffffffffffff811115612e1b57612e1a613b17565b5b612e2785828601612b5e565b92509250509250929050565b600060208284031215612e4957612e48613b1c565b5b6000612e5784828501612bb4565b91505092915050565b60008060408385031215612e7757612e76613b1c565b5b6000612e8585828601612bb4565b9250506020612e9685828601612adc565b9150509250929050565b612ea981613885565b82525050565b612eb881613897565b82525050565b6000612ec98261372d565b612ed38185613743565b9350612ee3818560208601613908565b612eec81613b21565b840191505092915050565b6000612f0282613738565b612f0c8185613754565b9350612f1c818560208601613908565b612f2581613b21565b840191505092915050565b6000612f3b82613738565b612f458185613765565b9350612f55818560208601613908565b80840191505092915050565b60008154612f6e8161393b565b612f788186613765565b94506001821660008114612f935760018114612fa457612fd7565b60ff19831686528186019350612fd7565b612fad85613718565b60005b83811015612fcf57815481890152600182019150602081019050612fb0565b838801955050505b50505092915050565b6000612fed603283613754565b9150612ff882613b32565b604082019050919050565b6000613010602683613754565b915061301b82613b81565b604082019050919050565b6000613033600c83613754565b915061303e82613bd0565b602082019050919050565b6000613056601c83613754565b915061306182613bf9565b602082019050919050565b6000613079602483613754565b915061308482613c22565b604082019050919050565b600061309c601983613754565b91506130a782613c71565b602082019050919050565b60006130bf600c83613754565b91506130ca82613c9a565b602082019050919050565b60006130e2600b83613754565b91506130ed82613cc3565b602082019050919050565b6000613105602c83613754565b915061311082613cec565b604082019050919050565b6000613128603883613754565b915061313382613d3b565b604082019050919050565b600061314b602a83613754565b915061315682613d8a565b604082019050919050565b600061316e602983613754565b915061317982613dd9565b604082019050919050565b6000613191602083613754565b915061319c82613e28565b602082019050919050565b60006131b4602c83613754565b91506131bf82613e51565b604082019050919050565b60006131d7600583613765565b91506131e282613ea0565b600582019050919050565b60006131fa602083613754565b915061320582613ec9565b602082019050919050565b600061321d602983613754565b915061322882613ef2565b604082019050919050565b6000613240601f83613754565b915061324b82613f41565b602082019050919050565b6000613263602183613754565b915061326e82613f6a565b604082019050919050565b6000613286603183613754565b915061329182613fb9565b604082019050919050565b60006132a9601483613754565b91506132b482614008565b602082019050919050565b60006132cc601083613754565b91506132d782614031565b602082019050919050565b60006132ef600e83613754565b91506132fa8261405a565b602082019050919050565b61330e816138ef565b82525050565b60006133208285612f61565b915061332c8284612f30565b9150613337826131ca565b91508190509392505050565b60006020820190506133586000830184612ea0565b92915050565b60006080820190506133736000830187612ea0565b6133806020830186612ea0565b61338d6040830185613305565b818103606083015261339f8184612ebe565b905095945050505050565b60006020820190506133bf6000830184612eaf565b92915050565b600060208201905081810360008301526133df8184612ef7565b905092915050565b6000602082019050818103600083015261340081612fe0565b9050919050565b6000602082019050818103600083015261342081613003565b9050919050565b6000602082019050818103600083015261344081613026565b9050919050565b6000602082019050818103600083015261346081613049565b9050919050565b600060208201905081810360008301526134808161306c565b9050919050565b600060208201905081810360008301526134a08161308f565b9050919050565b600060208201905081810360008301526134c0816130b2565b9050919050565b600060208201905081810360008301526134e0816130d5565b9050919050565b60006020820190508181036000830152613500816130f8565b9050919050565b600060208201905081810360008301526135208161311b565b9050919050565b600060208201905081810360008301526135408161313e565b9050919050565b6000602082019050818103600083015261356081613161565b9050919050565b6000602082019050818103600083015261358081613184565b9050919050565b600060208201905081810360008301526135a0816131a7565b9050919050565b600060208201905081810360008301526135c0816131ed565b9050919050565b600060208201905081810360008301526135e081613210565b9050919050565b6000602082019050818103600083015261360081613233565b9050919050565b6000602082019050818103600083015261362081613256565b9050919050565b6000602082019050818103600083015261364081613279565b9050919050565b600060208201905081810360008301526136608161329c565b9050919050565b60006020820190508181036000830152613680816132bf565b9050919050565b600060208201905081810360008301526136a0816132e2565b9050919050565b60006020820190506136bc6000830184613305565b92915050565b60006136cc6136dd565b90506136d8828261396d565b919050565b6000604051905090565b600067ffffffffffffffff82111561370257613701613ad4565b5b61370b82613b21565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061377b826138ef565b9150613786836138ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137bb576137ba613a18565b5b828201905092915050565b60006137d1826138ef565b91506137dc836138ef565b9250826137ec576137eb613a47565b5b828204905092915050565b6000613802826138ef565b915061380d836138ef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561384657613845613a18565b5b828202905092915050565b600061385c826138ef565b9150613867836138ef565b92508282101561387a57613879613a18565b5b828203905092915050565b6000613890826138cf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561392657808201518184015260208101905061390b565b83811115613935576000848401525b50505050565b6000600282049050600182168061395357607f821691505b6020821081141561396757613966613a76565b5b50919050565b61397682613b21565b810181811067ffffffffffffffff8211171561399557613994613ad4565b5b80604052505050565b60006139a9826138ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139dc576139db613a18565b5b600182019050919050565b60006139f2826138ef565b91506139fd836138ef565b925082613a0d57613a0c613a47565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f53544f434b0000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f55545f4f465f53544f434b0000000000000000000000000000000000000000600082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4558434545445f4e4654535f5045525f4d494e54000000000000000000000000600082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b7f47494654494e475f434c4f534544000000000000000000000000000000000000600082015250565b61408c81613885565b811461409757600080fd5b50565b6140a381613897565b81146140ae57600080fd5b50565b6140ba816138a3565b81146140c557600080fd5b50565b6140d1816138ef565b81146140dc57600080fd5b5056fea2646970667358221220ed770dff8c29630b1796890a3341d9fc8431ed82059ec68467d279075cef85ff64736f6c63430008060033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063c30e7684116100a0578063e423a5111161006f578063e423a5111461071e578063e72be68a14610747578063e8a3d48514610770578063e985e9c51461079b578063f2fde38b146107d85761020f565b8063c30e768414610674578063c87b56dd1461069f578063cb908cce146106dc578063e081b781146106f35761020f565b806395d89b41116100e757806395d89b41146105b0578063a0712d68146105db578063a22cb465146105f7578063a4f8eaeb14610620578063b88d4fde1461064b5761020f565b8063715018a61461051a57806372bfb1af146105315780638da5cb5b1461055c578063938e3d7b146105875761020f565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146104235780635b0c52fd1461044c5780636352211e14610475578063676dd563146104b257806370a08231146104dd5761020f565b80633ccfd60b146103a157806342842e0e146103b857806345bcf17f146103e157806351830227146103f85761020f565b8063095ea7b3116101e2578063095ea7b3146102d057806318160ddd146102f95780631bd98e721461032457806323b872dd1461034d5780632cff9e06146103765761020f565b806301ffc9a714610214578063049c5c491461025157806306fdde0314610268578063081812fc14610293575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612d8c565b610801565b60405161024891906133aa565b60405180910390f35b34801561025d57600080fd5b506102666108e3565b005b34801561027457600080fd5b5061027d61098b565b60405161028a91906133c5565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190612e33565b610a1d565b6040516102c79190613343565b60405180910390f35b3480156102dc57600080fd5b506102f760048036038101906102f29190612d4c565b610aa2565b005b34801561030557600080fd5b5061030e610bba565b60405161031b91906136a7565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190612e60565b610bc0565b005b34801561035957600080fd5b50610374600480360381019061036f9190612c36565b610d82565b005b34801561038257600080fd5b5061038b610de2565b60405161039891906133aa565b60405180910390f35b3480156103ad57600080fd5b506103b6610df5565b005b3480156103c457600080fd5b506103df60048036038101906103da9190612c36565b611001565b005b3480156103ed57600080fd5b506103f6611021565b005b34801561040457600080fd5b5061040d6110c9565b60405161041a91906133aa565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190612de6565b6110dc565b005b34801561045857600080fd5b50610473600480360381019061046e9190612e33565b61116e565b005b34801561048157600080fd5b5061049c60048036038101906104979190612e33565b6111f4565b6040516104a99190613343565b60405180910390f35b3480156104be57600080fd5b506104c76112a6565b6040516104d491906136a7565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190612bc9565b6112ac565b60405161051191906136a7565b60405180910390f35b34801561052657600080fd5b5061052f611364565b005b34801561053d57600080fd5b506105466113ec565b60405161055391906136a7565b60405180910390f35b34801561056857600080fd5b506105716113f1565b60405161057e9190613343565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190612de6565b61141b565b005b3480156105bc57600080fd5b506105c56114ad565b6040516105d291906133c5565b60405180910390f35b6105f560048036038101906105f09190612e33565b61153f565b005b34801561060357600080fd5b5061061e60048036038101906106199190612d0c565b611718565b005b34801561062c57600080fd5b5061063561172e565b60405161064291906133c5565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190612c89565b6117bc565b005b34801561068057600080fd5b5061068961181e565b60405161069691906136a7565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190612e33565b611824565b6040516106d391906133c5565b60405180910390f35b3480156106e857600080fd5b506106f161194f565b005b3480156106ff57600080fd5b506107086119f7565b60405161071591906133aa565b60405180910390f35b34801561072a57600080fd5b5061074560048036038101906107409190612e33565b611a0a565b005b34801561075357600080fd5b5061076e60048036038101906107699190612de6565b611a90565b005b34801561077c57600080fd5b50610785611b22565b60405161079291906133c5565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190612bf6565b611bb4565b6040516107cf91906133aa565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190612bc9565b611c48565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108cc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108dc57506108db82611d40565b5b9050919050565b6108eb611daa565b73ffffffffffffffffffffffffffffffffffffffff166109096113f1565b73ffffffffffffffffffffffffffffffffffffffff161461095f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610956906135a7565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b60606000805461099a9061393b565b80601f01602080910402602001604051908101604052809291908181526020018280546109c69061393b565b8015610a135780601f106109e857610100808354040283529160200191610a13565b820191906000526020600020905b8154815290600101906020018083116109f657829003601f168201915b5050505050905090565b6000610a2882611db2565b610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e90613587565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aad826111f4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590613607565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3d611daa565b73ffffffffffffffffffffffffffffffffffffffff161480610b6c5750610b6b81610b66611daa565b611bb4565b5b610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba290613507565b60405180910390fd5b610bb58383611e1e565b505050565b60115481565b610bc8611daa565b73ffffffffffffffffffffffffffffffffffffffff16610be66113f1565b73ffffffffffffffffffffffffffffffffffffffff1614610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c33906135a7565b60405180910390fd5b601060029054906101000a900460ff16610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290613687565b60405180910390fd5b600b5460115410610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc8906134a7565b60405180910390fd5b600b5482601154610ce29190613770565b1115610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a90613427565b60405180910390fd5b60005b82811015610d6457610d5182600183601154610d429190613770565b610d4c9190613770565b611ed7565b8080610d5c9061399e565b915050610d26565b508160116000828254610d779190613770565b925050819055505050565b610d93610d8d611daa565b82611ef5565b610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990613627565b60405180910390fd5b610ddd838383611fd3565b505050565b601060029054906101000a900460ff1681565b6000479050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600684610e4591906137f7565b610e4f91906137c6565b9081150290604051600060405180830381858888f19350505050158015610e7a573d6000803e3d6000fd5b50600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600484610ec691906137f7565b610ed091906137c6565b9081150290604051600060405180830381858888f19350505050158015610efb573d6000803e3d6000fd5b50600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600284610f4791906137f7565b610f5191906137c6565b9081150290604051600060405180830381858888f19350505050158015610f7c573d6000803e3d6000fd5b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064605884610fc891906137f7565b610fd291906137c6565b9081150290604051600060405180830381858888f19350505050158015610ffd573d6000803e3d6000fd5b5050565b61101c838383604051806020016040528060008152506117bc565b505050565b611029611daa565b73ffffffffffffffffffffffffffffffffffffffff166110476113f1565b73ffffffffffffffffffffffffffffffffffffffff161461109d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611094906135a7565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b601060009054906101000a900460ff1681565b6110e4611daa565b73ffffffffffffffffffffffffffffffffffffffff166111026113f1565b73ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f906135a7565b60405180910390fd5b8181600e91906111699291906129f7565b505050565b611176611daa565b73ffffffffffffffffffffffffffffffffffffffff166111946113f1565b73ffffffffffffffffffffffffffffffffffffffff16146111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e1906135a7565b60405180910390fd5b80600b8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561129d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129490613547565b60405180910390fd5b80915050919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561131d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131490613527565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61136c611daa565b73ffffffffffffffffffffffffffffffffffffffff1661138a6113f1565b73ffffffffffffffffffffffffffffffffffffffff16146113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d7906135a7565b60405180910390fd5b6113ea600061222f565b565b600881565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611423611daa565b73ffffffffffffffffffffffffffffffffffffffff166114416113f1565b73ffffffffffffffffffffffffffffffffffffffff1614611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e906135a7565b60405180910390fd5b8181600d91906114a89291906129f7565b505050565b6060600180546114bc9061393b565b80601f01602080910402602001604051908101604052809291908181526020018280546114e89061393b565b80156115355780601f1061150a57610100808354040283529160200191611535565b820191906000526020600020905b81548152906001019060200180831161151857829003601f168201915b5050505050905090565b601060019054906101000a900460ff1661158e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611585906134c7565b60405180910390fd5b600b54601154106115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb906134a7565b60405180910390fd5b600b54816011546115e59190613770565b1115611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90613427565b60405180910390fd5b3481600c5461163591906137f7565b1115611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d90613667565b60405180910390fd5b60088111156116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b190613647565b60405180910390fd5b60005b818110156116fb576116e8336001836011546116d99190613770565b6116e39190613770565b611ed7565b80806116f39061399e565b9150506116bd565b50806011600082825461170e9190613770565b9250508190555050565b61172a611723611daa565b83836122f5565b5050565b600f805461173b9061393b565b80601f01602080910402602001604051908101604052809291908181526020018280546117679061393b565b80156117b45780601f10611789576101008083540402835291602001916117b4565b820191906000526020600020905b81548152906001019060200180831161179757829003601f168201915b505050505081565b6117cd6117c7611daa565b83611ef5565b61180c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180390613627565b60405180910390fd5b61181884848484612462565b50505050565b600b5481565b606061182f82611db2565b61186e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611865906135e7565b60405180910390fd5b60001515601060009054906101000a900460ff161515141561191c57600f80546118979061393b565b80601f01602080910402602001604051908101604052809291908181526020018280546118c39061393b565b80156119105780601f106118e557610100808354040283529160200191611910565b820191906000526020600020905b8154815290600101906020018083116118f357829003601f168201915b5050505050905061194a565b600e611927836124be565b604051602001611938929190613314565b60405160208183030381529060405290505b919050565b611957611daa565b73ffffffffffffffffffffffffffffffffffffffff166119756113f1565b73ffffffffffffffffffffffffffffffffffffffff16146119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c2906135a7565b60405180910390fd5b601060029054906101000a900460ff1615601060026101000a81548160ff021916908315150217905550565b601060019054906101000a900460ff1681565b611a12611daa565b73ffffffffffffffffffffffffffffffffffffffff16611a306113f1565b73ffffffffffffffffffffffffffffffffffffffff1614611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d906135a7565b60405180910390fd5b80600c8190555050565b611a98611daa565b73ffffffffffffffffffffffffffffffffffffffff16611ab66113f1565b73ffffffffffffffffffffffffffffffffffffffff1614611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b03906135a7565b60405180910390fd5b8181600f9190611b1d9291906129f7565b505050565b6060600d8054611b319061393b565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5d9061393b565b8015611baa5780601f10611b7f57610100808354040283529160200191611baa565b820191906000526020600020905b815481529060010190602001808311611b8d57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c50611daa565b73ffffffffffffffffffffffffffffffffffffffff16611c6e6113f1565b73ffffffffffffffffffffffffffffffffffffffff1614611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb906135a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b90613407565b60405180910390fd5b611d3d8161222f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e91836111f4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611ef182826040518060200160405280600081525061261f565b5050565b6000611f0082611db2565b611f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f36906134e7565b60405180910390fd5b6000611f4a836111f4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fb957508373ffffffffffffffffffffffffffffffffffffffff16611fa184610a1d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fca5750611fc98185611bb4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ff3826111f4565b73ffffffffffffffffffffffffffffffffffffffff1614612049576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612040906135c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b090613467565b60405180910390fd5b6120c483838361267a565b6120cf600082611e1e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461211f9190613851565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121769190613770565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b90613487565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161245591906133aa565b60405180910390a3505050565b61246d848484611fd3565b6124798484848461267f565b6124b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124af906133e7565b60405180910390fd5b50505050565b60606000821415612506576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061261a565b600082905060005b600082146125385780806125219061399e565b915050600a8261253191906137c6565b915061250e565b60008167ffffffffffffffff81111561255457612553613ad4565b5b6040519080825280601f01601f1916602001820160405280156125865781602001600182028036833780820191505090505b5090505b600085146126135760018261259f9190613851565b9150600a856125ae91906139e7565b60306125ba9190613770565b60f81b8183815181106125d0576125cf613aa5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561260c91906137c6565b945061258a565b8093505050505b919050565b6126298383612816565b612636600084848461267f565b612675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266c906133e7565b60405180910390fd5b505050565b505050565b60006126a08473ffffffffffffffffffffffffffffffffffffffff166129e4565b15612809578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126c9611daa565b8786866040518563ffffffff1660e01b81526004016126eb949392919061335e565b602060405180830381600087803b15801561270557600080fd5b505af192505050801561273657506040513d601f19601f820116820180604052508101906127339190612db9565b60015b6127b9573d8060008114612766576040519150601f19603f3d011682016040523d82523d6000602084013e61276b565b606091505b506000815114156127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a8906133e7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061280e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287d90613567565b60405180910390fd5b61288f81611db2565b156128cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c690613447565b60405180910390fd5b6128db6000838361267a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461292b9190613770565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612a039061393b565b90600052602060002090601f016020900481019282612a255760008555612a6c565b82601f10612a3e57803560ff1916838001178555612a6c565b82800160010185558215612a6c579182015b82811115612a6b578235825591602001919060010190612a50565b5b509050612a799190612a7d565b5090565b5b80821115612a96576000816000905550600101612a7e565b5090565b6000612aad612aa8846136e7565b6136c2565b905082815260208101848484011115612ac957612ac8613b12565b5b612ad48482856138f9565b509392505050565b600081359050612aeb81614083565b92915050565b600081359050612b008161409a565b92915050565b600081359050612b15816140b1565b92915050565b600081519050612b2a816140b1565b92915050565b600082601f830112612b4557612b44613b08565b5b8135612b55848260208601612a9a565b91505092915050565b60008083601f840112612b7457612b73613b08565b5b8235905067ffffffffffffffff811115612b9157612b90613b03565b5b602083019150836001820283011115612bad57612bac613b0d565b5b9250929050565b600081359050612bc3816140c8565b92915050565b600060208284031215612bdf57612bde613b1c565b5b6000612bed84828501612adc565b91505092915050565b60008060408385031215612c0d57612c0c613b1c565b5b6000612c1b85828601612adc565b9250506020612c2c85828601612adc565b9150509250929050565b600080600060608486031215612c4f57612c4e613b1c565b5b6000612c5d86828701612adc565b9350506020612c6e86828701612adc565b9250506040612c7f86828701612bb4565b9150509250925092565b60008060008060808587031215612ca357612ca2613b1c565b5b6000612cb187828801612adc565b9450506020612cc287828801612adc565b9350506040612cd387828801612bb4565b925050606085013567ffffffffffffffff811115612cf457612cf3613b17565b5b612d0087828801612b30565b91505092959194509250565b60008060408385031215612d2357612d22613b1c565b5b6000612d3185828601612adc565b9250506020612d4285828601612af1565b9150509250929050565b60008060408385031215612d6357612d62613b1c565b5b6000612d7185828601612adc565b9250506020612d8285828601612bb4565b9150509250929050565b600060208284031215612da257612da1613b1c565b5b6000612db084828501612b06565b91505092915050565b600060208284031215612dcf57612dce613b1c565b5b6000612ddd84828501612b1b565b91505092915050565b60008060208385031215612dfd57612dfc613b1c565b5b600083013567ffffffffffffffff811115612e1b57612e1a613b17565b5b612e2785828601612b5e565b92509250509250929050565b600060208284031215612e4957612e48613b1c565b5b6000612e5784828501612bb4565b91505092915050565b60008060408385031215612e7757612e76613b1c565b5b6000612e8585828601612bb4565b9250506020612e9685828601612adc565b9150509250929050565b612ea981613885565b82525050565b612eb881613897565b82525050565b6000612ec98261372d565b612ed38185613743565b9350612ee3818560208601613908565b612eec81613b21565b840191505092915050565b6000612f0282613738565b612f0c8185613754565b9350612f1c818560208601613908565b612f2581613b21565b840191505092915050565b6000612f3b82613738565b612f458185613765565b9350612f55818560208601613908565b80840191505092915050565b60008154612f6e8161393b565b612f788186613765565b94506001821660008114612f935760018114612fa457612fd7565b60ff19831686528186019350612fd7565b612fad85613718565b60005b83811015612fcf57815481890152600182019150602081019050612fb0565b838801955050505b50505092915050565b6000612fed603283613754565b9150612ff882613b32565b604082019050919050565b6000613010602683613754565b915061301b82613b81565b604082019050919050565b6000613033600c83613754565b915061303e82613bd0565b602082019050919050565b6000613056601c83613754565b915061306182613bf9565b602082019050919050565b6000613079602483613754565b915061308482613c22565b604082019050919050565b600061309c601983613754565b91506130a782613c71565b602082019050919050565b60006130bf600c83613754565b91506130ca82613c9a565b602082019050919050565b60006130e2600b83613754565b91506130ed82613cc3565b602082019050919050565b6000613105602c83613754565b915061311082613cec565b604082019050919050565b6000613128603883613754565b915061313382613d3b565b604082019050919050565b600061314b602a83613754565b915061315682613d8a565b604082019050919050565b600061316e602983613754565b915061317982613dd9565b604082019050919050565b6000613191602083613754565b915061319c82613e28565b602082019050919050565b60006131b4602c83613754565b91506131bf82613e51565b604082019050919050565b60006131d7600583613765565b91506131e282613ea0565b600582019050919050565b60006131fa602083613754565b915061320582613ec9565b602082019050919050565b600061321d602983613754565b915061322882613ef2565b604082019050919050565b6000613240601f83613754565b915061324b82613f41565b602082019050919050565b6000613263602183613754565b915061326e82613f6a565b604082019050919050565b6000613286603183613754565b915061329182613fb9565b604082019050919050565b60006132a9601483613754565b91506132b482614008565b602082019050919050565b60006132cc601083613754565b91506132d782614031565b602082019050919050565b60006132ef600e83613754565b91506132fa8261405a565b602082019050919050565b61330e816138ef565b82525050565b60006133208285612f61565b915061332c8284612f30565b9150613337826131ca565b91508190509392505050565b60006020820190506133586000830184612ea0565b92915050565b60006080820190506133736000830187612ea0565b6133806020830186612ea0565b61338d6040830185613305565b818103606083015261339f8184612ebe565b905095945050505050565b60006020820190506133bf6000830184612eaf565b92915050565b600060208201905081810360008301526133df8184612ef7565b905092915050565b6000602082019050818103600083015261340081612fe0565b9050919050565b6000602082019050818103600083015261342081613003565b9050919050565b6000602082019050818103600083015261344081613026565b9050919050565b6000602082019050818103600083015261346081613049565b9050919050565b600060208201905081810360008301526134808161306c565b9050919050565b600060208201905081810360008301526134a08161308f565b9050919050565b600060208201905081810360008301526134c0816130b2565b9050919050565b600060208201905081810360008301526134e0816130d5565b9050919050565b60006020820190508181036000830152613500816130f8565b9050919050565b600060208201905081810360008301526135208161311b565b9050919050565b600060208201905081810360008301526135408161313e565b9050919050565b6000602082019050818103600083015261356081613161565b9050919050565b6000602082019050818103600083015261358081613184565b9050919050565b600060208201905081810360008301526135a0816131a7565b9050919050565b600060208201905081810360008301526135c0816131ed565b9050919050565b600060208201905081810360008301526135e081613210565b9050919050565b6000602082019050818103600083015261360081613233565b9050919050565b6000602082019050818103600083015261362081613256565b9050919050565b6000602082019050818103600083015261364081613279565b9050919050565b600060208201905081810360008301526136608161329c565b9050919050565b60006020820190508181036000830152613680816132bf565b9050919050565b600060208201905081810360008301526136a0816132e2565b9050919050565b60006020820190506136bc6000830184613305565b92915050565b60006136cc6136dd565b90506136d8828261396d565b919050565b6000604051905090565b600067ffffffffffffffff82111561370257613701613ad4565b5b61370b82613b21565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061377b826138ef565b9150613786836138ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137bb576137ba613a18565b5b828201905092915050565b60006137d1826138ef565b91506137dc836138ef565b9250826137ec576137eb613a47565b5b828204905092915050565b6000613802826138ef565b915061380d836138ef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561384657613845613a18565b5b828202905092915050565b600061385c826138ef565b9150613867836138ef565b92508282101561387a57613879613a18565b5b828203905092915050565b6000613890826138cf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561392657808201518184015260208101905061390b565b83811115613935576000848401525b50505050565b6000600282049050600182168061395357607f821691505b6020821081141561396757613966613a76565b5b50919050565b61397682613b21565b810181811067ffffffffffffffff8211171561399557613994613ad4565b5b80604052505050565b60006139a9826138ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139dc576139db613a18565b5b600182019050919050565b60006139f2826138ef565b91506139fd836138ef565b925082613a0d57613a0c613a47565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f53544f434b0000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f55545f4f465f53544f434b0000000000000000000000000000000000000000600082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4558434545445f4e4654535f5045525f4d494e54000000000000000000000000600082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b7f47494654494e475f434c4f534544000000000000000000000000000000000000600082015250565b61408c81613885565b811461409757600080fd5b50565b6140a381613897565b81146140ae57600080fd5b50565b6140ba816138a3565b81146140c557600080fd5b50565b6140d1816138ef565b81146140dc57600080fd5b5056fea2646970667358221220ed770dff8c29630b1796890a3341d9fc8431ed82059ec68467d279075cef85ff64736f6c63430008060033

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.