ETH Price: $3,311.14 (-2.93%)
Gas: 13 Gwei

Token

Mansion Cat Club Meow (MCCM)
 

Overview

Max Total Supply

808 MCCM

Holders

65

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
banteg.eth
Balance
1 MCCM
0x0035fc5208ef989c28d47e552e92b0c507d2b318
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

MCCM is a collection of 66,666 super adorable digital hand-drawn NFTs living on Ethereum blockchain

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MansionCatClubMeow

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : MCCM.sol
// SPDX-License-Identifier: MIT
 
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//                                                                                                                     //
//                                                                                                                     //
//     ____    ____   ______    ______  ____    ____            ___       ___    ___  _           _          __        //
//    |_   \  /   _|.' ___  | .' ___  ||_   \  /   _|         .'   `.   .' ..] .' ..](_)         (_)        [  |       //
//      |   \/   | / .'   \_|/ .'   \_|  |   \/   |          /  .-.  \ _| |_  _| |_  __   .---.  __   ,--.   | |       //
//      | |\  /| | | |       | |         | |\  /| |          | |   | |'-| |-''-| |-'[  | / /'`\][  | `'_\ :  | |       //
//     _| |_\/_| |_\ `.___.'\\ `.___.'\ _| |_\/_| |_         \  `-'  /  | |    | |   | | | \__.  | | // | |, | |       //
//    |_____||_____|`.____ .' `.____ .'|_____||_____|         `.___.'  [___]  [___] [___]'.___.'[___]\'-;__/[___]      //
//                                                                                                                     //
//                                                                                                                     //
//                                                                                                                     //
//                                                                                                                     //
//                                                     .M                         .MM]                                 //
//                                                   .MMM]                      .MMMMM]                                //
//                                                 .MMMMMb                    .MMM@(MM]                                //
//                                               .MMM@(MMb                  .MMMB! ,MM]                                //
//                                             .MMMD   MMN.               .MMM#'   ,MM]                                //
//                                           .MMMD     -MMb            ..MMMB'     ,MM]                                //
//                                         .MMMD        ?MMh.       ..MMMM"        ,MM]                                //
//                                       .MMMD           &JOSH....BT!CAT^          .MM]                                //
//                                     .MMMD               &COCKROACH              MMN]                                //
//                                   .MMMD                                          dMM]                               //
//                                 .MMMD                                            -MM]                               //
//                               .MMMD                                               MMN                               //
//                             .MMMD         ..                            ..        JMM]                              //
//                           .MMMD         .MCCM.            ..          .MCCM.       JMM]                             //
//                        ..MMMD           LYDIA            with         ^MEOW^        XMMM                            //
//                     ..gMMMD                            DA   NIΞL                      MMMM                          //
//                    MMMM#D                                                                                           //
//                                                                                                                     //
//                                                                   .MCCM.    .MCCM.     .N   .M                      //
//                                                                 .MC       .MC         JM@  MWb                      //
//                                                                 dN,    +K dN,    +K  M#  GM  Mb                     //
//                                                                  369MCCM   369MCCM  Mb        Mb                    //
//                                                                                                                     //
//                                                                                                                     //
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 
// Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721
 
pragma solidity ^0.8.16;
 
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
 
contract MansionCatClubMeow is ERC721Enumerable, Ownable, ReentrancyGuard {
 
    using Strings for uint256;
 
    bool public _isSaleActive = false;
    bool public _revealed = false;
 
    uint256 public constant MAX_SUPPLY = 66666;
    uint256 public mintPrice = 0.0963 ether;
    uint256 public maxMint = 369;
 
    string baseURI;
    string public notRevealedUri;
    string public baseExtension = ".json";
 
    mapping(uint256 => string) private _tokenURIs;
    mapping(address => uint256) public addressMintMccmBalance;
 
    constructor(string memory initBaseURI, string memory initNotRevealedUri)
    ERC721("Mansion Cat Club Meow", "MCCM") {
        setBaseURI(initBaseURI);
        setNotRevealedURI(initNotRevealedUri);
    }
 
    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }
 
    function mintMccm(uint256 tokenQuantity)
        public
        payable
        nonReentrant
        callerIsUser
    {
        require(totalSupply() + (tokenQuantity) <= MAX_SUPPLY, "Sold Out!");
        require(_isSaleActive, "Sale must be active to mint Mccm");
        require(
            tokenQuantity > 0 && tokenQuantity <= maxMint,
            "Exceeded the maximum purchase quantity"
        );
        require(mintPrice * (tokenQuantity) == msg.value, "wrong mint value");
        _mintMccm(tokenQuantity);
    }
 
    function _mintMccm(uint256 tokenQuantity) internal {
        for (uint256 i = 0; i < tokenQuantity; i++) {
            uint256 mintIndex = totalSupply();
            if (totalSupply() < MAX_SUPPLY) {
                addressMintMccmBalance[msg.sender]++;
                _safeMint(msg.sender, mintIndex);
            }
        }
    }
 
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
       
        if (_revealed == false) {
            return notRevealedUri;
        }
 
        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();
 
        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return
            string(abi.encodePacked(base, tokenId.toString(), baseExtension));
    }
 
    // internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
 
    //only owner
    function flipSaleActive() public onlyOwner {
        _isSaleActive = !_isSaleActive;
    }
 
    function flipReveal() public onlyOwner {
        _revealed = !_revealed;
    }
 
    function setMintPrice(uint256 _mintPrice) public onlyOwner {
        mintPrice = _mintPrice;
    }
 
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }
 
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }
 
    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }
 
    function setMaxMint(uint256 _maxMint) public onlyOwner {
        maxMint = _maxMint;
    }
 
    function withdraw(address to) public onlyOwner{
        uint256 balance = address(this).balance;
        payable(to).transfer(balance);
    }
}

File 2 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 3 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 4 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 5 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 14 : 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 7 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

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

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

File 8 of 14 : 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 9 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

File 10 of 14 : 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 11 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

