ETH Price: $2,786.77 (+6.17%)

Token

CryptoToysClub (CTC)
 

Overview

Max Total Supply

2,209 CTC

Holders

353

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 CTC
0x3e07b29ba72a9f7eca08591a39e303064326270e
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:
CTC_ERC721A2

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./libs/ERC2981ContractWideRoyalties.sol";
import "./libs/IERC721A.sol";

contract CTC_ERC721A2 is IERC721A, ERC2981ContractWideRoyalties, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;
    uint256 public maxSupply = 3000;
    bool public paused = false;
    bool public revealed = true;

    bytes32 public whiteListMerkleRoot;
    bool public whiteListMintOpened = true;
    uint256 public whiteListPrice = 0 ether;
    mapping(address => uint256) public whiteListBalanceMap;
    mapping(address => uint256) public publicSaleBalanceMap;

    bool public isPublicSaleOpened = false;
    uint256 public publicSaleCost = 0.15 ether;

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _maxSupply,
        string memory _baseURI,
        string memory _notRevealedUri
    ) IERC721A(_name, _symbol) {
        maxSupply = _maxSupply;
        baseURI = _baseURI;
        notRevealedUri = _notRevealedUri;
        _setRoyalties(msg.sender, 1);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(IERC721A, ERC2981Base)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

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

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

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

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

    //only owner
    function nftAdmin1(
        bytes32 _whiteListMerkleRoot,
        uint256 _whiteListPrice,
        uint256 _publicSaleCost,
        bool _whiteListMintOpened,
        bool _isPublicSaleOpened
    ) public onlyOwner {
        whiteListMerkleRoot = _whiteListMerkleRoot;
        whiteListPrice = _whiteListPrice;
        publicSaleCost = _publicSaleCost;
        whiteListMintOpened = _whiteListMintOpened;
        isPublicSaleOpened = _isPublicSaleOpened;
    }

    function nftAdmin2(
        string memory _baseURI,
        string memory _baseExtension,
        string memory _notRevealedUri,
        bool _paused,
        bool _revealed,
        address recipient,
        uint256 royaltyValue
    ) public onlyOwner {
        baseURI = _baseURI;
        baseExtension = _baseExtension;
        notRevealedUri = _notRevealedUri;
        paused = _paused;
        revealed = _revealed;
        _setRoyalties(recipient, royaltyValue);
    }

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

    function reveal(
        uint256 mintAmount,
        bool isWhiteListMint,
        bytes32[] calldata proof
    ) public payable {
        mint(mintAmount, isWhiteListMint, proof);
    }

    function mint(
        uint256 mintAmount,
        bool isWhiteListMint,
        bytes32[] calldata proof
    ) public payable {
        require(!paused, "the contract is paused");
        uint256 supply = totalSupply();
        require(mintAmount > 0, "need to mint at least 1 NFT");
        require(supply + mintAmount <= maxSupply, "max NFT limit exceeded");

        if (msg.sender == owner()) {
            whiteListBalanceMap[msg.sender] += mintAmount;
            _safeMint(msg.sender, mintAmount);
            return;
        }

        uint256 ownerMintedCount = whiteListBalanceMap[msg.sender];

        if (isWhiteListMint) {
            require(whiteListMintOpened, "white list mint closed");
            require(ownerMintedCount == 0, "white list already mint");

            // Verify merkle proof, or revert if not in tree
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender, mintAmount));
            bool isValidLeaf = MerkleProof.verify(
                proof,
                whiteListMerkleRoot,
                leaf
            );
            require(isValidLeaf, "white list not validate");

            if (whiteListPrice != 0) {
                require(
                    msg.value >= whiteListPrice * mintAmount,
                    "insufficient funds for white list mint"
                );
            }

            whiteListBalanceMap[msg.sender] = mintAmount;
            _safeMint(msg.sender, mintAmount);
            return;
        }

        require(isPublicSaleOpened, "public sale not open yet");
        require(
            msg.value >= publicSaleCost * mintAmount,
            "insufficient funds for public sale mint"
        );
        publicSaleBalanceMap[msg.sender] += mintAmount;
        _safeMint(msg.sender, mintAmount);
    }
}

File 2 of 16 : 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 3 of 16 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 4 of 16 : ERC2981ContractWideRoyalties.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

import "./ERC2981Base.sol";

abstract contract ERC2981ContractWideRoyalties is ERC2981Base {
    RoyaltyInfo private _royalties;

    function _setRoyalties(address recipient, uint256 value) internal {
        require(value <= 10000, "ERC2981Royalties: Too high");
        _royalties = RoyaltyInfo(recipient, uint24(value));
    }

    function royaltyInfo(uint256, uint256 value)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        RoyaltyInfo memory royalties = _royalties;
        receiver = royalties.recipient;
        royaltyAmount = (value * royalties.amount) / 10000;
    }
}

File 5 of 16 : IERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract IERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        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 override {
        address owner = IERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity > 0, "ERC721A: quantity must be greater 0");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 6 of 16 : 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 7 of 16 : 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 8 of 16 : ERC2981Base.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

import "./IERC2981Royalties.sol";

/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
abstract contract ERC2981Base is ERC165, IERC2981Royalties {
    struct RoyaltyInfo {
        address recipient;
        uint24 amount;
    }

    /// @inheritdoc	ERC165
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            interfaceId == type(IERC2981Royalties).interfaceId ||
            super.supportsInterface(interfaceId);
    }
}

File 9 of 16 : 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);
}

File 10 of 16 : IERC2981Royalties.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/// @title IERC2981Royalties
/// @dev Interface for the ERC2981 - Token Royalty standard
interface IERC2981Royalties {
    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _value - the sale price of the NFT asset specified by _tokenId
    /// @return _receiver - address of who should be sent the royalty payment
    /// @return _royaltyAmount - the royalty payment amount for value sale price
    function royaltyInfo(uint256 _tokenId, uint256 _value)
        external
        view
        returns (address _receiver, uint256 _royaltyAmount);
}

