ETH Price: $2,447.84 (-0.87%)

Token

The Cubes Of Infinity (TCOI)
 

Overview

Max Total Supply

250 TCOI

Holders

137

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 TCOI
0x54050b20120520dcbf9f94e4921525d31f7408ae
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TheCubesOfInfinity

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : The Cubes Of Infinity.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;


//β–‘β–€β–ˆβ–€β–‘β–ˆβ–‘β–ˆβ–‘β–ˆβ–€β–€β–‘β–‘β–‘β–ˆβ–„β–ˆβ–‘β–€β–ˆβ–€β–‘β–ˆβ–€β–ˆβ–‘β–ˆβ–€β–„β–‘β–‘β–‘β–ˆβ–€β–„β–‘β–ˆβ–‘β–‘β–‘β–ˆβ–€β–ˆβ–‘β–ˆβ–€β–€β–‘β–ˆβ–‘β–ˆβ–‘β–€β–‘β–ˆβ–€β–€                    
//β–‘β–‘β–ˆβ–‘β–‘β–ˆβ–€β–ˆβ–‘β–ˆβ–€β–€β–‘β–‘β–‘β–ˆβ–‘β–ˆβ–‘β–‘β–ˆβ–‘β–‘β–ˆβ–‘β–ˆβ–‘β–ˆβ–‘β–ˆβ–‘β–‘β–‘β–ˆβ–€β–„β–‘β–ˆβ–‘β–‘β–‘β–ˆβ–‘β–ˆβ–‘β–ˆβ–‘β–‘β–‘β–ˆβ–€β–„β–‘β–‘β–‘β–€β–€β–ˆ                    
//β–‘β–‘β–€β–‘β–‘β–€β–‘β–€β–‘β–€β–€β–€β–‘β–‘β–‘β–€β–‘β–€β–‘β–€β–€β–€β–‘β–€β–‘β–€β–‘β–€β–€β–‘β–‘β–‘β–‘β–€β–€β–‘β–‘β–€β–€β–€β–‘β–€β–€β–€β–‘β–€β–€β–€β–‘β–€β–‘β–€β–‘β–‘β–‘β–€β–€β–€                    
//β–‘β–€β–ˆβ–€β–‘β–ˆβ–‘β–ˆβ–‘β–ˆβ–€β–€β–‘β–‘β–‘β–ˆβ–€β–€β–‘β–ˆβ–‘β–ˆβ–‘β–ˆβ–€β–„β–‘β–ˆβ–€β–€β–‘β–ˆβ–€β–€β–‘β–‘β–‘β–ˆβ–€β–ˆβ–‘β–ˆβ–€β–€β–‘β–‘β–‘β–€β–ˆβ–€β–‘β–ˆβ–€β–ˆβ–‘β–ˆβ–€β–€β–‘β–€β–ˆβ–€β–‘β–ˆβ–€β–ˆβ–‘β–€β–ˆβ–€β–‘β–€β–ˆβ–€β–‘β–ˆβ–‘β–ˆ
//β–‘β–‘β–ˆβ–‘β–‘β–ˆβ–€β–ˆβ–‘β–ˆβ–€β–€β–‘β–‘β–‘β–ˆβ–‘β–‘β–‘β–ˆβ–‘β–ˆβ–‘β–ˆβ–€β–„β–‘β–ˆβ–€β–€β–‘β–€β–€β–ˆβ–‘β–‘β–‘β–ˆβ–‘β–ˆβ–‘β–ˆβ–€β–€β–‘β–‘β–‘β–‘β–ˆβ–‘β–‘β–ˆβ–‘β–ˆβ–‘β–ˆβ–€β–€β–‘β–‘β–ˆβ–‘β–‘β–ˆβ–‘β–ˆβ–‘β–‘β–ˆβ–‘β–‘β–‘β–ˆβ–‘β–‘β–‘β–ˆβ–‘
//β–‘β–‘β–€β–‘β–‘β–€β–‘β–€β–‘β–€β–€β–€β–‘β–‘β–‘β–€β–€β–€β–‘β–€β–€β–€β–‘β–€β–€β–‘β–‘β–€β–€β–€β–‘β–€β–€β–€β–‘β–‘β–‘β–€β–€β–€β–‘β–€β–‘β–‘β–‘β–‘β–‘β–€β–€β–€β–‘β–€β–‘β–€β–‘β–€β–‘β–‘β–‘β–€β–€β–€β–‘β–€β–‘β–€β–‘β–€β–€β–€β–‘β–‘β–€β–‘β–‘β–‘β–€β–‘


import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
 
