ETH Price: $2,919.23 (-7.84%)
Gas: 10 Gwei

Token

Shiba Society (SHIBS)
 

Overview

Max Total Supply

2,002 SHIBS

Holders

716

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
machidefiapes.eth
Balance
1 SHIBS
0x98bafa71334eae0037d7ce585702d340ece71383
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:
ShibaSociety

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : ShibaSociety.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: MIT

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/Pausable.sol";

contract ShibaSociety is ERC721("Shiba Society", "SHIBS"), Ownable, Pausable {
    using SafeMath for uint256;
    using Strings for uint256;

    string[] baseURI;
    string blindURI1_;
    string blindURI2_;

    uint256 public totalSupply;
    uint256 public BUY_LIMIT_PER_TX = 10;
    uint256 public MAX_NFT = 10000;

    uint256 public constant NFTPrice = 35000000000000000; // 0.035 ETH

    constructor() {}

    /*
     * Function to withdraw collected amount during minting
    */
    function withdraw(address _to) public onlyOwner {
        uint balance = address(this).balance;
        payable(_to).transfer(balance);
    }

    /*
     * Function to mint new NFTs
     * It is payable. Amount is calculated as per (NFTPrice*_numOfTokens)
    */
    function mintNFT(uint256 _numOfTokens) public payable whenNotPaused {
        require(_numOfTokens <= BUY_LIMIT_PER_TX, "Can't mint above limit");
        require(totalSupply.add(_numOfTokens) <= MAX_NFT, "Purchase would exceed max supply of NFTs");
        require(NFTPrice.mul(_numOfTokens) == msg.value, "Ether value sent is not correct");

        for(uint i=0; i < _numOfTokens; i++) {
            _safeMint(msg.sender, totalSupply);
            totalSupply = totalSupply.add(1);
        }
    }

    /*
     * Function to get token URI of given token ID
     * URI will be blank untill totalSupply reaches MAX_NFT
    */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        if (tokenId < 1000) {
            return bytes(baseURI[0]).length > 0 && totalSupply >= 1000 ? string(abi.encodePacked(baseURI[0], 
                tokenId.toString())) : string(abi.encodePacked(blindURI1_, tokenId.toString()));
        } else if (tokenId >= 1000 && tokenId < 2000) {
            return bytes(baseURI[1]).length > 0 && totalSupply >= 2000 ? string(abi.encodePacked(baseURI[1], 
                tokenId.toString())) : string(abi.encodePacked(blindURI1_, tokenId.toString()));
        } else if (tokenId >= 2000 && tokenId < 3000) {
            return bytes(baseURI[2]).length > 0 && totalSupply >= 3000 ? string(abi.encodePacked(baseURI[2], 
                tokenId.toString())) : string(abi.encodePacked(blindURI1_, tokenId.toString()));
        } else if (tokenId >= 3000 && tokenId < 4000) {
            return bytes(baseURI[3]).length > 0 && totalSupply >= 4000 ? string(abi.encodePacked(baseURI[3], 
                tokenId.toString())) : string(abi.encodePacked(blindURI1_, tokenId.toString()));
        } else if (tokenId >= 4000 && tokenId < 5000) {
            return bytes(baseURI[4]).length > 0 && totalSupply >= 5000 ? string(abi.encodePacked(baseURI[4], 
                tokenId.toString())) : string(abi.encodePacked(blindURI1_, tokenId.toString()));
        } else if (tokenId >= 5000 && tokenId < 6000) {
            return bytes(baseURI[5]).length > 0 && totalSupply >= 6000 ? string(abi.encodePacked(baseURI[5], 
                tokenId.toString())) : string(abi.encodePacked(blindURI2_, tokenId.toString()));
        } else if (tokenId >= 6000 && tokenId < 7000) {
            return bytes(baseURI[6]).length > 0 && totalSupply >= 7000 ? string(abi.encodePacked(baseURI[6], 
                tokenId.toString())) : string(abi.encodePacked(blindURI2_, tokenId.toString()));
        } else if (tokenId >= 7000 && tokenId < 8000) {
            return bytes(baseURI[7]).length > 0 && totalSupply >= 8000 ? string(abi.encodePacked(baseURI[7], 
                tokenId.toString())) : string(abi.encodePacked(blindURI2_, tokenId.toString()));
        } else if (tokenId >= 8000 && tokenId < 9000) {
            return bytes(baseURI[8]).length > 0 && totalSupply >= 9000 ? string(abi.encodePacked(baseURI[8], 
                tokenId.toString())) : string(abi.encodePacked(blindURI2_, tokenId.toString()));
        } else {
            return bytes(baseURI[9]).length > 0 && totalSupply >= MAX_NFT ? string(abi.encodePacked(baseURI[9], 
                tokenId.toString())) : string(abi.encodePacked(blindURI2_, tokenId.toString()));
        }
    }

    /*
     * Function to set Base and Blind URI 
    */
    function setURIs(string memory _blindURI1, string memory _blindURI2, string[] memory _URIs) external onlyOwner {
        require(_URIs.length == 10, "10 URI required");
        blindURI1_ = _blindURI1;
        blindURI2_ = _blindURI2;
        baseURI = _URIs;
    }

    /*
     * Function to pause 
    */
    function pause() external onlyOwner {
        _pause();
    }

    /*
     * Function to unpause 
    */
    function unpause() external onlyOwner {
        _unpause();
    }
}