File 11 of 16 : 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 12 of 16 : 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 13 of 16 : 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 14 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 15 of 16 : 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 16 of 16 : 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);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"isPublicSaleOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"},{"internalType":"bool","name":"isWhiteListMint","type":"bool"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whiteListMerkleRoot","type":"bytes32"},{"internalType":"uint256","name":"_whiteListPrice","type":"uint256"},{"internalType":"uint256","name":"_publicSaleCost","type":"uint256"},{"internalType":"bool","name":"_whiteListMintOpened","type":"bool"},{"internalType":"bool","name":"_isPublicSaleOpened","type":"bool"}],"name":"nftAdmin1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"string","name":"_baseExtension","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"},{"internalType":"bool","name":"_paused","type":"bool"},{"internalType":"bool","name":"_revealed","type":"bool"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"royaltyValue","type":"uint256"}],"name":"nftAdmin2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicSaleBalanceMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"},{"internalType":"bool","name":"isWhiteListMint","type":"bool"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"reveal","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListBalanceMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListMintOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"withdrawTo","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600080556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005592919062000374565b50610bb8600c556000600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff02191690831515021790555060006010556000601360006101000a81548160ff021916908315150217905550670214e8348c4f0000601455348015620000e657600080fd5b5060405162005cc038038062005cc083398181016040528101906200010c9190620004ad565b848481600190805190602001906200012692919062000374565b5080600290805190602001906200013f92919062000374565b5050506200016262000156620001b960201b60201c565b620001c160201b60201c565b82600c8190555081600990805190602001906200018192919062000374565b5080600b90805190602001906200019a92919062000374565b50620001ae3360016200028760201b60201c565b5050505050620007aa565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612710811115620002cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c690620005ba565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff1681526020018262ffffff16815250600760008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548162ffffff021916908362ffffff1602179055509050505050565b82805462000382906200068c565b90600052602060002090601f016020900481019282620003a65760008555620003f2565b82601f10620003c157805160ff1916838001178555620003f2565b82800160010185558215620003f2579182015b82811115620003f1578251825591602001919060010190620003d4565b5b50905062000401919062000405565b5090565b5b808211156200042057600081600090555060010162000406565b5090565b60006200043b620004358462000605565b620005dc565b9050828152602081018484840111156200045457600080fd5b6200046184828562000656565b509392505050565b600082601f8301126200047b57600080fd5b81516200048d84826020860162000424565b91505092915050565b600081519050620004a78162000790565b92915050565b600080600080600060a08688031215620004c657600080fd5b600086015167ffffffffffffffff811115620004e157600080fd5b620004ef8882890162000469565b955050602086015167ffffffffffffffff8111156200050d57600080fd5b6200051b8882890162000469565b94505060406200052e8882890162000496565b935050606086015167ffffffffffffffff8111156200054c57600080fd5b6200055a8882890162000469565b925050608086015167ffffffffffffffff8111156200057857600080fd5b620005868882890162000469565b9150509295509295909350565b6000620005a2601a836200063b565b9150620005af8262000767565b602082019050919050565b60006020820190508181036000830152620005d58162000593565b9050919050565b6000620005e8620005fb565b9050620005f68282620006c2565b919050565b6000604051905090565b600067ffffffffffffffff82111562000623576200062262000727565b5b6200062e8262000756565b9050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60005b838110156200067657808201518184015260208101905062000659565b8381111562000686576000848401525b50505050565b60006002820490506001821680620006a557607f821691505b60208210811415620006bc57620006bb620006f8565b5b50919050565b620006cd8262000756565b810181811067ffffffffffffffff82111715620006ef57620006ee62000727565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b6200079b816200064c565b8114620007a757600080fd5b50565b61550680620007ba6000396000f3fe6080604052600436106102305760003560e01c80636352211e1161012e578063a22cb465116100ab578063c9e8ef231161006f578063c9e8ef231461085e578063d5abeb0114610889578063de8f2fa5146108b4578063e985e9c5146108f1578063f2fde38b1461092e57610230565b8063a22cb46514610767578063b88d4fde14610790578063c332bf91146107b9578063c6682862146107f6578063c87b56dd1461082157610230565b806370a08231116100f257806370a0823114610694578063715018a6146106d1578063789f981f146106e85780638da5cb5b1461071157806395d89b411461073c57610230565b80636352211e146105ba5780636497d5ea146105f757806368575685146106135780636b7259ae1461063e5780636c0360eb1461066957610230565b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce7146104e2578063518302271461051f57806351cff8d91461054a57806354f83046146105735780635c975abb1461058f57610230565b80632f745c59146103e957806334b6ab1a1461042657806342842e0e14610451578063438b63001461047a578063453afb0f146104b757610230565b8063081c8c4411610203578063081c8c4414610303578063095ea7b31461032e57806318160ddd1461035757806323b872dd146103825780632a55205a146103ab57610230565b806301ffc9a71461023557806305153fd51461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613a35565b610957565b604051610269919061438d565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613a87565b610969565b005b3480156102a757600080fd5b506102b0610a71565b6040516102bd91906143c3565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190613b6d565b610b03565b6040516102fa91906142db565b60405180910390f35b34801561030f57600080fd5b50610318610b88565b60405161032591906143c3565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190613982565b610c16565b005b34801561036357600080fd5b5061036c610d2f565b6040516103799190614785565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a4919061387c565b610d38565b005b3480156103b757600080fd5b506103d260048036038101906103cd9190613c02565b610d48565b6040516103e0929190614342565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190613982565b610e08565b60405161041d9190614785565b60405180910390f35b34801561043257600080fd5b5061043b611006565b60405161044891906143a8565b60405180910390f35b34801561045d57600080fd5b506104786004803603810190610473919061387c565b61100c565b005b34801561048657600080fd5b506104a1600480360381019061049c9190613817565b61102c565b6040516104ae919061436b565b60405180910390f35b3480156104c357600080fd5b506104cc611126565b6040516104d99190614785565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190613b6d565b61112c565b6040516105169190614785565b60405180910390f35b34801561052b57600080fd5b5061053461117f565b604051610541919061438d565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190613817565b611192565b005b61058d60048036038101906105889190613b96565b611288565b005b34801561059b57600080fd5b506105a461176d565b6040516105b1919061438d565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc9190613b6d565b611780565b6040516105ee91906142db565b60405180910390f35b610611600480360381019061060c9190613b96565b611796565b005b34801561061f57600080fd5b506106286117a8565b6040516106359190614785565b60405180910390f35b34801561064a57600080fd5b506106536117ae565b604051610660919061438d565b60405180910390f35b34801561067557600080fd5b5061067e6117c1565b60405161068b91906143c3565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190613817565b61184f565b6040516106c89190614785565b60405180910390f35b3480156106dd57600080fd5b506106e6611938565b005b3480156106f457600080fd5b5061070f600480360381019061070a91906139be565b6119c0565b005b34801561071d57600080fd5b50610726611a8c565b60405161073391906142db565b60405180910390f35b34801561074857600080fd5b50610751611ab6565b60405161075e91906143c3565b60405180910390f35b34801561077357600080fd5b5061078e60048036038101906107899190613946565b611b48565b005b34801561079c57600080fd5b506107b760048036038101906107b291906138cb565b611cc9565b005b3480156107c557600080fd5b506107e060048036038101906107db9190613817565b611d25565b6040516107ed9190614785565b60405180910390f35b34801561080257600080fd5b5061080b611d3d565b60405161081891906143c3565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613b6d565b611dcb565b60405161085591906143c3565b60405180910390f35b34801561086a57600080fd5b50610873611f25565b604051610880919061438d565b60405180910390f35b34801561089557600080fd5b5061089e611f38565b6040516108ab9190614785565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190613817565b611f3e565b6040516108e89190614785565b60405180910390f35b3480156108fd57600080fd5b5061091860048036038101906109139190613840565b611f56565b604051610925919061438d565b60405180910390f35b34801561093a57600080fd5b5061095560048036038101906109509190613817565b611fea565b005b6000610962826120e2565b9050919050565b61097161215c565b73ffffffffffffffffffffffffffffffffffffffff1661098f611a8c565b73ffffffffffffffffffffffffffffffffffffffff16146109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc906145a5565b60405180910390fd5b86600990805190602001906109fb9291906135a2565b5085600a9080519060200190610a129291906135a2565b5084600b9080519060200190610a299291906135a2565b5083600d60006101000a81548160ff02191690831515021790555082600d60016101000a81548160ff021916908315150217905550610a688282612164565b50505050505050565b606060018054610a8090614b24565b80601f0160208091040260200160405190810160405280929190818152602001828054610aac90614b24565b8015610af95780601f10610ace57610100808354040283529160200191610af9565b820191906000526020600020905b815481529060010190602001808311610adc57829003601f168201915b5050505050905090565b6000610b0e8261224e565b610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490614745565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610b9590614b24565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc190614b24565b8015610c0e5780601f10610be357610100808354040283529160200191610c0e565b820191906000526020600020905b815481529060010190602001808311610bf157829003601f168201915b505050505081565b6000610c2182611780565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990614665565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb161215c565b73ffffffffffffffffffffffffffffffffffffffff161480610ce05750610cdf81610cda61215c565b611f56565b5b610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1690614505565b60405180910390fd5b610d2a83838361225b565b505050565b60008054905090565b610d4383838361230d565b505050565b600080600060076040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900462ffffff1662ffffff1662ffffff1681525050905080600001519250612710816020015162ffffff1685610df49190614990565b610dfe919061495f565b9150509250929050565b6000610e138361184f565b8210610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b906143e5565b60405180910390fd5b6000610e5e610d2f565b905060008060005b83811015610fc4576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f5857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fb05786841415610fa1578195505050505050611000565b8380610fac90614b87565b9450505b508080610fbc90614b87565b915050610e66565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff790614725565b60405180910390fd5b92915050565b600e5481565b61102783838360405180602001604052806000815250611cc9565b505050565b606060006110398361184f565b905060008167ffffffffffffffff81111561107d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156110ab5781602001602082028036833780820191505090505b50905060005b8281101561111b576110c38582610e08565b8282815181106110fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061111390614b87565b9150506110b1565b508092505050919050565b60145481565b6000611136610d2f565b8210611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e906144a5565b60405180910390fd5b819050919050565b600d60019054906101000a900460ff1681565b61119a61215c565b73ffffffffffffffffffffffffffffffffffffffff166111b8611a8c565b73ffffffffffffffffffffffffffffffffffffffff161461120e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611205906145a5565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1647604051611234906142c6565b60006040518083038185875af1925050503d8060008114611271576040519150601f19603f3d011682016040523d82523d6000602084013e611276565b606091505b505090508061128457600080fd5b5050565b600d60009054906101000a900460ff16156112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf906145c5565b60405180910390fd5b60006112e2610d2f565b905060008511611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131e90614765565b60405180910390fd5b600c5485826113369190614909565b1115611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90614525565b60405180910390fd5b61137f611a8c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156114185784601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114019190614909565b9250508190555061141233866128b4565b50611767565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050841561166557600f60009054906101000a900460ff166114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890614565565b60405180910390fd5b600081146114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb90614485565b60405180910390fd5b60003387604051602001611509929190614269565b6040516020818303038152906040528051906020012090506000611571868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e54846128d2565b9050806115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90614705565b60405180910390fd5b60006010541461160e57876010546115cb9190614990565b34101561160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490614465565b60405180910390fd5b5b87601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061165c33896128b4565b50505050611767565b601360009054906101000a900460ff166116b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ab90614645565b60405180910390fd5b856014546116c29190614990565b341015611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb906144e5565b60405180910390fd5b85601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117539190614909565b9250508190555061176433876128b4565b50505b50505050565b600d60009054906101000a900460ff1681565b600061178b826128e9565b600001519050919050565b6117a284848484611288565b50505050565b60105481565b601360009054906101000a900460ff1681565b600980546117ce90614b24565b80601f01602080910402602001604051908101604052809291908181526020018280546117fa90614b24565b80156118475780601f1061181c57610100808354040283529160200191611847565b820191906000526020600020905b81548152906001019060200180831161182a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b790614545565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61194061215c565b73ffffffffffffffffffffffffffffffffffffffff1661195e611a8c565b73ffffffffffffffffffffffffffffffffffffffff16146119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab906145a5565b60405180910390fd5b6119be6000612a44565b565b6119c861215c565b73ffffffffffffffffffffffffffffffffffffffff166119e6611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a33906145a5565b60405180910390fd5b84600e81905550836010819055508260148190555081600f60006101000a81548160ff02191690831515021790555080601360006101000a81548160ff0219169083151502179055505050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611ac590614b24565b80601f0160208091040260200160405190810160405280929190818152602001828054611af190614b24565b8015611b3e5780601f10611b1357610100808354040283529160200191611b3e565b820191906000526020600020905b815481529060010190602001808311611b2157829003601f168201915b5050505050905090565b611b5061215c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb590614605565b60405180910390fd5b8060066000611bcb61215c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c7861215c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cbd919061438d565b60405180910390a35050565b611cd484848461230d565b611ce084848484612b0a565b611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d16906146a5565b60405180910390fd5b50505050565b60126020528060005260406000206000915090505481565b600a8054611d4a90614b24565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7690614b24565b8015611dc35780601f10611d9857610100808354040283529160200191611dc3565b820191906000526020600020905b815481529060010190602001808311611da657829003601f168201915b505050505081565b6060611dd68261224e565b611e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0c906145e5565b60405180910390fd5b60001515600d60019054906101000a900460ff1615151415611ec357600b8054611e3e90614b24565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6a90614b24565b8015611eb75780601f10611e8c57610100808354040283529160200191611eb7565b820191906000526020600020905b815481529060010190602001808311611e9a57829003601f168201915b50505050509050611f20565b600060098054611ed290614b24565b905011611eee5760405180602001604052806000815250611f1d565b6009611ef983612ca1565b600a604051602001611f0d93929190614295565b6040516020818303038152906040525b90505b919050565b600f60009054906101000a900460ff1681565b600c5481565b60116020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ff261215c565b73ffffffffffffffffffffffffffffffffffffffff16612010611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614612066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205d906145a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cd90614425565b60405180910390fd5b6120df81612a44565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612155575061215482612e4e565b5b9050919050565b600033905090565b6127108111156121a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a090614405565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff1681526020018262ffffff16815250600760008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548162ffffff021916908362ffffff1602179055509050505050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612318826128e9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661233f61215c565b73ffffffffffffffffffffffffffffffffffffffff16148061239b575061236461215c565b73ffffffffffffffffffffffffffffffffffffffff1661238384610b03565b73ffffffffffffffffffffffffffffffffffffffff16145b806123b757506123b682600001516123b161215c565b611f56565b5b9050806123f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090614625565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461246b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246290614585565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d2906144c5565b60405180910390fd5b6124e88585856001612f98565b6124f8600084846000015161225b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846126fe9190614909565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612844576127748161224e565b15612843576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128ac8686866001612f9e565b505050505050565b6128ce828260405180602001604052806000815250612fa4565b5050565b6000826128df8584613463565b1490509392505050565b6128f1613628565b6128fa8261224e565b612939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293090614445565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a2b578092505050612a3f565b508080612a3790614afa565b91505061293f565b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612b2b8473ffffffffffffffffffffffffffffffffffffffff166134fe565b15612c94578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b5461215c565b8786866040518563ffffffff1660e01b8152600401612b7694939291906142f6565b602060405180830381600087803b158015612b9057600080fd5b505af1925050508015612bc157506040513d601f19601f82011682018060405250810190612bbe9190613a5e565b60015b612c44573d8060008114612bf1576040519150601f19603f3d011682016040523d82523d6000602084013e612bf6565b606091505b50600081511415612c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c33906146a5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c99565b600190505b949350505050565b60606000821415612ce9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e49565b600082905060005b60008214612d1b578080612d0490614b87565b915050600a82612d14919061495f565b9150612cf1565b60008167ffffffffffffffff811115612d5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d8f5781602001600182028036833780820191505090505b5090505b60008514612e4257600182612da891906149ea565b9150600a85612db79190614bfe565b6030612dc39190614909565b60f81b818381518110612dff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e3b919061495f565b9450612d93565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f1957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f8157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f915750612f9082613521565b5b9050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561301a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613011906146e5565b60405180910390fd5b6130238161224e565b15613063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305a906146c5565b60405180910390fd5b600083116130a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309d90614685565b60405180910390fd5b6130b36000858386612f98565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516131b091906148c3565b6fffffffffffffffffffffffffffffffff1681526020018583602001516131d791906148c3565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561344657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133e66000888488612b0a565b613425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341c906146a5565b60405180910390fd5b818061343090614b87565b925050808061343e90614b87565b915050613375565b508060008190555061345b6000878588612f9e565b505050505050565b60008082905060005b84518110156134f35760008582815181106134b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116134d2576134cb838261358b565b92506134df565b6134dc818461358b565b92505b5080806134eb90614b87565b91505061346c565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600082600052816020526040600020905092915050565b8280546135ae90614b24565b90600052602060002090601f0160209004810192826135d05760008555613617565b82601f106135e957805160ff1916838001178555613617565b82800160010185558215613617579182015b828111156136165782518255916020019190600101906135fb565b5b5090506136249190613662565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561367b576000816000905550600101613663565b5090565b600061369261368d846147c5565b6147a0565b9050828152602081018484840111156136aa57600080fd5b6136b5848285614ab8565b509392505050565b60006136d06136cb846147f6565b6147a0565b9050828152602081018484840111156136e857600080fd5b6136f3848285614ab8565b509392505050565b60008135905061370a8161545d565b92915050565b60008083601f84011261372257600080fd5b8235905067ffffffffffffffff81111561373b57600080fd5b60208301915083602082028301111561375357600080fd5b9250929050565b60008135905061376981615474565b92915050565b60008135905061377e8161548b565b92915050565b600081359050613793816154a2565b92915050565b6000815190506137a8816154a2565b92915050565b600082601f8301126137bf57600080fd5b81356137cf84826020860161367f565b91505092915050565b600082601f8301126137e957600080fd5b81356137f98482602086016136bd565b91505092915050565b600081359050613811816154b9565b92915050565b60006020828403121561382957600080fd5b6000613837848285016136fb565b91505092915050565b6000806040838503121561385357600080fd5b6000613861858286016136fb565b9250506020613872858286016136fb565b9150509250929050565b60008060006060848603121561389157600080fd5b600061389f868287016136fb565b93505060206138b0868287016136fb565b92505060406138c186828701613802565b9150509250925092565b600080600080608085870312156138e157600080fd5b60006138ef878288016136fb565b9450506020613900878288016136fb565b935050604061391187828801613802565b925050606085013567ffffffffffffffff81111561392e57600080fd5b61393a878288016137ae565b91505092959194509250565b6000806040838503121561395957600080fd5b6000613967858286016136fb565b92505060206139788582860161375a565b9150509250929050565b6000806040838503121561399557600080fd5b60006139a3858286016136fb565b92505060206139b485828601613802565b9150509250929050565b600080600080600060a086880312156139d657600080fd5b60006139e48882890161376f565b95505060206139f588828901613802565b9450506040613a0688828901613802565b9350506060613a178882890161375a565b9250506080613a288882890161375a565b9150509295509295909350565b600060208284031215613a4757600080fd5b6000613a5584828501613784565b91505092915050565b600060208284031215613a7057600080fd5b6000613a7e84828501613799565b91505092915050565b600080600080600080600060e0888a031215613aa257600080fd5b600088013567ffffffffffffffff811115613abc57600080fd5b613ac88a828b016137d8565b975050602088013567ffffffffffffffff811115613ae557600080fd5b613af18a828b016137d8565b965050604088013567ffffffffffffffff811115613b0e57600080fd5b613b1a8a828b016137d8565b9550506060613b2b8a828b0161375a565b9450506080613b3c8a828b0161375a565b93505060a0613b4d8a828b016136fb565b92505060c0613b5e8a828b01613802565b91505092959891949750929550565b600060208284031215613b7f57600080fd5b6000613b8d84828501613802565b91505092915050565b60008060008060608587031215613bac57600080fd5b6000613bba87828801613802565b9450506020613bcb8782880161375a565b935050604085013567ffffffffffffffff811115613be857600080fd5b613bf487828801613710565b925092505092959194509250565b60008060408385031215613c1557600080fd5b6000613c2385828601613802565b9250506020613c3485828601613802565b9150509250929050565b6000613c4a8383614234565b60208301905092915050565b613c5f81614a1e565b82525050565b613c76613c7182614a1e565b614bd0565b82525050565b6000613c878261484c565b613c91818561487a565b9350613c9c83614827565b8060005b83811015613ccd578151613cb48882613c3e565b9750613cbf8361486d565b925050600181019050613ca0565b5085935050505092915050565b613ce381614a30565b82525050565b613cf281614a3c565b82525050565b6000613d0382614857565b613d0d818561488b565b9350613d1d818560208601614ac7565b613d2681614ceb565b840191505092915050565b6000613d3c82614862565b613d4681856148a7565b9350613d56818560208601614ac7565b613d5f81614ceb565b840191505092915050565b6000613d7582614862565b613d7f81856148b8565b9350613d8f818560208601614ac7565b80840191505092915050565b60008154613da881614b24565b613db281866148b8565b94506001821660008114613dcd5760018114613dde57613e11565b60ff19831686528186019350613e11565b613de785614837565b60005b83811015613e0957815481890152600182019150602081019050613dea565b838801955050505b50505092915050565b6000613e276022836148a7565b9150613e3282614d09565b604082019050919050565b6000613e4a601a836148a7565b9150613e5582614d58565b602082019050919050565b6000613e6d6026836148a7565b9150613e7882614d81565b604082019050919050565b6000613e90602a836148a7565b9150613e9b82614dd0565b604082019050919050565b6000613eb36026836148a7565b9150613ebe82614e1f565b604082019050919050565b6000613ed66017836148a7565b9150613ee182614e6e565b602082019050919050565b6000613ef96023836148a7565b9150613f0482614e97565b604082019050919050565b6000613f1c6025836148a7565b9150613f2782614ee6565b604082019050919050565b6000613f3f6027836148a7565b9150613f4a82614f35565b604082019050919050565b6000613f626039836148a7565b9150613f6d82614f84565b604082019050919050565b6000613f856016836148a7565b9150613f9082614fd3565b602082019050919050565b6000613fa8602b836148a7565b9150613fb382614ffc565b604082019050919050565b6000613fcb6016836148a7565b9150613fd68261504b565b602082019050919050565b6000613fee6026836148a7565b9150613ff982615074565b604082019050919050565b60006140116020836148a7565b915061401c826150c3565b602082019050919050565b60006140346016836148a7565b915061403f826150ec565b602082019050919050565b6000614057602f836148a7565b915061406282615115565b604082019050919050565b600061407a601a836148a7565b915061408582615164565b602082019050919050565b600061409d6032836148a7565b91506140a88261518d565b604082019050919050565b60006140c06018836148a7565b91506140cb826151dc565b602082019050919050565b60006140e36022836148a7565b91506140ee82615205565b604082019050919050565b600061410660008361489c565b915061411182615254565b600082019050919050565b60006141296023836148a7565b915061413482615257565b604082019050919050565b600061414c6033836148a7565b9150614157826152a6565b604082019050919050565b600061416f601d836148a7565b915061417a826152f5565b602082019050919050565b60006141926021836148a7565b915061419d8261531e565b604082019050919050565b60006141b56017836148a7565b91506141c08261536d565b602082019050919050565b60006141d8602e836148a7565b91506141e382615396565b604082019050919050565b60006141fb602d836148a7565b9150614206826153e5565b604082019050919050565b600061421e601b836148a7565b915061422982615434565b602082019050919050565b61423d81614aae565b82525050565b61424c81614aae565b82525050565b61426361425e82614aae565b614bf4565b82525050565b60006142758285613c65565b6014820191506142858284614252565b6020820191508190509392505050565b60006142a18286613d9b565b91506142ad8285613d6a565b91506142b98284613d9b565b9150819050949350505050565b60006142d1826140f9565b9150819050919050565b60006020820190506142f06000830184613c56565b92915050565b600060808201905061430b6000830187613c56565b6143186020830186613c56565b6143256040830185614243565b81810360608301526143378184613cf8565b905095945050505050565b60006040820190506143576000830185613c56565b6143646020830184614243565b9392505050565b600060208201905081810360008301526143858184613c7c565b905092915050565b60006020820190506143a26000830184613cda565b92915050565b60006020820190506143bd6000830184613ce9565b92915050565b600060208201905081810360008301526143dd8184613d31565b905092915050565b600060208201905081810360008301526143fe81613e1a565b9050919050565b6000602082019050818103600083015261441e81613e3d565b9050919050565b6000602082019050818103600083015261443e81613e60565b9050919050565b6000602082019050818103600083015261445e81613e83565b9050919050565b6000602082019050818103600083015261447e81613ea6565b9050919050565b6000602082019050818103600083015261449e81613ec9565b9050919050565b600060208201905081810360008301526144be81613eec565b9050919050565b600060208201905081810360008301526144de81613f0f565b9050919050565b600060208201905081810360008301526144fe81613f32565b9050919050565b6000602082019050818103600083015261451e81613f55565b9050919050565b6000602082019050818103600083015261453e81613f78565b9050919050565b6000602082019050818103600083015261455e81613f9b565b9050919050565b6000602082019050818103600083015261457e81613fbe565b9050919050565b6000602082019050818103600083015261459e81613fe1565b9050919050565b600060208201905081810360008301526145be81614004565b9050919050565b600060208201905081810360008301526145de81614027565b9050919050565b600060208201905081810360008301526145fe8161404a565b9050919050565b6000602082019050818103600083015261461e8161406d565b9050919050565b6000602082019050818103600083015261463e81614090565b9050919050565b6000602082019050818103600083015261465e816140b3565b9050919050565b6000602082019050818103600083015261467e816140d6565b9050919050565b6000602082019050818103600083015261469e8161411c565b9050919050565b600060208201905081810360008301526146be8161413f565b9050919050565b600060208201905081810360008301526146de81614162565b9050919050565b600060208201905081810360008301526146fe81614185565b9050919050565b6000602082019050818103600083015261471e816141a8565b9050919050565b6000602082019050818103600083015261473e816141cb565b9050919050565b6000602082019050818103600083015261475e816141ee565b9050919050565b6000602082019050818103600083015261477e81614211565b9050919050565b600060208201905061479a6000830184614243565b92915050565b60006147aa6147bb565b90506147b68282614b56565b919050565b6000604051905090565b600067ffffffffffffffff8211156147e0576147df614cbc565b5b6147e982614ceb565b9050602081019050919050565b600067ffffffffffffffff82111561481157614810614cbc565b5b61481a82614ceb565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006148ce82614a72565b91506148d983614a72565b9250826fffffffffffffffffffffffffffffffff038211156148fe576148fd614c2f565b5b828201905092915050565b600061491482614aae565b915061491f83614aae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561495457614953614c2f565b5b828201905092915050565b600061496a82614aae565b915061497583614aae565b92508261498557614984614c5e565b5b828204905092915050565b600061499b82614aae565b91506149a683614aae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149df576149de614c2f565b5b828202905092915050565b60006149f582614aae565b9150614a0083614aae565b925082821015614a1357614a12614c2f565b5b828203905092915050565b6000614a2982614a8e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ae5578082015181840152602081019050614aca565b83811115614af4576000848401525b50505050565b6000614b0582614aae565b91506000821415614b1957614b18614c2f565b5b600182039050919050565b60006002820490506001821680614b3c57607f821691505b60208210811415614b5057614b4f614c8d565b5b50919050565b614b5f82614ceb565b810181811067ffffffffffffffff82111715614b7e57614b7d614cbc565b5b80604052505050565b6000614b9282614aae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bc557614bc4614c2f565b5b600182019050919050565b6000614bdb82614be2565b9050919050565b6000614bed82614cfc565b9050919050565b6000819050919050565b6000614c0982614aae565b9150614c1483614aae565b925082614c2457614c23614c5e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e647320666f72207768697465206c697360008201527f74206d696e740000000000000000000000000000000000000000000000000000602082015250565b7f7768697465206c69737420616c7265616479206d696e74000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e647320666f72207075626c696320736160008201527f6c65206d696e7400000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f7768697465206c697374206d696e7420636c6f73656400000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f7075626c69632073616c65206e6f74206f70656e207965740000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f7768697465206c697374206e6f742076616c6964617465000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61546681614a1e565b811461547157600080fd5b50565b61547d81614a30565b811461548857600080fd5b50565b61549481614a3c565b811461549f57600080fd5b50565b6154ab81614a46565b81146154b657600080fd5b50565b6154c281614aae565b81146154cd57600080fd5b5056fea264697066735822122003271bc5ff4a2962fcf99f091f416497123ad97ad338ed7e136aa14cffc183ae64736f6c6343000801003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000e43727970746f546f7973436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343544300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696362336a77716c797a3732346233686d726c7a6b67763468756a707973766c61736d6a78756169746b7064347862657a667837342f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f63646e2e63727970746f746f79732e636c75622f6e66742e6a736f6e00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636352211e1161012e578063a22cb465116100ab578063c9e8ef231161006f578063c9e8ef231461085e578063d5abeb0114610889578063de8f2fa5146108b4578063e985e9c5146108f1578063f2fde38b1461092e57610230565b8063a22cb46514610767578063b88d4fde14610790578063c332bf91146107b9578063c6682862146107f6578063c87b56dd1461082157610230565b806370a08231116100f257806370a0823114610694578063715018a6146106d1578063789f981f146106e85780638da5cb5b1461071157806395d89b411461073c57610230565b80636352211e146105ba5780636497d5ea146105f757806368575685146106135780636b7259ae1461063e5780636c0360eb1461066957610230565b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce7146104e2578063518302271461051f57806351cff8d91461054a57806354f83046146105735780635c975abb1461058f57610230565b80632f745c59146103e957806334b6ab1a1461042657806342842e0e14610451578063438b63001461047a578063453afb0f146104b757610230565b8063081c8c4411610203578063081c8c4414610303578063095ea7b31461032e57806318160ddd1461035757806323b872dd146103825780632a55205a146103ab57610230565b806301ffc9a71461023557806305153fd51461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613a35565b610957565b604051610269919061438d565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613a87565b610969565b005b3480156102a757600080fd5b506102b0610a71565b6040516102bd91906143c3565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190613b6d565b610b03565b6040516102fa91906142db565b60405180910390f35b34801561030f57600080fd5b50610318610b88565b60405161032591906143c3565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190613982565b610c16565b005b34801561036357600080fd5b5061036c610d2f565b6040516103799190614785565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a4919061387c565b610d38565b005b3480156103b757600080fd5b506103d260048036038101906103cd9190613c02565b610d48565b6040516103e0929190614342565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190613982565b610e08565b60405161041d9190614785565b60405180910390f35b34801561043257600080fd5b5061043b611006565b60405161044891906143a8565b60405180910390f35b34801561045d57600080fd5b506104786004803603810190610473919061387c565b61100c565b005b34801561048657600080fd5b506104a1600480360381019061049c9190613817565b61102c565b6040516104ae919061436b565b60405180910390f35b3480156104c357600080fd5b506104cc611126565b6040516104d99190614785565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190613b6d565b61112c565b6040516105169190614785565b60405180910390f35b34801561052b57600080fd5b5061053461117f565b604051610541919061438d565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190613817565b611192565b005b61058d60048036038101906105889190613b96565b611288565b005b34801561059b57600080fd5b506105a461176d565b6040516105b1919061438d565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc9190613b6d565b611780565b6040516105ee91906142db565b60405180910390f35b610611600480360381019061060c9190613b96565b611796565b005b34801561061f57600080fd5b506106286117a8565b6040516106359190614785565b60405180910390f35b34801561064a57600080fd5b506106536117ae565b604051610660919061438d565b60405180910390f35b34801561067557600080fd5b5061067e6117c1565b60405161068b91906143c3565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190613817565b61184f565b6040516106c89190614785565b60405180910390f35b3480156106dd57600080fd5b506106e6611938565b005b3480156106f457600080fd5b5061070f600480360381019061070a91906139be565b6119c0565b005b34801561071d57600080fd5b50610726611a8c565b60405161073391906142db565b60405180910390f35b34801561074857600080fd5b50610751611ab6565b60405161075e91906143c3565b60405180910390f35b34801561077357600080fd5b5061078e60048036038101906107899190613946565b611b48565b005b34801561079c57600080fd5b506107b760048036038101906107b291906138cb565b611cc9565b005b3480156107c557600080fd5b506107e060048036038101906107db9190613817565b611d25565b6040516107ed9190614785565b60405180910390f35b34801561080257600080fd5b5061080b611d3d565b60405161081891906143c3565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613b6d565b611dcb565b60405161085591906143c3565b60405180910390f35b34801561086a57600080fd5b50610873611f25565b604051610880919061438d565b60405180910390f35b34801561089557600080fd5b5061089e611f38565b6040516108ab9190614785565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190613817565b611f3e565b6040516108e89190614785565b60405180910390f35b3480156108fd57600080fd5b5061091860048036038101906109139190613840565b611f56565b604051610925919061438d565b60405180910390f35b34801561093a57600080fd5b5061095560048036038101906109509190613817565b611fea565b005b6000610962826120e2565b9050919050565b61097161215c565b73ffffffffffffffffffffffffffffffffffffffff1661098f611a8c565b73ffffffffffffffffffffffffffffffffffffffff16146109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc906145a5565b60405180910390fd5b86600990805190602001906109fb9291906135a2565b5085600a9080519060200190610a129291906135a2565b5084600b9080519060200190610a299291906135a2565b5083600d60006101000a81548160ff02191690831515021790555082600d60016101000a81548160ff021916908315150217905550610a688282612164565b50505050505050565b606060018054610a8090614b24565b80601f0160208091040260200160405190810160405280929190818152602001828054610aac90614b24565b8015610af95780601f10610ace57610100808354040283529160200191610af9565b820191906000526020600020905b815481529060010190602001808311610adc57829003601f168201915b5050505050905090565b6000610b0e8261224e565b610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490614745565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610b9590614b24565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc190614b24565b8015610c0e5780601f10610be357610100808354040283529160200191610c0e565b820191906000526020600020905b815481529060010190602001808311610bf157829003601f168201915b505050505081565b6000610c2182611780565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990614665565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb161215c565b73ffffffffffffffffffffffffffffffffffffffff161480610ce05750610cdf81610cda61215c565b611f56565b5b610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1690614505565b60405180910390fd5b610d2a83838361225b565b505050565b60008054905090565b610d4383838361230d565b505050565b600080600060076040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900462ffffff1662ffffff1662ffffff1681525050905080600001519250612710816020015162ffffff1685610df49190614990565b610dfe919061495f565b9150509250929050565b6000610e138361184f565b8210610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b906143e5565b60405180910390fd5b6000610e5e610d2f565b905060008060005b83811015610fc4576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f5857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fb05786841415610fa1578195505050505050611000565b8380610fac90614b87565b9450505b508080610fbc90614b87565b915050610e66565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff790614725565b60405180910390fd5b92915050565b600e5481565b61102783838360405180602001604052806000815250611cc9565b505050565b606060006110398361184f565b905060008167ffffffffffffffff81111561107d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156110ab5781602001602082028036833780820191505090505b50905060005b8281101561111b576110c38582610e08565b8282815181106110fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061111390614b87565b9150506110b1565b508092505050919050565b60145481565b6000611136610d2f565b8210611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e906144a5565b60405180910390fd5b819050919050565b600d60019054906101000a900460ff1681565b61119a61215c565b73ffffffffffffffffffffffffffffffffffffffff166111b8611a8c565b73ffffffffffffffffffffffffffffffffffffffff161461120e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611205906145a5565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1647604051611234906142c6565b60006040518083038185875af1925050503d8060008114611271576040519150601f19603f3d011682016040523d82523d6000602084013e611276565b606091505b505090508061128457600080fd5b5050565b600d60009054906101000a900460ff16156112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf906145c5565b60405180910390fd5b60006112e2610d2f565b905060008511611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131e90614765565b60405180910390fd5b600c5485826113369190614909565b1115611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90614525565b60405180910390fd5b61137f611a8c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156114185784601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114019190614909565b9250508190555061141233866128b4565b50611767565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050841561166557600f60009054906101000a900460ff166114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890614565565b60405180910390fd5b600081146114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb90614485565b60405180910390fd5b60003387604051602001611509929190614269565b6040516020818303038152906040528051906020012090506000611571868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e54846128d2565b9050806115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90614705565b60405180910390fd5b60006010541461160e57876010546115cb9190614990565b34101561160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490614465565b60405180910390fd5b5b87601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061165c33896128b4565b50505050611767565b601360009054906101000a900460ff166116b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ab90614645565b60405180910390fd5b856014546116c29190614990565b341015611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb906144e5565b60405180910390fd5b85601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117539190614909565b9250508190555061176433876128b4565b50505b50505050565b600d60009054906101000a900460ff1681565b600061178b826128e9565b600001519050919050565b6117a284848484611288565b50505050565b60105481565b601360009054906101000a900460ff1681565b600980546117ce90614b24565b80601f01602080910402602001604051908101604052809291908181526020018280546117fa90614b24565b80156118475780601f1061181c57610100808354040283529160200191611847565b820191906000526020600020905b81548152906001019060200180831161182a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b790614545565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61194061215c565b73ffffffffffffffffffffffffffffffffffffffff1661195e611a8c565b73ffffffffffffffffffffffffffffffffffffffff16146119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab906145a5565b60405180910390fd5b6119be6000612a44565b565b6119c861215c565b73ffffffffffffffffffffffffffffffffffffffff166119e6611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a33906145a5565b60405180910390fd5b84600e81905550836010819055508260148190555081600f60006101000a81548160ff02191690831515021790555080601360006101000a81548160ff0219169083151502179055505050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611ac590614b24565b80601f0160208091040260200160405190810160405280929190818152602001828054611af190614b24565b8015611b3e5780601f10611b1357610100808354040283529160200191611b3e565b820191906000526020600020905b815481529060010190602001808311611b2157829003601f168201915b5050505050905090565b611b5061215c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb590614605565b60405180910390fd5b8060066000611bcb61215c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c7861215c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cbd919061438d565b60405180910390a35050565b611cd484848461230d565b611ce084848484612b0a565b611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d16906146a5565b60405180910390fd5b50505050565b60126020528060005260406000206000915090505481565b600a8054611d4a90614b24565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7690614b24565b8015611dc35780601f10611d9857610100808354040283529160200191611dc3565b820191906000526020600020905b815481529060010190602001808311611da657829003601f168201915b505050505081565b6060611dd68261224e565b611e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0c906145e5565b60405180910390fd5b60001515600d60019054906101000a900460ff1615151415611ec357600b8054611e3e90614b24565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6a90614b24565b8015611eb75780601f10611e8c57610100808354040283529160200191611eb7565b820191906000526020600020905b815481529060010190602001808311611e9a57829003601f168201915b50505050509050611f20565b600060098054611ed290614b24565b905011611eee5760405180602001604052806000815250611f1d565b6009611ef983612ca1565b600a604051602001611f0d93929190614295565b6040516020818303038152906040525b90505b919050565b600f60009054906101000a900460ff1681565b600c5481565b60116020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ff261215c565b73ffffffffffffffffffffffffffffffffffffffff16612010611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614612066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205d906145a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cd90614425565b60405180910390fd5b6120df81612a44565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612155575061215482612e4e565b5b9050919050565b600033905090565b6127108111156121a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a090614405565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff1681526020018262ffffff16815250600760008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548162ffffff021916908362ffffff1602179055509050505050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612318826128e9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661233f61215c565b73ffffffffffffffffffffffffffffffffffffffff16148061239b575061236461215c565b73ffffffffffffffffffffffffffffffffffffffff1661238384610b03565b73ffffffffffffffffffffffffffffffffffffffff16145b806123b757506123b682600001516123b161215c565b611f56565b5b9050806123f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090614625565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461246b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246290614585565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d2906144c5565b60405180910390fd5b6124e88585856001612f98565b6124f8600084846000015161225b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846126fe9190614909565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612844576127748161224e565b15612843576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128ac8686866001612f9e565b505050505050565b6128ce828260405180602001604052806000815250612fa4565b5050565b6000826128df8584613463565b1490509392505050565b6128f1613628565b6128fa8261224e565b612939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293090614445565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a2b578092505050612a3f565b508080612a3790614afa565b91505061293f565b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612b2b8473ffffffffffffffffffffffffffffffffffffffff166134fe565b15612c94578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b5461215c565b8786866040518563ffffffff1660e01b8152600401612b7694939291906142f6565b602060405180830381600087803b158015612b9057600080fd5b505af1925050508015612bc157506040513d601f19601f82011682018060405250810190612bbe9190613a5e565b60015b612c44573d8060008114612bf1576040519150601f19603f3d011682016040523d82523d6000602084013e612bf6565b606091505b50600081511415612c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c33906146a5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c99565b600190505b949350505050565b60606000821415612ce9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e49565b600082905060005b60008214612d1b578080612d0490614b87565b915050600a82612d14919061495f565b9150612cf1565b60008167ffffffffffffffff811115612d5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d8f5781602001600182028036833780820191505090505b5090505b60008514612e4257600182612da891906149ea565b9150600a85612db79190614bfe565b6030612dc39190614909565b60f81b818381518110612dff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e3b919061495f565b9450612d93565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f1957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f8157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f915750612f9082613521565b5b9050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561301a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613011906146e5565b60405180910390fd5b6130238161224e565b15613063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305a906146c5565b60405180910390fd5b600083116130a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309d90614685565b60405180910390fd5b6130b36000858386612f98565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516131b091906148c3565b6fffffffffffffffffffffffffffffffff1681526020018583602001516131d791906148c3565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561344657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133e66000888488612b0a565b613425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341c906146a5565b60405180910390fd5b818061343090614b87565b925050808061343e90614b87565b915050613375565b508060008190555061345b6000878588612f9e565b505050505050565b60008082905060005b84518110156134f35760008582815181106134b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116134d2576134cb838261358b565b92506134df565b6134dc818461358b565b92505b5080806134eb90614b87565b91505061346c565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600082600052816020526040600020905092915050565b8280546135ae90614b24565b90600052602060002090601f0160209004810192826135d05760008555613617565b82601f106135e957805160ff1916838001178555613617565b82800160010185558215613617579182015b828111156136165782518255916020019190600101906135fb565b5b5090506136249190613662565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561367b576000816000905550600101613663565b5090565b600061369261368d846147c5565b6147a0565b9050828152602081018484840111156136aa57600080fd5b6136b5848285614ab8565b509392505050565b60006136d06136cb846147f6565b6147a0565b9050828152602081018484840111156136e857600080fd5b6136f3848285614ab8565b509392505050565b60008135905061370a8161545d565b92915050565b60008083601f84011261372257600080fd5b8235905067ffffffffffffffff81111561373b57600080fd5b60208301915083602082028301111561375357600080fd5b9250929050565b60008135905061376981615474565b92915050565b60008135905061377e8161548b565b92915050565b600081359050613793816154a2565b92915050565b6000815190506137a8816154a2565b92915050565b600082601f8301126137bf57600080fd5b81356137cf84826020860161367f565b91505092915050565b600082601f8301126137e957600080fd5b81356137f98482602086016136bd565b91505092915050565b600081359050613811816154b9565b92915050565b60006020828403121561382957600080fd5b6000613837848285016136fb565b91505092915050565b6000806040838503121561385357600080fd5b6000613861858286016136fb565b9250506020613872858286016136fb565b9150509250929050565b60008060006060848603121561389157600080fd5b600061389f868287016136fb565b93505060206138b0868287016136fb565b92505060406138c186828701613802565b9150509250925092565b600080600080608085870312156138e157600080fd5b60006138ef878288016136fb565b9450506020613900878288016136fb565b935050604061391187828801613802565b925050606085013567ffffffffffffffff81111561392e57600080fd5b61393a878288016137ae565b91505092959194509250565b6000806040838503121561395957600080fd5b6000613967858286016136fb565b92505060206139788582860161375a565b9150509250929050565b6000806040838503121561399557600080fd5b60006139a3858286016136fb565b92505060206139b485828601613802565b9150509250929050565b600080600080600060a086880312156139d657600080fd5b60006139e48882890161376f565b95505060206139f588828901613802565b9450506040613a0688828901613802565b9350506060613a178882890161375a565b9250506080613a288882890161375a565b9150509295509295909350565b600060208284031215613a4757600080fd5b6000613a5584828501613784565b91505092915050565b600060208284031215613a7057600080fd5b6000613a7e84828501613799565b91505092915050565b600080600080600080600060e0888a031215613aa257600080fd5b600088013567ffffffffffffffff811115613abc57600080fd5b613ac88a828b016137d8565b975050602088013567ffffffffffffffff811115613ae557600080fd5b613af18a828b016137d8565b965050604088013567ffffffffffffffff811115613b0e57600080fd5b613b1a8a828b016137d8565b9550506060613b2b8a828b0161375a565b9450506080613b3c8a828b0161375a565b93505060a0613b4d8a828b016136fb565b92505060c0613b5e8a828b01613802565b91505092959891949750929550565b600060208284031215613b7f57600080fd5b6000613b8d84828501613802565b91505092915050565b60008060008060608587031215613bac57600080fd5b6000613bba87828801613802565b9450506020613bcb8782880161375a565b935050604085013567ffffffffffffffff811115613be857600080fd5b613bf487828801613710565b925092505092959194509250565b60008060408385031215613c1557600080fd5b6000613c2385828601613802565b9250506020613c3485828601613802565b9150509250929050565b6000613c4a8383614234565b60208301905092915050565b613c5f81614a1e565b82525050565b613c76613c7182614a1e565b614bd0565b82525050565b6000613c878261484c565b613c91818561487a565b9350613c9c83614827565b8060005b83811015613ccd578151613cb48882613c3e565b9750613cbf8361486d565b925050600181019050613ca0565b5085935050505092915050565b613ce381614a30565b82525050565b613cf281614a3c565b82525050565b6000613d0382614857565b613d0d818561488b565b9350613d1d818560208601614ac7565b613d2681614ceb565b840191505092915050565b6000613d3c82614862565b613d4681856148a7565b9350613d56818560208601614ac7565b613d5f81614ceb565b840191505092915050565b6000613d7582614862565b613d7f81856148b8565b9350613d8f818560208601614ac7565b80840191505092915050565b60008154613da881614b24565b613db281866148b8565b94506001821660008114613dcd5760018114613dde57613e11565b60ff19831686528186019350613e11565b613de785614837565b60005b83811015613e0957815481890152600182019150602081019050613dea565b838801955050505b50505092915050565b6000613e276022836148a7565b9150613e3282614d09565b604082019050919050565b6000613e4a601a836148a7565b9150613e5582614d58565b602082019050919050565b6000613e6d6026836148a7565b9150613e7882614d81565b604082019050919050565b6000613e90602a836148a7565b9150613e9b82614dd0565b604082019050919050565b6000613eb36026836148a7565b9150613ebe82614e1f565b604082019050919050565b6000613ed66017836148a7565b9150613ee182614e6e565b602082019050919050565b6000613ef96023836148a7565b9150613f0482614e97565b604082019050919050565b6000613f1c6025836148a7565b9150613f2782614ee6565b604082019050919050565b6000613f3f6027836148a7565b9150613f4a82614f35565b604082019050919050565b6000613f626039836148a7565b9150613f6d82614f84565b604082019050919050565b6000613f856016836148a7565b9150613f9082614fd3565b602082019050919050565b6000613fa8602b836148a7565b9150613fb382614ffc565b604082019050919050565b6000613fcb6016836148a7565b9150613fd68261504b565b602082019050919050565b6000613fee6026836148a7565b9150613ff982615074565b604082019050919050565b60006140116020836148a7565b915061401c826150c3565b602082019050919050565b60006140346016836148a7565b915061403f826150ec565b602082019050919050565b6000614057602f836148a7565b915061406282615115565b604082019050919050565b600061407a601a836148a7565b915061408582615164565b602082019050919050565b600061409d6032836148a7565b91506140a88261518d565b604082019050919050565b60006140c06018836148a7565b91506140cb826151dc565b602082019050919050565b60006140e36022836148a7565b91506140ee82615205565b604082019050919050565b600061410660008361489c565b915061411182615254565b600082019050919050565b60006141296023836148a7565b915061413482615257565b604082019050919050565b600061414c6033836148a7565b9150614157826152a6565b604082019050919050565b600061416f601d836148a7565b915061417a826152f5565b602082019050919050565b60006141926021836148a7565b915061419d8261531e565b604082019050919050565b60006141b56017836148a7565b91506141c08261536d565b602082019050919050565b60006141d8602e836148a7565b91506141e382615396565b604082019050919050565b60006141fb602d836148a7565b9150614206826153e5565b604082019050919050565b600061421e601b836148a7565b915061422982615434565b602082019050919050565b61423d81614aae565b82525050565b61424c81614aae565b82525050565b61426361425e82614aae565b614bf4565b82525050565b60006142758285613c65565b6014820191506142858284614252565b6020820191508190509392505050565b60006142a18286613d9b565b91506142ad8285613d6a565b91506142b98284613d9b565b9150819050949350505050565b60006142d1826140f9565b9150819050919050565b60006020820190506142f06000830184613c56565b92915050565b600060808201905061430b6000830187613c56565b6143186020830186613c56565b6143256040830185614243565b81810360608301526143378184613cf8565b905095945050505050565b60006040820190506143576000830185613c56565b6143646020830184614243565b9392505050565b600060208201905081810360008301526143858184613c7c565b905092915050565b60006020820190506143a26000830184613cda565b92915050565b60006020820190506143bd6000830184613ce9565b92915050565b600060208201905081810360008301526143dd8184613d31565b905092915050565b600060208201905081810360008301526143fe81613e1a565b9050919050565b6000602082019050818103600083015261441e81613e3d565b9050919050565b6000602082019050818103600083015261443e81613e60565b9050919050565b6000602082019050818103600083015261445e81613e83565b9050919050565b6000602082019050818103600083015261447e81613ea6565b9050919050565b6000602082019050818103600083015261449e81613ec9565b9050919050565b600060208201905081810360008301526144be81613eec565b9050919050565b600060208201905081810360008301526144de81613f0f565b9050919050565b600060208201905081810360008301526144fe81613f32565b9050919050565b6000602082019050818103600083015261451e81613f55565b9050919050565b6000602082019050818103600083015261453e81613f78565b9050919050565b6000602082019050818103600083015261455e81613f9b565b9050919050565b6000602082019050818103600083015261457e81613fbe565b9050919050565b6000602082019050818103600083015261459e81613fe1565b9050919050565b600060208201905081810360008301526145be81614004565b9050919050565b600060208201905081810360008301526145de81614027565b9050919050565b600060208201905081810360008301526145fe8161404a565b9050919050565b6000602082019050818103600083015261461e8161406d565b9050919050565b6000602082019050818103600083015261463e81614090565b9050919050565b6000602082019050818103600083015261465e816140b3565b9050919050565b6000602082019050818103600083015261467e816140d6565b9050919050565b6000602082019050818103600083015261469e8161411c565b9050919050565b600060208201905081810360008301526146be8161413f565b9050919050565b600060208201905081810360008301526146de81614162565b9050919050565b600060208201905081810360008301526146fe81614185565b9050919050565b6000602082019050818103600083015261471e816141a8565b9050919050565b6000602082019050818103600083015261473e816141cb565b9050919050565b6000602082019050818103600083015261475e816141ee565b9050919050565b6000602082019050818103600083015261477e81614211565b9050919050565b600060208201905061479a6000830184614243565b92915050565b60006147aa6147bb565b90506147b68282614b56565b919050565b6000604051905090565b600067ffffffffffffffff8211156147e0576147df614cbc565b5b6147e982614ceb565b9050602081019050919050565b600067ffffffffffffffff82111561481157614810614cbc565b5b61481a82614ceb565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006148ce82614a72565b91506148d983614a72565b9250826fffffffffffffffffffffffffffffffff038211156148fe576148fd614c2f565b5b828201905092915050565b600061491482614aae565b915061491f83614aae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561495457614953614c2f565b5b828201905092915050565b600061496a82614aae565b915061497583614aae565b92508261498557614984614c5e565b5b828204905092915050565b600061499b82614aae565b91506149a683614aae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149df576149de614c2f565b5b828202905092915050565b60006149f582614aae565b9150614a0083614aae565b925082821015614a1357614a12614c2f565b5b828203905092915050565b6000614a2982614a8e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ae5578082015181840152602081019050614aca565b83811115614af4576000848401525b50505050565b6000614b0582614aae565b91506000821415614b1957614b18614c2f565b5b600182039050919050565b60006002820490506001821680614b3c57607f821691505b60208210811415614b5057614b4f614c8d565b5b50919050565b614b5f82614ceb565b810181811067ffffffffffffffff82111715614b7e57614b7d614cbc565b5b80604052505050565b6000614b9282614aae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bc557614bc4614c2f565b5b600182019050919050565b6000614bdb82614be2565b9050919050565b6000614bed82614cfc565b9050919050565b6000819050919050565b6000614c0982614aae565b9150614c1483614aae565b925082614c2457614c23614c5e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e647320666f72207768697465206c697360008201527f74206d696e740000000000000000000000000000000000000000000000000000602082015250565b7f7768697465206c69737420616c7265616479206d696e74000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e647320666f72207075626c696320736160008201527f6c65206d696e7400000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f7768697465206c697374206d696e7420636c6f73656400000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f7075626c69632073616c65206e6f74206f70656e207965740000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f7768697465206c697374206e6f742076616c6964617465000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61546681614a1e565b811461547157600080fd5b50565b61547d81614a30565b811461548857600080fd5b50565b61549481614a3c565b811461549f57600080fd5b50565b6154ab81614a46565b81146154b657600080fd5b50565b6154c281614aae565b81146154cd57600080fd5b5056fea264697066735822122003271bc5ff4a2962fcf99f091f416497123ad97ad338ed7e136aa14cffc183ae64736f6c63430008010033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000e43727970746f546f7973436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343544300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696362336a77716c797a3732346233686d726c7a6b67763468756a707973766c61736d6a78756169746b7064347862657a667837342f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f63646e2e63727970746f746f79732e636c75622f6e66742e6a736f6e00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): CryptoToysClub
Arg [1] : _symbol (string): CTC
Arg [2] : _maxSupply (uint256): 3000
Arg [3] : _baseURI (string): ipfs://bafybeicb3jwqlyz724b3hmrlzkgv4hujpysvlasmjxuaitkpd4xbezfx74/
Arg [4] : _notRevealedUri (string): https://cdn.cryptotoys.club/nft.json

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000bb8
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [6] : 43727970746f546f7973436c7562000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 4354430000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [10] : 697066733a2f2f626166796265696362336a77716c797a3732346233686d726c
Arg [11] : 7a6b67763468756a707973766c61736d6a78756169746b7064347862657a6678
Arg [12] : 37342f0000000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [14] : 68747470733a2f2f63646e2e63727970746f746f79732e636c75622f6e66742e
Arg [15] : 6a736f6e00000000000000000000000000000000000000000000000000000000


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.