File 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"string","name":"initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintMccmBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleActive","outputs":[],"stateMutability":"nonpayable","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":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintMccm","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","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":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506701562056fbdec000600d55610171600e556040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060119081620000929190620005f7565b50348015620000a057600080fd5b5060405162004cc938038062004cc98339818101604052810190620000c6919062000842565b6040518060400160405280601581526020017f4d616e73696f6e2043617420436c7562204d656f7700000000000000000000008152506040518060400160405280600481526020017f4d43434d000000000000000000000000000000000000000000000000000000008152508160009081620001439190620005f7565b508060019081620001559190620005f7565b505050620001786200016c620001aa60201b60201c565b620001b260201b60201c565b6001600b8190555062000191826200027860201b60201c565b620001a2816200029d60201b60201c565b50506200094a565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000288620002c260201b60201c565b80600f9081620002999190620005f7565b5050565b620002ad620002c260201b60201c565b8060109081620002be9190620005f7565b5050565b620002d2620001aa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002f86200035360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000351576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003489062000928565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003ff57607f821691505b602082108103620004155762000414620003b7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200047f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000440565b6200048b868362000440565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004d8620004d2620004cc84620004a3565b620004ad565b620004a3565b9050919050565b6000819050919050565b620004f483620004b7565b6200050c6200050382620004df565b8484546200044d565b825550505050565b600090565b6200052362000514565b62000530818484620004e9565b505050565b5b8181101562000558576200054c60008262000519565b60018101905062000536565b5050565b601f821115620005a75762000571816200041b565b6200057c8462000430565b810160208510156200058c578190505b620005a46200059b8562000430565b83018262000535565b50505b505050565b600082821c905092915050565b6000620005cc60001984600802620005ac565b1980831691505092915050565b6000620005e78383620005b9565b9150826002028217905092915050565b62000602826200037d565b67ffffffffffffffff8111156200061e576200061d62000388565b5b6200062a8254620003e6565b620006378282856200055c565b600060209050601f8311600181146200066f57600084156200065a578287015190505b620006668582620005d9565b865550620006d6565b601f1984166200067f866200041b565b60005b82811015620006a95784890151825560018201915060208501945060208101905062000682565b86831015620006c95784890151620006c5601f891682620005b9565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200071882620006fc565b810181811067ffffffffffffffff821117156200073a576200073962000388565b5b80604052505050565b60006200074f620006de565b90506200075d82826200070d565b919050565b600067ffffffffffffffff82111562000780576200077f62000388565b5b6200078b82620006fc565b9050602081019050919050565b60005b83811015620007b85780820151818401526020810190506200079b565b60008484015250505050565b6000620007db620007d58462000762565b62000743565b905082815260208101848484011115620007fa57620007f9620006f7565b5b6200080784828562000798565b509392505050565b600082601f830112620008275762000826620006f2565b5b815162000839848260208601620007c4565b91505092915050565b600080604083850312156200085c576200085b620006e8565b5b600083015167ffffffffffffffff8111156200087d576200087c620006ed565b5b6200088b858286016200080f565b925050602083015167ffffffffffffffff811115620008af57620008ae620006ed565b5b620008bd858286016200080f565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000910602083620008c7565b91506200091d82620008d8565b602082019050919050565b60006020820190508181036000830152620009438162000901565b9050919050565b61436f806200095a6000396000f3fe60806040526004361061020f5760003560e01c80636ebeac8511610118578063c6682862116100a0578063de8b51e11161006f578063de8b51e114610790578063e985e9c5146107a7578063f2c4ce1e146107e4578063f2fde38b1461080d578063f4a0a528146108365761020f565b8063c6682862146106e3578063c87b56dd1461070e578063da3ef23f1461074b578063db89a52f146107745761020f565b80637501f741116100e75780637501f741146106105780638da5cb5b1461063b57806395d89b4114610666578063a22cb46514610691578063b88d4fde146106ba5761020f565b80636ebeac85146105665780637080d6fc1461059157806370a08231146105bc578063715018a6146105f95761020f565b80633a915d201161019b57806351cff8d91161016a57806351cff8d914610483578063547520fe146104ac57806355f804b3146104d55780636352211e146104fe5780636817c76c1461053b5761020f565b80633a915d20146103c95780633b84d9c61461040657806342842e0e1461041d5780634f6ccce7146104465761020f565b8063095ea7b3116101e2578063095ea7b3146102e457806318160ddd1461030d57806323b872dd146103385780632f745c591461036157806332cb6b0c1461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063081c8c44146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612af4565b61085f565b6040516102489190612b3c565b60405180910390f35b34801561025d57600080fd5b506102666108d9565b6040516102739190612be7565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612c3f565b61096b565b6040516102b09190612cad565b60405180910390f35b3480156102c557600080fd5b506102ce6109b1565b6040516102db9190612be7565b60405180910390f35b3480156102f057600080fd5b5061030b60048036038101906103069190612cf4565b610a3f565b005b34801561031957600080fd5b50610322610b56565b60405161032f9190612d43565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190612d5e565b610b63565b005b34801561036d57600080fd5b5061038860048036038101906103839190612cf4565b610bc3565b6040516103959190612d43565b60405180910390f35b3480156103aa57600080fd5b506103b3610c68565b6040516103c09190612d43565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb9190612db1565b610c6f565b6040516103fd9190612d43565b60405180910390f35b34801561041257600080fd5b5061041b610c87565b005b34801561042957600080fd5b50610444600480360381019061043f9190612d5e565b610cbb565b005b34801561045257600080fd5b5061046d60048036038101906104689190612c3f565b610cdb565b60405161047a9190612d43565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190612db1565b610d4c565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190612c3f565b610da4565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612f13565b610db6565b005b34801561050a57600080fd5b5061052560048036038101906105209190612c3f565b610dd1565b6040516105329190612cad565b60405180910390f35b34801561054757600080fd5b50610550610e82565b60405161055d9190612d43565b60405180910390f35b34801561057257600080fd5b5061057b610e88565b6040516105889190612b3c565b60405180910390f35b34801561059d57600080fd5b506105a6610e9b565b6040516105b39190612b3c565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190612db1565b610eae565b6040516105f09190612d43565b60405180910390f35b34801561060557600080fd5b5061060e610f65565b005b34801561061c57600080fd5b50610625610f79565b6040516106329190612d43565b60405180910390f35b34801561064757600080fd5b50610650610f7f565b60405161065d9190612cad565b60405180910390f35b34801561067257600080fd5b5061067b610fa9565b6040516106889190612be7565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190612f88565b61103b565b005b3480156106c657600080fd5b506106e160048036038101906106dc9190613069565b611051565b005b3480156106ef57600080fd5b506106f86110b3565b6040516107059190612be7565b60405180910390f35b34801561071a57600080fd5b5061073560048036038101906107309190612c3f565b611141565b6040516107429190612be7565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190612f13565b611363565b005b61078e60048036038101906107899190612c3f565b61137e565b005b34801561079c57600080fd5b506107a5611594565b005b3480156107b357600080fd5b506107ce60048036038101906107c991906130ec565b6115c8565b6040516107db9190612b3c565b60405180910390f35b3480156107f057600080fd5b5061080b60048036038101906108069190612f13565b61165c565b005b34801561081957600080fd5b50610834600480360381019061082f9190612db1565b611677565b005b34801561084257600080fd5b5061085d60048036038101906108589190612c3f565b6116fa565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d257506108d18261170c565b5b9050919050565b6060600080546108e89061315b565b80601f01602080910402602001604051908101604052809291908181526020018280546109149061315b565b80156109615780601f1061093657610100808354040283529160200191610961565b820191906000526020600020905b81548152906001019060200180831161094457829003601f168201915b5050505050905090565b6000610976826117ee565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601080546109be9061315b565b80601f01602080910402602001604051908101604052809291908181526020018280546109ea9061315b565b8015610a375780601f10610a0c57610100808354040283529160200191610a37565b820191906000526020600020905b815481529060010190602001808311610a1a57829003601f168201915b505050505081565b6000610a4a82610dd1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab1906131fe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ad9611839565b73ffffffffffffffffffffffffffffffffffffffff161480610b085750610b0781610b02611839565b6115c8565b5b610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e90613290565b60405180910390fd5b610b518383611841565b505050565b6000600880549050905090565b610b74610b6e611839565b826118fa565b610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa90613322565b60405180910390fd5b610bbe83838361198f565b505050565b6000610bce83610eae565b8210610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c06906133b4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6201046a81565b60136020528060005260406000206000915090505481565b610c8f611bf5565b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b610cd683838360405180602001604052806000815250611051565b505050565b6000610ce5610b56565b8210610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90613446565b60405180910390fd5b60088281548110610d3a57610d39613466565b5b90600052602060002001549050919050565b610d54611bf5565b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d9f573d6000803e3d6000fd5b505050565b610dac611bf5565b80600e8190555050565b610dbe611bf5565b80600f9081610dcd9190613641565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e709061375f565b60405180910390fd5b80915050919050565b600d5481565b600c60019054906101000a900460ff1681565b600c60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f15906137f1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f6d611bf5565b610f776000611c73565b565b600e5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610fb89061315b565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe49061315b565b80156110315780601f1061100657610100808354040283529160200191611031565b820191906000526020600020905b81548152906001019060200180831161101457829003601f168201915b5050505050905090565b61104d611046611839565b8383611d39565b5050565b61106261105c611839565b836118fa565b6110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890613322565b60405180910390fd5b6110ad84848484611ea5565b50505050565b601180546110c09061315b565b80601f01602080910402602001604051908101604052809291908181526020018280546110ec9061315b565b80156111395780601f1061110e57610100808354040283529160200191611139565b820191906000526020600020905b81548152906001019060200180831161111c57829003601f168201915b505050505081565b606061114c82611f01565b61118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290613883565b60405180910390fd5b60001515600c60019054906101000a900460ff1615150361123857601080546111b39061315b565b80601f01602080910402602001604051908101604052809291908181526020018280546111df9061315b565b801561122c5780601f106112015761010080835404028352916020019161122c565b820191906000526020600020905b81548152906001019060200180831161120f57829003601f168201915b5050505050905061135e565b60006012600084815260200190815260200160002080546112589061315b565b80601f01602080910402602001604051908101604052809291908181526020018280546112849061315b565b80156112d15780601f106112a6576101008083540402835291602001916112d1565b820191906000526020600020905b8154815290600101906020018083116112b457829003601f168201915b5050505050905060006112e2611f6d565b905060008151036112f757819250505061135e565b60008251111561132c5780826040516020016113149291906138df565b6040516020818303038152906040529250505061135e565b8061133685611fff565b601160405160200161134a93929190613986565b604051602081830303815290604052925050505b919050565b61136b611bf5565b806011908161137a9190613641565b5050565b6002600b54036113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90613a03565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143090613a6f565b60405180910390fd5b6201046a81611446610b56565b6114509190613abe565b1115611491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148890613b3e565b60405180910390fd5b600c60009054906101000a900460ff166114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d790613baa565b60405180910390fd5b6000811180156114f25750600e548111155b611531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152890613c3c565b60405180910390fd5b3481600d546115409190613c5c565b14611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157790613d02565b60405180910390fd5b6115898161215f565b6001600b8190555050565b61159c611bf5565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611664611bf5565b80601090816116739190613641565b5050565b61167f611bf5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e590613d94565b60405180910390fd5b6116f781611c73565b50565b611702611bf5565b80600d8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806117d757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806117e757506117e682612200565b5b9050919050565b6117f781611f01565b611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d9061375f565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118b483610dd1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061190683610dd1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611948575061194781856115c8565b5b8061198657508373ffffffffffffffffffffffffffffffffffffffff1661196e8461096b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119af82610dd1565b73ffffffffffffffffffffffffffffffffffffffff1614611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90613e26565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b90613eb8565b60405180910390fd5b611a7f83838361226a565b611a8a600082611841565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ada9190613ed8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b319190613abe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bf083838361237c565b505050565b611bfd611839565b73ffffffffffffffffffffffffffffffffffffffff16611c1b610f7f565b73ffffffffffffffffffffffffffffffffffffffff1614611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890613f58565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9e90613fc4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e989190612b3c565b60405180910390a3505050565b611eb084848461198f565b611ebc84848484612381565b611efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef290614056565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600f8054611f7c9061315b565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa89061315b565b8015611ff55780601f10611fca57610100808354040283529160200191611ff5565b820191906000526020600020905b815481529060010190602001808311611fd857829003601f168201915b5050505050905090565b606060008203612046576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061215a565b600082905060005b6000821461207857808061206190614076565b915050600a8261207191906140ed565b915061204e565b60008167ffffffffffffffff81111561209457612093612de8565b5b6040519080825280601f01601f1916602001820160405280156120c65781602001600182028036833780820191505090505b5090505b60008514612153576001826120df9190613ed8565b9150600a856120ee919061411e565b60306120fa9190613abe565b60f81b8183815181106121105761210f613466565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561214c91906140ed565b94506120ca565b8093505050505b919050565b60005b818110156121fc576000612174610b56565b90506201046a612182610b56565b10156121e857601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906121d890614076565b91905055506121e73382612508565b5b5080806121f490614076565b915050612162565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612275838383612526565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122b7576122b28161252b565b6122f6565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122f5576122f48382612574565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361233857612333816126e1565b612377565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123765761237582826127b2565b5b5b505050565b505050565b60006123a28473ffffffffffffffffffffffffffffffffffffffff16612831565b156124fb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123cb611839565b8786866040518563ffffffff1660e01b81526004016123ed94939291906141a4565b6020604051808303816000875af192505050801561242957506040513d601f19601f820116820180604052508101906124269190614205565b60015b6124ab573d8060008114612459576040519150601f19603f3d011682016040523d82523d6000602084013e61245e565b606091505b5060008151036124a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249a90614056565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612500565b600190505b949350505050565b612522828260405180602001604052806000815250612854565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161258184610eae565b61258b9190613ed8565b9050600060076000848152602001908152602001600020549050818114612670576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126f59190613ed8565b905060006009600084815260200190815260200160002054905060006008838154811061272557612724613466565b5b90600052602060002001549050806008838154811061274757612746613466565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061279657612795614232565b5b6001900381819060005260206000200160009055905550505050565b60006127bd83610eae565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b61285e83836128af565b61286b6000848484612381565b6128aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a190614056565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361291e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612915906142ad565b60405180910390fd5b61292781611f01565b15612967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295e90614319565b60405180910390fd5b6129736000838361226a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129c39190613abe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a846000838361237c565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ad181612a9c565b8114612adc57600080fd5b50565b600081359050612aee81612ac8565b92915050565b600060208284031215612b0a57612b09612a92565b5b6000612b1884828501612adf565b91505092915050565b60008115159050919050565b612b3681612b21565b82525050565b6000602082019050612b516000830184612b2d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b91578082015181840152602081019050612b76565b60008484015250505050565b6000601f19601f8301169050919050565b6000612bb982612b57565b612bc38185612b62565b9350612bd3818560208601612b73565b612bdc81612b9d565b840191505092915050565b60006020820190508181036000830152612c018184612bae565b905092915050565b6000819050919050565b612c1c81612c09565b8114612c2757600080fd5b50565b600081359050612c3981612c13565b92915050565b600060208284031215612c5557612c54612a92565b5b6000612c6384828501612c2a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c9782612c6c565b9050919050565b612ca781612c8c565b82525050565b6000602082019050612cc26000830184612c9e565b92915050565b612cd181612c8c565b8114612cdc57600080fd5b50565b600081359050612cee81612cc8565b92915050565b60008060408385031215612d0b57612d0a612a92565b5b6000612d1985828601612cdf565b9250506020612d2a85828601612c2a565b9150509250929050565b612d3d81612c09565b82525050565b6000602082019050612d586000830184612d34565b92915050565b600080600060608486031215612d7757612d76612a92565b5b6000612d8586828701612cdf565b9350506020612d9686828701612cdf565b9250506040612da786828701612c2a565b9150509250925092565b600060208284031215612dc757612dc6612a92565b5b6000612dd584828501612cdf565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e2082612b9d565b810181811067ffffffffffffffff82111715612e3f57612e3e612de8565b5b80604052505050565b6000612e52612a88565b9050612e5e8282612e17565b919050565b600067ffffffffffffffff821115612e7e57612e7d612de8565b5b612e8782612b9d565b9050602081019050919050565b82818337600083830152505050565b6000612eb6612eb184612e63565b612e48565b905082815260208101848484011115612ed257612ed1612de3565b5b612edd848285612e94565b509392505050565b600082601f830112612efa57612ef9612dde565b5b8135612f0a848260208601612ea3565b91505092915050565b600060208284031215612f2957612f28612a92565b5b600082013567ffffffffffffffff811115612f4757612f46612a97565b5b612f5384828501612ee5565b91505092915050565b612f6581612b21565b8114612f7057600080fd5b50565b600081359050612f8281612f5c565b92915050565b60008060408385031215612f9f57612f9e612a92565b5b6000612fad85828601612cdf565b9250506020612fbe85828601612f73565b9150509250929050565b600067ffffffffffffffff821115612fe357612fe2612de8565b5b612fec82612b9d565b9050602081019050919050565b600061300c61300784612fc8565b612e48565b90508281526020810184848401111561302857613027612de3565b5b613033848285612e94565b509392505050565b600082601f8301126130505761304f612dde565b5b8135613060848260208601612ff9565b91505092915050565b6000806000806080858703121561308357613082612a92565b5b600061309187828801612cdf565b94505060206130a287828801612cdf565b93505060406130b387828801612c2a565b925050606085013567ffffffffffffffff8111156130d4576130d3612a97565b5b6130e08782880161303b565b91505092959194509250565b6000806040838503121561310357613102612a92565b5b600061311185828601612cdf565b925050602061312285828601612cdf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061317357607f821691505b6020821081036131865761318561312c565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006131e8602183612b62565b91506131f38261318c565b604082019050919050565b60006020820190508181036000830152613217816131db565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b600061327a603e83612b62565b91506132858261321e565b604082019050919050565b600060208201905081810360008301526132a98161326d565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b600061330c602e83612b62565b9150613317826132b0565b604082019050919050565b6000602082019050818103600083015261333b816132ff565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061339e602b83612b62565b91506133a982613342565b604082019050919050565b600060208201905081810360008301526133cd81613391565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613430602c83612b62565b915061343b826133d4565b604082019050919050565b6000602082019050818103600083015261345f81613423565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134f77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134ba565b61350186836134ba565b95508019841693508086168417925050509392505050565b6000819050919050565b600061353e61353961353484612c09565b613519565b612c09565b9050919050565b6000819050919050565b61355883613523565b61356c61356482613545565b8484546134c7565b825550505050565b600090565b613581613574565b61358c81848461354f565b505050565b5b818110156135b0576135a5600082613579565b600181019050613592565b5050565b601f8211156135f5576135c681613495565b6135cf846134aa565b810160208510156135de578190505b6135f26135ea856134aa565b830182613591565b50505b505050565b600082821c905092915050565b6000613618600019846008026135fa565b1980831691505092915050565b60006136318383613607565b9150826002028217905092915050565b61364a82612b57565b67ffffffffffffffff81111561366357613662612de8565b5b61366d825461315b565b6136788282856135b4565b600060209050601f8311600181146136ab5760008415613699578287015190505b6136a38582613625565b86555061370b565b601f1984166136b986613495565b60005b828110156136e1578489015182556001820191506020850194506020810190506136bc565b868310156136fe57848901516136fa601f891682613607565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613749601883612b62565b915061375482613713565b602082019050919050565b600060208201905081810360008301526137788161373c565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006137db602983612b62565b91506137e68261377f565b604082019050919050565b6000602082019050818103600083015261380a816137ce565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061386d602f83612b62565b915061387882613811565b604082019050919050565b6000602082019050818103600083015261389c81613860565b9050919050565b600081905092915050565b60006138b982612b57565b6138c381856138a3565b93506138d3818560208601612b73565b80840191505092915050565b60006138eb82856138ae565b91506138f782846138ae565b91508190509392505050565b600081546139108161315b565b61391a81866138a3565b94506001821660008114613935576001811461394a5761397d565b60ff198316865281151582028601935061397d565b61395385613495565b60005b8381101561397557815481890152600182019150602081019050613956565b838801955050505b50505092915050565b600061399282866138ae565b915061399e82856138ae565b91506139aa8284613903565b9150819050949350505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006139ed601f83612b62565b91506139f8826139b7565b602082019050919050565b60006020820190508181036000830152613a1c816139e0565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613a59601e83612b62565b9150613a6482613a23565b602082019050919050565b60006020820190508181036000830152613a8881613a4c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ac982612c09565b9150613ad483612c09565b9250828201905080821115613aec57613aeb613a8f565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000613b28600983612b62565b9150613b3382613af2565b602082019050919050565b60006020820190508181036000830152613b5781613b1b565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e74204d63636d600082015250565b6000613b94602083612b62565b9150613b9f82613b5e565b602082019050919050565b60006020820190508181036000830152613bc381613b87565b9050919050565b7f457863656564656420746865206d6178696d756d20707572636861736520717560008201527f616e746974790000000000000000000000000000000000000000000000000000602082015250565b6000613c26602683612b62565b9150613c3182613bca565b604082019050919050565b60006020820190508181036000830152613c5581613c19565b9050919050565b6000613c6782612c09565b9150613c7283612c09565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cab57613caa613a8f565b5b828202905092915050565b7f77726f6e67206d696e742076616c756500000000000000000000000000000000600082015250565b6000613cec601083612b62565b9150613cf782613cb6565b602082019050919050565b60006020820190508181036000830152613d1b81613cdf565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d7e602683612b62565b9150613d8982613d22565b604082019050919050565b60006020820190508181036000830152613dad81613d71565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613e10602583612b62565b9150613e1b82613db4565b604082019050919050565b60006020820190508181036000830152613e3f81613e03565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ea2602483612b62565b9150613ead82613e46565b604082019050919050565b60006020820190508181036000830152613ed181613e95565b9050919050565b6000613ee382612c09565b9150613eee83612c09565b9250828203905081811115613f0657613f05613a8f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f42602083612b62565b9150613f4d82613f0c565b602082019050919050565b60006020820190508181036000830152613f7181613f35565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613fae601983612b62565b9150613fb982613f78565b602082019050919050565b60006020820190508181036000830152613fdd81613fa1565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614040603283612b62565b915061404b82613fe4565b604082019050919050565b6000602082019050818103600083015261406f81614033565b9050919050565b600061408182612c09565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036140b3576140b2613a8f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140f882612c09565b915061410383612c09565b925082614113576141126140be565b5b828204905092915050565b600061412982612c09565b915061413483612c09565b925082614144576141436140be565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006141768261414f565b614180818561415a565b9350614190818560208601612b73565b61419981612b9d565b840191505092915050565b60006080820190506141b96000830187612c9e565b6141c66020830186612c9e565b6141d36040830185612d34565b81810360608301526141e5818461416b565b905095945050505050565b6000815190506141ff81612ac8565b92915050565b60006020828403121561421b5761421a612a92565b5b6000614229848285016141f0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614297602083612b62565b91506142a282614261565b602082019050919050565b600060208201905081810360008301526142c68161428a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614303601c83612b62565b915061430e826142cd565b602082019050919050565b60006020820190508181036000830152614332816142f6565b905091905056fea2646970667358221220bafd1db7583957572fa5b79e25452d2863a4d00e6439c22770c59634a2b5432a64736f6c634300081000330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636ebeac8511610118578063c6682862116100a0578063de8b51e11161006f578063de8b51e114610790578063e985e9c5146107a7578063f2c4ce1e146107e4578063f2fde38b1461080d578063f4a0a528146108365761020f565b8063c6682862146106e3578063c87b56dd1461070e578063da3ef23f1461074b578063db89a52f146107745761020f565b80637501f741116100e75780637501f741146106105780638da5cb5b1461063b57806395d89b4114610666578063a22cb46514610691578063b88d4fde146106ba5761020f565b80636ebeac85146105665780637080d6fc1461059157806370a08231146105bc578063715018a6146105f95761020f565b80633a915d201161019b57806351cff8d91161016a57806351cff8d914610483578063547520fe146104ac57806355f804b3146104d55780636352211e146104fe5780636817c76c1461053b5761020f565b80633a915d20146103c95780633b84d9c61461040657806342842e0e1461041d5780634f6ccce7146104465761020f565b8063095ea7b3116101e2578063095ea7b3146102e457806318160ddd1461030d57806323b872dd146103385780632f745c591461036157806332cb6b0c1461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063081c8c44146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612af4565b61085f565b6040516102489190612b3c565b60405180910390f35b34801561025d57600080fd5b506102666108d9565b6040516102739190612be7565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612c3f565b61096b565b6040516102b09190612cad565b60405180910390f35b3480156102c557600080fd5b506102ce6109b1565b6040516102db9190612be7565b60405180910390f35b3480156102f057600080fd5b5061030b60048036038101906103069190612cf4565b610a3f565b005b34801561031957600080fd5b50610322610b56565b60405161032f9190612d43565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190612d5e565b610b63565b005b34801561036d57600080fd5b5061038860048036038101906103839190612cf4565b610bc3565b6040516103959190612d43565b60405180910390f35b3480156103aa57600080fd5b506103b3610c68565b6040516103c09190612d43565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb9190612db1565b610c6f565b6040516103fd9190612d43565b60405180910390f35b34801561041257600080fd5b5061041b610c87565b005b34801561042957600080fd5b50610444600480360381019061043f9190612d5e565b610cbb565b005b34801561045257600080fd5b5061046d60048036038101906104689190612c3f565b610cdb565b60405161047a9190612d43565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190612db1565b610d4c565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190612c3f565b610da4565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612f13565b610db6565b005b34801561050a57600080fd5b5061052560048036038101906105209190612c3f565b610dd1565b6040516105329190612cad565b60405180910390f35b34801561054757600080fd5b50610550610e82565b60405161055d9190612d43565b60405180910390f35b34801561057257600080fd5b5061057b610e88565b6040516105889190612b3c565b60405180910390f35b34801561059d57600080fd5b506105a6610e9b565b6040516105b39190612b3c565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190612db1565b610eae565b6040516105f09190612d43565b60405180910390f35b34801561060557600080fd5b5061060e610f65565b005b34801561061c57600080fd5b50610625610f79565b6040516106329190612d43565b60405180910390f35b34801561064757600080fd5b50610650610f7f565b60405161065d9190612cad565b60405180910390f35b34801561067257600080fd5b5061067b610fa9565b6040516106889190612be7565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190612f88565b61103b565b005b3480156106c657600080fd5b506106e160048036038101906106dc9190613069565b611051565b005b3480156106ef57600080fd5b506106f86110b3565b6040516107059190612be7565b60405180910390f35b34801561071a57600080fd5b5061073560048036038101906107309190612c3f565b611141565b6040516107429190612be7565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190612f13565b611363565b005b61078e60048036038101906107899190612c3f565b61137e565b005b34801561079c57600080fd5b506107a5611594565b005b3480156107b357600080fd5b506107ce60048036038101906107c991906130ec565b6115c8565b6040516107db9190612b3c565b60405180910390f35b3480156107f057600080fd5b5061080b60048036038101906108069190612f13565b61165c565b005b34801561081957600080fd5b50610834600480360381019061082f9190612db1565b611677565b005b34801561084257600080fd5b5061085d60048036038101906108589190612c3f565b6116fa565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d257506108d18261170c565b5b9050919050565b6060600080546108e89061315b565b80601f01602080910402602001604051908101604052809291908181526020018280546109149061315b565b80156109615780601f1061093657610100808354040283529160200191610961565b820191906000526020600020905b81548152906001019060200180831161094457829003601f168201915b5050505050905090565b6000610976826117ee565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601080546109be9061315b565b80601f01602080910402602001604051908101604052809291908181526020018280546109ea9061315b565b8015610a375780601f10610a0c57610100808354040283529160200191610a37565b820191906000526020600020905b815481529060010190602001808311610a1a57829003601f168201915b505050505081565b6000610a4a82610dd1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab1906131fe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ad9611839565b73ffffffffffffffffffffffffffffffffffffffff161480610b085750610b0781610b02611839565b6115c8565b5b610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e90613290565b60405180910390fd5b610b518383611841565b505050565b6000600880549050905090565b610b74610b6e611839565b826118fa565b610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa90613322565b60405180910390fd5b610bbe83838361198f565b505050565b6000610bce83610eae565b8210610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c06906133b4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6201046a81565b60136020528060005260406000206000915090505481565b610c8f611bf5565b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b610cd683838360405180602001604052806000815250611051565b505050565b6000610ce5610b56565b8210610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90613446565b60405180910390fd5b60088281548110610d3a57610d39613466565b5b90600052602060002001549050919050565b610d54611bf5565b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d9f573d6000803e3d6000fd5b505050565b610dac611bf5565b80600e8190555050565b610dbe611bf5565b80600f9081610dcd9190613641565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e709061375f565b60405180910390fd5b80915050919050565b600d5481565b600c60019054906101000a900460ff1681565b600c60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f15906137f1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f6d611bf5565b610f776000611c73565b565b600e5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610fb89061315b565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe49061315b565b80156110315780601f1061100657610100808354040283529160200191611031565b820191906000526020600020905b81548152906001019060200180831161101457829003601f168201915b5050505050905090565b61104d611046611839565b8383611d39565b5050565b61106261105c611839565b836118fa565b6110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890613322565b60405180910390fd5b6110ad84848484611ea5565b50505050565b601180546110c09061315b565b80601f01602080910402602001604051908101604052809291908181526020018280546110ec9061315b565b80156111395780601f1061110e57610100808354040283529160200191611139565b820191906000526020600020905b81548152906001019060200180831161111c57829003601f168201915b505050505081565b606061114c82611f01565b61118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290613883565b60405180910390fd5b60001515600c60019054906101000a900460ff1615150361123857601080546111b39061315b565b80601f01602080910402602001604051908101604052809291908181526020018280546111df9061315b565b801561122c5780601f106112015761010080835404028352916020019161122c565b820191906000526020600020905b81548152906001019060200180831161120f57829003601f168201915b5050505050905061135e565b60006012600084815260200190815260200160002080546112589061315b565b80601f01602080910402602001604051908101604052809291908181526020018280546112849061315b565b80156112d15780601f106112a6576101008083540402835291602001916112d1565b820191906000526020600020905b8154815290600101906020018083116112b457829003601f168201915b5050505050905060006112e2611f6d565b905060008151036112f757819250505061135e565b60008251111561132c5780826040516020016113149291906138df565b6040516020818303038152906040529250505061135e565b8061133685611fff565b601160405160200161134a93929190613986565b604051602081830303815290604052925050505b919050565b61136b611bf5565b806011908161137a9190613641565b5050565b6002600b54036113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90613a03565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143090613a6f565b60405180910390fd5b6201046a81611446610b56565b6114509190613abe565b1115611491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148890613b3e565b60405180910390fd5b600c60009054906101000a900460ff166114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d790613baa565b60405180910390fd5b6000811180156114f25750600e548111155b611531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152890613c3c565b60405180910390fd5b3481600d546115409190613c5c565b14611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157790613d02565b60405180910390fd5b6115898161215f565b6001600b8190555050565b61159c611bf5565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611664611bf5565b80601090816116739190613641565b5050565b61167f611bf5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e590613d94565b60405180910390fd5b6116f781611c73565b50565b611702611bf5565b80600d8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806117d757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806117e757506117e682612200565b5b9050919050565b6117f781611f01565b611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d9061375f565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118b483610dd1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061190683610dd1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611948575061194781856115c8565b5b8061198657508373ffffffffffffffffffffffffffffffffffffffff1661196e8461096b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119af82610dd1565b73ffffffffffffffffffffffffffffffffffffffff1614611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90613e26565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b90613eb8565b60405180910390fd5b611a7f83838361226a565b611a8a600082611841565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ada9190613ed8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b319190613abe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bf083838361237c565b505050565b611bfd611839565b73ffffffffffffffffffffffffffffffffffffffff16611c1b610f7f565b73ffffffffffffffffffffffffffffffffffffffff1614611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890613f58565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9e90613fc4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e989190612b3c565b60405180910390a3505050565b611eb084848461198f565b611ebc84848484612381565b611efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef290614056565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600f8054611f7c9061315b565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa89061315b565b8015611ff55780601f10611fca57610100808354040283529160200191611ff5565b820191906000526020600020905b815481529060010190602001808311611fd857829003601f168201915b5050505050905090565b606060008203612046576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061215a565b600082905060005b6000821461207857808061206190614076565b915050600a8261207191906140ed565b915061204e565b60008167ffffffffffffffff81111561209457612093612de8565b5b6040519080825280601f01601f1916602001820160405280156120c65781602001600182028036833780820191505090505b5090505b60008514612153576001826120df9190613ed8565b9150600a856120ee919061411e565b60306120fa9190613abe565b60f81b8183815181106121105761210f613466565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561214c91906140ed565b94506120ca565b8093505050505b919050565b60005b818110156121fc576000612174610b56565b90506201046a612182610b56565b10156121e857601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906121d890614076565b91905055506121e73382612508565b5b5080806121f490614076565b915050612162565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612275838383612526565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122b7576122b28161252b565b6122f6565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122f5576122f48382612574565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361233857612333816126e1565b612377565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123765761237582826127b2565b5b5b505050565b505050565b60006123a28473ffffffffffffffffffffffffffffffffffffffff16612831565b156124fb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123cb611839565b8786866040518563ffffffff1660e01b81526004016123ed94939291906141a4565b6020604051808303816000875af192505050801561242957506040513d601f19601f820116820180604052508101906124269190614205565b60015b6124ab573d8060008114612459576040519150601f19603f3d011682016040523d82523d6000602084013e61245e565b606091505b5060008151036124a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249a90614056565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612500565b600190505b949350505050565b612522828260405180602001604052806000815250612854565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161258184610eae565b61258b9190613ed8565b9050600060076000848152602001908152602001600020549050818114612670576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126f59190613ed8565b905060006009600084815260200190815260200160002054905060006008838154811061272557612724613466565b5b90600052602060002001549050806008838154811061274757612746613466565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061279657612795614232565b5b6001900381819060005260206000200160009055905550505050565b60006127bd83610eae565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b61285e83836128af565b61286b6000848484612381565b6128aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a190614056565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361291e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612915906142ad565b60405180910390fd5b61292781611f01565b15612967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295e90614319565b60405180910390fd5b6129736000838361226a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129c39190613abe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a846000838361237c565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ad181612a9c565b8114612adc57600080fd5b50565b600081359050612aee81612ac8565b92915050565b600060208284031215612b0a57612b09612a92565b5b6000612b1884828501612adf565b91505092915050565b60008115159050919050565b612b3681612b21565b82525050565b6000602082019050612b516000830184612b2d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b91578082015181840152602081019050612b76565b60008484015250505050565b6000601f19601f8301169050919050565b6000612bb982612b57565b612bc38185612b62565b9350612bd3818560208601612b73565b612bdc81612b9d565b840191505092915050565b60006020820190508181036000830152612c018184612bae565b905092915050565b6000819050919050565b612c1c81612c09565b8114612c2757600080fd5b50565b600081359050612c3981612c13565b92915050565b600060208284031215612c5557612c54612a92565b5b6000612c6384828501612c2a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c9782612c6c565b9050919050565b612ca781612c8c565b82525050565b6000602082019050612cc26000830184612c9e565b92915050565b612cd181612c8c565b8114612cdc57600080fd5b50565b600081359050612cee81612cc8565b92915050565b60008060408385031215612d0b57612d0a612a92565b5b6000612d1985828601612cdf565b9250506020612d2a85828601612c2a565b9150509250929050565b612d3d81612c09565b82525050565b6000602082019050612d586000830184612d34565b92915050565b600080600060608486031215612d7757612d76612a92565b5b6000612d8586828701612cdf565b9350506020612d9686828701612cdf565b9250506040612da786828701612c2a565b9150509250925092565b600060208284031215612dc757612dc6612a92565b5b6000612dd584828501612cdf565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e2082612b9d565b810181811067ffffffffffffffff82111715612e3f57612e3e612de8565b5b80604052505050565b6000612e52612a88565b9050612e5e8282612e17565b919050565b600067ffffffffffffffff821115612e7e57612e7d612de8565b5b612e8782612b9d565b9050602081019050919050565b82818337600083830152505050565b6000612eb6612eb184612e63565b612e48565b905082815260208101848484011115612ed257612ed1612de3565b5b612edd848285612e94565b509392505050565b600082601f830112612efa57612ef9612dde565b5b8135612f0a848260208601612ea3565b91505092915050565b600060208284031215612f2957612f28612a92565b5b600082013567ffffffffffffffff811115612f4757612f46612a97565b5b612f5384828501612ee5565b91505092915050565b612f6581612b21565b8114612f7057600080fd5b50565b600081359050612f8281612f5c565b92915050565b60008060408385031215612f9f57612f9e612a92565b5b6000612fad85828601612cdf565b9250506020612fbe85828601612f73565b9150509250929050565b600067ffffffffffffffff821115612fe357612fe2612de8565b5b612fec82612b9d565b9050602081019050919050565b600061300c61300784612fc8565b612e48565b90508281526020810184848401111561302857613027612de3565b5b613033848285612e94565b509392505050565b600082601f8301126130505761304f612dde565b5b8135613060848260208601612ff9565b91505092915050565b6000806000806080858703121561308357613082612a92565b5b600061309187828801612cdf565b94505060206130a287828801612cdf565b93505060406130b387828801612c2a565b925050606085013567ffffffffffffffff8111156130d4576130d3612a97565b5b6130e08782880161303b565b91505092959194509250565b6000806040838503121561310357613102612a92565b5b600061311185828601612cdf565b925050602061312285828601612cdf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061317357607f821691505b6020821081036131865761318561312c565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006131e8602183612b62565b91506131f38261318c565b604082019050919050565b60006020820190508181036000830152613217816131db565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b600061327a603e83612b62565b91506132858261321e565b604082019050919050565b600060208201905081810360008301526132a98161326d565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b600061330c602e83612b62565b9150613317826132b0565b604082019050919050565b6000602082019050818103600083015261333b816132ff565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061339e602b83612b62565b91506133a982613342565b604082019050919050565b600060208201905081810360008301526133cd81613391565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613430602c83612b62565b915061343b826133d4565b604082019050919050565b6000602082019050818103600083015261345f81613423565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134f77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134ba565b61350186836134ba565b95508019841693508086168417925050509392505050565b6000819050919050565b600061353e61353961353484612c09565b613519565b612c09565b9050919050565b6000819050919050565b61355883613523565b61356c61356482613545565b8484546134c7565b825550505050565b600090565b613581613574565b61358c81848461354f565b505050565b5b818110156135b0576135a5600082613579565b600181019050613592565b5050565b601f8211156135f5576135c681613495565b6135cf846134aa565b810160208510156135de578190505b6135f26135ea856134aa565b830182613591565b50505b505050565b600082821c905092915050565b6000613618600019846008026135fa565b1980831691505092915050565b60006136318383613607565b9150826002028217905092915050565b61364a82612b57565b67ffffffffffffffff81111561366357613662612de8565b5b61366d825461315b565b6136788282856135b4565b600060209050601f8311600181146136ab5760008415613699578287015190505b6136a38582613625565b86555061370b565b601f1984166136b986613495565b60005b828110156136e1578489015182556001820191506020850194506020810190506136bc565b868310156136fe57848901516136fa601f891682613607565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613749601883612b62565b915061375482613713565b602082019050919050565b600060208201905081810360008301526137788161373c565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006137db602983612b62565b91506137e68261377f565b604082019050919050565b6000602082019050818103600083015261380a816137ce565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061386d602f83612b62565b915061387882613811565b604082019050919050565b6000602082019050818103600083015261389c81613860565b9050919050565b600081905092915050565b60006138b982612b57565b6138c381856138a3565b93506138d3818560208601612b73565b80840191505092915050565b60006138eb82856138ae565b91506138f782846138ae565b91508190509392505050565b600081546139108161315b565b61391a81866138a3565b94506001821660008114613935576001811461394a5761397d565b60ff198316865281151582028601935061397d565b61395385613495565b60005b8381101561397557815481890152600182019150602081019050613956565b838801955050505b50505092915050565b600061399282866138ae565b915061399e82856138ae565b91506139aa8284613903565b9150819050949350505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006139ed601f83612b62565b91506139f8826139b7565b602082019050919050565b60006020820190508181036000830152613a1c816139e0565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613a59601e83612b62565b9150613a6482613a23565b602082019050919050565b60006020820190508181036000830152613a8881613a4c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ac982612c09565b9150613ad483612c09565b9250828201905080821115613aec57613aeb613a8f565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000613b28600983612b62565b9150613b3382613af2565b602082019050919050565b60006020820190508181036000830152613b5781613b1b565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e74204d63636d600082015250565b6000613b94602083612b62565b9150613b9f82613b5e565b602082019050919050565b60006020820190508181036000830152613bc381613b87565b9050919050565b7f457863656564656420746865206d6178696d756d20707572636861736520717560008201527f616e746974790000000000000000000000000000000000000000000000000000602082015250565b6000613c26602683612b62565b9150613c3182613bca565b604082019050919050565b60006020820190508181036000830152613c5581613c19565b9050919050565b6000613c6782612c09565b9150613c7283612c09565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cab57613caa613a8f565b5b828202905092915050565b7f77726f6e67206d696e742076616c756500000000000000000000000000000000600082015250565b6000613cec601083612b62565b9150613cf782613cb6565b602082019050919050565b60006020820190508181036000830152613d1b81613cdf565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d7e602683612b62565b9150613d8982613d22565b604082019050919050565b60006020820190508181036000830152613dad81613d71565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613e10602583612b62565b9150613e1b82613db4565b604082019050919050565b60006020820190508181036000830152613e3f81613e03565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ea2602483612b62565b9150613ead82613e46565b604082019050919050565b60006020820190508181036000830152613ed181613e95565b9050919050565b6000613ee382612c09565b9150613eee83612c09565b9250828203905081811115613f0657613f05613a8f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f42602083612b62565b9150613f4d82613f0c565b602082019050919050565b60006020820190508181036000830152613f7181613f35565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613fae601983612b62565b9150613fb982613f78565b602082019050919050565b60006020820190508181036000830152613fdd81613fa1565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614040603283612b62565b915061404b82613fe4565b604082019050919050565b6000602082019050818103600083015261406f81614033565b9050919050565b600061408182612c09565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036140b3576140b2613a8f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140f882612c09565b915061410383612c09565b925082614113576141126140be565b5b828204905092915050565b600061412982612c09565b915061413483612c09565b925082614144576141436140be565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006141768261414f565b614180818561415a565b9350614190818560208601612b73565b61419981612b9d565b840191505092915050565b60006080820190506141b96000830187612c9e565b6141c66020830186612c9e565b6141d36040830185612d34565b81810360608301526141e5818461416b565b905095945050505050565b6000815190506141ff81612ac8565b92915050565b60006020828403121561421b5761421a612a92565b5b6000614229848285016141f0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614297602083612b62565b91506142a282614261565b602082019050919050565b600060208201905081810360008301526142c68161428a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614303601c83612b62565b915061430e826142cd565b602082019050919050565b60006020820190508181036000830152614332816142f6565b905091905056fea2646970667358221220bafd1db7583957572fa5b79e25452d2863a4d00e6439c22770c59634a2b5432a64736f6c63430008100033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string):
Arg [1] : initNotRevealedUri (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


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.