ETH Price: $3,417.02 (+0.35%)
Gas: 7 Gwei

Token

Soapy Genesis (SG)
 

Overview

Max Total Supply

436 SG

Holders

386

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 SG
0x1929711a67499019160e7448ef3d5fa78c4c219e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Soapy Genesis is an avatar of the holder and a ticket to enter the future blockchain games of Soapy Finance. Join us on an adventurous journey and have a good time. Owning a Soapy Genesis NFT grants creativity, power, and integration into the Soapy Meta Ecosystem.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SoapyGenesis

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 21 : SoapyGenesis.sol
//SPDX-License-Identifier: MIT
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
pragma solidity ^0.8.0;

/*                                                                                                                                                                                      
                                                   
 .M"""bgd                                          
,MI    "Y                                          
`MMb.      ,pW"Wq.   ,6"Yb. `7MMpdMAo.`7M'   `MF'  
  `YMMNq. 6W'   `Wb 8)   MM   MM   `Wb  VA   ,V    
.     `MM 8M     M8  ,pm9MM   MM    M8   VA ,V     
Mb     dM YA.   ,A9 8M   MM   MM   ,AP    VVV      
P"Ybmmd"   `Ybmd9'  `Moo9^Yo. MMbmmd'     ,V       
                              MM         ,V        
                            .JMML.    OOb"         
*/

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract SoapyGenesis is ERC721Enumerable, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private nftCounter;

    string private baseURI;
    address private openSeaProxyRegAddr;
    bool private isOpenSeaProxyActive = true;

    uint256 public maxPerAddrLmt  = 10000;
    uint256 public constant maxSupply = 10000;
    uint256 public maxMintLmt = 10;

    uint256 public nftSalePrice = 0.1 ether;
    bool public isSaleActive = true;
    
    uint256 public maxWhitelisteds = 3000;
    uint256 public numClaimed = 0;
    uint256 public claimExpireAt = 1643673600;
    bytes32 public whitelistedMKRoot;
    bool public isClaimActive = true;

    uint256 public maxGifts = 500;
    uint256 public numGifts = 0;    
    
    mapping(address => bool) public claimed;

    constructor(
        address _openSeaProxyRegAddr,        
        string memory _baseURI,
        bytes32  _whitelistedMKRoot
    ) ERC721("Soapy Genesis", "SG") {
        openSeaProxyRegAddr = _openSeaProxyRegAddr;        
        baseURI = _baseURI;
        setMerkleRoot(_whitelistedMKRoot);        
    }

    // ============ ACCESS CONTROL/SANITY MODIFIERS ============

    modifier saleActive() {
        require(isSaleActive, "Public sale is not open");
        _;
    }

    modifier whitelistActive() {
        require(isClaimActive, "whitelist claim is not open");
        _;
    }

    modifier maxNFTsPerWallet(uint256 num) {
        require(balanceOf(msg.sender) + num <= maxPerAddrLmt, "Exceeding Max NFTs to hold");
        _;
    }

    modifier canMint(uint256 num) {
        require(num <= maxMintLmt, "Exceeding mint amount limit each time");
        
        require(
            totalSupply() + num <=
                maxSupply - maxGifts - maxWhitelisteds,
            "Not enough NFTs remaining to mint"
        );
        _;
    }

    modifier canClaim(uint256 num) {        
        require(
            numClaimed + num <= maxWhitelisteds,
            "Not enough NFTs remaining to claim or expire for claim"
        );
        
        require(
            totalSupply() + num <= maxSupply,
            "Not enough NFTs remaining to mint"
        );
        _;
    }

    modifier canGiftNFTs(uint256 num) {
        require(
            numGifts + num <= maxGifts,
            "Not enough NFTs remaining to gift"
        );
        require(
            totalSupply() + num <= maxSupply,
            "Not enough NFTs remaining to gift mint"
        );
        _;
    }

    modifier isCorrectPayment(uint256 price, uint256 num) {
        if (msg.sender != owner()) {
            require(
                price * num == msg.value,
                "Incorrect ETH value sent"
            );
        }
        _;
    }

    modifier isValidMerkleProof(bytes32[] calldata mkProof, address _address) {
        require(
            MerkleProof.verify(
                mkProof,
                whitelistedMKRoot,
                keccak256(abi.encodePacked(_address))
            ),
            "Address does not exist in list"
        );
        _;
    }

    // ============ PUBLIC FUNCTIONS FOR MINTING ============

    function mint(uint256 num)
        external
        payable
        nonReentrant
        isCorrectPayment(nftSalePrice, num)
        saleActive
        canMint(num)
        maxNFTsPerWallet(num)
    {
        for (uint256 i = 0; i < num; i++) {
            _safeMint(msg.sender, nextTokenId());
        }
    }

    function claim(bytes32[] calldata mkProof, address _address)
        external
        payable
        nonReentrant
        whitelistActive
        canClaim(1)        
        isValidMerkleProof(mkProof, _address)
    {
        
        require(!claimed[_address], "NFT already claimed by this wallet");

        claimed[_address] = true;
        numClaimed += 1;

        _safeMint(_address, nextTokenId());
    }

    // ============ PUBLIC READ-ONLY FUNCTIONS ============

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

    function isWhitelisted(bytes32[]  calldata mkProof, address _user) public view returns (bool){      
                        
        return MerkleProof.verify(
                mkProof,
                whitelistedMKRoot,
                keccak256(abi.encodePacked(_user))
            );
    }

    // ============ OWNER-ONLY ADMIN FUNCTIONS ============

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function setMaxMintLmt(uint256 _limit) public onlyOwner() {
        maxMintLmt = _limit;
    }

    function setMaxPerAddrLmt(uint256 _limit) public onlyOwner() {
        maxPerAddrLmt = _limit;
    }

    function setClaimExpireAt(uint256 _limit) public onlyOwner() {
        claimExpireAt = _limit;
    }

    // function to disable gasless listings for security in case
    // opensea ever shuts down or is compromised
    function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive)
        external
        onlyOwner
    {
        isOpenSeaProxyActive = _isOpenSeaProxyActive;
    }

    function setIsSaleActive(bool _active)
        external
        onlyOwner
    {
        isSaleActive = _active;
    }

    function setIsWhitelistedActive(bool _active)
        external
        onlyOwner
    {
        isClaimActive = _active;
    }

    function setMerkleRoot(bytes32 _root) public onlyOwner {
        whitelistedMKRoot =_root;
    }

    function reserveForGifting(uint256 _num)
        external
        nonReentrant
        onlyOwner
        canGiftNFTs(_num)
    {
        numGifts += _num;

        for (uint256 i = 0; i < _num; i++) {
            _mint(msg.sender, nextTokenId());
        }
    }

    function giftNFTs(address[] calldata addresses)
        external
        nonReentrant
        onlyOwner
        canGiftNFTs(addresses.length)
    {
        uint256 numToGift = addresses.length;
        numGifts += numToGift;

        for (uint256 i = 0; i < numToGift; i++) {
             // use mint rather than _safeMint here to reduce gas costs
            // and prevent this from failing in case of grief attempts
            _mint(addresses[i], nextTokenId());
        }
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function withdrawTokens(IERC20 token) public onlyOwner {
        uint256 balance = token.balanceOf(address(this));
        token.transfer(msg.sender, balance);
    }

    function releaseUnClaimedWhitelisted()
        external
        nonReentrant        
        onlyOwner
    {
        require(block.timestamp>=claimExpireAt, "unable to release due to not expired");
        maxWhitelisteds = numClaimed;
    }

    // ============ SUPPORTING FUNCTIONS ============

    function nextTokenId() private returns (uint256) {
        nftCounter.increment();
        return nftCounter.current();
    }

    // ============ FUNCTION OVERRIDES ============

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721Enumerable, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev Override isApprovedForAll to allowlist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Get a reference to OpenSea's proxy registry contract by instantiating
        // the contract using the already existing address.
        ProxyRegistry proxyRegistry = ProxyRegistry(
            openSeaProxyRegAddr
        );
        if (
            isOpenSeaProxyActive &&
            address(proxyRegistry.proxies(owner)) == operator
        ) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

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

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

    /**
     * @dev See {IERC165-royaltyInfo}.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(_exists(tokenId), "Non existent token");

        return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100));
    }
}

// These contract definitions are used to create a reference to the OpenSea
// ProxyRegistry contract by using the registry's address (see isApprovedForAll).
contract OwnableDelegateProxy {

}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

File 2 of 21 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

File 6 of 21 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 7 of 21 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 8 of 21 : 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 21 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 21 : 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 11 of 21 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 tokenId);

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 15 of 21 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

File 16 of 21 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 17 of 21 : 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 18 of 21 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 19 of 21 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

File 20 of 21 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

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

File 21 of 21 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_openSeaProxyRegAddr","type":"address"},{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"bytes32","name":"_whitelistedMKRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"mkProof","type":"bytes32[]"},{"internalType":"address","name":"_address","type":"address"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimExpireAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"giftNFTs","outputs":[],"stateMutability":"nonpayable","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":"isClaimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"mkProof","type":"bytes32[]"},{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGifts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintLmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddrLmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelisteds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numGifts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"releaseUnClaimedWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"reserveForGifting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setClaimExpireAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_active","type":"bool"}],"name":"setIsSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_active","type":"bool"}],"name":"setIsWhitelistedActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxMintLmt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerAddrLmt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistedMKRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600e805460ff60a01b1916600160a01b179055612710600f55600a60105567016345785d8a00006011556012805460ff199081166001908117909255610bb8601355600060148190556361f878006015556017805490921690921790556101f46018556019553480156200007757600080fd5b50604051620039e0380380620039e08339810160408190526200009a91620002c5565b604080518082018252600d81526c536f6170792047656e6573697360981b602080830191825283518085019094526002845261534760f01b908401528151919291620000e9916000916200021f565b508051620000ff9060019060208401906200021f565b5050506200011c620001166200016660201b60201c565b6200016a565b6001600b55600e80546001600160a01b0319166001600160a01b03851617905581516200015190600d9060208501906200021f565b506200015d81620001bc565b50505062000448565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001c662000166565b6001600160a01b0316620001d962000210565b6001600160a01b0316146200020b5760405162461bcd60e51b81526004016200020290620003c0565b60405180910390fd5b601655565b600a546001600160a01b031690565b8280546200022d90620003f5565b90600052602060002090601f0160209004810192826200025157600085556200029c565b82601f106200026c57805160ff19168380011785556200029c565b828001600101855582156200029c579182015b828111156200029c5782518255916020019190600101906200027f565b50620002aa929150620002ae565b5090565b5b80821115620002aa5760008155600101620002af565b600080600060608486031215620002da578283fd5b83516001600160a01b0381168114620002f1578384fd5b602085810151919450906001600160401b038082111562000310578485fd5b818701915087601f83011262000324578485fd5b81518181111562000339576200033962000432565b604051601f8201601f19168101850183811182821017156200035f576200035f62000432565b60405281815283820185018a101562000376578687fd5b8692505b818310156200039957838301850151818401860152918401916200037a565b81831115620003aa57868583830101525b8096505050505050604084015190509250925092565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200040a57607f821691505b602082108114156200042c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61358880620004586000396000f3fe6080604052600436106102c95760003560e01c80637ba6db1311610175578063b88d4fde116100dc578063debefaa611610095578063e985e9c51161006f578063e985e9c514610808578063eb0c5fbb14610828578063f2fde38b1461083d578063fa5d52ec1461085d576102c9565b8063debefaa6146107b3578063e36d666a146107d3578063e43082f7146107e8576102c9565b8063b88d4fde14610709578063c1b8701d14610729578063c87b56dd1461073e578063c884ef831461075e578063d2d65ff51461077e578063d5abeb011461079e576102c9565b806395d89b411161012e57806395d89b411461068257806398b94982146106975780639b8065f2146106ac5780639c2f2a42146106c1578063a0712d68146106d6578063a22cb465146106e9576102c9565b80637ba6db13146105fb5780637cb64759146106105780637fc278031461063057806388b4f2d3146106455780638cc6b383146106585780638da5cb5b1461066d576102c9565b80634018264d1161023457806355f804b3116101ed5780636352211e116101c75780636352211e146105865780636c3a9b4a146105a657806370a08231146105c6578063715018a6146105e6576102c9565b806355f804b314610531578063564566a8146105515780635c17e7f814610566576102c9565b80634018264d1461047a57806342842e0e1461048f578063438b6300146104af57806349df728c146104dc5780634df6bc13146104fc5780634f6ccce714610511576102c9565b80631adec022116102865780631adec022146103b757806323b872dd146103d75780632a55205a146103f75780632f745c591461042557806339087bd2146104455780633ccfd60b14610465576102c9565b806301ffc9a7146102ce57806306fdde0314610304578063081812fc14610326578063095ea7b314610353578063160417341461037557806318160ddd14610395575b600080fd5b3480156102da57600080fd5b506102ee6102e93660046128ac565b61087d565b6040516102fb9190612b74565b60405180910390f35b34801561031057600080fd5b506103196108aa565b6040516102fb9190612b88565b34801561033257600080fd5b50610346610341366004612894565b61093c565b6040516102fb9190612ac6565b34801561035f57600080fd5b5061037361036e36600461279c565b610988565b005b34801561038157600080fd5b50610373610390366004612894565b610a20565b3480156103a157600080fd5b506103aa610a64565b6040516102fb9190612b7f565b3480156103c357600080fd5b506103736103d2366004612894565b610a6a565b3480156103e357600080fd5b506103736103f23660046126b2565b610aae565b34801561040357600080fd5b5061041761041236600461295e565b610ae6565b6040516102fb929190612b17565b34801561043157600080fd5b506103aa61044036600461279c565b610b30565b34801561045157600080fd5b50610373610460366004612894565b610b85565b34801561047157600080fd5b50610373610bc9565b34801561048657600080fd5b506103aa610c3b565b34801561049b57600080fd5b506103736104aa3660046126b2565b610c41565b3480156104bb57600080fd5b506104cf6104ca36600461265e565b610c5c565b6040516102fb9190612b30565b3480156104e857600080fd5b506103736104f736600461265e565b610d1a565b34801561050857600080fd5b506103aa610e5b565b34801561051d57600080fd5b506103aa61052c366004612894565b610e61565b34801561053d57600080fd5b5061037361054c366004612900565b610ebc565b34801561055d57600080fd5b506102ee610f0e565b34801561057257600080fd5b506103736105813660046127c7565b610f17565b34801561059257600080fd5b506103466105a1366004612894565b61106e565b3480156105b257600080fd5b506103736105c1366004612894565b6110a3565b3480156105d257600080fd5b506103aa6105e136600461265e565b6111b9565b3480156105f257600080fd5b506103736111fd565b34801561060757600080fd5b506103aa611248565b34801561061c57600080fd5b5061037361062b366004612894565b61124e565b34801561063c57600080fd5b506102ee611292565b610373610653366004612807565b61129b565b34801561066457600080fd5b506103aa611467565b34801561067957600080fd5b5061034661146d565b34801561068e57600080fd5b5061031961147c565b3480156106a357600080fd5b5061037361148b565b3480156106b857600080fd5b506103aa611521565b3480156106cd57600080fd5b506103aa611527565b6103736106e4366004612894565b61152d565b3480156106f557600080fd5b5061037361070436600461276f565b61169f565b34801561071557600080fd5b506103736107243660046126f2565b6116b1565b34801561073557600080fd5b506103aa6116f0565b34801561074a57600080fd5b50610319610759366004612894565b6116f6565b34801561076a57600080fd5b506102ee61077936600461265e565b61174f565b34801561078a57600080fd5b5061037361079936600461285c565b611764565b3480156107aa57600080fd5b506103aa6117b6565b3480156107bf57600080fd5b506102ee6107ce366004612807565b6117bc565b3480156107df57600080fd5b506103aa611812565b3480156107f457600080fd5b5061037361080336600461285c565b611818565b34801561081457600080fd5b506102ee61082336600461267a565b611875565b34801561083457600080fd5b506103aa611941565b34801561084957600080fd5b5061037361085836600461265e565b611947565b34801561086957600080fd5b5061037361087836600461285c565b6119b8565b60006001600160e01b0319821663152a902d60e11b14806108a257506108a282611a0a565b90505b919050565b6060600080546108b99061346d565b80601f01602080910402602001604051908101604052809291908181526020018280546108e59061346d565b80156109325780601f1061090757610100808354040283529160200191610932565b820191906000526020600020905b81548152906001019060200180831161091557829003601f168201915b5050505050905090565b600061094782611a2f565b61096c5760405162461bcd60e51b81526004016109639061307f565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109938261106e565b9050806001600160a01b0316836001600160a01b031614156109c75760405162461bcd60e51b81526004016109639061318a565b806001600160a01b03166109d9611a4c565b6001600160a01b031614806109f557506109f581610823611a4c565b610a115760405162461bcd60e51b815260040161096390612eb7565b610a1b8383611a50565b505050565b610a28611a4c565b6001600160a01b0316610a3961146d565b6001600160a01b031614610a5f5760405162461bcd60e51b81526004016109639061310c565b600f55565b60085490565b610a72611a4c565b6001600160a01b0316610a8361146d565b6001600160a01b031614610aa95760405162461bcd60e51b81526004016109639061310c565b601555565b610abf610ab9611a4c565b82611abe565b610adb5760405162461bcd60e51b8152600401610963906131cb565b610a1b838383611b3b565b600080610af284611a2f565b610b0e5760405162461bcd60e51b8152600401610963906132f5565b30610b24610b1d856005611c68565b6064611c7b565b915091505b9250929050565b6000610b3b836111b9565b8210610b595760405162461bcd60e51b815260040161096390612b9b565b506001600160a01b03821660009081526006602090815260408083208484529091529020545b92915050565b610b8d611a4c565b6001600160a01b0316610b9e61146d565b6001600160a01b031614610bc45760405162461bcd60e51b81526004016109639061310c565b601055565b610bd1611a4c565b6001600160a01b0316610be261146d565b6001600160a01b031614610c085760405162461bcd60e51b81526004016109639061310c565b6040514790339082156108fc029083906000818181858888f19350505050158015610c37573d6000803e3d6000fd5b5050565b60185481565b610a1b838383604051806020016040528060008152506116b1565b60606000610c69836111b9565b905060008167ffffffffffffffff811115610c9457634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610cbd578160200160208202803683370190505b50905060005b82811015610d1257610cd58582610b30565b828281518110610cf557634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610d0a816134a8565b915050610cc3565b509392505050565b610d22611a4c565b6001600160a01b0316610d3361146d565b6001600160a01b031614610d595760405162461bcd60e51b81526004016109639061310c565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190610d88903090600401612ac6565b60206040518083038186803b158015610da057600080fd5b505afa158015610db4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd89190612946565b60405163a9059cbb60e01b81529091506001600160a01b0383169063a9059cbb90610e099033908590600401612b17565b602060405180830381600087803b158015610e2357600080fd5b505af1158015610e37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1b9190612878565b60195481565b6000610e6b610a64565b8210610e895760405162461bcd60e51b81526004016109639061321c565b60088281548110610eaa57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610ec4611a4c565b6001600160a01b0316610ed561146d565b6001600160a01b031614610efb5760405162461bcd60e51b81526004016109639061310c565b8051610c3790600d906020840190612513565b60125460ff1681565b6002600b541415610f3a5760405162461bcd60e51b815260040161096390613365565b6002600b55610f47611a4c565b6001600160a01b0316610f5861146d565b6001600160a01b031614610f7e5760405162461bcd60e51b81526004016109639061310c565b601854601954829190610f929083906133df565b1115610fb05760405162461bcd60e51b8152600401610963906130cb565b61271081610fbc610a64565b610fc691906133df565b1115610fe45760405162461bcd60e51b815260040161096390612e3a565b6019805483918291600090610ffa9084906133df565b90915550600090505b818110156110625761105085858381811061102e57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611043919061265e565b61104b611c87565b611ca2565b8061105a816134a8565b915050611003565b50506001600b55505050565b6000818152600260205260408120546001600160a01b0316806108a25760405162461bcd60e51b815260040161096390612f89565b6002600b5414156110c65760405162461bcd60e51b815260040161096390613365565b6002600b556110d3611a4c565b6001600160a01b03166110e461146d565b6001600160a01b03161461110a5760405162461bcd60e51b81526004016109639061310c565b806018548160195461111c91906133df565b111561113a5760405162461bcd60e51b8152600401610963906130cb565b61271081611146610a64565b61115091906133df565b111561116e5760405162461bcd60e51b815260040161096390612e3a565b816019600082825461118091906133df565b90915550600090505b828110156111af5761119d3361104b611c87565b806111a7816134a8565b915050611189565b50506001600b5550565b60006001600160a01b0382166111e15760405162461bcd60e51b815260040161096390612f3f565b506001600160a01b031660009081526003602052604090205490565b611205611a4c565b6001600160a01b031661121661146d565b6001600160a01b03161461123c5760405162461bcd60e51b81526004016109639061310c565b6112466000611d81565b565b60105481565b611256611a4c565b6001600160a01b031661126761146d565b6001600160a01b03161461128d5760405162461bcd60e51b81526004016109639061310c565b601655565b60175460ff1681565b6002600b5414156112be5760405162461bcd60e51b815260040161096390613365565b6002600b5560175460ff166112e55760405162461bcd60e51b815260040161096390612fd2565b6001601354816014546112f891906133df565b11156113165760405162461bcd60e51b81526004016109639061329f565b61271081611322610a64565b61132c91906133df565b111561134a5760405162461bcd60e51b815260040161096390613009565b8383836113b483838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601654604051909250611399915085906020016129e5565b60405160208183030381529060405280519060200120611dd3565b6113d05760405162461bcd60e51b815260040161096390612e80565b6001600160a01b0385166000908152601a602052604090205460ff16156114095760405162461bcd60e51b815260040161096390612c7e565b6001600160a01b0385166000908152601a60205260408120805460ff1916600190811790915560148054919290916114429084906133df565b90915550611459905085611454611c87565b611de9565b50506001600b555050505050565b60115481565b600a546001600160a01b031690565b6060600180546108b99061346d565b6002600b5414156114ae5760405162461bcd60e51b815260040161096390613365565b6002600b556114bb611a4c565b6001600160a01b03166114cc61146d565b6001600160a01b0316146114f25760405162461bcd60e51b81526004016109639061310c565b6015544210156115145760405162461bcd60e51b815260040161096390613321565b6014546013556001600b55565b60135481565b60145481565b6002600b5414156115505760405162461bcd60e51b815260040161096390613365565b6002600b556011548161156161146d565b6001600160a01b0316336001600160a01b0316146115a15734611584828461340b565b146115a15760405162461bcd60e51b815260040161096390613268565b60125460ff166115c35760405162461bcd60e51b81526004016109639061339c565b826010548111156115e65760405162461bcd60e51b815260040161096390612d72565b6013546018546115f89061271061342a565b611602919061342a565b8161160b610a64565b61161591906133df565b11156116335760405162461bcd60e51b815260040161096390613009565b83600f5481611641336111b9565b61164b91906133df565b11156116695760405162461bcd60e51b815260040161096390612e03565b60005b858110156116925761168033611454611c87565b8061168a816134a8565b91505061166c565b50506001600b5550505050565b610c376116aa611a4c565b8383611e03565b6116c26116bc611a4c565b83611abe565b6116de5760405162461bcd60e51b8152600401610963906131cb565b6116ea84848484611ea6565b50505050565b60165481565b606061170182611a2f565b61171d5760405162461bcd60e51b815260040161096390612f14565b600d61172883611ed9565b604051602001611739929190612a10565b6040516020818303038152906040529050919050565b601a6020526000908152604090205460ff1681565b61176c611a4c565b6001600160a01b031661177d61146d565b6001600160a01b0316146117a35760405162461bcd60e51b81526004016109639061310c565b6012805460ff1916911515919091179055565b61271081565b600061180a84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601654604051909250611399915086906020016129e5565b949350505050565b60155481565b611820611a4c565b6001600160a01b031661183161146d565b6001600160a01b0316146118575760405162461bcd60e51b81526004016109639061310c565b600e8054911515600160a01b0260ff60a01b19909216919091179055565b600e546000906001600160a01b03811690600160a01b900460ff1680156119285750826001600160a01b0316816001600160a01b031663c4552791866040518263ffffffff1660e01b81526004016118cd9190612ac6565b60206040518083038186803b1580156118e557600080fd5b505afa1580156118f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191d91906128e4565b6001600160a01b0316145b15611937576001915050610b7f565b61180a8484611ff4565b600f5481565b61194f611a4c565b6001600160a01b031661196061146d565b6001600160a01b0316146119865760405162461bcd60e51b81526004016109639061310c565b6001600160a01b0381166119ac5760405162461bcd60e51b815260040161096390612c38565b6119b581611d81565b50565b6119c0611a4c565b6001600160a01b03166119d161146d565b6001600160a01b0316146119f75760405162461bcd60e51b81526004016109639061310c565b6017805460ff1916911515919091179055565b60006001600160e01b0319821663780e9d6360e01b14806108a257506108a282612022565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a858261106e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ac982611a2f565b611ae55760405162461bcd60e51b815260040161096390612db7565b6000611af08361106e565b9050806001600160a01b0316846001600160a01b03161480611b2b5750836001600160a01b0316611b208461093c565b6001600160a01b0316145b8061180a575061180a8185611875565b826001600160a01b0316611b4e8261106e565b6001600160a01b031614611b745760405162461bcd60e51b815260040161096390613141565b6001600160a01b038216611b9a5760405162461bcd60e51b815260040161096390612cf7565b611ba5838383612062565b611bb0600082611a50565b6001600160a01b0383166000908152600360205260408120805460019290611bd990849061342a565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c079084906133df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611c74828461340b565b9392505050565b6000611c7482846133f7565b6000611c93600c6120eb565b611c9d600c6120f4565b905090565b6001600160a01b038216611cc85760405162461bcd60e51b81526004016109639061304a565b611cd181611a2f565b15611cee5760405162461bcd60e51b815260040161096390612cc0565b611cfa60008383612062565b6001600160a01b0382166000908152600360205260408120805460019290611d239084906133df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611de085846120f8565b14949350505050565b610c378282604051806020016040528060008152506121a8565b816001600160a01b0316836001600160a01b03161415611e355760405162461bcd60e51b815260040161096390612d3b565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611e99908590612b74565b60405180910390a3505050565b611eb1848484611b3b565b611ebd848484846121db565b6116ea5760405162461bcd60e51b815260040161096390612be6565b606081611efe57506040805180820190915260018152600360fc1b60208201526108a5565b8160005b8115611f285780611f12816134a8565b9150611f219050600a836133f7565b9150611f02565b60008167ffffffffffffffff811115611f5157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f7b576020820181803683370190505b5090505b841561180a57611f9060018361342a565b9150611f9d600a866134c3565b611fa89060306133df565b60f81b818381518110611fcb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611fed600a866133f7565b9450611f7f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b148061205357506001600160e01b03198216635b5e139f60e01b145b806108a257506108a2826122f6565b61206d838383610a1b565b6001600160a01b038316612089576120848161230f565b6120ac565b816001600160a01b0316836001600160a01b0316146120ac576120ac8382612353565b6001600160a01b0382166120c8576120c3816123f0565b610a1b565b826001600160a01b0316826001600160a01b031614610a1b57610a1b82826124c9565b80546001019055565b5490565b600081815b8451811015610d1257600085828151811061212857634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161216957828160405160200161214c929190612a02565b604051602081830303815290604052805190602001209250612195565b808360405160200161217c929190612a02565b6040516020818303038152906040528051906020012092505b50806121a0816134a8565b9150506120fd565b6121b28383611ca2565b6121bf60008484846121db565b610a1b5760405162461bcd60e51b815260040161096390612be6565b60006121ef846001600160a01b031661250d565b156122eb57836001600160a01b031663150b7a0261220b611a4c565b8786866040518563ffffffff1660e01b815260040161222d9493929190612ada565b602060405180830381600087803b15801561224757600080fd5b505af1925050508015612277575060408051601f3d908101601f19168201909252612274918101906128c8565b60015b6122d1573d8080156122a5576040519150601f19603f3d011682016040523d82523d6000602084013e6122aa565b606091505b5080516122c95760405162461bcd60e51b815260040161096390612be6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061180a565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001612360846111b9565b61236a919061342a565b6000838152600760205260409020549091508082146123bd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906124029060019061342a565b6000838152600960205260408120546008805493945090928490811061243857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061246757634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124ad57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006124d4836111b9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b82805461251f9061346d565b90600052602060002090601f0160209004810192826125415760008555612587565b82601f1061255a57805160ff1916838001178555612587565b82800160010185558215612587579182015b8281111561258757825182559160200191906001019061256c565b50612593929150612597565b5090565b5b808211156125935760008155600101612598565b600067ffffffffffffffff808411156125c7576125c7613503565b604051601f8501601f1916810160200182811182821017156125eb576125eb613503565b60405284815291508183850186101561260357600080fd5b8484602083013760006020868301015250509392505050565b60008083601f84011261262d578081fd5b50813567ffffffffffffffff811115612644578182fd5b6020830191508360208083028501011115610b2957600080fd5b60006020828403121561266f578081fd5b8135611c7481613519565b6000806040838503121561268c578081fd5b823561269781613519565b915060208301356126a781613519565b809150509250929050565b6000806000606084860312156126c6578081fd5b83356126d181613519565b925060208401356126e181613519565b929592945050506040919091013590565b60008060008060808587031215612707578081fd5b843561271281613519565b9350602085013561272281613519565b925060408501359150606085013567ffffffffffffffff811115612744578182fd5b8501601f81018713612754578182fd5b612763878235602084016125ac565b91505092959194509250565b60008060408385031215612781578182fd5b823561278c81613519565b915060208301356126a78161352e565b600080604083850312156127ae578182fd5b82356127b981613519565b946020939093013593505050565b600080602083850312156127d9578182fd5b823567ffffffffffffffff8111156127ef578283fd5b6127fb8582860161261c565b90969095509350505050565b60008060006040848603121561281b578283fd5b833567ffffffffffffffff811115612831578384fd5b61283d8682870161261c565b909450925050602084013561285181613519565b809150509250925092565b60006020828403121561286d578081fd5b8135611c748161352e565b600060208284031215612889578081fd5b8151611c748161352e565b6000602082840312156128a5578081fd5b5035919050565b6000602082840312156128bd578081fd5b8135611c748161353c565b6000602082840312156128d9578081fd5b8151611c748161353c565b6000602082840312156128f5578081fd5b8151611c7481613519565b600060208284031215612911578081fd5b813567ffffffffffffffff811115612927578182fd5b8201601f81018413612937578182fd5b61180a848235602084016125ac565b600060208284031215612957578081fd5b5051919050565b60008060408385031215612970578182fd5b50508035926020909101359150565b60008151808452612997816020860160208601613441565b601f01601f19169290920160200192915050565b600081516129bd818560208601613441565b9290920192915050565b64173539b7b760d91b815260050190565b602f60f81b815260010190565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b8254600090819060028104600180831680612a2c57607f831692505b6020808410821415612a4c57634e487b7160e01b87526022600452602487fd5b818015612a605760018114612a7157612a9d565b60ff19861689528489019650612a9d565b612a7a8b6133d3565b885b86811015612a955781548b820152908501908301612a7c565b505084890196505b505050505050612abd612ab8612ab2836129d8565b866129ab565b6129c7565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b0d9083018461297f565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b81811015612b6857835183529284019291840191600101612b4c565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611c74602083018461297f565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f4e465420616c726561647920636c61696d656420627920746869732077616c6c604082015261195d60f21b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526025908201527f457863656564696e67206d696e7420616d6f756e74206c696d697420656163686040820152642074696d6560d81b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601a908201527f457863656564696e67204d6178204e46547320746f20686f6c64000000000000604082015260600190565b60208082526026908201527f4e6f7420656e6f756768204e4654732072656d61696e696e6720746f206769666040820152651d081b5a5b9d60d21b606082015260800190565b6020808252601e908201527f4164647265737320646f6573206e6f7420657869737420696e206c6973740000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601b908201527f77686974656c69737420636c61696d206973206e6f74206f70656e0000000000604082015260600190565b60208082526021908201527f4e6f7420656e6f756768204e4654732072656d61696e696e6720746f206d696e6040820152601d60fa1b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526021908201527f4e6f7420656e6f756768204e4654732072656d61696e696e6720746f206769666040820152601d60fa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526018908201527f496e636f7272656374204554482076616c75652073656e740000000000000000604082015260600190565b60208082526036908201527f4e6f7420656e6f756768204e4654732072656d61696e696e6720746f20636c61604082015275696d206f722065787069726520666f7220636c61696d60501b606082015260800190565b6020808252601290820152712737b71032bc34b9ba32b73a103a37b5b2b760711b604082015260600190565b60208082526024908201527f756e61626c6520746f2072656c656173652064756520746f206e6f74206578706040820152631a5c995960e21b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526017908201527f5075626c69632073616c65206973206e6f74206f70656e000000000000000000604082015260600190565b60009081526020902090565b600082198211156133f2576133f26134d7565b500190565b600082613406576134066134ed565b500490565b6000816000190483118215151615613425576134256134d7565b500290565b60008282101561343c5761343c6134d7565b500390565b60005b8381101561345c578181015183820152602001613444565b838111156116ea5750506000910152565b60028104600182168061348157607f821691505b602082108114156134a257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134bc576134bc6134d7565b5060010190565b6000826134d2576134d26134ed565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146119b557600080fd5b80151581146119b557600080fd5b6001600160e01b0319811681146119b557600080fdfea2646970667358221220cd50c5f5b109cc7a0c8c510204510bf3cd88534161b69e6d82f98a5468323c0c64736f6c63430008000033000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000060e3b752ab27edf531ecdfdb9dcd603cc76663d06ddc6e66edbfaf6fc510b03fa10000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d4e7634475a375175657a65337666653947506b64456e4b737838467835755942564a7a4d43664475417242470000000000000000000000

Deployed Bytecode

0x6080604052600436106102c95760003560e01c80637ba6db1311610175578063b88d4fde116100dc578063debefaa611610095578063e985e9c51161006f578063e985e9c514610808578063eb0c5fbb14610828578063f2fde38b1461083d578063fa5d52ec1461085d576102c9565b8063debefaa6146107b3578063e36d666a146107d3578063e43082f7146107e8576102c9565b8063b88d4fde14610709578063c1b8701d14610729578063c87b56dd1461073e578063c884ef831461075e578063d2d65ff51461077e578063d5abeb011461079e576102c9565b806395d89b411161012e57806395d89b411461068257806398b94982146106975780639b8065f2146106ac5780639c2f2a42146106c1578063a0712d68146106d6578063a22cb465146106e9576102c9565b80637ba6db13146105fb5780637cb64759146106105780637fc278031461063057806388b4f2d3146106455780638cc6b383146106585780638da5cb5b1461066d576102c9565b80634018264d1161023457806355f804b3116101ed5780636352211e116101c75780636352211e146105865780636c3a9b4a146105a657806370a08231146105c6578063715018a6146105e6576102c9565b806355f804b314610531578063564566a8146105515780635c17e7f814610566576102c9565b80634018264d1461047a57806342842e0e1461048f578063438b6300146104af57806349df728c146104dc5780634df6bc13146104fc5780634f6ccce714610511576102c9565b80631adec022116102865780631adec022146103b757806323b872dd146103d75780632a55205a146103f75780632f745c591461042557806339087bd2146104455780633ccfd60b14610465576102c9565b806301ffc9a7146102ce57806306fdde0314610304578063081812fc14610326578063095ea7b314610353578063160417341461037557806318160ddd14610395575b600080fd5b3480156102da57600080fd5b506102ee6102e93660046128ac565b61087d565b6040516102fb9190612b74565b60405180910390f35b34801561031057600080fd5b506103196108aa565b6040516102fb9190612b88565b34801561033257600080fd5b50610346610341366004612894565b61093c565b6040516102fb9190612ac6565b34801561035f57600080fd5b5061037361036e36600461279c565b610988565b005b34801561038157600080fd5b50610373610390366004612894565b610a20565b3480156103a157600080fd5b506103aa610a64565b6040516102fb9190612b7f565b3480156103c357600080fd5b506103736103d2366004612894565b610a6a565b3480156103e357600080fd5b506103736103f23660046126b2565b610aae565b34801561040357600080fd5b5061041761041236600461295e565b610ae6565b6040516102fb929190612b17565b34801561043157600080fd5b506103aa61044036600461279c565b610b30565b34801561045157600080fd5b50610373610460366004612894565b610b85565b34801561047157600080fd5b50610373610bc9565b34801561048657600080fd5b506103aa610c3b565b34801561049b57600080fd5b506103736104aa3660046126b2565b610c41565b3480156104bb57600080fd5b506104cf6104ca36600461265e565b610c5c565b6040516102fb9190612b30565b3480156104e857600080fd5b506103736104f736600461265e565b610d1a565b34801561050857600080fd5b506103aa610e5b565b34801561051d57600080fd5b506103aa61052c366004612894565b610e61565b34801561053d57600080fd5b5061037361054c366004612900565b610ebc565b34801561055d57600080fd5b506102ee610f0e565b34801561057257600080fd5b506103736105813660046127c7565b610f17565b34801561059257600080fd5b506103466105a1366004612894565b61106e565b3480156105b257600080fd5b506103736105c1366004612894565b6110a3565b3480156105d257600080fd5b506103aa6105e136600461265e565b6111b9565b3480156105f257600080fd5b506103736111fd565b34801561060757600080fd5b506103aa611248565b34801561061c57600080fd5b5061037361062b366004612894565b61124e565b34801561063c57600080fd5b506102ee611292565b610373610653366004612807565b61129b565b34801561066457600080fd5b506103aa611467565b34801561067957600080fd5b5061034661146d565b34801561068e57600080fd5b5061031961147c565b3480156106a357600080fd5b5061037361148b565b3480156106b857600080fd5b506103aa611521565b3480156106cd57600080fd5b506103aa611527565b6103736106e4366004612894565b61152d565b3480156106f557600080fd5b5061037361070436600461276f565b61169f565b34801561071557600080fd5b506103736107243660046126f2565b6116b1565b34801561073557600080fd5b506103aa6116f0565b34801561074a57600080fd5b50610319610759366004612894565b6116f6565b34801561076a57600080fd5b506102ee61077936600461265e565b61174f565b34801561078a57600080fd5b5061037361079936600461285c565b611764565b3480156107aa57600080fd5b506103aa6117b6565b3480156107bf57600080fd5b506102ee6107ce366004612807565b6117bc565b3480156107df57600080fd5b506103aa611812565b3480156107f457600080fd5b5061037361080336600461285c565b611818565b34801561081457600080fd5b506102ee61082336600461267a565b611875565b34801561083457600080fd5b506103aa611941565b34801561084957600080fd5b5061037361085836600461265e565b611947565b34801561086957600080fd5b5061037361087836600461285c565b6119b8565b60006001600160e01b0319821663152a902d60e11b14806108a257506108a282611a0a565b90505b919050565b6060600080546108b99061346d565b80601f01602080910402602001604051908101604052809291908181526020018280546108e59061346d565b80156109325780601f1061090757610100808354040283529160200191610932565b820191906000526020600020905b81548152906001019060200180831161091557829003601f168201915b5050505050905090565b600061094782611a2f565b61096c5760405162461bcd60e51b81526004016109639061307f565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109938261106e565b9050806001600160a01b0316836001600160a01b031614156109c75760405162461bcd60e51b81526004016109639061318a565b806001600160a01b03166109d9611a4c565b6001600160a01b031614806109f557506109f581610823611a4c565b610a115760405162461bcd60e51b815260040161096390612eb7565b610a1b8383611a50565b505050565b610a28611a4c565b6001600160a01b0316610a3961146d565b6001600160a01b031614610a5f5760405162461bcd60e51b81526004016109639061310c565b600f55565b60085490565b610a72611a4c565b6001600160a01b0316610a8361146d565b6001600160a01b031614610aa95760405162461bcd60e51b81526004016109639061310c565b601555565b610abf610ab9611a4c565b82611abe565b610adb5760405162461bcd60e51b8152600401610963906131cb565b610a1b838383611b3b565b600080610af284611a2f565b610b0e5760405162461bcd60e51b8152600401610963906132f5565b30610b24610b1d856005611c68565b6064611c7b565b915091505b9250929050565b6000610b3b836111b9565b8210610b595760405162461bcd60e51b815260040161096390612b9b565b506001600160a01b03821660009081526006602090815260408083208484529091529020545b92915050565b610b8d611a4c565b6001600160a01b0316610b9e61146d565b6001600160a01b031614610bc45760405162461bcd60e51b81526004016109639061310c565b601055565b610bd1611a4c565b6001600160a01b0316610be261146d565b6001600160a01b031614610c085760405162461bcd60e51b81526004016109639061310c565b6040514790339082156108fc029083906000818181858888f19350505050158015610c37573d6000803e3d6000fd5b5050565b60185481565b610a1b838383604051806020016040528060008152506116b1565b60606000610c69836111b9565b905060008167ffffffffffffffff811115610c9457634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610cbd578160200160208202803683370190505b50905060005b82811015610d1257610cd58582610b30565b828281518110610cf557634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610d0a816134a8565b915050610cc3565b509392505050565b610d22611a4c565b6001600160a01b0316610d3361146d565b6001600160a01b031614610d595760405162461bcd60e51b81526004016109639061310c565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190610d88903090600401612ac6565b60206040518083038186803b158015610da057600080fd5b505afa158015610db4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd89190612946565b60405163a9059cbb60e01b81529091506001600160a01b0383169063a9059cbb90610e099033908590600401612b17565b602060405180830381600087803b158015610e2357600080fd5b505af1158015610e37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1b9190612878565b60195481565b6000610e6b610a64565b8210610e895760405162461bcd60e51b81526004016109639061321c565b60088281548110610eaa57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610ec4611a4c565b6001600160a01b0316610ed561146d565b6001600160a01b031614610efb5760405162461bcd60e51b81526004016109639061310c565b8051610c3790600d906020840190612513565b60125460ff1681565b6002600b541415610f3a5760405162461bcd60e51b815260040161096390613365565b6002600b55610f47611a4c565b6001600160a01b0316610f5861146d565b6001600160a01b031614610f7e5760405162461bcd60e51b81526004016109639061310c565b601854601954829190610f929083906133df565b1115610fb05760405162461bcd60e51b8152600401610963906130cb565b61271081610fbc610a64565b610fc691906133df565b1115610fe45760405162461bcd60e51b815260040161096390612e3a565b6019805483918291600090610ffa9084906133df565b90915550600090505b818110156110625761105085858381811061102e57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611043919061265e565b61104b611c87565b611ca2565b8061105a816134a8565b915050611003565b50506001600b55505050565b6000818152600260205260408120546001600160a01b0316806108a25760405162461bcd60e51b815260040161096390612f89565b6002600b5414156110c65760405162461bcd60e51b815260040161096390613365565b6002600b556110d3611a4c565b6001600160a01b03166110e461146d565b6001600160a01b03161461110a5760405162461bcd60e51b81526004016109639061310c565b806018548160195461111c91906133df565b111561113a5760405162461bcd60e51b8152600401610963906130cb565b61271081611146610a64565b61115091906133df565b111561116e5760405162461bcd60e51b815260040161096390612e3a565b816019600082825461118091906133df565b90915550600090505b828110156111af5761119d3361104b611c87565b806111a7816134a8565b915050611189565b50506001600b5550565b60006001600160a01b0382166111e15760405162461bcd60e51b815260040161096390612f3f565b506001600160a01b031660009081526003602052604090205490565b611205611a4c565b6001600160a01b031661121661146d565b6001600160a01b03161461123c5760405162461bcd60e51b81526004016109639061310c565b6112466000611d81565b565b60105481565b611256611a4c565b6001600160a01b031661126761146d565b6001600160a01b03161461128d5760405162461bcd60e51b81526004016109639061310c565b601655565b60175460ff1681565b6002600b5414156112be5760405162461bcd60e51b815260040161096390613365565b6002600b5560175460ff166112e55760405162461bcd60e51b815260040161096390612fd2565b6001601354816014546112f891906133df565b11156113165760405162461bcd60e51b81526004016109639061329f565b61271081611322610a64565b61132c91906133df565b111561134a5760405162461bcd60e51b815260040161096390613009565b8383836113b483838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601654604051909250611399915085906020016129e5565b60405160208183030381529060405280519060200120611dd3565b6113d05760405162461bcd60e51b815260040161096390612e80565b6001600160a01b0385166000908152601a602052604090205460ff16156114095760405162461bcd60e51b815260040161096390612c7e565b6001600160a01b0385166000908152601a60205260408120805460ff1916600190811790915560148054919290916114429084906133df565b90915550611459905085611454611c87565b611de9565b50506001600b555050505050565b60115481565b600a546001600160a01b031690565b6060600180546108b99061346d565b6002600b5414156114ae5760405162461bcd60e51b815260040161096390613365565b6002600b556114bb611a4c565b6001600160a01b03166114cc61146d565b6001600160a01b0316146114f25760405162461bcd60e51b81526004016109639061310c565b6015544210156115145760405162461bcd60e51b815260040161096390613321565b6014546013556001600b55565b60135481565b60145481565b6002600b5414156115505760405162461bcd60e51b815260040161096390613365565b6002600b556011548161156161146d565b6001600160a01b0316336001600160a01b0316146115a15734611584828461340b565b146115a15760405162461bcd60e51b815260040161096390613268565b60125460ff166115c35760405162461bcd60e51b81526004016109639061339c565b826010548111156115e65760405162461bcd60e51b815260040161096390612d72565b6013546018546115f89061271061342a565b611602919061342a565b8161160b610a64565b61161591906133df565b11156116335760405162461bcd60e51b815260040161096390613009565b83600f5481611641336111b9565b61164b91906133df565b11156116695760405162461bcd60e51b815260040161096390612e03565b60005b858110156116925761168033611454611c87565b8061168a816134a8565b91505061166c565b50506001600b5550505050565b610c376116aa611a4c565b8383611e03565b6116c26116bc611a4c565b83611abe565b6116de5760405162461bcd60e51b8152600401610963906131cb565b6116ea84848484611ea6565b50505050565b60165481565b606061170182611a2f565b61171d5760405162461bcd60e51b815260040161096390612f14565b600d61172883611ed9565b604051602001611739929190612a10565b6040516020818303038152906040529050919050565b601a6020526000908152604090205460ff1681565b61176c611a4c565b6001600160a01b031661177d61146d565b6001600160a01b0316146117a35760405162461bcd60e51b81526004016109639061310c565b6012805460ff1916911515919091179055565b61271081565b600061180a84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601654604051909250611399915086906020016129e5565b949350505050565b60155481565b611820611a4c565b6001600160a01b031661183161146d565b6001600160a01b0316146118575760405162461bcd60e51b81526004016109639061310c565b600e8054911515600160a01b0260ff60a01b19909216919091179055565b600e546000906001600160a01b03811690600160a01b900460ff1680156119285750826001600160a01b0316816001600160a01b031663c4552791866040518263ffffffff1660e01b81526004016118cd9190612ac6565b60206040518083038186803b1580156118e557600080fd5b505afa1580156118f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191d91906128e4565b6001600160a01b0316145b15611937576001915050610b7f565b61180a8484611ff4565b600f5481565b61194f611a4c565b6001600160a01b031661196061146d565b6001600160a01b0316146119865760405162461bcd60e51b81526004016109639061310c565b6001600160a01b0381166119ac5760405162461bcd60e51b815260040161096390612c38565b6119b581611d81565b50565b6119c0611a4c565b6001600160a01b03166119d161146d565b6001600160a01b0316146119f75760405162461bcd60e51b81526004016109639061310c565b6017805460ff1916911515919091179055565b60006001600160e01b0319821663780e9d6360e01b14806108a257506108a282612022565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a858261106e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ac982611a2f565b611ae55760405162461bcd60e51b815260040161096390612db7565b6000611af08361106e565b9050806001600160a01b0316846001600160a01b03161480611b2b5750836001600160a01b0316611b208461093c565b6001600160a01b0316145b8061180a575061180a8185611875565b826001600160a01b0316611b4e8261106e565b6001600160a01b031614611b745760405162461bcd60e51b815260040161096390613141565b6001600160a01b038216611b9a5760405162461bcd60e51b815260040161096390612cf7565b611ba5838383612062565b611bb0600082611a50565b6001600160a01b0383166000908152600360205260408120805460019290611bd990849061342a565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c079084906133df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611c74828461340b565b9392505050565b6000611c7482846133f7565b6000611c93600c6120eb565b611c9d600c6120f4565b905090565b6001600160a01b038216611cc85760405162461bcd60e51b81526004016109639061304a565b611cd181611a2f565b15611cee5760405162461bcd60e51b815260040161096390612cc0565b611cfa60008383612062565b6001600160a01b0382166000908152600360205260408120805460019290611d239084906133df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611de085846120f8565b14949350505050565b610c378282604051806020016040528060008152506121a8565b816001600160a01b0316836001600160a01b03161415611e355760405162461bcd60e51b815260040161096390612d3b565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611e99908590612b74565b60405180910390a3505050565b611eb1848484611b3b565b611ebd848484846121db565b6116ea5760405162461bcd60e51b815260040161096390612be6565b606081611efe57506040805180820190915260018152600360fc1b60208201526108a5565b8160005b8115611f285780611f12816134a8565b9150611f219050600a836133f7565b9150611f02565b60008167ffffffffffffffff811115611f5157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f7b576020820181803683370190505b5090505b841561180a57611f9060018361342a565b9150611f9d600a866134c3565b611fa89060306133df565b60f81b818381518110611fcb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611fed600a866133f7565b9450611f7f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b148061205357506001600160e01b03198216635b5e139f60e01b145b806108a257506108a2826122f6565b61206d838383610a1b565b6001600160a01b038316612089576120848161230f565b6120ac565b816001600160a01b0316836001600160a01b0316146120ac576120ac8382612353565b6001600160a01b0382166120c8576120c3816123f0565b610a1b565b826001600160a01b0316826001600160a01b031614610a1b57610a1b82826124c9565b80546001019055565b5490565b600081815b8451811015610d1257600085828151811061212857634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161216957828160405160200161214c929190612a02565b604051602081830303815290604052805190602001209250612195565b808360405160200161217c929190612a02565b6040516020818303038152906040528051906020012092505b50806121a0816134a8565b9150506120fd565b6121b28383611ca2565b6121bf60008484846121db565b610a1b5760405162461bcd60e51b815260040161096390612be6565b60006121ef846001600160a01b031661250d565b156122eb57836001600160a01b031663150b7a0261220b611a4c565b8786866040518563ffffffff1660e01b815260040161222d9493929190612ada565b602060405180830381600087803b15801561224757600080fd5b505af1925050508015612277575060408051601f3d908101601f19168201909252612274918101906128c8565b60015b6122d1573d8080156122a5576040519150601f19603f3d011682016040523d82523d6000602084013e6122aa565b606091505b5080516122c95760405162461bcd60e51b815260040161096390612be6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061180a565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001612360846111b9565b61236a919061342a565b6000838152600760205260409020549091508082146123bd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906124029060019061342a565b6000838152600960205260408120546008805493945090928490811061243857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061246757634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124ad57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006124d4836111b9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b82805461251f9061346d565b90600052602060002090601f0160209004810192826125415760008555612587565b82601f1061255a57805160ff1916838001178555612587565b82800160010185558215612587579182015b8281111561258757825182559160200191906001019061256c565b50612593929150612597565b5090565b5b808211156125935760008155600101612598565b600067ffffffffffffffff808411156125c7576125c7613503565b604051601f8501601f1916810160200182811182821017156125eb576125eb613503565b60405284815291508183850186101561260357600080fd5b8484602083013760006020868301015250509392505050565b60008083601f84011261262d578081fd5b50813567ffffffffffffffff811115612644578182fd5b6020830191508360208083028501011115610b2957600080fd5b60006020828403121561266f578081fd5b8135611c7481613519565b6000806040838503121561268c578081fd5b823561269781613519565b915060208301356126a781613519565b809150509250929050565b6000806000606084860312156126c6578081fd5b83356126d181613519565b925060208401356126e181613519565b929592945050506040919091013590565b60008060008060808587031215612707578081fd5b843561271281613519565b9350602085013561272281613519565b925060408501359150606085013567ffffffffffffffff811115612744578182fd5b8501601f81018713612754578182fd5b612763878235602084016125ac565b91505092959194509250565b60008060408385031215612781578182fd5b823561278c81613519565b915060208301356126a78161352e565b600080604083850312156127ae578182fd5b82356127b981613519565b946020939093013593505050565b600080602083850312156127d9578182fd5b823567ffffffffffffffff8111156127ef578283fd5b6127fb8582860161261c565b90969095509350505050565b60008060006040848603121561281b578283fd5b833567ffffffffffffffff811115612831578384fd5b61283d8682870161261c565b909450925050602084013561285181613519565b809150509250925092565b60006020828403121561286d578081fd5b8135611c748161352e565b600060208284031215612889578081fd5b8151611c748161352e565b6000602082840312156128a5578081fd5b5035919050565b6000602082840312156128bd578081fd5b8135611c748161353c565b6000602082840312156128d9578081fd5b8151611c748161353c565b6000602082840312156128f5578081fd5b8151611c7481613519565b600060208284031215612911578081fd5b813567ffffffffffffffff811115612927578182fd5b8201601f81018413612937578182fd5b61180a848235602084016125ac565b600060208284031215612957578081fd5b5051919050565b60008060408385031215612970578182fd5b50508035926020909101359150565b60008151808452612997816020860160208601613441565b601f01601f19169290920160200192915050565b600081516129bd818560208601613441565b9290920192915050565b64173539b7b760d91b815260050190565b602f60f81b815260010190565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b8254600090819060028104600180831680612a2c57607f831692505b6020808410821415612a4c57634e487b7160e01b87526022600452602487fd5b818015612a605760018114612a7157612a9d565b60ff19861689528489019650612a9d565b612a7a8b6133d3565b885b86811015612a955781548b820152908501908301612a7c565b505084890196505b505050505050612abd612ab8612ab2836129d8565b866129ab565b6129c7565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b0d9083018461297f565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b81811015612b6857835183529284019291840191600101612b4c565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611c74602083018461297f565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f4e465420616c726561647920636c61696d656420627920746869732077616c6c604082015261195d60f21b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526025908201527f457863656564696e67206d696e7420616d6f756e74206c696d697420656163686040820152642074696d6560d81b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601a908201527f457863656564696e67204d6178204e46547320746f20686f6c64000000000000604082015260600190565b60208082526026908201527f4e6f7420656e6f756768204e4654732072656d61696e696e6720746f206769666040820152651d081b5a5b9d60d21b606082015260800190565b6020808252601e908201527f4164647265737320646f6573206e6f7420657869737420696e206c6973740000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601b908201527f77686974656c69737420636c61696d206973206e6f74206f70656e0000000000604082015260600190565b60208082526021908201527f4e6f7420656e6f756768204e4654732072656d61696e696e6720746f206d696e6040820152601d60fa1b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526021908201527f4e6f7420656e6f756768204e4654732072656d61696e696e6720746f206769666040820152601d60fa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526018908201527f496e636f7272656374204554482076616c75652073656e740000000000000000604082015260600190565b60208082526036908201527f4e6f7420656e6f756768204e4654732072656d61696e696e6720746f20636c61604082015275696d206f722065787069726520666f7220636c61696d60501b606082015260800190565b6020808252601290820152712737b71032bc34b9ba32b73a103a37b5b2b760711b604082015260600190565b60208082526024908201527f756e61626c6520746f2072656c656173652064756520746f206e6f74206578706040820152631a5c995960e21b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526017908201527f5075626c69632073616c65206973206e6f74206f70656e000000000000000000604082015260600190565b60009081526020902090565b600082198211156133f2576133f26134d7565b500190565b600082613406576134066134ed565b500490565b6000816000190483118215151615613425576134256134d7565b500290565b60008282101561343c5761343c6134d7565b500390565b60005b8381101561345c578181015183820152602001613444565b838111156116ea5750506000910152565b60028104600182168061348157607f821691505b602082108114156134a257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134bc576134bc6134d7565b5060010190565b6000826134d2576134d26134ed565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146119b557600080fd5b80151581146119b557600080fd5b6001600160e01b0319811681146119b557600080fdfea2646970667358221220cd50c5f5b109cc7a0c8c510204510bf3cd88534161b69e6d82f98a5468323c0c64736f6c63430008000033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000060e3b752ab27edf531ecdfdb9dcd603cc76663d06ddc6e66edbfaf6fc510b03fa10000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d4e7634475a375175657a65337666653947506b64456e4b737838467835755942564a7a4d43664475417242470000000000000000000000

-----Decoded View---------------
Arg [0] : _openSeaProxyRegAddr (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [1] : _baseURI (string): ipfs://QmNv4GZ7Queze3vfe9GPkdEnKsx8Fx5uYBVJzMCfDuArBG
Arg [2] : _whitelistedMKRoot (bytes32): 0xe3b752ab27edf531ecdfdb9dcd603cc76663d06ddc6e66edbfaf6fc510b03fa1

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : e3b752ab27edf531ecdfdb9dcd603cc76663d06ddc6e66edbfaf6fc510b03fa1
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [4] : 697066733a2f2f516d4e7634475a375175657a65337666653947506b64456e4b
Arg [5] : 737838467835755942564a7a4d43664475417242470000000000000000000000


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.