ETH Price: $3,504.58 (+2.45%)
Gas: 2 Gwei

Token

CasinoRoyal (CR52)
 

Overview

Max Total Supply

31 CR52

Holders

20

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 CR52
0x58f4caf29a4bbaa6f53a8b454633b619a780ce5d
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:
CasinoRoyal

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : CrownRoyalNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

contract CasinoRoyal is ERC721, ERC721URIStorage, Ownable {

    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;

    uint public mintPrice; 
    uint public totalSupply;
    uint public maxSupply;
    uint public maxPerWallet;
    bool public isPublicMintEnabled;
    string public baseTokenUri;
    address payable internal withdrawWallet;
    mapping (address => uint256[]) internal accountMints;
    bool public useHiddenBaseURL;
    string public hiddenBaseTokenUri;

    constructor() payable ERC721("CasinoRoyal", "CR52") {
        totalSupply = 0;
        withdrawWallet = payable(msg.sender);
        useHiddenBaseURL = true;
    }

    // The following functions are overrides required by Solidity.

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    // **
    // These functions can be execured only by the owner.
    // **

    function setMintPrice(uint _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
    }

    function setMaxSupply(uint _maxSupply) external onlyOwner {
        maxSupply = _maxSupply;
    }

    function setMaxPerWallet(uint _maxPerWallet) external onlyOwner {
        maxPerWallet = _maxPerWallet;
    }

    function setIsPublicMintEnabled(bool isPublicMintEnabled_) external onlyOwner {
        require(mintPrice > 0, "Mint price required");
        require(maxSupply > 0, "Max Supply required");
        require(maxPerWallet > 0, "Max Per Wallet required");
        require(bytes(baseTokenUri).length > 0, "Set a base token URI");
        isPublicMintEnabled = isPublicMintEnabled_;
    }

    function setBaseTokenUri(string calldata baseTokenUri_) external onlyOwner {
        baseTokenUri = baseTokenUri_;
    }

    function setHiddenBaseTokenUri(string calldata _hiddenBaseTokenUri) external onlyOwner {
        hiddenBaseTokenUri = _hiddenBaseTokenUri;
    }

    function setRevealImages(bool _useHiddenBaseURL) external onlyOwner {
        useHiddenBaseURL = _useHiddenBaseURL;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = withdrawWallet.call{ value:address(this).balance }('');
        require(success, 'withdraw failed');
    }    
    
    function contractBalance() external view onlyOwner returns(uint)  {
        return address(this).balance;
    }

    // **
    // Anyone can read these functions.
    // **

    function tokenURI(uint256 tokenId_) public view override(ERC721, ERC721URIStorage) returns (string memory) {
        require(_exists(tokenId_), 'TokenID Required');
        if(useHiddenBaseURL) {
            return string(abi.encodePacked(getBaseURI()));
        }else{
            return string(abi.encodePacked(getBaseURI(), Strings.toString(tokenId_), ".json"));
        }
    }

    function getBaseURI() internal view returns(string memory)  {
        if(useHiddenBaseURL) {
            return hiddenTokenURI();
        }else{
            return baseTokenURI();
        }
    }
    
    function baseTokenURI() public view returns (string memory) {
        return string(abi.encodePacked(baseTokenUri));
    }

    function hiddenTokenURI() public view returns (string memory) {
        return string(abi.encodePacked(hiddenBaseTokenUri));
    }

    function getMyTokenIDs() public view returns(uint[] memory) {
        return accountMints[msg.sender];
    }

    function myMintCount() public view returns(uint) {
        return accountMints[msg.sender].length;
    }

    // **
    // These are public payable functions.
    // **

    function mint(uint256 quantity_) public payable {
        require(mintPrice > 0, "Mint price need to be set by owner");
        require(maxSupply > 0, "Max supply need to be set by owner");
        require(maxPerWallet > 0, "Max Per Wallet need to be set by owner");
        require(isPublicMintEnabled, 'Minting not enabled');
        require(msg.value == quantity_ * mintPrice, 'Wrong mint value');
        require(totalSupply + quantity_ <= maxSupply, 'Sold out');
        require(myMintCount() + quantity_ <= maxPerWallet, 'exceed max per wallet');
        
        for(uint256 i = 0; i < quantity_; i++) {
            uint256 newTokenId = totalSupply + 1;
            totalSupply++;
            accountMints[msg.sender].push(newTokenId);
            _safeMint(msg.sender, newTokenId);
        }
    }

}