File 2 of 13 : 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(to).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 13 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 13 : 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 5 of 13 : 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 6 of 13 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 7 of 13 : 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 8 of 13 : 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 9 of 13 : 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 10 of 13 : 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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 11 of 13 : 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 12 of 13 : 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 13 of 13 : 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",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BUY_LIMIT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFTPrice","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":[{"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":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_blindURI1","type":"string"},{"internalType":"string","name":"_blindURI2","type":"string"},{"internalType":"string[]","name":"_URIs","type":"string[]"}],"name":"setURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a600b55612710600c553480156200001c57600080fd5b50604080518082018252600d81526c536869626120536f636965747960981b602080830191825283518085019094526005845264534849425360d81b9084015281519192916200006f916000916200010b565b508051620000859060019060208401906200010b565b505050620000a26200009c620000b560201b60201c565b620000b9565b6006805460ff60a01b19169055620001ee565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011990620001b1565b90600052602060002090601f0160209004810192826200013d576000855562000188565b82601f106200015857805160ff191683800117855562000188565b8280016001018555821562000188579182015b82811115620001885782518255916020019190600101906200016b565b50620001969291506200019a565b5090565b5b808211156200019657600081556001016200019b565b600181811c90821680620001c657607f821691505b60208210811415620001e857634e487b7160e01b600052602260045260246000fd5b50919050565b61250a80620001fe6000396000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610430578063e748e07c14610450578063e985e9c514610466578063f2fde38b146104af57600080fd5b8063a22cb465146103d5578063a38bffda146103f5578063b88d4fde1461041057600080fd5b806370a0823114610345578063715018a6146103655780638456cb591461037a5780638da5cb5b1461038f57806392642744146103ad57806395d89b41146103c057600080fd5b806323b872dd1161013e57806351cff8d91161011857806351cff8d9146102d05780635c975abb146102f05780636352211e1461030f5780636fdaddf11461032f57600080fd5b806323b872dd1461027b5780633f4ba83a1461029b57806342842e0e146102b057600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b31461021557806318160ddd1461023757806321618a0a1461025b575b600080fd5b34801561019257600080fd5b506101a66101a1366004611fe6565b6104cf565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d0610521565b6040516101b29190612268565b3480156101e957600080fd5b506101fd6101f8366004612125565b6105b3565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b50610235610230366004611fbd565b61064d565b005b34801561024357600080fd5b5061024d600a5481565b6040519081526020016101b2565b34801561026757600080fd5b5061023561027636600461201e565b610763565b34801561028757600080fd5b50610235610296366004611ecf565b610811565b3480156102a757600080fd5b50610235610842565b3480156102bc57600080fd5b506102356102cb366004611ecf565b610876565b3480156102dc57600080fd5b506102356102eb366004611e83565b610891565b3480156102fc57600080fd5b50600654600160a01b900460ff166101a6565b34801561031b57600080fd5b506101fd61032a366004612125565b6108f3565b34801561033b57600080fd5b5061024d600c5481565b34801561035157600080fd5b5061024d610360366004611e83565b61096a565b34801561037157600080fd5b506102356109f1565b34801561038657600080fd5b50610235610a25565b34801561039b57600080fd5b506006546001600160a01b03166101fd565b6102356103bb366004612125565b610a57565b3480156103cc57600080fd5b506101d0610bfb565b3480156103e157600080fd5b506102356103f0366004611f83565b610c0a565b34801561040157600080fd5b5061024d667c58508723800081565b34801561041c57600080fd5b5061023561042b366004611f0a565b610ccf565b34801561043c57600080fd5b506101d061044b366004612125565b610d01565b34801561045c57600080fd5b5061024d600b5481565b34801561047257600080fd5b506101a6610481366004611e9d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104bb57600080fd5b506102356104ca366004611e83565b61138d565b60006001600160e01b031982166380ac58cd60e01b148061050057506001600160e01b03198216635b5e139f60e01b145b8061051b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461053090612412565b80601f016020809104026020016040519081016040528092919081815260200182805461055c90612412565b80156105a95780601f1061057e576101008083540402835291602001916105a9565b820191906000526020600020905b81548152906001019060200180831161058c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106315760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610658826108f3565b9050806001600160a01b0316836001600160a01b031614156106c65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610628565b336001600160a01b03821614806106e257506106e28133610481565b6107545760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610628565b61075e8383611428565b505050565b6006546001600160a01b0316331461078d5760405162461bcd60e51b8152600401610628906122cd565b8051600a146107d05760405162461bcd60e51b815260206004820152600f60248201526e0c4c08155492481c995c5d5a5c9959608a1b6044820152606401610628565b82516107e3906008906020860190611cac565b5081516107f7906009906020850190611cac565b50805161080b906007906020840190611d30565b50505050565b61081b3382611496565b6108375760405162461bcd60e51b815260040161062890612302565b61075e83838361158d565b6006546001600160a01b0316331461086c5760405162461bcd60e51b8152600401610628906122cd565b61087461172d565b565b61075e83838360405180602001604052806000815250610ccf565b6006546001600160a01b031633146108bb5760405162461bcd60e51b8152600401610628906122cd565b60405147906001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561075e573d6000803e3d6000fd5b6000818152600260205260408120546001600160a01b03168061051b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610628565b60006001600160a01b0382166109d55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610628565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610a1b5760405162461bcd60e51b8152600401610628906122cd565b61087460006117ca565b6006546001600160a01b03163314610a4f5760405162461bcd60e51b8152600401610628906122cd565b61087461181c565b600654600160a01b900460ff1615610aa45760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610628565b600b54811115610aef5760405162461bcd60e51b815260206004820152601660248201527510d85b89dd081b5a5b9d0818589bdd99481b1a5b5a5d60521b6044820152606401610628565b600c54600a54610aff90836118a4565b1115610b5e5760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015267206f66204e46547360c01b6064820152608401610628565b34610b70667c585087238000836118b7565b14610bbd5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610628565b60005b81811015610bf757610bd433600a546118c3565b600a54610be29060016118a4565b600a5580610bef8161244d565b915050610bc0565b5050565b60606001805461053090612412565b6001600160a01b038216331415610c635760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610628565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cd93383611496565b610cf55760405162461bcd60e51b815260040161062890612302565b61080b848484846118dd565b6000818152600260205260409020546060906001600160a01b0316610d805760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610628565b6103e8821015610e655760006007600081548110610dae57634e487b7160e01b600052603260045260246000fd5b906000526020600020018054610dc390612412565b9050118015610dd657506103e8600a5410155b610e0a576008610de583611910565b604051602001610df6929190612185565b60405160208183030381529060405261051b565b6007600081548110610e2c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001610e3f83611910565b604051602001610e50929190612185565b60405160208183030381529060405292915050565b6103e88210158015610e7857506107d082105b15610efa5760006007600181548110610ea157634e487b7160e01b600052603260045260246000fd5b906000526020600020018054610eb690612412565b9050118015610ec957506107d0600a5410155b610ed8576008610de583611910565b6007600181548110610e2c57634e487b7160e01b600052603260045260246000fd5b6107d08210158015610f0d5750610bb882105b15610f8f5760006007600281548110610f3657634e487b7160e01b600052603260045260246000fd5b906000526020600020018054610f4b90612412565b9050118015610f5e5750610bb8600a5410155b610f6d576008610de583611910565b6007600281548110610e2c57634e487b7160e01b600052603260045260246000fd5b610bb88210158015610fa25750610fa082105b156110245760006007600381548110610fcb57634e487b7160e01b600052603260045260246000fd5b906000526020600020018054610fe090612412565b9050118015610ff35750610fa0600a5410155b611002576008610de583611910565b6007600381548110610e2c57634e487b7160e01b600052603260045260246000fd5b610fa08210158015611037575061138882105b156110b9576000600760048154811061106057634e487b7160e01b600052603260045260246000fd5b90600052602060002001805461107590612412565b90501180156110885750611388600a5410155b611097576008610de583611910565b6007600481548110610e2c57634e487b7160e01b600052603260045260246000fd5b61138882101580156110cc575061177082105b1561114e57600060076005815481106110f557634e487b7160e01b600052603260045260246000fd5b90600052602060002001805461110a90612412565b905011801561111d5750611770600a5410155b61112c576009610de583611910565b6007600581548110610e2c57634e487b7160e01b600052603260045260246000fd5b61177082101580156111615750611b5882105b156111e3576000600760068154811061118a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001805461119f90612412565b90501180156111b25750611b58600a5410155b6111c1576009610de583611910565b6007600681548110610e2c57634e487b7160e01b600052603260045260246000fd5b611b5882101580156111f65750611f4082105b156112765760006007808154811061121e57634e487b7160e01b600052603260045260246000fd5b90600052602060002001805461123390612412565b90501180156112465750611f40600a5410155b611255576009610de583611910565b60078081548110610e2c57634e487b7160e01b600052603260045260246000fd5b611f408210158015611289575061232882105b1561130b57600060076008815481106112b257634e487b7160e01b600052603260045260246000fd5b9060005260206000200180546112c790612412565b90501180156112da5750612328600a5410155b6112e9576009610de583611910565b6007600881548110610e2c57634e487b7160e01b600052603260045260246000fd5b6000600760098154811061132f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001805461134490612412565b90501180156113575750600c54600a5410155b611366576009610de583611910565b6007600981548110610e2c57634e487b7160e01b600052603260045260246000fd5b919050565b6006546001600160a01b031633146113b75760405162461bcd60e51b8152600401610628906122cd565b6001600160a01b03811661141c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610628565b611425816117ca565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061145d826108f3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661150f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610628565b600061151a836108f3565b9050806001600160a01b0316846001600160a01b031614806115555750836001600160a01b031661154a846105b3565b6001600160a01b0316145b8061158557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115a0826108f3565b6001600160a01b0316146116085760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610628565b6001600160a01b03821661166a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610628565b611675600082611428565b6001600160a01b038316600090815260036020526040812080546001929061169e9084906123cf565b90915550506001600160a01b03821660009081526003602052604081208054600192906116cc908490612384565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600654600160a01b900460ff1661177d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610628565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600654600160a01b900460ff16156118695760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610628565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117ad3390565b60006118b08284612384565b9392505050565b60006118b082846123b0565b610bf7828260405180602001604052806000815250611a2a565b6118e884848461158d565b6118f484848484611a5d565b61080b5760405162461bcd60e51b81526004016106289061227b565b6060816119345750506040805180820190915260018152600360fc1b602082015290565b8160005b811561195e57806119488161244d565b91506119579050600a8361239c565b9150611938565b60008167ffffffffffffffff81111561198757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156119b1576020820181803683370190505b5090505b8415611585576119c66001836123cf565b91506119d3600a86612468565b6119de906030612384565b60f81b818381518110611a0157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a23600a8661239c565b94506119b5565b611a348383611b6a565b611a416000848484611a5d565b61075e5760405162461bcd60e51b81526004016106289061227b565b60006001600160a01b0384163b15611b5f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611aa190339089908890889060040161222b565b602060405180830381600087803b158015611abb57600080fd5b505af1925050508015611aeb575060408051601f3d908101601f19168201909252611ae891810190612002565b60015b611b45573d808015611b19576040519150601f19603f3d011682016040523d82523d6000602084013e611b1e565b606091505b508051611b3d5760405162461bcd60e51b81526004016106289061227b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611585565b506001949350505050565b6001600160a01b038216611bc05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610628565b6000818152600260205260409020546001600160a01b031615611c255760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610628565b6001600160a01b0382166000908152600360205260408120805460019290611c4e908490612384565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cb890612412565b90600052602060002090601f016020900481019282611cda5760008555611d20565b82601f10611cf357805160ff1916838001178555611d20565b82800160010185558215611d20579182015b82811115611d20578251825591602001919060010190611d05565b50611d2c929150611d89565b5090565b828054828255906000526020600020908101928215611d7d579160200282015b82811115611d7d5782518051611d6d918491602090910190611cac565b5091602001919060010190611d50565b50611d2c929150611d9e565b5b80821115611d2c5760008155600101611d8a565b80821115611d2c576000611db28282611dbb565b50600101611d9e565b508054611dc790612412565b6000825580601f10611dd7575050565b601f0160209004906000526020600020908101906114259190611d89565b600067ffffffffffffffff831115611e0f57611e0f6124a8565b611e22601f8401601f1916602001612353565b9050828152838383011115611e3657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461138857600080fd5b600082601f830112611e74578081fd5b6118b083833560208501611df5565b600060208284031215611e94578081fd5b6118b082611e4d565b60008060408385031215611eaf578081fd5b611eb883611e4d565b9150611ec660208401611e4d565b90509250929050565b600080600060608486031215611ee3578081fd5b611eec84611e4d565b9250611efa60208501611e4d565b9150604084013590509250925092565b60008060008060808587031215611f1f578081fd5b611f2885611e4d565b9350611f3660208601611e4d565b925060408501359150606085013567ffffffffffffffff811115611f58578182fd5b8501601f81018713611f68578182fd5b611f7787823560208401611df5565b91505092959194509250565b60008060408385031215611f95578182fd5b611f9e83611e4d565b915060208301358015158114611fb2578182fd5b809150509250929050565b60008060408385031215611fcf578182fd5b611fd883611e4d565b946020939093013593505050565b600060208284031215611ff7578081fd5b81356118b0816124be565b600060208284031215612013578081fd5b81516118b0816124be565b600080600060608486031215612032578283fd5b833567ffffffffffffffff80821115612049578485fd5b61205587838801611e64565b945060209150818601358181111561206b578485fd5b61207788828901611e64565b94505060408601358181111561208b578384fd5b8601601f8101881361209b578384fd5b8035828111156120ad576120ad6124a8565b8060051b6120bc858201612353565b8281528581019084870183860188018d10156120d6578889fd5b8893505b84841015612113578035878111156120f057898afd5b6120fe8e8a838a0101611e64565b845250600193909301929187019187016120da565b50809750505050505050509250925092565b600060208284031215612136578081fd5b5035919050565b600081518084526121558160208601602086016123e6565b601f01601f19169290920160200192915050565b6000815161217b8185602086016123e6565b9290920192915050565b600080845482600182811c9150808316806121a157607f831692505b60208084108214156121c157634e487b7160e01b87526022600452602487fd5b8180156121d557600181146121e657612212565b60ff19861689528489019650612212565b60008b815260209020885b8681101561220a5781548b8201529085019083016121f1565b505084890196505b5050505050506122228185612169565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061225e9083018461213d565b9695505050505050565b6020815260006118b0602083018461213d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561237c5761237c6124a8565b604052919050565b600082198211156123975761239761247c565b500190565b6000826123ab576123ab612492565b500490565b60008160001904831182151516156123ca576123ca61247c565b500290565b6000828210156123e1576123e161247c565b500390565b60005b838110156124015781810151838201526020016123e9565b8381111561080b5750506000910152565b600181811c9082168061242657607f821691505b6020821081141561244757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124615761246161247c565b5060010190565b60008261247757612477612492565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461142557600080fdfea2646970667358221220400e40b086729bfcdfcaa3611ae86a54fb6b298b16efcd47af7eb45b32ec971764736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101815760003560e01c806370a08231116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610430578063e748e07c14610450578063e985e9c514610466578063f2fde38b146104af57600080fd5b8063a22cb465146103d5578063a38bffda146103f5578063b88d4fde1461041057600080fd5b806370a0823114610345578063715018a6146103655780638456cb591461037a5780638da5cb5b1461038f57806392642744146103ad57806395d89b41146103c057600080fd5b806323b872dd1161013e57806351cff8d91161011857806351cff8d9146102d05780635c975abb146102f05780636352211e1461030f5780636fdaddf11461032f57600080fd5b806323b872dd1461027b5780633f4ba83a1461029b57806342842e0e146102b057600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b31461021557806318160ddd1461023757806321618a0a1461025b575b600080fd5b34801561019257600080fd5b506101a66101a1366004611fe6565b6104cf565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d0610521565b6040516101b29190612268565b3480156101e957600080fd5b506101fd6101f8366004612125565b6105b3565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b50610235610230366004611fbd565b61064d565b005b34801561024357600080fd5b5061024d600a5481565b6040519081526020016101b2565b34801561026757600080fd5b5061023561027636600461201e565b610763565b34801561028757600080fd5b50610235610296366004611ecf565b610811565b3480156102a757600080fd5b50610235610842565b3480156102bc57600080fd5b506102356102cb366004611ecf565b610876565b3480156102dc57600080fd5b506102356102eb366004611e83565b610891565b3480156102fc57600080fd5b50600654600160a01b900460ff166101a6565b34801561031b57600080fd5b506101fd61032a366004612125565b6108f3565b34801561033b57600080fd5b5061024d600c5481565b34801561035157600080fd5b5061024d610360366004611e83565b61096a565b34801561037157600080fd5b506102356109f1565b34801561038657600080fd5b50610235610a25565b34801561039b57600080fd5b506006546001600160a01b03166101fd565b6102356103bb366004612125565b610a57565b3480156103cc57600080fd5b506101d0610bfb565b3480156103e157600080fd5b506102356103f0366004611f83565b610c0a565b34801561040157600080fd5b5061024d667c58508723800081565b34801561041c57600080fd5b5061023561042b366004611f0a565b610ccf565b34801561043c57600080fd5b506101d061044b366004612125565b610d01565b34801561045c57600080fd5b5061024d600b5481565b34801561047257600080fd5b506101a6610481366004611e9d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104bb57600080fd5b506102356104ca366004611e83565b61138d565b60006001600160e01b031982166380ac58cd60e01b148061050057506001600160e01b03198216635b5e139f60e01b145b8061051b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461053090612412565b80601f016020809104026020016040519081016040528092919081815260200182805461055c90612412565b80156105a95780601f1061057e576101008083540402835291602001916105a9565b820191906000526020600020905b81548152906001019060200180831161058c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106315760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610658826108f3565b9050806001600160a01b0316836001600160a01b031614156106c65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610628565b336001600160a01b03821614806106e257506106e28133610481565b6107545760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610628565b61075e8383611428565b505050565b6006546001600160a01b0316331461078d5760405162461bcd60e51b8152600401610628906122cd565b8051600a146107d05760405162461bcd60e51b815260206004820152600f60248201526e0c4c08155492481c995c5d5a5c9959608a1b6044820152606401610628565b82516107e3906008906020860190611cac565b5081516107f7906009906020850190611cac565b50805161080b906007906020840190611d30565b50505050565b61081b3382611496565b6108375760405162461bcd60e51b815260040161062890612302565b61075e83838361158d565b6006546001600160a01b0316331461086c5760405162461bcd60e51b8152600401610628906122cd565b61087461172d565b565b61075e83838360405180602001604052806000815250610ccf565b6006546001600160a01b031633146108bb5760405162461bcd60e51b8152600401610628906122cd565b60405147906001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561075e573d6000803e3d6000fd5b6000818152600260205260408120546001600160a01b03168061051b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610628565b60006001600160a01b0382166109d55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610628565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610a1b5760405162461bcd60e51b8152600401610628906122cd565b61087460006117ca565b6006546001600160a01b03163314610a4f5760405162461bcd60e51b8152600401610628906122cd565b61087461181c565b600654600160a01b900460ff1615610aa45760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610628565b600b54811115610aef5760405162461bcd60e51b815260206004820152601660248201527510d85b89dd081b5a5b9d0818589bdd99481b1a5b5a5d60521b6044820152606401610628565b600c54600a54610aff90836118a4565b1115610b5e5760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015267206f66204e46547360c01b6064820152608401610628565b34610b70667c585087238000836118b7565b14610bbd5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610628565b60005b81811015610bf757610bd433600a546118c3565b600a54610be29060016118a4565b600a5580610bef8161244d565b915050610bc0565b5050565b60606001805461053090612412565b6001600160a01b038216331415610c635760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610628565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cd93383611496565b610cf55760405162461bcd60e51b815260040161062890612302565b61080b848484846118dd565b6000818152600260205260409020546060906001600160a01b0316610d805760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610628565b6103e8821015610e655760006007600081548110610dae57634e487b7160e01b600052603260045260246000fd5b906000526020600020018054610dc390612412565b9050118015610dd657506103e8600a5410155b610e0a576008610de583611910565b604051602001610df6929190612185565b60405160208183030381529060405261051b565b6007600081548110610e2c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001610e3f83611910565b604051602001610e50929190612185565b60405160208183030381529060405292915050565b6103e88210158015610e7857506107d082105b15610efa5760006007600181548110610ea157634e487b7160e01b600052603260045260246000fd5b906000526020600020018054610eb690612412565b9050118015610ec957506107d0600a5410155b610ed8576008610de583611910565b6007600181548110610e2c57634e487b7160e01b600052603260045260246000fd5b6107d08210158015610f0d5750610bb882105b15610f8f5760006007600281548110610f3657634e487b7160e01b600052603260045260246000fd5b906000526020600020018054610f4b90612412565b9050118015610f5e5750610bb8600a5410155b610f6d576008610de583611910565b6007600281548110610e2c57634e487b7160e01b600052603260045260246000fd5b610bb88210158015610fa25750610fa082105b156110245760006007600381548110610fcb57634e487b7160e01b600052603260045260246000fd5b906000526020600020018054610fe090612412565b9050118015610ff35750610fa0600a5410155b611002576008610de583611910565b6007600381548110610e2c57634e487b7160e01b600052603260045260246000fd5b610fa08210158015611037575061138882105b156110b9576000600760048154811061106057634e487b7160e01b600052603260045260246000fd5b90600052602060002001805461107590612412565b90501180156110885750611388600a5410155b611097576008610de583611910565b6007600481548110610e2c57634e487b7160e01b600052603260045260246000fd5b61138882101580156110cc575061177082105b1561114e57600060076005815481106110f557634e487b7160e01b600052603260045260246000fd5b90600052602060002001805461110a90612412565b905011801561111d5750611770600a5410155b61112c576009610de583611910565b6007600581548110610e2c57634e487b7160e01b600052603260045260246000fd5b61177082101580156111615750611b5882105b156111e3576000600760068154811061118a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001805461119f90612412565b90501180156111b25750611b58600a5410155b6111c1576009610de583611910565b6007600681548110610e2c57634e487b7160e01b600052603260045260246000fd5b611b5882101580156111f65750611f4082105b156112765760006007808154811061121e57634e487b7160e01b600052603260045260246000fd5b90600052602060002001805461123390612412565b90501180156112465750611f40600a5410155b611255576009610de583611910565b60078081548110610e2c57634e487b7160e01b600052603260045260246000fd5b611f408210158015611289575061232882105b1561130b57600060076008815481106112b257634e487b7160e01b600052603260045260246000fd5b9060005260206000200180546112c790612412565b90501180156112da5750612328600a5410155b6112e9576009610de583611910565b6007600881548110610e2c57634e487b7160e01b600052603260045260246000fd5b6000600760098154811061132f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001805461134490612412565b90501180156113575750600c54600a5410155b611366576009610de583611910565b6007600981548110610e2c57634e487b7160e01b600052603260045260246000fd5b919050565b6006546001600160a01b031633146113b75760405162461bcd60e51b8152600401610628906122cd565b6001600160a01b03811661141c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610628565b611425816117ca565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061145d826108f3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661150f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610628565b600061151a836108f3565b9050806001600160a01b0316846001600160a01b031614806115555750836001600160a01b031661154a846105b3565b6001600160a01b0316145b8061158557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115a0826108f3565b6001600160a01b0316146116085760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610628565b6001600160a01b03821661166a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610628565b611675600082611428565b6001600160a01b038316600090815260036020526040812080546001929061169e9084906123cf565b90915550506001600160a01b03821660009081526003602052604081208054600192906116cc908490612384565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600654600160a01b900460ff1661177d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610628565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600654600160a01b900460ff16156118695760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610628565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117ad3390565b60006118b08284612384565b9392505050565b60006118b082846123b0565b610bf7828260405180602001604052806000815250611a2a565b6118e884848461158d565b6118f484848484611a5d565b61080b5760405162461bcd60e51b81526004016106289061227b565b6060816119345750506040805180820190915260018152600360fc1b602082015290565b8160005b811561195e57806119488161244d565b91506119579050600a8361239c565b9150611938565b60008167ffffffffffffffff81111561198757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156119b1576020820181803683370190505b5090505b8415611585576119c66001836123cf565b91506119d3600a86612468565b6119de906030612384565b60f81b818381518110611a0157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a23600a8661239c565b94506119b5565b611a348383611b6a565b611a416000848484611a5d565b61075e5760405162461bcd60e51b81526004016106289061227b565b60006001600160a01b0384163b15611b5f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611aa190339089908890889060040161222b565b602060405180830381600087803b158015611abb57600080fd5b505af1925050508015611aeb575060408051601f3d908101601f19168201909252611ae891810190612002565b60015b611b45573d808015611b19576040519150601f19603f3d011682016040523d82523d6000602084013e611b1e565b606091505b508051611b3d5760405162461bcd60e51b81526004016106289061227b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611585565b506001949350505050565b6001600160a01b038216611bc05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610628565b6000818152600260205260409020546001600160a01b031615611c255760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610628565b6001600160a01b0382166000908152600360205260408120805460019290611c4e908490612384565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cb890612412565b90600052602060002090601f016020900481019282611cda5760008555611d20565b82601f10611cf357805160ff1916838001178555611d20565b82800160010185558215611d20579182015b82811115611d20578251825591602001919060010190611d05565b50611d2c929150611d89565b5090565b828054828255906000526020600020908101928215611d7d579160200282015b82811115611d7d5782518051611d6d918491602090910190611cac565b5091602001919060010190611d50565b50611d2c929150611d9e565b5b80821115611d2c5760008155600101611d8a565b80821115611d2c576000611db28282611dbb565b50600101611d9e565b508054611dc790612412565b6000825580601f10611dd7575050565b601f0160209004906000526020600020908101906114259190611d89565b600067ffffffffffffffff831115611e0f57611e0f6124a8565b611e22601f8401601f1916602001612353565b9050828152838383011115611e3657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461138857600080fd5b600082601f830112611e74578081fd5b6118b083833560208501611df5565b600060208284031215611e94578081fd5b6118b082611e4d565b60008060408385031215611eaf578081fd5b611eb883611e4d565b9150611ec660208401611e4d565b90509250929050565b600080600060608486031215611ee3578081fd5b611eec84611e4d565b9250611efa60208501611e4d565b9150604084013590509250925092565b60008060008060808587031215611f1f578081fd5b611f2885611e4d565b9350611f3660208601611e4d565b925060408501359150606085013567ffffffffffffffff811115611f58578182fd5b8501601f81018713611f68578182fd5b611f7787823560208401611df5565b91505092959194509250565b60008060408385031215611f95578182fd5b611f9e83611e4d565b915060208301358015158114611fb2578182fd5b809150509250929050565b60008060408385031215611fcf578182fd5b611fd883611e4d565b946020939093013593505050565b600060208284031215611ff7578081fd5b81356118b0816124be565b600060208284031215612013578081fd5b81516118b0816124be565b600080600060608486031215612032578283fd5b833567ffffffffffffffff80821115612049578485fd5b61205587838801611e64565b945060209150818601358181111561206b578485fd5b61207788828901611e64565b94505060408601358181111561208b578384fd5b8601601f8101881361209b578384fd5b8035828111156120ad576120ad6124a8565b8060051b6120bc858201612353565b8281528581019084870183860188018d10156120d6578889fd5b8893505b84841015612113578035878111156120f057898afd5b6120fe8e8a838a0101611e64565b845250600193909301929187019187016120da565b50809750505050505050509250925092565b600060208284031215612136578081fd5b5035919050565b600081518084526121558160208601602086016123e6565b601f01601f19169290920160200192915050565b6000815161217b8185602086016123e6565b9290920192915050565b600080845482600182811c9150808316806121a157607f831692505b60208084108214156121c157634e487b7160e01b87526022600452602487fd5b8180156121d557600181146121e657612212565b60ff19861689528489019650612212565b60008b815260209020885b8681101561220a5781548b8201529085019083016121f1565b505084890196505b5050505050506122228185612169565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061225e9083018461213d565b9695505050505050565b6020815260006118b0602083018461213d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561237c5761237c6124a8565b604052919050565b600082198211156123975761239761247c565b500190565b6000826123ab576123ab612492565b500490565b60008160001904831182151516156123ca576123ca61247c565b500290565b6000828210156123e1576123e161247c565b500390565b60005b838110156124015781810151838201526020016123e9565b8381111561080b5750506000910152565b600181811c9082168061242657607f821691505b6020821081141561244757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124615761246161247c565b5060010190565b60008261247757612477612492565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461142557600080fdfea2646970667358221220400e40b086729bfcdfcaa3611ae86a54fb6b298b16efcd47af7eb45b32ec971764736f6c63430008040033

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.