contract TheCubesOfInfinity is ERC721, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;
    Counters.Counter private supply;
 
    uint256 public constant maxSupply = 250;
    uint256 public totalSupply;
    uint256 public constant maxMintPerTx = 10;
    uint256 public constant totalMintablePresale = 2;
    uint256 public publicSalePrice = 0.12 ether;
    uint256 public preSalePrice = 0.06 ether;
    uint256 public totalSupplyRemaining = maxSupply;
    uint256 public batchSize = 130;
    uint256 public batchCount;
    string public notRevealedUri;
    string public baseURI;
    bool public mintable = false;
    bool public preSaleMintable = false;
    bool public isRevealed = false;
    mapping(address => bool) public isWhiteListed;
    mapping(address => uint256) public addressPresaleBalance;
 
    event Mintable(bool mintable);
    event PreSaleMintable(bool preSaleMintable);
    event NotRevealedURI(string notRevealedUri);
    event BaseURI(string baseURI);
    event BatchSize(uint256 batchSize);
    event BatchCount(uint256 batchCount);
    event AddToWhiteList(address[] accounts);
    event RemoveFromWhiteList(address account);
 
    constructor(
    string memory _initNotRevealedURI
   
    ) ERC721("The Cubes Of Infinity", "TCOI") {
        setNotRevealedURI(_initNotRevealedURI);
        supply.increment();
    }
 
    modifier isMintable() {
        if (msg.sender != owner())
        require(mintable, "'The Cubes Of Infinity' is not mintable on public sale now.");
        _;
    }
 
    modifier isPreSaleMintable() {
        require(preSaleMintable, "'The Cubes Of Infinity' is not mintable on presale now.");
        _;
    }
 
    modifier isNotExceedMaxMintPerTx(uint256 amount) {
        require(
            amount <= maxMintPerTx,
            "Mint amount of 'The Cubes Of Infinity' exceeds max limit per transaction for public sale."
        );
        _;
    }
 
    modifier isNotExceedAvailableSupply(uint256 amount) {
        require(
            batchCount + amount <= batchSize,
            "Not enough 'The Cubes Of Infinity' to mint. Please check your amount."
        );
        _;
    }
 
   modifier isPaymentSufficientPublicSale(uint256 amount) {
        require(
            msg.value == amount * publicSalePrice,
            "Not enough ETH transferred to mint a 'The Cubes Of Infinity'."
        );
        _;
    }

    modifier isPaymentSufficientPreSale(uint256 amount) {
        require(
            msg.value == amount * preSalePrice,
            "Not enough ETH transferred to mint a 'The Cubes Of Infinity'."
        );
        _;
    }
 
    modifier isWhiteList() {
        require(
            isWhiteListed[msg.sender],
            "You are not on the whitelist for 'The Cubes Of Infinity' presale."
        );
        _;
    }
    
    //Functions

    function preSaleMint(uint256 amount)
        external
        payable
        isPreSaleMintable
        isWhiteList
        isNotExceedAvailableSupply(amount)
        isPaymentSufficientPreSale(amount)
    {
        if (msg.sender != owner()) {
        if (preSaleMintable == true) {
            uint256 ownerMintedCount = addressPresaleBalance[msg.sender];
            require(ownerMintedCount + amount <= totalMintablePresale, "max 'The Cubes of Infinity' per address exceeded for presale");
        }
    }
        for (uint256 index = 1; index <= amount; index++){
        uint256 id = supply.current();
        addressPresaleBalance[msg.sender]++;
        _safeMint(msg.sender, id);
        supply.increment();
        totalSupplyRemaining--;
        batchCount++;
        totalSupply++;
    }
    }
 
    function mint(uint256 amount)
        external
        payable
        isMintable
        isNotExceedMaxMintPerTx(amount)
        isNotExceedAvailableSupply(amount)
        isPaymentSufficientPublicSale(amount)
    {
        for (uint256 index = 1; index <= amount; index++) {
            uint256 id = supply.current();
            _safeMint(msg.sender, id);
            supply.increment();
            totalSupplyRemaining--;
            batchCount++;
            totalSupply++;
        }
    }
   
    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
   
    if (isRevealed == false) {
        return notRevealedUri;
    }
 
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString()))
        : "";
    }

    function setPublicSalePrice(uint256 _newPrice) external onlyOwner {
        publicSalePrice = _newPrice;
    }
 
    function setMintable(bool _mintable) external onlyOwner {
        mintable = _mintable;
 
        emit Mintable(mintable);
    }
 
    function setPreSaleMintable(bool _preSaleMintable) external onlyOwner {
        preSaleMintable = _preSaleMintable;
 
        emit PreSaleMintable(preSaleMintable);
    }
 
    function setBatchSize(uint256 _batchSize) external onlyOwner {
        batchSize = _batchSize;
 
        emit BatchSize(batchSize);
    }
 
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
 
        emit NotRevealedURI(_notRevealedURI);
    }

    function reveal(bool _state) external onlyOwner {
        isRevealed = _state;
    }
 
    function setBaseURI(string memory _URI) public onlyOwner {
        baseURI = _URI;
 
        emit BaseURI(baseURI);
    }
 
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
 
    function withdraw() external onlyOwner {
        (bool dev, ) = payable(0xEDB8150008916A0c777E34BB996Da853F052bD17).call{value: address(this).balance * 15 / 100}(""); 
    require(dev);
        (bool creatorx, ) = payable(0xA02Cf45566E91b5EFCF6eAfd402Bd885c61253F6).call{value: address(this).balance * 18 / 100}(""); 
    require(creatorx);
        (bool creatory, ) = payable(0xb0Ca7169CC440DEf187243ECf411B34aB75eCA01).call{value: address(this).balance * 50 / 100}("");
    require(creatory);
        (bool creatorz, ) = payable(0xEBfe1ab93D1122E065adCaFD8C3174261e8E726F).call{value: address(this).balance}("");
    require(creatorz);
    }
   
    function addToWhiteList(address[] memory _addresses)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < _addresses.length; i++) {
            isWhiteListed[_addresses[i]] = true;
        }
 
        emit AddToWhiteList(_addresses);
    }

    // This function reserve 30 Cubes for the team to use for gifts & giveaways.
	// @dev For One Time Use Only.
	// @param reserve Mint first 30 Non-Fungible Tokens of The Cubes Of Infinity.
    function DevMint() 
        external 
        onlyOwner {
        uint256 _totalSupply =  0;
        uint256 i;
        for (i = 1; i < 31; i++) {
            _safeMint(msg.sender, _totalSupply + i);
            supply.increment();
            batchCount++;
            totalSupply++;
            totalSupplyRemaining--;
        }
    }
}

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

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

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 12 : Counters.sol
// SPDX-License-Identifier: MIT

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 5 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 7 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initNotRevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"AddToWhiteList","type":"event"},{"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":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"BaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"batchCount","type":"uint256"}],"name":"BatchCount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"batchSize","type":"uint256"}],"name":"BatchSize","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"mintable","type":"bool"}],"name":"Mintable","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"notRevealedUri","type":"string"}],"name":"NotRevealedURI","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":false,"internalType":"bool","name":"preSaleMintable","type":"bool"}],"name":"PreSaleMintable","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"RemoveFromWhiteList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DevMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressPresaleBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batchCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleMintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_batchSize","type":"uint256"}],"name":"setBatchSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mintable","type":"bool"}],"name":"setMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_preSaleMintable","type":"bool"}],"name":"setPreSaleMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMintablePresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526701aa535d3d0c000060095566d529ae9e860000600a5560fa600b556082600c556010805462ffffff191690553480156200003e57600080fd5b5060405162002f0c38038062002f0c8339810160408190526200006191620002d4565b604080518082018252601581527f546865204375626573204f6620496e66696e697479000000000000000000000060208083019182528351808501909452600484526354434f4960e01b908401528151919291620000c2916000916200022e565b508051620000d89060019060208401906200022e565b505050620000f5620000ef6200011e60201b60201c565b62000122565b620001008162000174565b6200011760076200022560201b62001a731760201c565b5062000447565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001d35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001e890600e9060208401906200022e565b507ff53a6797d03bf6831670eb0a3330727b2dac7243e8283aefee1d701f4e197c02816040516200021a91906200038c565b60405180910390a150565b80546001019055565b8280546200023c90620003f4565b90600052602060002090601f016020900481019282620002605760008555620002ab565b82601f106200027b57805160ff1916838001178555620002ab565b82800160010185558215620002ab579182015b82811115620002ab5782518255916020019190600101906200028e565b50620002b9929150620002bd565b5090565b5b80821115620002b95760008155600101620002be565b600060208284031215620002e757600080fd5b81516001600160401b0380821115620002ff57600080fd5b818401915084601f8301126200031457600080fd5b81518181111562000329576200032962000431565b604051601f8201601f19908116603f0116810190838211818310171562000354576200035462000431565b816040528281528760208487010111156200036e57600080fd5b62000381836020830160208801620003c1565b979650505050505050565b6020815260008251806020840152620003ad816040850160208701620003c1565b601f01601f19169190910160400192915050565b60005b83811015620003de578181015183820152602001620003c4565b83811115620003ee576000848401525b50505050565b600181811c908216806200040957607f821691505b602082108114156200042b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612ab580620004576000396000f3fe6080604052600436106102675760003560e01c8063715018a611610144578063b88d4fde116100b6578063e4fb59541161007a578063e4fb5954146106da578063e757c17d146106fa578063e985e9c514610710578063f2c4ce1e14610759578063f2fde38b14610779578063f4daaba11461079957600080fd5b8063b88d4fde1461065b578063c87b56dd1461067b578063d5abeb011461069b578063dc88a26a146106b0578063de7fcb1d146106c557600080fd5b80638da5cb5b116101085780638da5cb5b146105bf578063940cd05b146105dd57806395d89b41146105fd5780639b6860c814610612578063a0712d6814610628578063a22cb4651461063b57600080fd5b8063715018a61461052a578063740d73f31461053f5780637835c6351461055f578063791a2519146105725780638096e8981461059257600080fd5b80633abc710d116101dd57806355f804b3116101a157806355f804b314610465578063576f35e3146104855780636352211e146104a55780636c0360eb146104c55780636f9170f6146104da57806370a082311461050a57600080fd5b80633abc710d146103d75780633ccfd60b146103f657806342842e0e1461040b5780634bf365df1461042b57806354214f691461044557600080fd5b8063095ea7b31161022f578063095ea7b3146103345780630f6cf3511461035657806318160ddd1461036b57806323b872dd14610381578063285d70d4146103a15780632a33f553146103c157600080fd5b806301ffc9a71461026c57806306f13056146102a157806306fdde03146102c5578063081812fc146102e7578063081c8c441461031f575b600080fd5b34801561027857600080fd5b5061028c6102873660046124f5565b6107af565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b7600d5481565b604051908152602001610298565b3480156102d157600080fd5b506102da610801565b6040516102989190612676565b3480156102f357600080fd5b50610307610302366004612578565b610893565b6040516001600160a01b039091168152602001610298565b34801561032b57600080fd5b506102da61092d565b34801561034057600080fd5b5061035461034f3660046123fc565b6109bb565b005b34801561036257600080fd5b506102b7600281565b34801561037757600080fd5b506102b760085481565b34801561038d57600080fd5b5061035461039c36600461231a565b610ad1565b3480156103ad57600080fd5b506103546103bc3660046124da565b610b02565b3480156103cd57600080fd5b506102b7600b5481565b3480156103e357600080fd5b5060105461028c90610100900460ff1681565b34801561040257600080fd5b50610354610b7a565b34801561041757600080fd5b5061035461042636600461231a565b610d8a565b34801561043757600080fd5b5060105461028c9060ff1681565b34801561045157600080fd5b5060105461028c9062010000900460ff1681565b34801561047157600080fd5b5061035461048036600461252f565b610da5565b34801561049157600080fd5b506103546104a0366004612578565b610e13565b3480156104b157600080fd5b506103076104c0366004612578565b610e72565b3480156104d157600080fd5b506102da610ee9565b3480156104e657600080fd5b5061028c6104f53660046122cc565b60116020526000908152604090205460ff1681565b34801561051657600080fd5b506102b76105253660046122cc565b610ef6565b34801561053657600080fd5b50610354610f7d565b34801561054b57600080fd5b5061035461055a366004612426565b610fb3565b61035461056d366004612578565b611075565b34801561057e57600080fd5b5061035461058d366004612578565b61133b565b34801561059e57600080fd5b506102b76105ad3660046122cc565b60126020526000908152604090205481565b3480156105cb57600080fd5b506006546001600160a01b0316610307565b3480156105e957600080fd5b506103546105f83660046124da565b61136a565b34801561060957600080fd5b506102da6113b0565b34801561061e57600080fd5b506102b760095481565b610354610636366004612578565b6113bf565b34801561064757600080fd5b506103546106563660046123d2565b6115cd565b34801561066757600080fd5b50610354610676366004612356565b611692565b34801561068757600080fd5b506102da610696366004612578565b6116c4565b3480156106a757600080fd5b506102b760fa81565b3480156106bc57600080fd5b50610354611841565b3480156106d157600080fd5b506102b7600a81565b3480156106e657600080fd5b506103546106f53660046124da565b6118f0565b34801561070657600080fd5b506102b7600a5481565b34801561071c57600080fd5b5061028c61072b3660046122e7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561076557600080fd5b5061035461077436600461252f565b61196b565b34801561078557600080fd5b506103546107943660046122cc565b6119d8565b3480156107a557600080fd5b506102b7600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107e057506001600160e01b03198216635b5e139f60e01b145b806107fb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610810906129a7565b80601f016020809104026020016040519081016040528092919081815260200182805461083c906129a7565b80156108895780601f1061085e57610100808354040283529160200191610889565b820191906000526020600020905b81548152906001019060200180831161086c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600e805461093a906129a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610966906129a7565b80156109b35780601f10610988576101008083540402835291602001916109b3565b820191906000526020600020905b81548152906001019060200180831161099657829003601f168201915b505050505081565b60006109c682610e72565b9050806001600160a01b0316836001600160a01b03161415610a345760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610908565b336001600160a01b0382161480610a505750610a50813361072b565b610ac25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610908565b610acc8383611a7c565b505050565b610adb3382611aea565b610af75760405162461bcd60e51b815260040161090890612880565b610acc838383611be1565b6006546001600160a01b03163314610b2c5760405162461bcd60e51b81526004016109089061284b565b6010805460ff191682151590811790915560405160ff909116151581527f376fb9037f5cd4338df0a05e4b353c0c01adbc9a440d6db61d829606a8bec978906020015b60405180910390a150565b6006546001600160a01b03163314610ba45760405162461bcd60e51b81526004016109089061284b565b600073edb8150008916a0c777e34bb996da853f052bd176064610bc847600f61292e565b610bd2919061291a565b604051600081818185875af1925050503d8060008114610c0e576040519150601f19603f3d011682016040523d82523d6000602084013e610c13565b606091505b5050905080610c2157600080fd5b600073a02cf45566e91b5efcf6eafd402bd885c61253f66064610c4547601261292e565b610c4f919061291a565b604051600081818185875af1925050503d8060008114610c8b576040519150601f19603f3d011682016040523d82523d6000602084013e610c90565b606091505b5050905080610c9e57600080fd5b600073b0ca7169cc440def187243ecf411b34ab75eca016064610cc247603261292e565b610ccc919061291a565b604051600081818185875af1925050503d8060008114610d08576040519150601f19603f3d011682016040523d82523d6000602084013e610d0d565b606091505b5050905080610d1b57600080fd5b60405160009073ebfe1ab93d1122e065adcafd8c3174261e8e726f9047908381818185875af1925050503d8060008114610d71576040519150601f19603f3d011682016040523d82523d6000602084013e610d76565b606091505b5050905080610d8457600080fd5b50505050565b610acc83838360405180602001604052806000815250611692565b6006546001600160a01b03163314610dcf5760405162461bcd60e51b81526004016109089061284b565b8051610de290600f9060208401906121af565b507f01e56a02aca7f26a28165a040851ba78f30282b55ca81c63a804cdc1e2dcea72600f604051610b6f9190612689565b6006546001600160a01b03163314610e3d5760405162461bcd60e51b81526004016109089061284b565b600c8190556040518181527f3e06105a4d5b471765e9078f56be602c552b5e5ef2d85843cb10d218ae2d982290602001610b6f565b6000818152600260205260408120546001600160a01b0316806107fb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610908565b600f805461093a906129a7565b60006001600160a01b038216610f615760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610908565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610fa75760405162461bcd60e51b81526004016109089061284b565b610fb16000611d81565b565b6006546001600160a01b03163314610fdd5760405162461bcd60e51b81526004016109089061284b565b60005b81518110156110455760016011600084848151811061100157611001612a3d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061103d816129e2565b915050610fe0565b507f71354119b132684f658833d4561b1d5ed6e72ca782dbcb6fcd8addfb7261207e81604051610b6f9190612629565b601054610100900460ff166110f25760405162461bcd60e51b815260206004820152603760248201527f27546865204375626573204f6620496e66696e69747927206973206e6f74206d60448201527f696e7461626c65206f6e2070726573616c65206e6f772e0000000000000000006064820152608401610908565b3360009081526011602052604090205460ff166111815760405162461bcd60e51b815260206004820152604160248201527f596f7520617265206e6f74206f6e207468652077686974656c69737420666f7260448201527f2027546865204375626573204f6620496e66696e697479272070726573616c656064820152601760f91b608482015260a401610908565b80600c5481600d546111939190612902565b11156111b15760405162461bcd60e51b815260040161090890612783565b81600a54816111c0919061292e565b34146111de5760405162461bcd60e51b8152600401610908906127ee565b6006546001600160a01b031633146112985760105460ff61010090910416151560011415611298573360009081526012602052604090205460026112228583612902565b11156112965760405162461bcd60e51b815260206004820152603c60248201527f6d61782027546865204375626573206f6620496e66696e69747927207065722060448201527f6164647265737320657863656564656420666f722070726573616c65000000006064820152608401610908565b505b60015b838111610d845760006112ad60075490565b3360009081526012602052604081208054929350906112cb836129e2565b91905055506112da3382611dd3565b6112e8600780546001019055565b600b80549060006112f883612990565b9091555050600d805490600061130d836129e2565b909155505060088054906000611322836129e2565b9190505550508080611333906129e2565b91505061129b565b6006546001600160a01b031633146113655760405162461bcd60e51b81526004016109089061284b565b600955565b6006546001600160a01b031633146113945760405162461bcd60e51b81526004016109089061284b565b60108054911515620100000262ff000019909216919091179055565b606060018054610810906129a7565b6006546001600160a01b031633146114495760105460ff166114495760405162461bcd60e51b815260206004820152603b60248201527f27546865204375626573204f6620496e66696e69747927206973206e6f74206d60448201527f696e7461626c65206f6e207075626c69632073616c65206e6f772e00000000006064820152608401610908565b80600a8111156114e75760405162461bcd60e51b815260206004820152605960248201527f4d696e7420616d6f756e74206f662027546865204375626573204f6620496e6660448201527f696e697479272065786365656473206d6178206c696d6974207065722074726160648201527f6e73616374696f6e20666f72207075626c69632073616c652e00000000000000608482015260a401610908565b81600c5481600d546114f99190612902565b11156115175760405162461bcd60e51b815260040161090890612783565b8260095481611526919061292e565b34146115445760405162461bcd60e51b8152600401610908906127ee565b60015b8481116115c657600061155960075490565b90506115653382611dd3565b611573600780546001019055565b600b805490600061158383612990565b9091555050600d8054906000611598836129e2565b9091555050600880549060006115ad836129e2565b91905055505080806115be906129e2565b915050611547565b5050505050565b6001600160a01b0382163314156116265760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610908565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61169c3383611aea565b6116b85760405162461bcd60e51b815260040161090890612880565b610d8484848484611ded565b6000818152600260205260409020546060906001600160a01b03166117435760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610908565b60105462010000900460ff166117e557600e8054611760906129a7565b80601f016020809104026020016040519081016040528092919081815260200182805461178c906129a7565b80156117d95780601f106117ae576101008083540402835291602001916117d9565b820191906000526020600020905b8154815290600101906020018083116117bc57829003601f168201915b50505050509050919050565b60006117ef611e20565b9050600081511161180f576040518060200160405280600081525061183a565b8061181984611e2f565b60405160200161182a9291906125bd565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461186b5760405162461bcd60e51b81526004016109089061284b565b600060015b601f8110156118ec5761188c336118878385612902565b611dd3565b61189a600780546001019055565b600d80549060006118aa836129e2565b9091555050600880549060006118bf836129e2565b9091555050600b80549060006118d483612990565b919050555080806118e4906129e2565b915050611870565b5050565b6006546001600160a01b0316331461191a5760405162461bcd60e51b81526004016109089061284b565b6010805461ff0019166101008315158102919091179182905560405160ff9190920416151581527f40fa0a2d4f13c850215b9029bddbd7af5a8104c35e6b471cc2bc734519df7f7c90602001610b6f565b6006546001600160a01b031633146119955760405162461bcd60e51b81526004016109089061284b565b80516119a890600e9060208401906121af565b507ff53a6797d03bf6831670eb0a3330727b2dac7243e8283aefee1d701f4e197c0281604051610b6f9190612676565b6006546001600160a01b03163314611a025760405162461bcd60e51b81526004016109089061284b565b6001600160a01b038116611a675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610908565b611a7081611d81565b50565b80546001019055565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ab182610e72565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b635760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610908565b6000611b6e83610e72565b9050806001600160a01b0316846001600160a01b03161480611ba95750836001600160a01b0316611b9e84610893565b6001600160a01b0316145b80611bd957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bf482610e72565b6001600160a01b031614611c5c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610908565b6001600160a01b038216611cbe5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610908565b611cc9600082611a7c565b6001600160a01b0383166000908152600360205260408120805460019290611cf290849061294d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d20908490612902565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6118ec828260405180602001604052806000815250611f2d565b611df8848484611be1565b611e0484848484611f60565b610d845760405162461bcd60e51b815260040161090890612731565b6060600f8054610810906129a7565b606081611e535750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e7d5780611e67816129e2565b9150611e769050600a8361291a565b9150611e57565b60008167ffffffffffffffff811115611e9857611e98612a53565b6040519080825280601f01601f191660200182016040528015611ec2576020820181803683370190505b5090505b8415611bd957611ed760018361294d565b9150611ee4600a866129fd565b611eef906030612902565b60f81b818381518110611f0457611f04612a3d565b60200101906001600160f81b031916908160001a905350611f26600a8661291a565b9450611ec6565b611f37838361206d565b611f446000848484611f60565b610acc5760405162461bcd60e51b815260040161090890612731565b60006001600160a01b0384163b1561206257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fa49033908990889088906004016125ec565b602060405180830381600087803b158015611fbe57600080fd5b505af1925050508015611fee575060408051601f3d908101601f19168201909252611feb91810190612512565b60015b612048573d80801561201c576040519150601f19603f3d011682016040523d82523d6000602084013e612021565b606091505b5080516120405760405162461bcd60e51b815260040161090890612731565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bd9565b506001949350505050565b6001600160a01b0382166120c35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610908565b6000818152600260205260409020546001600160a01b0316156121285760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610908565b6001600160a01b0382166000908152600360205260408120805460019290612151908490612902565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121bb906129a7565b90600052602060002090601f0160209004810192826121dd5760008555612223565b82601f106121f657805160ff1916838001178555612223565b82800160010185558215612223579182015b82811115612223578251825591602001919060010190612208565b5061222f929150612233565b5090565b5b8082111561222f5760008155600101612234565b600067ffffffffffffffff83111561226257612262612a53565b612275601f8401601f19166020016128d1565b905082815283838301111561228957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146122b757600080fd5b919050565b803580151581146122b757600080fd5b6000602082840312156122de57600080fd5b61183a826122a0565b600080604083850312156122fa57600080fd5b612303836122a0565b9150612311602084016122a0565b90509250929050565b60008060006060848603121561232f57600080fd5b612338846122a0565b9250612346602085016122a0565b9150604084013590509250925092565b6000806000806080858703121561236c57600080fd5b612375856122a0565b9350612383602086016122a0565b925060408501359150606085013567ffffffffffffffff8111156123a657600080fd5b8501601f810187136123b757600080fd5b6123c687823560208401612248565b91505092959194509250565b600080604083850312156123e557600080fd5b6123ee836122a0565b9150612311602084016122bc565b6000806040838503121561240f57600080fd5b612418836122a0565b946020939093013593505050565b6000602080838503121561243957600080fd5b823567ffffffffffffffff8082111561245157600080fd5b818501915085601f83011261246557600080fd5b81358181111561247757612477612a53565b8060051b91506124888483016128d1565b8181528481019084860184860187018a10156124a357600080fd5b600095505b838610156124cd576124b9816122a0565b8352600195909501949186019186016124a8565b5098975050505050505050565b6000602082840312156124ec57600080fd5b61183a826122bc565b60006020828403121561250757600080fd5b813561183a81612a69565b60006020828403121561252457600080fd5b815161183a81612a69565b60006020828403121561254157600080fd5b813567ffffffffffffffff81111561255857600080fd5b8201601f8101841361256957600080fd5b611bd984823560208401612248565b60006020828403121561258a57600080fd5b5035919050565b600081518084526125a9816020860160208601612964565b601f01601f19169290920160200192915050565b600083516125cf818460208801612964565b8351908301906125e3818360208801612964565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061261f90830184612591565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561266a5783516001600160a01b031683529284019291840191600101612645565b50909695505050505050565b60208152600061183a6020830184612591565b600060208083526000845481600182811c9150808316806126ab57607f831692505b8583108114156126c957634e487b7160e01b85526022600452602485fd5b8786018381526020018180156126e657600181146126f757612722565b60ff19861682528782019650612722565b60008b81526020902060005b8681101561271c57815484820152908501908901612703565b83019750505b50949998505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526045908201527f4e6f7420656e6f7567682027546865204375626573204f6620496e66696e697460408201527f792720746f206d696e742e20506c6561736520636865636b20796f757220616d60608201526437bab73a1760d91b608082015260a00190565b6020808252603d908201527f4e6f7420656e6f75676820455448207472616e7366657272656420746f206d6960408201527f6e7420612027546865204375626573204f6620496e66696e697479272e000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156128fa576128fa612a53565b604052919050565b6000821982111561291557612915612a11565b500190565b60008261292957612929612a27565b500490565b600081600019048311821515161561294857612948612a11565b500290565b60008282101561295f5761295f612a11565b500390565b60005b8381101561297f578181015183820152602001612967565b83811115610d845750506000910152565b60008161299f5761299f612a11565b506000190190565b600181811c908216806129bb57607f821691505b602082108114156129dc57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129f6576129f6612a11565b5060010190565b600082612a0c57612a0c612a27565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a7057600080fdfea2646970667358221220b79b66c1d241d334925460b0c3da2ea56ec358362106bd283007e67142b6e83564736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5156456e5861316232555661755277464546657839326a5a4b4741633237696557413742345138687a66644d0000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c8063715018a611610144578063b88d4fde116100b6578063e4fb59541161007a578063e4fb5954146106da578063e757c17d146106fa578063e985e9c514610710578063f2c4ce1e14610759578063f2fde38b14610779578063f4daaba11461079957600080fd5b8063b88d4fde1461065b578063c87b56dd1461067b578063d5abeb011461069b578063dc88a26a146106b0578063de7fcb1d146106c557600080fd5b80638da5cb5b116101085780638da5cb5b146105bf578063940cd05b146105dd57806395d89b41146105fd5780639b6860c814610612578063a0712d6814610628578063a22cb4651461063b57600080fd5b8063715018a61461052a578063740d73f31461053f5780637835c6351461055f578063791a2519146105725780638096e8981461059257600080fd5b80633abc710d116101dd57806355f804b3116101a157806355f804b314610465578063576f35e3146104855780636352211e146104a55780636c0360eb146104c55780636f9170f6146104da57806370a082311461050a57600080fd5b80633abc710d146103d75780633ccfd60b146103f657806342842e0e1461040b5780634bf365df1461042b57806354214f691461044557600080fd5b8063095ea7b31161022f578063095ea7b3146103345780630f6cf3511461035657806318160ddd1461036b57806323b872dd14610381578063285d70d4146103a15780632a33f553146103c157600080fd5b806301ffc9a71461026c57806306f13056146102a157806306fdde03146102c5578063081812fc146102e7578063081c8c441461031f575b600080fd5b34801561027857600080fd5b5061028c6102873660046124f5565b6107af565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b7600d5481565b604051908152602001610298565b3480156102d157600080fd5b506102da610801565b6040516102989190612676565b3480156102f357600080fd5b50610307610302366004612578565b610893565b6040516001600160a01b039091168152602001610298565b34801561032b57600080fd5b506102da61092d565b34801561034057600080fd5b5061035461034f3660046123fc565b6109bb565b005b34801561036257600080fd5b506102b7600281565b34801561037757600080fd5b506102b760085481565b34801561038d57600080fd5b5061035461039c36600461231a565b610ad1565b3480156103ad57600080fd5b506103546103bc3660046124da565b610b02565b3480156103cd57600080fd5b506102b7600b5481565b3480156103e357600080fd5b5060105461028c90610100900460ff1681565b34801561040257600080fd5b50610354610b7a565b34801561041757600080fd5b5061035461042636600461231a565b610d8a565b34801561043757600080fd5b5060105461028c9060ff1681565b34801561045157600080fd5b5060105461028c9062010000900460ff1681565b34801561047157600080fd5b5061035461048036600461252f565b610da5565b34801561049157600080fd5b506103546104a0366004612578565b610e13565b3480156104b157600080fd5b506103076104c0366004612578565b610e72565b3480156104d157600080fd5b506102da610ee9565b3480156104e657600080fd5b5061028c6104f53660046122cc565b60116020526000908152604090205460ff1681565b34801561051657600080fd5b506102b76105253660046122cc565b610ef6565b34801561053657600080fd5b50610354610f7d565b34801561054b57600080fd5b5061035461055a366004612426565b610fb3565b61035461056d366004612578565b611075565b34801561057e57600080fd5b5061035461058d366004612578565b61133b565b34801561059e57600080fd5b506102b76105ad3660046122cc565b60126020526000908152604090205481565b3480156105cb57600080fd5b506006546001600160a01b0316610307565b3480156105e957600080fd5b506103546105f83660046124da565b61136a565b34801561060957600080fd5b506102da6113b0565b34801561061e57600080fd5b506102b760095481565b610354610636366004612578565b6113bf565b34801561064757600080fd5b506103546106563660046123d2565b6115cd565b34801561066757600080fd5b50610354610676366004612356565b611692565b34801561068757600080fd5b506102da610696366004612578565b6116c4565b3480156106a757600080fd5b506102b760fa81565b3480156106bc57600080fd5b50610354611841565b3480156106d157600080fd5b506102b7600a81565b3480156106e657600080fd5b506103546106f53660046124da565b6118f0565b34801561070657600080fd5b506102b7600a5481565b34801561071c57600080fd5b5061028c61072b3660046122e7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561076557600080fd5b5061035461077436600461252f565b61196b565b34801561078557600080fd5b506103546107943660046122cc565b6119d8565b3480156107a557600080fd5b506102b7600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107e057506001600160e01b03198216635b5e139f60e01b145b806107fb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610810906129a7565b80601f016020809104026020016040519081016040528092919081815260200182805461083c906129a7565b80156108895780601f1061085e57610100808354040283529160200191610889565b820191906000526020600020905b81548152906001019060200180831161086c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600e805461093a906129a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610966906129a7565b80156109b35780601f10610988576101008083540402835291602001916109b3565b820191906000526020600020905b81548152906001019060200180831161099657829003601f168201915b505050505081565b60006109c682610e72565b9050806001600160a01b0316836001600160a01b03161415610a345760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610908565b336001600160a01b0382161480610a505750610a50813361072b565b610ac25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610908565b610acc8383611a7c565b505050565b610adb3382611aea565b610af75760405162461bcd60e51b815260040161090890612880565b610acc838383611be1565b6006546001600160a01b03163314610b2c5760405162461bcd60e51b81526004016109089061284b565b6010805460ff191682151590811790915560405160ff909116151581527f376fb9037f5cd4338df0a05e4b353c0c01adbc9a440d6db61d829606a8bec978906020015b60405180910390a150565b6006546001600160a01b03163314610ba45760405162461bcd60e51b81526004016109089061284b565b600073edb8150008916a0c777e34bb996da853f052bd176064610bc847600f61292e565b610bd2919061291a565b604051600081818185875af1925050503d8060008114610c0e576040519150601f19603f3d011682016040523d82523d6000602084013e610c13565b606091505b5050905080610c2157600080fd5b600073a02cf45566e91b5efcf6eafd402bd885c61253f66064610c4547601261292e565b610c4f919061291a565b604051600081818185875af1925050503d8060008114610c8b576040519150601f19603f3d011682016040523d82523d6000602084013e610c90565b606091505b5050905080610c9e57600080fd5b600073b0ca7169cc440def187243ecf411b34ab75eca016064610cc247603261292e565b610ccc919061291a565b604051600081818185875af1925050503d8060008114610d08576040519150601f19603f3d011682016040523d82523d6000602084013e610d0d565b606091505b5050905080610d1b57600080fd5b60405160009073ebfe1ab93d1122e065adcafd8c3174261e8e726f9047908381818185875af1925050503d8060008114610d71576040519150601f19603f3d011682016040523d82523d6000602084013e610d76565b606091505b5050905080610d8457600080fd5b50505050565b610acc83838360405180602001604052806000815250611692565b6006546001600160a01b03163314610dcf5760405162461bcd60e51b81526004016109089061284b565b8051610de290600f9060208401906121af565b507f01e56a02aca7f26a28165a040851ba78f30282b55ca81c63a804cdc1e2dcea72600f604051610b6f9190612689565b6006546001600160a01b03163314610e3d5760405162461bcd60e51b81526004016109089061284b565b600c8190556040518181527f3e06105a4d5b471765e9078f56be602c552b5e5ef2d85843cb10d218ae2d982290602001610b6f565b6000818152600260205260408120546001600160a01b0316806107fb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610908565b600f805461093a906129a7565b60006001600160a01b038216610f615760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610908565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610fa75760405162461bcd60e51b81526004016109089061284b565b610fb16000611d81565b565b6006546001600160a01b03163314610fdd5760405162461bcd60e51b81526004016109089061284b565b60005b81518110156110455760016011600084848151811061100157611001612a3d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061103d816129e2565b915050610fe0565b507f71354119b132684f658833d4561b1d5ed6e72ca782dbcb6fcd8addfb7261207e81604051610b6f9190612629565b601054610100900460ff166110f25760405162461bcd60e51b815260206004820152603760248201527f27546865204375626573204f6620496e66696e69747927206973206e6f74206d60448201527f696e7461626c65206f6e2070726573616c65206e6f772e0000000000000000006064820152608401610908565b3360009081526011602052604090205460ff166111815760405162461bcd60e51b815260206004820152604160248201527f596f7520617265206e6f74206f6e207468652077686974656c69737420666f7260448201527f2027546865204375626573204f6620496e66696e697479272070726573616c656064820152601760f91b608482015260a401610908565b80600c5481600d546111939190612902565b11156111b15760405162461bcd60e51b815260040161090890612783565b81600a54816111c0919061292e565b34146111de5760405162461bcd60e51b8152600401610908906127ee565b6006546001600160a01b031633146112985760105460ff61010090910416151560011415611298573360009081526012602052604090205460026112228583612902565b11156112965760405162461bcd60e51b815260206004820152603c60248201527f6d61782027546865204375626573206f6620496e66696e69747927207065722060448201527f6164647265737320657863656564656420666f722070726573616c65000000006064820152608401610908565b505b60015b838111610d845760006112ad60075490565b3360009081526012602052604081208054929350906112cb836129e2565b91905055506112da3382611dd3565b6112e8600780546001019055565b600b80549060006112f883612990565b9091555050600d805490600061130d836129e2565b909155505060088054906000611322836129e2565b9190505550508080611333906129e2565b91505061129b565b6006546001600160a01b031633146113655760405162461bcd60e51b81526004016109089061284b565b600955565b6006546001600160a01b031633146113945760405162461bcd60e51b81526004016109089061284b565b60108054911515620100000262ff000019909216919091179055565b606060018054610810906129a7565b6006546001600160a01b031633146114495760105460ff166114495760405162461bcd60e51b815260206004820152603b60248201527f27546865204375626573204f6620496e66696e69747927206973206e6f74206d60448201527f696e7461626c65206f6e207075626c69632073616c65206e6f772e00000000006064820152608401610908565b80600a8111156114e75760405162461bcd60e51b815260206004820152605960248201527f4d696e7420616d6f756e74206f662027546865204375626573204f6620496e6660448201527f696e697479272065786365656473206d6178206c696d6974207065722074726160648201527f6e73616374696f6e20666f72207075626c69632073616c652e00000000000000608482015260a401610908565b81600c5481600d546114f99190612902565b11156115175760405162461bcd60e51b815260040161090890612783565b8260095481611526919061292e565b34146115445760405162461bcd60e51b8152600401610908906127ee565b60015b8481116115c657600061155960075490565b90506115653382611dd3565b611573600780546001019055565b600b805490600061158383612990565b9091555050600d8054906000611598836129e2565b9091555050600880549060006115ad836129e2565b91905055505080806115be906129e2565b915050611547565b5050505050565b6001600160a01b0382163314156116265760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610908565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61169c3383611aea565b6116b85760405162461bcd60e51b815260040161090890612880565b610d8484848484611ded565b6000818152600260205260409020546060906001600160a01b03166117435760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610908565b60105462010000900460ff166117e557600e8054611760906129a7565b80601f016020809104026020016040519081016040528092919081815260200182805461178c906129a7565b80156117d95780601f106117ae576101008083540402835291602001916117d9565b820191906000526020600020905b8154815290600101906020018083116117bc57829003601f168201915b50505050509050919050565b60006117ef611e20565b9050600081511161180f576040518060200160405280600081525061183a565b8061181984611e2f565b60405160200161182a9291906125bd565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461186b5760405162461bcd60e51b81526004016109089061284b565b600060015b601f8110156118ec5761188c336118878385612902565b611dd3565b61189a600780546001019055565b600d80549060006118aa836129e2565b9091555050600880549060006118bf836129e2565b9091555050600b80549060006118d483612990565b919050555080806118e4906129e2565b915050611870565b5050565b6006546001600160a01b0316331461191a5760405162461bcd60e51b81526004016109089061284b565b6010805461ff0019166101008315158102919091179182905560405160ff9190920416151581527f40fa0a2d4f13c850215b9029bddbd7af5a8104c35e6b471cc2bc734519df7f7c90602001610b6f565b6006546001600160a01b031633146119955760405162461bcd60e51b81526004016109089061284b565b80516119a890600e9060208401906121af565b507ff53a6797d03bf6831670eb0a3330727b2dac7243e8283aefee1d701f4e197c0281604051610b6f9190612676565b6006546001600160a01b03163314611a025760405162461bcd60e51b81526004016109089061284b565b6001600160a01b038116611a675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610908565b611a7081611d81565b50565b80546001019055565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ab182610e72565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b635760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610908565b6000611b6e83610e72565b9050806001600160a01b0316846001600160a01b03161480611ba95750836001600160a01b0316611b9e84610893565b6001600160a01b0316145b80611bd957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bf482610e72565b6001600160a01b031614611c5c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610908565b6001600160a01b038216611cbe5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610908565b611cc9600082611a7c565b6001600160a01b0383166000908152600360205260408120805460019290611cf290849061294d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d20908490612902565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6118ec828260405180602001604052806000815250611f2d565b611df8848484611be1565b611e0484848484611f60565b610d845760405162461bcd60e51b815260040161090890612731565b6060600f8054610810906129a7565b606081611e535750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e7d5780611e67816129e2565b9150611e769050600a8361291a565b9150611e57565b60008167ffffffffffffffff811115611e9857611e98612a53565b6040519080825280601f01601f191660200182016040528015611ec2576020820181803683370190505b5090505b8415611bd957611ed760018361294d565b9150611ee4600a866129fd565b611eef906030612902565b60f81b818381518110611f0457611f04612a3d565b60200101906001600160f81b031916908160001a905350611f26600a8661291a565b9450611ec6565b611f37838361206d565b611f446000848484611f60565b610acc5760405162461bcd60e51b815260040161090890612731565b60006001600160a01b0384163b1561206257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fa49033908990889088906004016125ec565b602060405180830381600087803b158015611fbe57600080fd5b505af1925050508015611fee575060408051601f3d908101601f19168201909252611feb91810190612512565b60015b612048573d80801561201c576040519150601f19603f3d011682016040523d82523d6000602084013e612021565b606091505b5080516120405760405162461bcd60e51b815260040161090890612731565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bd9565b506001949350505050565b6001600160a01b0382166120c35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610908565b6000818152600260205260409020546001600160a01b0316156121285760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610908565b6001600160a01b0382166000908152600360205260408120805460019290612151908490612902565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121bb906129a7565b90600052602060002090601f0160209004810192826121dd5760008555612223565b82601f106121f657805160ff1916838001178555612223565b82800160010185558215612223579182015b82811115612223578251825591602001919060010190612208565b5061222f929150612233565b5090565b5b8082111561222f5760008155600101612234565b600067ffffffffffffffff83111561226257612262612a53565b612275601f8401601f19166020016128d1565b905082815283838301111561228957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146122b757600080fd5b919050565b803580151581146122b757600080fd5b6000602082840312156122de57600080fd5b61183a826122a0565b600080604083850312156122fa57600080fd5b612303836122a0565b9150612311602084016122a0565b90509250929050565b60008060006060848603121561232f57600080fd5b612338846122a0565b9250612346602085016122a0565b9150604084013590509250925092565b6000806000806080858703121561236c57600080fd5b612375856122a0565b9350612383602086016122a0565b925060408501359150606085013567ffffffffffffffff8111156123a657600080fd5b8501601f810187136123b757600080fd5b6123c687823560208401612248565b91505092959194509250565b600080604083850312156123e557600080fd5b6123ee836122a0565b9150612311602084016122bc565b6000806040838503121561240f57600080fd5b612418836122a0565b946020939093013593505050565b6000602080838503121561243957600080fd5b823567ffffffffffffffff8082111561245157600080fd5b818501915085601f83011261246557600080fd5b81358181111561247757612477612a53565b8060051b91506124888483016128d1565b8181528481019084860184860187018a10156124a357600080fd5b600095505b838610156124cd576124b9816122a0565b8352600195909501949186019186016124a8565b5098975050505050505050565b6000602082840312156124ec57600080fd5b61183a826122bc565b60006020828403121561250757600080fd5b813561183a81612a69565b60006020828403121561252457600080fd5b815161183a81612a69565b60006020828403121561254157600080fd5b813567ffffffffffffffff81111561255857600080fd5b8201601f8101841361256957600080fd5b611bd984823560208401612248565b60006020828403121561258a57600080fd5b5035919050565b600081518084526125a9816020860160208601612964565b601f01601f19169290920160200192915050565b600083516125cf818460208801612964565b8351908301906125e3818360208801612964565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061261f90830184612591565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561266a5783516001600160a01b031683529284019291840191600101612645565b50909695505050505050565b60208152600061183a6020830184612591565b600060208083526000845481600182811c9150808316806126ab57607f831692505b8583108114156126c957634e487b7160e01b85526022600452602485fd5b8786018381526020018180156126e657600181146126f757612722565b60ff19861682528782019650612722565b60008b81526020902060005b8681101561271c57815484820152908501908901612703565b83019750505b50949998505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526045908201527f4e6f7420656e6f7567682027546865204375626573204f6620496e66696e697460408201527f792720746f206d696e742e20506c6561736520636865636b20796f757220616d60608201526437bab73a1760d91b608082015260a00190565b6020808252603d908201527f4e6f7420656e6f75676820455448207472616e7366657272656420746f206d6960408201527f6e7420612027546865204375626573204f6620496e66696e697479272e000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156128fa576128fa612a53565b604052919050565b6000821982111561291557612915612a11565b500190565b60008261292957612929612a27565b500490565b600081600019048311821515161561294857612948612a11565b500290565b60008282101561295f5761295f612a11565b500390565b60005b8381101561297f578181015183820152602001612967565b83811115610d845750506000910152565b60008161299f5761299f612a11565b506000190190565b600181811c908216806129bb57607f821691505b602082108114156129dc57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129f6576129f6612a11565b5060010190565b600082612a0c57612a0c612a27565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a7057600080fdfea2646970667358221220b79b66c1d241d334925460b0c3da2ea56ec358362106bd283007e67142b6e83564736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5156456e5861316232555661755277464546657839326a5a4b4741633237696557413742345138687a66644d0000000000000000000000

-----Decoded View---------------
Arg [0] : _initNotRevealedURI (string): ipfs://QmQVEnXa1b2UVauRwFEFex92jZKGAc27ieWA7B4Q8hzfdM

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [2] : 697066733a2f2f516d5156456e5861316232555661755277464546657839326a
Arg [3] : 5a4b4741633237696557413742345138687a66644d0000000000000000000000


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.