File 2 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 13 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 4 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 5 of 13 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 6 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 7 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 8 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMyTokenIDs","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenBaseTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"myMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenUri_","type":"string"}],"name":"setBaseTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenBaseTokenUri","type":"string"}],"name":"setHiddenBaseTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isPublicMintEnabled_","type":"bool"}],"name":"setIsPublicMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_useHiddenBaseURL","type":"bool"}],"name":"setRevealImages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"useHiddenBaseURL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600b81526020017f436173696e6f526f79616c0000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4352353200000000000000000000000000000000000000000000000000000000815250816000908051906020019062000088929190620001fc565b508060019080519060200190620000a1929190620001fc565b505050620000c4620000b86200012e60201b60201c565b6200013660201b60201c565b6000600a8190555033600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601160006101000a81548160ff02191690831515021790555062000311565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020a90620002ac565b90600052602060002090601f0160209004810192826200022e57600085556200027a565b82601f106200024957805160ff19168380011785556200027a565b828001600101855582156200027a579182015b82811115620002795782518255916020019190600101906200025c565b5b5090506200028991906200028d565b5090565b5b80821115620002a85760008160009055506001016200028e565b5090565b60006002820490506001821680620002c557607f821691505b60208210811415620002dc57620002db620002e2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61460d80620003216000396000f3fe6080604052600436106102255760003560e01c80637a0101a211610123578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c5146107c2578063ec83ebbd146107ff578063f2fde38b1461082a578063f412ea5a14610853578063f4a0a5281461087e57610225565b8063b88d4fde146106dd578063c87b56dd14610706578063d547cfb714610743578063d5abeb011461076e578063e268e4d31461079957610225565b806391033b8a116100f257806391033b8a1461061957806395652cfa1461064457806395d89b411461066d578063a0712d6814610698578063a22cb465146106b457610225565b80637a0101a21461056d578063819a4890146105985780638b7afe2e146105c35780638da5cb5b146105ee57610225565b80632f4bc4ff116101b15780636352211e116101755780636352211e146104885780636817c76c146104c55780636f8b44b0146104f057806370a0823114610519578063715018a61461055657610225565b80632f4bc4ff146103cb5780633ccfd60b146103f457806342842e0e1461040b578063453c231014610434578063457a66311461045f57610225565b8063095ea7b3116101f8578063095ea7b3146102fa57806318160ddd146103235780632373ac221461034e57806323b872dd146103775780632887351a146103a057610225565b80630116bc2d1461022a57806301ffc9a71461025557806306fdde0314610292578063081812fc146102bd575b600080fd5b34801561023657600080fd5b5061023f6108a7565b60405161024c9190613680565b60405180910390f35b34801561026157600080fd5b5061027c60048036038101906102779190612ed7565b6108ba565b6040516102899190613680565b60405180910390f35b34801561029e57600080fd5b506102a761099c565b6040516102b4919061369b565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190612f6e565b610a2e565b6040516102f191906135f7565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c9190612e72565b610ab3565b005b34801561032f57600080fd5b50610338610bcb565b6040516103459190613a3d565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190612eae565b610bd1565b005b34801561038357600080fd5b5061039e60048036038101906103999190612d6c565b610d8a565b005b3480156103ac57600080fd5b506103b5610dea565b6040516103c2919061365e565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190612eae565b610e7f565b005b34801561040057600080fd5b50610409610f18565b005b34801561041757600080fd5b50610432600480360381019061042d9190612d6c565b611065565b005b34801561044057600080fd5b50610449611085565b6040516104569190613a3d565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190612f29565b61108b565b005b34801561049457600080fd5b506104af60048036038101906104aa9190612f6e565b61111d565b6040516104bc91906135f7565b60405180910390f35b3480156104d157600080fd5b506104da6111cf565b6040516104e79190613a3d565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190612f6e565b6111d5565b005b34801561052557600080fd5b50610540600480360381019061053b9190612d07565b61125b565b60405161054d9190613a3d565b60405180910390f35b34801561056257600080fd5b5061056b611313565b005b34801561057957600080fd5b5061058261139b565b60405161058f919061369b565b60405180910390f35b3480156105a457600080fd5b506105ad611429565b6040516105ba9190613a3d565b60405180910390f35b3480156105cf57600080fd5b506105d8611473565b6040516105e59190613a3d565b60405180910390f35b3480156105fa57600080fd5b506106036114f7565b60405161061091906135f7565b60405180910390f35b34801561062557600080fd5b5061062e611521565b60405161063b9190613680565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190612f29565b611534565b005b34801561067957600080fd5b506106826115c6565b60405161068f919061369b565b60405180910390f35b6106b260048036038101906106ad9190612f6e565b611658565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612e36565b61192c565b005b3480156106e957600080fd5b5061070460048036038101906106ff9190612dbb565b611942565b005b34801561071257600080fd5b5061072d60048036038101906107289190612f6e565b6119a4565b60405161073a919061369b565b60405180910390f35b34801561074f57600080fd5b50610758611a6a565b604051610765919061369b565b60405180910390f35b34801561077a57600080fd5b50610783611a92565b6040516107909190613a3d565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb9190612f6e565b611a98565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190612d30565b611b1e565b6040516107f69190613680565b60405180910390f35b34801561080b57600080fd5b50610814611bb2565b604051610821919061369b565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c9190612d07565b611bda565b005b34801561085f57600080fd5b50610868611cd2565b604051610875919061369b565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a09190612f6e565b611d60565b005b600d60009054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610995575061099482611de6565b5b9050919050565b6060600080546109ab90613d15565b80601f01602080910402602001604051908101604052809291908181526020018280546109d790613d15565b8015610a245780601f106109f957610100808354040283529160200191610a24565b820191906000526020600020905b815481529060010190602001808311610a0757829003601f168201915b5050505050905090565b6000610a3982611e50565b610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f906138bd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610abe8261111d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b269061391d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4e611ebc565b73ffffffffffffffffffffffffffffffffffffffff161480610b7d5750610b7c81610b77611ebc565b611b1e565b5b610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb39061381d565b60405180910390fd5b610bc68383611ec4565b505050565b600a5481565b610bd9611ebc565b73ffffffffffffffffffffffffffffffffffffffff16610bf76114f7565b73ffffffffffffffffffffffffffffffffffffffff1614610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c44906138dd565b60405180910390fd5b600060095411610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c89906137bd565b60405180910390fd5b6000600b5411610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce9061399d565b60405180910390fd5b6000600c5411610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d13906136bd565b60405180910390fd5b6000600e8054610d2b90613d15565b905011610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d64906139bd565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b610d9b610d95611ebc565b82611f7d565b610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd19061393d565b60405180910390fd5b610de583838361205b565b505050565b6060601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610e7557602002820191906000526020600020905b815481526020019060010190808311610e61575b5050505050905090565b610e87611ebc565b73ffffffffffffffffffffffffffffffffffffffff16610ea56114f7565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906138dd565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b610f20611ebc565b73ffffffffffffffffffffffffffffffffffffffff16610f3e6114f7565b73ffffffffffffffffffffffffffffffffffffffff1614610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b906138dd565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610fdc906135e2565b60006040518083038185875af1925050503d8060008114611019576040519150601f19603f3d011682016040523d82523d6000602084013e61101e565b606091505b5050905080611062576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611059906139dd565b60405180910390fd5b50565b61108083838360405180602001604052806000815250611942565b505050565b600c5481565b611093611ebc565b73ffffffffffffffffffffffffffffffffffffffff166110b16114f7565b73ffffffffffffffffffffffffffffffffffffffff1614611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe906138dd565b60405180910390fd5b818160129190611118929190612b49565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd9061385d565b60405180910390fd5b80915050919050565b60095481565b6111dd611ebc565b73ffffffffffffffffffffffffffffffffffffffff166111fb6114f7565b73ffffffffffffffffffffffffffffffffffffffff1614611251576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611248906138dd565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c39061383d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61131b611ebc565b73ffffffffffffffffffffffffffffffffffffffff166113396114f7565b73ffffffffffffffffffffffffffffffffffffffff161461138f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611386906138dd565b60405180910390fd5b61139960006122c2565b565b600e80546113a890613d15565b80601f01602080910402602001604051908101604052809291908181526020018280546113d490613d15565b80156114215780601f106113f657610100808354040283529160200191611421565b820191906000526020600020905b81548152906001019060200180831161140457829003601f168201915b505050505081565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050905090565b600061147d611ebc565b73ffffffffffffffffffffffffffffffffffffffff1661149b6114f7565b73ffffffffffffffffffffffffffffffffffffffff16146114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e8906138dd565b60405180910390fd5b47905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601160009054906101000a900460ff1681565b61153c611ebc565b73ffffffffffffffffffffffffffffffffffffffff1661155a6114f7565b73ffffffffffffffffffffffffffffffffffffffff16146115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a7906138dd565b60405180910390fd5b8181600e91906115c1929190612b49565b505050565b6060600180546115d590613d15565b80601f016020809104026020016040519081016040528092919081815260200182805461160190613d15565b801561164e5780601f106116235761010080835404028352916020019161164e565b820191906000526020600020905b81548152906001019060200180831161163157829003601f168201915b5050505050905090565b60006009541161169d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116949061375d565b60405180910390fd5b6000600b54116116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d99061387d565b60405180910390fd5b6000600c5411611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e90613a1d565b60405180910390fd5b600d60009054906101000a900460ff16611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d906138fd565b60405180910390fd5b600954816117849190613bd1565b34146117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc9061397d565b60405180910390fd5b600b5481600a546117d69190613b4a565b1115611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e9061395d565b60405180910390fd5b600c5481611823611429565b61182d9190613b4a565b111561186e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611865906139fd565b60405180910390fd5b60005b818110156119285760006001600a5461188a9190613b4a565b9050600a600081548092919061189f90613d78565b9190505550601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150556119143382612388565b50808061192090613d78565b915050611871565b5050565b61193e611937611ebc565b83836123a6565b5050565b61195361194d611ebc565b83611f7d565b611992576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119899061393d565b60405180910390fd5b61199e84848484612513565b50505050565b60606119af82611e50565b6119ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e5906137fd565b60405180910390fd5b601160009054906101000a900460ff1615611a3157611a0b61256f565b604051602001611a1b9190613585565b6040516020818303038152906040529050611a65565b611a3961256f565b611a42836125a3565b604051602001611a5392919061359c565b60405160208183030381529060405290505b919050565b6060600e604051602001611a7e91906135cb565b604051602081830303815290604052905090565b600b5481565b611aa0611ebc565b73ffffffffffffffffffffffffffffffffffffffff16611abe6114f7565b73ffffffffffffffffffffffffffffffffffffffff1614611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b906138dd565b60405180910390fd5b80600c8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606012604051602001611bc691906135cb565b604051602081830303815290604052905090565b611be2611ebc565b73ffffffffffffffffffffffffffffffffffffffff16611c006114f7565b73ffffffffffffffffffffffffffffffffffffffff1614611c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4d906138dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd906136fd565b60405180910390fd5b611ccf816122c2565b50565b60128054611cdf90613d15565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0b90613d15565b8015611d585780601f10611d2d57610100808354040283529160200191611d58565b820191906000526020600020905b815481529060010190602001808311611d3b57829003601f168201915b505050505081565b611d68611ebc565b73ffffffffffffffffffffffffffffffffffffffff16611d866114f7565b73ffffffffffffffffffffffffffffffffffffffff1614611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd3906138dd565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f378361111d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f8882611e50565b611fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbe906137dd565b60405180910390fd5b6000611fd28361111d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061204157508373ffffffffffffffffffffffffffffffffffffffff1661202984610a2e565b73ffffffffffffffffffffffffffffffffffffffff16145b8061205257506120518185611b1e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661207b8261111d565b73ffffffffffffffffffffffffffffffffffffffff16146120d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c89061371d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612141576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121389061377d565b60405180910390fd5b61214c838383612750565b612157600082611ec4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121a79190613c2b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121fe9190613b4a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122bd838383612755565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123a282826040518060200160405280600081525061275a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240c9061379d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125069190613680565b60405180910390a3505050565b61251e84848461205b565b61252a848484846127b5565b612569576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612560906136dd565b60405180910390fd5b50505050565b6060601160009054906101000a900460ff16156125955761258e611bb2565b90506125a0565b61259d611a6a565b90505b90565b606060008214156125eb576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061274b565b600082905060005b6000821461261d57808061260690613d78565b915050600a826126169190613ba0565b91506125f3565b60008167ffffffffffffffff81111561265f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126915781602001600182028036833780820191505090505b5090505b60008514612744576001826126aa9190613c2b565b9150600a856126b99190613dc1565b60306126c59190613b4a565b60f81b818381518110612701577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561273d9190613ba0565b9450612695565b8093505050505b919050565b505050565b505050565b612764838361294c565b61277160008484846127b5565b6127b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a7906136dd565b60405180910390fd5b505050565b60006127d68473ffffffffffffffffffffffffffffffffffffffff16612b26565b1561293f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127ff611ebc565b8786866040518563ffffffff1660e01b81526004016128219493929190613612565b602060405180830381600087803b15801561283b57600080fd5b505af192505050801561286c57506040513d601f19601f820116820180604052508101906128699190612f00565b60015b6128ef573d806000811461289c576040519150601f19603f3d011682016040523d82523d6000602084013e6128a1565b606091505b506000815114156128e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128de906136dd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612944565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b39061389d565b60405180910390fd5b6129c581611e50565b15612a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fc9061373d565b60405180910390fd5b612a1160008383612750565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a619190613b4a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b2260008383612755565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612b5590613d15565b90600052602060002090601f016020900481019282612b775760008555612bbe565b82601f10612b9057803560ff1916838001178555612bbe565b82800160010185558215612bbe579182015b82811115612bbd578235825591602001919060010190612ba2565b5b509050612bcb9190612bcf565b5090565b5b80821115612be8576000816000905550600101612bd0565b5090565b6000612bff612bfa84613a7d565b613a58565b905082815260208101848484011115612c1757600080fd5b612c22848285613cd3565b509392505050565b600081359050612c398161457b565b92915050565b600081359050612c4e81614592565b92915050565b600081359050612c63816145a9565b92915050565b600081519050612c78816145a9565b92915050565b600082601f830112612c8f57600080fd5b8135612c9f848260208601612bec565b91505092915050565b60008083601f840112612cba57600080fd5b8235905067ffffffffffffffff811115612cd357600080fd5b602083019150836001820283011115612ceb57600080fd5b9250929050565b600081359050612d01816145c0565b92915050565b600060208284031215612d1957600080fd5b6000612d2784828501612c2a565b91505092915050565b60008060408385031215612d4357600080fd5b6000612d5185828601612c2a565b9250506020612d6285828601612c2a565b9150509250929050565b600080600060608486031215612d8157600080fd5b6000612d8f86828701612c2a565b9350506020612da086828701612c2a565b9250506040612db186828701612cf2565b9150509250925092565b60008060008060808587031215612dd157600080fd5b6000612ddf87828801612c2a565b9450506020612df087828801612c2a565b9350506040612e0187828801612cf2565b925050606085013567ffffffffffffffff811115612e1e57600080fd5b612e2a87828801612c7e565b91505092959194509250565b60008060408385031215612e4957600080fd5b6000612e5785828601612c2a565b9250506020612e6885828601612c3f565b9150509250929050565b60008060408385031215612e8557600080fd5b6000612e9385828601612c2a565b9250506020612ea485828601612cf2565b9150509250929050565b600060208284031215612ec057600080fd5b6000612ece84828501612c3f565b91505092915050565b600060208284031215612ee957600080fd5b6000612ef784828501612c54565b91505092915050565b600060208284031215612f1257600080fd5b6000612f2084828501612c69565b91505092915050565b60008060208385031215612f3c57600080fd5b600083013567ffffffffffffffff811115612f5657600080fd5b612f6285828601612ca8565b92509250509250929050565b600060208284031215612f8057600080fd5b6000612f8e84828501612cf2565b91505092915050565b6000612fa38383613567565b60208301905092915050565b612fb881613c5f565b82525050565b6000612fc982613ad3565b612fd38185613b01565b9350612fde83613aae565b8060005b8381101561300f578151612ff68882612f97565b975061300183613af4565b925050600181019050612fe2565b5085935050505092915050565b61302581613c71565b82525050565b600061303682613ade565b6130408185613b12565b9350613050818560208601613ce2565b61305981613eae565b840191505092915050565b600061306f82613ae9565b6130798185613b2e565b9350613089818560208601613ce2565b61309281613eae565b840191505092915050565b60006130a882613ae9565b6130b28185613b3f565b93506130c2818560208601613ce2565b80840191505092915050565b600081546130db81613d15565b6130e58186613b3f565b94506001821660008114613100576001811461311157613144565b60ff19831686528186019350613144565b61311a85613abe565b60005b8381101561313c5781548189015260018201915060208101905061311d565b838801955050505b50505092915050565b600061315a601783613b2e565b915061316582613ebf565b602082019050919050565b600061317d603283613b2e565b915061318882613ee8565b604082019050919050565b60006131a0602683613b2e565b91506131ab82613f37565b604082019050919050565b60006131c3602583613b2e565b91506131ce82613f86565b604082019050919050565b60006131e6601c83613b2e565b91506131f182613fd5565b602082019050919050565b6000613209602283613b2e565b915061321482613ffe565b604082019050919050565b600061322c602483613b2e565b91506132378261404d565b604082019050919050565b600061324f601983613b2e565b915061325a8261409c565b602082019050919050565b6000613272601383613b2e565b915061327d826140c5565b602082019050919050565b6000613295602c83613b2e565b91506132a0826140ee565b604082019050919050565b60006132b8601083613b2e565b91506132c38261413d565b602082019050919050565b60006132db603883613b2e565b91506132e682614166565b604082019050919050565b60006132fe602a83613b2e565b9150613309826141b5565b604082019050919050565b6000613321602983613b2e565b915061332c82614204565b604082019050919050565b6000613344602283613b2e565b915061334f82614253565b604082019050919050565b6000613367602083613b2e565b9150613372826142a2565b602082019050919050565b600061338a602c83613b2e565b9150613395826142cb565b604082019050919050565b60006133ad600583613b3f565b91506133b88261431a565b600582019050919050565b60006133d0602083613b2e565b91506133db82614343565b602082019050919050565b60006133f3601383613b2e565b91506133fe8261436c565b602082019050919050565b6000613416602183613b2e565b915061342182614395565b604082019050919050565b6000613439600083613b23565b9150613444826143e4565b600082019050919050565b600061345c603183613b2e565b9150613467826143e7565b604082019050919050565b600061347f600883613b2e565b915061348a82614436565b602082019050919050565b60006134a2601083613b2e565b91506134ad8261445f565b602082019050919050565b60006134c5601383613b2e565b91506134d082614488565b602082019050919050565b60006134e8601483613b2e565b91506134f3826144b1565b602082019050919050565b600061350b600f83613b2e565b9150613516826144da565b602082019050919050565b600061352e601583613b2e565b915061353982614503565b602082019050919050565b6000613551602683613b2e565b915061355c8261452c565b604082019050919050565b61357081613cc9565b82525050565b61357f81613cc9565b82525050565b6000613591828461309d565b915081905092915050565b60006135a8828561309d565b91506135b4828461309d565b91506135bf826133a0565b91508190509392505050565b60006135d782846130ce565b915081905092915050565b60006135ed8261342c565b9150819050919050565b600060208201905061360c6000830184612faf565b92915050565b60006080820190506136276000830187612faf565b6136346020830186612faf565b6136416040830185613576565b8181036060830152613653818461302b565b905095945050505050565b600060208201905081810360008301526136788184612fbe565b905092915050565b6000602082019050613695600083018461301c565b92915050565b600060208201905081810360008301526136b58184613064565b905092915050565b600060208201905081810360008301526136d68161314d565b9050919050565b600060208201905081810360008301526136f681613170565b9050919050565b6000602082019050818103600083015261371681613193565b9050919050565b60006020820190508181036000830152613736816131b6565b9050919050565b60006020820190508181036000830152613756816131d9565b9050919050565b60006020820190508181036000830152613776816131fc565b9050919050565b600060208201905081810360008301526137968161321f565b9050919050565b600060208201905081810360008301526137b681613242565b9050919050565b600060208201905081810360008301526137d681613265565b9050919050565b600060208201905081810360008301526137f681613288565b9050919050565b60006020820190508181036000830152613816816132ab565b9050919050565b60006020820190508181036000830152613836816132ce565b9050919050565b60006020820190508181036000830152613856816132f1565b9050919050565b6000602082019050818103600083015261387681613314565b9050919050565b6000602082019050818103600083015261389681613337565b9050919050565b600060208201905081810360008301526138b68161335a565b9050919050565b600060208201905081810360008301526138d68161337d565b9050919050565b600060208201905081810360008301526138f6816133c3565b9050919050565b60006020820190508181036000830152613916816133e6565b9050919050565b6000602082019050818103600083015261393681613409565b9050919050565b600060208201905081810360008301526139568161344f565b9050919050565b6000602082019050818103600083015261397681613472565b9050919050565b6000602082019050818103600083015261399681613495565b9050919050565b600060208201905081810360008301526139b6816134b8565b9050919050565b600060208201905081810360008301526139d6816134db565b9050919050565b600060208201905081810360008301526139f6816134fe565b9050919050565b60006020820190508181036000830152613a1681613521565b9050919050565b60006020820190508181036000830152613a3681613544565b9050919050565b6000602082019050613a526000830184613576565b92915050565b6000613a62613a73565b9050613a6e8282613d47565b919050565b6000604051905090565b600067ffffffffffffffff821115613a9857613a97613e7f565b5b613aa182613eae565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b5582613cc9565b9150613b6083613cc9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b9557613b94613df2565b5b828201905092915050565b6000613bab82613cc9565b9150613bb683613cc9565b925082613bc657613bc5613e21565b5b828204905092915050565b6000613bdc82613cc9565b9150613be783613cc9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c2057613c1f613df2565b5b828202905092915050565b6000613c3682613cc9565b9150613c4183613cc9565b925082821015613c5457613c53613df2565b5b828203905092915050565b6000613c6a82613ca9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d00578082015181840152602081019050613ce5565b83811115613d0f576000848401525b50505050565b60006002820490506001821680613d2d57607f821691505b60208210811415613d4157613d40613e50565b5b50919050565b613d5082613eae565b810181811067ffffffffffffffff82111715613d6f57613d6e613e7f565b5b80604052505050565b6000613d8382613cc9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613db657613db5613df2565b5b600182019050919050565b6000613dcc82613cc9565b9150613dd783613cc9565b925082613de757613de6613e21565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d6178205065722057616c6c6574207265717569726564000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74207072696365206e65656420746f20626520736574206279206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d696e7420707269636520726571756972656400000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f546f6b656e494420526571756972656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c79206e65656420746f20626520736574206279206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f57726f6e67206d696e742076616c756500000000000000000000000000000000600082015250565b7f4d617820537570706c7920726571756972656400000000000000000000000000600082015250565b7f5365742061206261736520746f6b656e20555249000000000000000000000000600082015250565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b7f657863656564206d6178207065722077616c6c65740000000000000000000000600082015250565b7f4d6178205065722057616c6c6574206e65656420746f2062652073657420627960008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b61458481613c5f565b811461458f57600080fd5b50565b61459b81613c71565b81146145a657600080fd5b50565b6145b281613c7d565b81146145bd57600080fd5b50565b6145c981613cc9565b81146145d457600080fd5b5056fea26469706673582212204208efe9c74a53a9c1551e85fa802d12ec999ed4c9d301b374023d036994857f64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80637a0101a211610123578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c5146107c2578063ec83ebbd146107ff578063f2fde38b1461082a578063f412ea5a14610853578063f4a0a5281461087e57610225565b8063b88d4fde146106dd578063c87b56dd14610706578063d547cfb714610743578063d5abeb011461076e578063e268e4d31461079957610225565b806391033b8a116100f257806391033b8a1461061957806395652cfa1461064457806395d89b411461066d578063a0712d6814610698578063a22cb465146106b457610225565b80637a0101a21461056d578063819a4890146105985780638b7afe2e146105c35780638da5cb5b146105ee57610225565b80632f4bc4ff116101b15780636352211e116101755780636352211e146104885780636817c76c146104c55780636f8b44b0146104f057806370a0823114610519578063715018a61461055657610225565b80632f4bc4ff146103cb5780633ccfd60b146103f457806342842e0e1461040b578063453c231014610434578063457a66311461045f57610225565b8063095ea7b3116101f8578063095ea7b3146102fa57806318160ddd146103235780632373ac221461034e57806323b872dd146103775780632887351a146103a057610225565b80630116bc2d1461022a57806301ffc9a71461025557806306fdde0314610292578063081812fc146102bd575b600080fd5b34801561023657600080fd5b5061023f6108a7565b60405161024c9190613680565b60405180910390f35b34801561026157600080fd5b5061027c60048036038101906102779190612ed7565b6108ba565b6040516102899190613680565b60405180910390f35b34801561029e57600080fd5b506102a761099c565b6040516102b4919061369b565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190612f6e565b610a2e565b6040516102f191906135f7565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c9190612e72565b610ab3565b005b34801561032f57600080fd5b50610338610bcb565b6040516103459190613a3d565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190612eae565b610bd1565b005b34801561038357600080fd5b5061039e60048036038101906103999190612d6c565b610d8a565b005b3480156103ac57600080fd5b506103b5610dea565b6040516103c2919061365e565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190612eae565b610e7f565b005b34801561040057600080fd5b50610409610f18565b005b34801561041757600080fd5b50610432600480360381019061042d9190612d6c565b611065565b005b34801561044057600080fd5b50610449611085565b6040516104569190613a3d565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190612f29565b61108b565b005b34801561049457600080fd5b506104af60048036038101906104aa9190612f6e565b61111d565b6040516104bc91906135f7565b60405180910390f35b3480156104d157600080fd5b506104da6111cf565b6040516104e79190613a3d565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190612f6e565b6111d5565b005b34801561052557600080fd5b50610540600480360381019061053b9190612d07565b61125b565b60405161054d9190613a3d565b60405180910390f35b34801561056257600080fd5b5061056b611313565b005b34801561057957600080fd5b5061058261139b565b60405161058f919061369b565b60405180910390f35b3480156105a457600080fd5b506105ad611429565b6040516105ba9190613a3d565b60405180910390f35b3480156105cf57600080fd5b506105d8611473565b6040516105e59190613a3d565b60405180910390f35b3480156105fa57600080fd5b506106036114f7565b60405161061091906135f7565b60405180910390f35b34801561062557600080fd5b5061062e611521565b60405161063b9190613680565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190612f29565b611534565b005b34801561067957600080fd5b506106826115c6565b60405161068f919061369b565b60405180910390f35b6106b260048036038101906106ad9190612f6e565b611658565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612e36565b61192c565b005b3480156106e957600080fd5b5061070460048036038101906106ff9190612dbb565b611942565b005b34801561071257600080fd5b5061072d60048036038101906107289190612f6e565b6119a4565b60405161073a919061369b565b60405180910390f35b34801561074f57600080fd5b50610758611a6a565b604051610765919061369b565b60405180910390f35b34801561077a57600080fd5b50610783611a92565b6040516107909190613a3d565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb9190612f6e565b611a98565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190612d30565b611b1e565b6040516107f69190613680565b60405180910390f35b34801561080b57600080fd5b50610814611bb2565b604051610821919061369b565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c9190612d07565b611bda565b005b34801561085f57600080fd5b50610868611cd2565b604051610875919061369b565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a09190612f6e565b611d60565b005b600d60009054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610995575061099482611de6565b5b9050919050565b6060600080546109ab90613d15565b80601f01602080910402602001604051908101604052809291908181526020018280546109d790613d15565b8015610a245780601f106109f957610100808354040283529160200191610a24565b820191906000526020600020905b815481529060010190602001808311610a0757829003601f168201915b5050505050905090565b6000610a3982611e50565b610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f906138bd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610abe8261111d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b269061391d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4e611ebc565b73ffffffffffffffffffffffffffffffffffffffff161480610b7d5750610b7c81610b77611ebc565b611b1e565b5b610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb39061381d565b60405180910390fd5b610bc68383611ec4565b505050565b600a5481565b610bd9611ebc565b73ffffffffffffffffffffffffffffffffffffffff16610bf76114f7565b73ffffffffffffffffffffffffffffffffffffffff1614610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c44906138dd565b60405180910390fd5b600060095411610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c89906137bd565b60405180910390fd5b6000600b5411610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce9061399d565b60405180910390fd5b6000600c5411610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d13906136bd565b60405180910390fd5b6000600e8054610d2b90613d15565b905011610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d64906139bd565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b610d9b610d95611ebc565b82611f7d565b610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd19061393d565b60405180910390fd5b610de583838361205b565b505050565b6060601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610e7557602002820191906000526020600020905b815481526020019060010190808311610e61575b5050505050905090565b610e87611ebc565b73ffffffffffffffffffffffffffffffffffffffff16610ea56114f7565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906138dd565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b610f20611ebc565b73ffffffffffffffffffffffffffffffffffffffff16610f3e6114f7565b73ffffffffffffffffffffffffffffffffffffffff1614610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b906138dd565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610fdc906135e2565b60006040518083038185875af1925050503d8060008114611019576040519150601f19603f3d011682016040523d82523d6000602084013e61101e565b606091505b5050905080611062576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611059906139dd565b60405180910390fd5b50565b61108083838360405180602001604052806000815250611942565b505050565b600c5481565b611093611ebc565b73ffffffffffffffffffffffffffffffffffffffff166110b16114f7565b73ffffffffffffffffffffffffffffffffffffffff1614611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe906138dd565b60405180910390fd5b818160129190611118929190612b49565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd9061385d565b60405180910390fd5b80915050919050565b60095481565b6111dd611ebc565b73ffffffffffffffffffffffffffffffffffffffff166111fb6114f7565b73ffffffffffffffffffffffffffffffffffffffff1614611251576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611248906138dd565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c39061383d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61131b611ebc565b73ffffffffffffffffffffffffffffffffffffffff166113396114f7565b73ffffffffffffffffffffffffffffffffffffffff161461138f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611386906138dd565b60405180910390fd5b61139960006122c2565b565b600e80546113a890613d15565b80601f01602080910402602001604051908101604052809291908181526020018280546113d490613d15565b80156114215780601f106113f657610100808354040283529160200191611421565b820191906000526020600020905b81548152906001019060200180831161140457829003601f168201915b505050505081565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050905090565b600061147d611ebc565b73ffffffffffffffffffffffffffffffffffffffff1661149b6114f7565b73ffffffffffffffffffffffffffffffffffffffff16146114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e8906138dd565b60405180910390fd5b47905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601160009054906101000a900460ff1681565b61153c611ebc565b73ffffffffffffffffffffffffffffffffffffffff1661155a6114f7565b73ffffffffffffffffffffffffffffffffffffffff16146115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a7906138dd565b60405180910390fd5b8181600e91906115c1929190612b49565b505050565b6060600180546115d590613d15565b80601f016020809104026020016040519081016040528092919081815260200182805461160190613d15565b801561164e5780601f106116235761010080835404028352916020019161164e565b820191906000526020600020905b81548152906001019060200180831161163157829003601f168201915b5050505050905090565b60006009541161169d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116949061375d565b60405180910390fd5b6000600b54116116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d99061387d565b60405180910390fd5b6000600c5411611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e90613a1d565b60405180910390fd5b600d60009054906101000a900460ff16611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d906138fd565b60405180910390fd5b600954816117849190613bd1565b34146117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc9061397d565b60405180910390fd5b600b5481600a546117d69190613b4a565b1115611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e9061395d565b60405180910390fd5b600c5481611823611429565b61182d9190613b4a565b111561186e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611865906139fd565b60405180910390fd5b60005b818110156119285760006001600a5461188a9190613b4a565b9050600a600081548092919061189f90613d78565b9190505550601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150556119143382612388565b50808061192090613d78565b915050611871565b5050565b61193e611937611ebc565b83836123a6565b5050565b61195361194d611ebc565b83611f7d565b611992576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119899061393d565b60405180910390fd5b61199e84848484612513565b50505050565b60606119af82611e50565b6119ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e5906137fd565b60405180910390fd5b601160009054906101000a900460ff1615611a3157611a0b61256f565b604051602001611a1b9190613585565b6040516020818303038152906040529050611a65565b611a3961256f565b611a42836125a3565b604051602001611a5392919061359c565b60405160208183030381529060405290505b919050565b6060600e604051602001611a7e91906135cb565b604051602081830303815290604052905090565b600b5481565b611aa0611ebc565b73ffffffffffffffffffffffffffffffffffffffff16611abe6114f7565b73ffffffffffffffffffffffffffffffffffffffff1614611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b906138dd565b60405180910390fd5b80600c8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606012604051602001611bc691906135cb565b604051602081830303815290604052905090565b611be2611ebc565b73ffffffffffffffffffffffffffffffffffffffff16611c006114f7565b73ffffffffffffffffffffffffffffffffffffffff1614611c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4d906138dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd906136fd565b60405180910390fd5b611ccf816122c2565b50565b60128054611cdf90613d15565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0b90613d15565b8015611d585780601f10611d2d57610100808354040283529160200191611d58565b820191906000526020600020905b815481529060010190602001808311611d3b57829003601f168201915b505050505081565b611d68611ebc565b73ffffffffffffffffffffffffffffffffffffffff16611d866114f7565b73ffffffffffffffffffffffffffffffffffffffff1614611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd3906138dd565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f378361111d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f8882611e50565b611fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbe906137dd565b60405180910390fd5b6000611fd28361111d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061204157508373ffffffffffffffffffffffffffffffffffffffff1661202984610a2e565b73ffffffffffffffffffffffffffffffffffffffff16145b8061205257506120518185611b1e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661207b8261111d565b73ffffffffffffffffffffffffffffffffffffffff16146120d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c89061371d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612141576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121389061377d565b60405180910390fd5b61214c838383612750565b612157600082611ec4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121a79190613c2b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121fe9190613b4a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122bd838383612755565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123a282826040518060200160405280600081525061275a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240c9061379d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125069190613680565b60405180910390a3505050565b61251e84848461205b565b61252a848484846127b5565b612569576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612560906136dd565b60405180910390fd5b50505050565b6060601160009054906101000a900460ff16156125955761258e611bb2565b90506125a0565b61259d611a6a565b90505b90565b606060008214156125eb576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061274b565b600082905060005b6000821461261d57808061260690613d78565b915050600a826126169190613ba0565b91506125f3565b60008167ffffffffffffffff81111561265f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126915781602001600182028036833780820191505090505b5090505b60008514612744576001826126aa9190613c2b565b9150600a856126b99190613dc1565b60306126c59190613b4a565b60f81b818381518110612701577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561273d9190613ba0565b9450612695565b8093505050505b919050565b505050565b505050565b612764838361294c565b61277160008484846127b5565b6127b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a7906136dd565b60405180910390fd5b505050565b60006127d68473ffffffffffffffffffffffffffffffffffffffff16612b26565b1561293f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127ff611ebc565b8786866040518563ffffffff1660e01b81526004016128219493929190613612565b602060405180830381600087803b15801561283b57600080fd5b505af192505050801561286c57506040513d601f19601f820116820180604052508101906128699190612f00565b60015b6128ef573d806000811461289c576040519150601f19603f3d011682016040523d82523d6000602084013e6128a1565b606091505b506000815114156128e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128de906136dd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612944565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b39061389d565b60405180910390fd5b6129c581611e50565b15612a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fc9061373d565b60405180910390fd5b612a1160008383612750565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a619190613b4a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b2260008383612755565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612b5590613d15565b90600052602060002090601f016020900481019282612b775760008555612bbe565b82601f10612b9057803560ff1916838001178555612bbe565b82800160010185558215612bbe579182015b82811115612bbd578235825591602001919060010190612ba2565b5b509050612bcb9190612bcf565b5090565b5b80821115612be8576000816000905550600101612bd0565b5090565b6000612bff612bfa84613a7d565b613a58565b905082815260208101848484011115612c1757600080fd5b612c22848285613cd3565b509392505050565b600081359050612c398161457b565b92915050565b600081359050612c4e81614592565b92915050565b600081359050612c63816145a9565b92915050565b600081519050612c78816145a9565b92915050565b600082601f830112612c8f57600080fd5b8135612c9f848260208601612bec565b91505092915050565b60008083601f840112612cba57600080fd5b8235905067ffffffffffffffff811115612cd357600080fd5b602083019150836001820283011115612ceb57600080fd5b9250929050565b600081359050612d01816145c0565b92915050565b600060208284031215612d1957600080fd5b6000612d2784828501612c2a565b91505092915050565b60008060408385031215612d4357600080fd5b6000612d5185828601612c2a565b9250506020612d6285828601612c2a565b9150509250929050565b600080600060608486031215612d8157600080fd5b6000612d8f86828701612c2a565b9350506020612da086828701612c2a565b9250506040612db186828701612cf2565b9150509250925092565b60008060008060808587031215612dd157600080fd5b6000612ddf87828801612c2a565b9450506020612df087828801612c2a565b9350506040612e0187828801612cf2565b925050606085013567ffffffffffffffff811115612e1e57600080fd5b612e2a87828801612c7e565b91505092959194509250565b60008060408385031215612e4957600080fd5b6000612e5785828601612c2a565b9250506020612e6885828601612c3f565b9150509250929050565b60008060408385031215612e8557600080fd5b6000612e9385828601612c2a565b9250506020612ea485828601612cf2565b9150509250929050565b600060208284031215612ec057600080fd5b6000612ece84828501612c3f565b91505092915050565b600060208284031215612ee957600080fd5b6000612ef784828501612c54565b91505092915050565b600060208284031215612f1257600080fd5b6000612f2084828501612c69565b91505092915050565b60008060208385031215612f3c57600080fd5b600083013567ffffffffffffffff811115612f5657600080fd5b612f6285828601612ca8565b92509250509250929050565b600060208284031215612f8057600080fd5b6000612f8e84828501612cf2565b91505092915050565b6000612fa38383613567565b60208301905092915050565b612fb881613c5f565b82525050565b6000612fc982613ad3565b612fd38185613b01565b9350612fde83613aae565b8060005b8381101561300f578151612ff68882612f97565b975061300183613af4565b925050600181019050612fe2565b5085935050505092915050565b61302581613c71565b82525050565b600061303682613ade565b6130408185613b12565b9350613050818560208601613ce2565b61305981613eae565b840191505092915050565b600061306f82613ae9565b6130798185613b2e565b9350613089818560208601613ce2565b61309281613eae565b840191505092915050565b60006130a882613ae9565b6130b28185613b3f565b93506130c2818560208601613ce2565b80840191505092915050565b600081546130db81613d15565b6130e58186613b3f565b94506001821660008114613100576001811461311157613144565b60ff19831686528186019350613144565b61311a85613abe565b60005b8381101561313c5781548189015260018201915060208101905061311d565b838801955050505b50505092915050565b600061315a601783613b2e565b915061316582613ebf565b602082019050919050565b600061317d603283613b2e565b915061318882613ee8565b604082019050919050565b60006131a0602683613b2e565b91506131ab82613f37565b604082019050919050565b60006131c3602583613b2e565b91506131ce82613f86565b604082019050919050565b60006131e6601c83613b2e565b91506131f182613fd5565b602082019050919050565b6000613209602283613b2e565b915061321482613ffe565b604082019050919050565b600061322c602483613b2e565b91506132378261404d565b604082019050919050565b600061324f601983613b2e565b915061325a8261409c565b602082019050919050565b6000613272601383613b2e565b915061327d826140c5565b602082019050919050565b6000613295602c83613b2e565b91506132a0826140ee565b604082019050919050565b60006132b8601083613b2e565b91506132c38261413d565b602082019050919050565b60006132db603883613b2e565b91506132e682614166565b604082019050919050565b60006132fe602a83613b2e565b9150613309826141b5565b604082019050919050565b6000613321602983613b2e565b915061332c82614204565b604082019050919050565b6000613344602283613b2e565b915061334f82614253565b604082019050919050565b6000613367602083613b2e565b9150613372826142a2565b602082019050919050565b600061338a602c83613b2e565b9150613395826142cb565b604082019050919050565b60006133ad600583613b3f565b91506133b88261431a565b600582019050919050565b60006133d0602083613b2e565b91506133db82614343565b602082019050919050565b60006133f3601383613b2e565b91506133fe8261436c565b602082019050919050565b6000613416602183613b2e565b915061342182614395565b604082019050919050565b6000613439600083613b23565b9150613444826143e4565b600082019050919050565b600061345c603183613b2e565b9150613467826143e7565b604082019050919050565b600061347f600883613b2e565b915061348a82614436565b602082019050919050565b60006134a2601083613b2e565b91506134ad8261445f565b602082019050919050565b60006134c5601383613b2e565b91506134d082614488565b602082019050919050565b60006134e8601483613b2e565b91506134f3826144b1565b602082019050919050565b600061350b600f83613b2e565b9150613516826144da565b602082019050919050565b600061352e601583613b2e565b915061353982614503565b602082019050919050565b6000613551602683613b2e565b915061355c8261452c565b604082019050919050565b61357081613cc9565b82525050565b61357f81613cc9565b82525050565b6000613591828461309d565b915081905092915050565b60006135a8828561309d565b91506135b4828461309d565b91506135bf826133a0565b91508190509392505050565b60006135d782846130ce565b915081905092915050565b60006135ed8261342c565b9150819050919050565b600060208201905061360c6000830184612faf565b92915050565b60006080820190506136276000830187612faf565b6136346020830186612faf565b6136416040830185613576565b8181036060830152613653818461302b565b905095945050505050565b600060208201905081810360008301526136788184612fbe565b905092915050565b6000602082019050613695600083018461301c565b92915050565b600060208201905081810360008301526136b58184613064565b905092915050565b600060208201905081810360008301526136d68161314d565b9050919050565b600060208201905081810360008301526136f681613170565b9050919050565b6000602082019050818103600083015261371681613193565b9050919050565b60006020820190508181036000830152613736816131b6565b9050919050565b60006020820190508181036000830152613756816131d9565b9050919050565b60006020820190508181036000830152613776816131fc565b9050919050565b600060208201905081810360008301526137968161321f565b9050919050565b600060208201905081810360008301526137b681613242565b9050919050565b600060208201905081810360008301526137d681613265565b9050919050565b600060208201905081810360008301526137f681613288565b9050919050565b60006020820190508181036000830152613816816132ab565b9050919050565b60006020820190508181036000830152613836816132ce565b9050919050565b60006020820190508181036000830152613856816132f1565b9050919050565b6000602082019050818103600083015261387681613314565b9050919050565b6000602082019050818103600083015261389681613337565b9050919050565b600060208201905081810360008301526138b68161335a565b9050919050565b600060208201905081810360008301526138d68161337d565b9050919050565b600060208201905081810360008301526138f6816133c3565b9050919050565b60006020820190508181036000830152613916816133e6565b9050919050565b6000602082019050818103600083015261393681613409565b9050919050565b600060208201905081810360008301526139568161344f565b9050919050565b6000602082019050818103600083015261397681613472565b9050919050565b6000602082019050818103600083015261399681613495565b9050919050565b600060208201905081810360008301526139b6816134b8565b9050919050565b600060208201905081810360008301526139d6816134db565b9050919050565b600060208201905081810360008301526139f6816134fe565b9050919050565b60006020820190508181036000830152613a1681613521565b9050919050565b60006020820190508181036000830152613a3681613544565b9050919050565b6000602082019050613a526000830184613576565b92915050565b6000613a62613a73565b9050613a6e8282613d47565b919050565b6000604051905090565b600067ffffffffffffffff821115613a9857613a97613e7f565b5b613aa182613eae565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b5582613cc9565b9150613b6083613cc9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b9557613b94613df2565b5b828201905092915050565b6000613bab82613cc9565b9150613bb683613cc9565b925082613bc657613bc5613e21565b5b828204905092915050565b6000613bdc82613cc9565b9150613be783613cc9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c2057613c1f613df2565b5b828202905092915050565b6000613c3682613cc9565b9150613c4183613cc9565b925082821015613c5457613c53613df2565b5b828203905092915050565b6000613c6a82613ca9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d00578082015181840152602081019050613ce5565b83811115613d0f576000848401525b50505050565b60006002820490506001821680613d2d57607f821691505b60208210811415613d4157613d40613e50565b5b50919050565b613d5082613eae565b810181811067ffffffffffffffff82111715613d6f57613d6e613e7f565b5b80604052505050565b6000613d8382613cc9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613db657613db5613df2565b5b600182019050919050565b6000613dcc82613cc9565b9150613dd783613cc9565b925082613de757613de6613e21565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d6178205065722057616c6c6574207265717569726564000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74207072696365206e65656420746f20626520736574206279206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d696e7420707269636520726571756972656400000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f546f6b656e494420526571756972656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c79206e65656420746f20626520736574206279206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f57726f6e67206d696e742076616c756500000000000000000000000000000000600082015250565b7f4d617820537570706c7920726571756972656400000000000000000000000000600082015250565b7f5365742061206261736520746f6b656e20555249000000000000000000000000600082015250565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b7f657863656564206d6178207065722077616c6c65740000000000000000000000600082015250565b7f4d6178205065722057616c6c6574206e65656420746f2062652073657420627960008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b61458481613c5f565b811461458f57600080fd5b50565b61459b81613c71565b81146145a657600080fd5b50565b6145b281613c7d565b81146145bd57600080fd5b50565b6145c981613cc9565b81146145d457600080fd5b5056fea26469706673582212204208efe9c74a53a9c1551e85fa802d12ec999ed4c9d301b374023d036994857f64736f6c63430008040033

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.