ETH Price: $2,285.29 (-5.56%)

Token

NFTEye Genesis Member (GM)
 

Overview

Max Total Supply

0 GM

Holders

38

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 GM
0xde280f6aa540c9098b52956396ac33b648325533
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:
NFTEyeGenesisNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

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

contract NFTEyeGenesisNFT is ERC721, Pausable, Ownable, ReentrancyGuard {
    using SafeMath for uint256;

    uint256 public constant OG_SUPPLY = 128;
    uint256 public constant PUBLIC_SALE_SUPPLY = 1024;
    uint256 public constant PUBLIC_SALE_PRICE = 0.512 ether;

    uint256 private _ogTokenIdCount;
    uint256 private _publicSaleTokenIdCount;

    string private _nftBaseURI = "https://api.nfteye.io/api/nft_meta/";

    constructor() ERC721("NFTEye Genesis Member", "GM") {
        _ogTokenIdCount = 1; 
        _publicSaleTokenIdCount = 129;
    }

    function _baseURI() internal view override returns (string memory) {
        return _nftBaseURI;
    }

    function updateBaseURI(string calldata _nftURI) public onlyOwner {
        _nftBaseURI = _nftURI;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function publicMint(uint256 count)
        public
        payable
        nonReentrant
        whenNotPaused
    {
        require(count > 0, "Count must be greater than 0.");
        require(
            _publicSaleTokenIdCount.sub(1).add(count) <=
                (PUBLIC_SALE_SUPPLY + OG_SUPPLY),
            "Max supply exceeded."
        );
        require(
            msg.value >= PUBLIC_SALE_PRICE.mul(count),
            "Not enough ETH."
        );

        for (uint256 i = 0; i < count; i++) {
            _safeMint(msg.sender, _publicSaleTokenIdCount);
            _publicSaleTokenIdCount = _publicSaleTokenIdCount.add(1);
        }
    }

    function giveaway(address to) public onlyOwner {
        require(_ogTokenIdCount <= OG_SUPPLY, "Exceeds OG reserved supply");
        _safeMint(to, _ogTokenIdCount);
        _ogTokenIdCount = _ogTokenIdCount.add(1);
    }

    function withdraw() public onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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 5 of 14 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "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":"OG_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_SUPPLY","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":"to","type":"address"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"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":[{"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":"string","name":"_nftURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180606001604052806023815260200162003c9060239139600a9080519060200190620000359291906200020b565b503480156200004357600080fd5b506040518060400160405280601581526020017f4e46544579652047656e65736973204d656d62657200000000000000000000008152506040518060400160405280600281526020017f474d0000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c89291906200020b565b508060019080519060200190620000e19291906200020b565b5050506000600660006101000a81548160ff0219169083151502179055506200011f620001136200013d60201b60201c565b6200014560201b60201c565b60016007819055506001600881905550608160098190555062000320565b600033905090565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021990620002bb565b90600052602060002090601f0160209004810192826200023d576000855562000289565b82601f106200025857805160ff191683800117855562000289565b8280016001018555821562000289579182015b82811115620002885782518255916020019190600101906200026b565b5b5090506200029891906200029c565b5090565b5b80821115620002b75760008160009055506001016200029d565b5090565b60006002820490506001821680620002d457607f821691505b60208210811415620002eb57620002ea620002f1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61396080620003306000396000f3fe6080604052600436106101815760003560e01c8063715018a6116100d157806395f496341161008a578063c87b56dd11610064578063c87b56dd14610515578063dfd233dd14610552578063e985e9c51461057b578063f2fde38b146105b857610181565b806395f4963414610498578063a22cb465146104c3578063b88d4fde146104ec57610181565b8063715018a6146103c0578063830aec6d146103d75780638456cb59146104025780638da5cb5b14610419578063931688cb1461044457806395d89b411461046d57610181565b80632db115441161013e57806342842e0e1161011857806342842e0e146102f25780635c975abb1461031b5780636352211e1461034657806370a082311461038357610181565b80632db11544146102a85780633ccfd60b146102c45780633f4ba83a146102db57610181565b806301ffc9a71461018657806306fdde03146101c357806307e89ec0146101ee578063081812fc14610219578063095ea7b31461025657806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906126d1565b6105e1565b6040516101ba9190612c11565b60405180910390f35b3480156101cf57600080fd5b506101d86106c3565b6040516101e59190612c2c565b60405180910390f35b3480156101fa57600080fd5b50610203610755565b6040516102109190612f2e565b60405180910390f35b34801561022557600080fd5b50610240600480360381019061023b9190612768565b610761565b60405161024d9190612baa565b60405180910390f35b34801561026257600080fd5b5061027d60048036038101906102789190612695565b6107e6565b005b34801561028b57600080fd5b506102a660048036038101906102a1919061258f565b6108fe565b005b6102c260048036038101906102bd9190612768565b61095e565b005b3480156102d057600080fd5b506102d9610b5e565b005b3480156102e757600080fd5b506102f0610c2a565b005b3480156102fe57600080fd5b506103196004803603810190610314919061258f565b610cb0565b005b34801561032757600080fd5b50610330610cd0565b60405161033d9190612c11565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190612768565b610ce7565b60405161037a9190612baa565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a5919061252a565b610d99565b6040516103b79190612f2e565b60405180910390f35b3480156103cc57600080fd5b506103d5610e51565b005b3480156103e357600080fd5b506103ec610ed9565b6040516103f99190612f2e565b60405180910390f35b34801561040e57600080fd5b50610417610edf565b005b34801561042557600080fd5b5061042e610f65565b60405161043b9190612baa565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190612723565b610f8f565b005b34801561047957600080fd5b50610482611021565b60405161048f9190612c2c565b60405180910390f35b3480156104a457600080fd5b506104ad6110b3565b6040516104ba9190612f2e565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190612659565b6110b8565b005b3480156104f857600080fd5b50610513600480360381019061050e91906125de565b6110ce565b005b34801561052157600080fd5b5061053c60048036038101906105379190612768565b611130565b6040516105499190612c2c565b60405180910390f35b34801561055e57600080fd5b506105796004803603810190610574919061252a565b6111d7565b005b34801561058757600080fd5b506105a2600480360381019061059d9190612553565b6112c4565b6040516105af9190612c11565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da919061252a565b611358565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ac57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106bc57506106bb82611450565b5b9050919050565b6060600080546106d2906131ad565b80601f01602080910402602001604051908101604052809291908181526020018280546106fe906131ad565b801561074b5780601f106107205761010080835404028352916020019161074b565b820191906000526020600020905b81548152906001019060200180831161072e57829003601f168201915b5050505050905090565b67071afd498d00000081565b600061076c826114ba565b6107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a290612dee565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107f182610ce7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085990612e8e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610881611526565b73ffffffffffffffffffffffffffffffffffffffff1614806108b057506108af816108aa611526565b6112c4565b5b6108ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e690612d6e565b60405180910390fd5b6108f9838361152e565b505050565b61090f610909611526565b826115e7565b61094e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094590612eae565b60405180910390fd5b6109598383836116c5565b505050565b600260075414156109a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099b90612eee565b60405180910390fd5b60026007819055506109b4610cd0565b156109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb90612d4e565b60405180910390fd5b60008111610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e90612d2e565b60405180910390fd5b6080610400610a469190612fe2565b610a6e82610a60600160095461192190919063ffffffff16565b61193790919063ffffffff16565b1115610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa690612f0e565b60405180910390fd5b610aca8167071afd498d00000061194d90919063ffffffff16565b341015610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0390612e6e565b60405180910390fd5b60005b81811015610b5257610b2333600954611963565b610b39600160095461193790919063ffffffff16565b6009819055508080610b4a90613210565b915050610b0f565b50600160078190555050565b610b66611526565b73ffffffffffffffffffffffffffffffffffffffff16610b84610f65565b73ffffffffffffffffffffffffffffffffffffffff1614610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd190612e0e565b60405180910390fd5b610be2610f65565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c27573d6000803e3d6000fd5b50565b610c32611526565b73ffffffffffffffffffffffffffffffffffffffff16610c50610f65565b73ffffffffffffffffffffffffffffffffffffffff1614610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d90612e0e565b60405180910390fd5b610cae611981565b565b610ccb838383604051806020016040528060008152506110ce565b505050565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790612dae565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190612d8e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e59611526565b73ffffffffffffffffffffffffffffffffffffffff16610e77610f65565b73ffffffffffffffffffffffffffffffffffffffff1614610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490612e0e565b60405180910390fd5b610ed76000611a23565b565b61040081565b610ee7611526565b73ffffffffffffffffffffffffffffffffffffffff16610f05610f65565b73ffffffffffffffffffffffffffffffffffffffff1614610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290612e0e565b60405180910390fd5b610f63611ae9565b565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f97611526565b73ffffffffffffffffffffffffffffffffffffffff16610fb5610f65565b73ffffffffffffffffffffffffffffffffffffffff161461100b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100290612e0e565b60405180910390fd5b8181600a919061101c92919061236c565b505050565b606060018054611030906131ad565b80601f016020809104026020016040519081016040528092919081815260200182805461105c906131ad565b80156110a95780601f1061107e576101008083540402835291602001916110a9565b820191906000526020600020905b81548152906001019060200180831161108c57829003601f168201915b5050505050905090565b608081565b6110ca6110c3611526565b8383611b8c565b5050565b6110df6110d9611526565b836115e7565b61111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590612eae565b60405180910390fd5b61112a84848484611cf9565b50505050565b606061113b826114ba565b61117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190612e4e565b60405180910390fd5b6000611184611d55565b905060008151116111a457604051806020016040528060008152506111cf565b806111ae84611de7565b6040516020016111bf929190612b86565b6040516020818303038152906040525b915050919050565b6111df611526565b73ffffffffffffffffffffffffffffffffffffffff166111fd610f65565b73ffffffffffffffffffffffffffffffffffffffff1614611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a90612e0e565b60405180910390fd5b60806008541115611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129090612ece565b60405180910390fd5b6112a581600854611963565b6112bb600160085461193790919063ffffffff16565b60088190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611360611526565b73ffffffffffffffffffffffffffffffffffffffff1661137e610f65565b73ffffffffffffffffffffffffffffffffffffffff16146113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb90612e0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90612c8e565b60405180910390fd5b61144d81611a23565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166115a183610ce7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115f2826114ba565b611631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162890612d0e565b60405180910390fd5b600061163c83610ce7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116ab57508373ffffffffffffffffffffffffffffffffffffffff1661169384610761565b73ffffffffffffffffffffffffffffffffffffffff16145b806116bc57506116bb81856112c4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166116e582610ce7565b73ffffffffffffffffffffffffffffffffffffffff161461173b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173290612e2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a290612cce565b60405180910390fd5b6117b6838383611f94565b6117c160008261152e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461181191906130c3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118689190612fe2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000818361192f91906130c3565b905092915050565b600081836119459190612fe2565b905092915050565b6000818361195b9190613069565b905092915050565b61197d828260405180602001604052806000815250611f99565b5050565b611989610cd0565b6119c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bf90612c4e565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611a0c611526565b604051611a199190612baa565b60405180910390a1565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611af1610cd0565b15611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2890612d4e565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b75611526565b604051611b829190612baa565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf290612cee565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cec9190612c11565b60405180910390a3505050565b611d048484846116c5565b611d1084848484611ff4565b611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690612c6e565b60405180910390fd5b50505050565b6060600a8054611d64906131ad565b80601f0160208091040260200160405190810160405280929190818152602001828054611d90906131ad565b8015611ddd5780601f10611db257610100808354040283529160200191611ddd565b820191906000526020600020905b815481529060010190602001808311611dc057829003601f168201915b5050505050905090565b60606000821415611e2f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f8f565b600082905060005b60008214611e61578080611e4a90613210565b915050600a82611e5a9190613038565b9150611e37565b60008167ffffffffffffffff811115611ea3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ed55781602001600182028036833780820191505090505b5090505b60008514611f8857600182611eee91906130c3565b9150600a85611efd9190613259565b6030611f099190612fe2565b60f81b818381518110611f45577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f819190613038565b9450611ed9565b8093505050505b919050565b505050565b611fa3838361218b565b611fb06000848484611ff4565b611fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe690612c6e565b60405180910390fd5b505050565b60006120158473ffffffffffffffffffffffffffffffffffffffff16612359565b1561217e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261203e611526565b8786866040518563ffffffff1660e01b81526004016120609493929190612bc5565b602060405180830381600087803b15801561207a57600080fd5b505af19250505080156120ab57506040513d601f19601f820116820180604052508101906120a891906126fa565b60015b61212e573d80600081146120db576040519150601f19603f3d011682016040523d82523d6000602084013e6120e0565b606091505b50600081511415612126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211d90612c6e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612183565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f290612dce565b60405180910390fd5b612204816114ba565b15612244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223b90612cae565b60405180910390fd5b61225060008383611f94565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a09190612fe2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612378906131ad565b90600052602060002090601f01602090048101928261239a57600085556123e1565b82601f106123b357803560ff19168380011785556123e1565b828001600101855582156123e1579182015b828111156123e05782358255916020019190600101906123c5565b5b5090506123ee91906123f2565b5090565b5b8082111561240b5760008160009055506001016123f3565b5090565b600061242261241d84612f6e565b612f49565b90508281526020810184848401111561243a57600080fd5b61244584828561316b565b509392505050565b60008135905061245c816138ce565b92915050565b600081359050612471816138e5565b92915050565b600081359050612486816138fc565b92915050565b60008151905061249b816138fc565b92915050565b600082601f8301126124b257600080fd5b81356124c284826020860161240f565b91505092915050565b60008083601f8401126124dd57600080fd5b8235905067ffffffffffffffff8111156124f657600080fd5b60208301915083600182028301111561250e57600080fd5b9250929050565b60008135905061252481613913565b92915050565b60006020828403121561253c57600080fd5b600061254a8482850161244d565b91505092915050565b6000806040838503121561256657600080fd5b60006125748582860161244d565b92505060206125858582860161244d565b9150509250929050565b6000806000606084860312156125a457600080fd5b60006125b28682870161244d565b93505060206125c38682870161244d565b92505060406125d486828701612515565b9150509250925092565b600080600080608085870312156125f457600080fd5b60006126028782880161244d565b94505060206126138782880161244d565b935050604061262487828801612515565b925050606085013567ffffffffffffffff81111561264157600080fd5b61264d878288016124a1565b91505092959194509250565b6000806040838503121561266c57600080fd5b600061267a8582860161244d565b925050602061268b85828601612462565b9150509250929050565b600080604083850312156126a857600080fd5b60006126b68582860161244d565b92505060206126c785828601612515565b9150509250929050565b6000602082840312156126e357600080fd5b60006126f184828501612477565b91505092915050565b60006020828403121561270c57600080fd5b600061271a8482850161248c565b91505092915050565b6000806020838503121561273657600080fd5b600083013567ffffffffffffffff81111561275057600080fd5b61275c858286016124cb565b92509250509250929050565b60006020828403121561277a57600080fd5b600061278884828501612515565b91505092915050565b61279a816130f7565b82525050565b6127a981613109565b82525050565b60006127ba82612f9f565b6127c48185612fb5565b93506127d481856020860161317a565b6127dd81613346565b840191505092915050565b60006127f382612faa565b6127fd8185612fc6565b935061280d81856020860161317a565b61281681613346565b840191505092915050565b600061282c82612faa565b6128368185612fd7565b935061284681856020860161317a565b80840191505092915050565b600061285f601483612fc6565b915061286a82613357565b602082019050919050565b6000612882603283612fc6565b915061288d82613380565b604082019050919050565b60006128a5602683612fc6565b91506128b0826133cf565b604082019050919050565b60006128c8601c83612fc6565b91506128d38261341e565b602082019050919050565b60006128eb602483612fc6565b91506128f682613447565b604082019050919050565b600061290e601983612fc6565b915061291982613496565b602082019050919050565b6000612931602c83612fc6565b915061293c826134bf565b604082019050919050565b6000612954601d83612fc6565b915061295f8261350e565b602082019050919050565b6000612977601083612fc6565b915061298282613537565b602082019050919050565b600061299a603883612fc6565b91506129a582613560565b604082019050919050565b60006129bd602a83612fc6565b91506129c8826135af565b604082019050919050565b60006129e0602983612fc6565b91506129eb826135fe565b604082019050919050565b6000612a03602083612fc6565b9150612a0e8261364d565b602082019050919050565b6000612a26602c83612fc6565b9150612a3182613676565b604082019050919050565b6000612a49602083612fc6565b9150612a54826136c5565b602082019050919050565b6000612a6c602983612fc6565b9150612a77826136ee565b604082019050919050565b6000612a8f602f83612fc6565b9150612a9a8261373d565b604082019050919050565b6000612ab2600f83612fc6565b9150612abd8261378c565b602082019050919050565b6000612ad5602183612fc6565b9150612ae0826137b5565b604082019050919050565b6000612af8603183612fc6565b9150612b0382613804565b604082019050919050565b6000612b1b601a83612fc6565b9150612b2682613853565b602082019050919050565b6000612b3e601f83612fc6565b9150612b498261387c565b602082019050919050565b6000612b61601483612fc6565b9150612b6c826138a5565b602082019050919050565b612b8081613161565b82525050565b6000612b928285612821565b9150612b9e8284612821565b91508190509392505050565b6000602082019050612bbf6000830184612791565b92915050565b6000608082019050612bda6000830187612791565b612be76020830186612791565b612bf46040830185612b77565b8181036060830152612c0681846127af565b905095945050505050565b6000602082019050612c2660008301846127a0565b92915050565b60006020820190508181036000830152612c4681846127e8565b905092915050565b60006020820190508181036000830152612c6781612852565b9050919050565b60006020820190508181036000830152612c8781612875565b9050919050565b60006020820190508181036000830152612ca781612898565b9050919050565b60006020820190508181036000830152612cc7816128bb565b9050919050565b60006020820190508181036000830152612ce7816128de565b9050919050565b60006020820190508181036000830152612d0781612901565b9050919050565b60006020820190508181036000830152612d2781612924565b9050919050565b60006020820190508181036000830152612d4781612947565b9050919050565b60006020820190508181036000830152612d678161296a565b9050919050565b60006020820190508181036000830152612d878161298d565b9050919050565b60006020820190508181036000830152612da7816129b0565b9050919050565b60006020820190508181036000830152612dc7816129d3565b9050919050565b60006020820190508181036000830152612de7816129f6565b9050919050565b60006020820190508181036000830152612e0781612a19565b9050919050565b60006020820190508181036000830152612e2781612a3c565b9050919050565b60006020820190508181036000830152612e4781612a5f565b9050919050565b60006020820190508181036000830152612e6781612a82565b9050919050565b60006020820190508181036000830152612e8781612aa5565b9050919050565b60006020820190508181036000830152612ea781612ac8565b9050919050565b60006020820190508181036000830152612ec781612aeb565b9050919050565b60006020820190508181036000830152612ee781612b0e565b9050919050565b60006020820190508181036000830152612f0781612b31565b9050919050565b60006020820190508181036000830152612f2781612b54565b9050919050565b6000602082019050612f436000830184612b77565b92915050565b6000612f53612f64565b9050612f5f82826131df565b919050565b6000604051905090565b600067ffffffffffffffff821115612f8957612f88613317565b5b612f9282613346565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612fed82613161565b9150612ff883613161565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561302d5761302c61328a565b5b828201905092915050565b600061304382613161565b915061304e83613161565b92508261305e5761305d6132b9565b5b828204905092915050565b600061307482613161565b915061307f83613161565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130b8576130b761328a565b5b828202905092915050565b60006130ce82613161565b91506130d983613161565b9250828210156130ec576130eb61328a565b5b828203905092915050565b600061310282613141565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561319857808201518184015260208101905061317d565b838111156131a7576000848401525b50505050565b600060028204905060018216806131c557607f821691505b602082108114156131d9576131d86132e8565b5b50919050565b6131e882613346565b810181811067ffffffffffffffff8211171561320757613206613317565b5b80604052505050565b600061321b82613161565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561324e5761324d61328a565b5b600182019050919050565b600061326482613161565b915061326f83613161565b92508261327f5761327e6132b9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f436f756e74206d7573742062652067726561746572207468616e20302e000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482e0000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f45786365656473204f4720726573657276656420737570706c79000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4d617820737570706c792065786365656465642e000000000000000000000000600082015250565b6138d7816130f7565b81146138e257600080fd5b50565b6138ee81613109565b81146138f957600080fd5b50565b61390581613115565b811461391057600080fd5b50565b61391c81613161565b811461392757600080fd5b5056fea2646970667358221220ee6d014030e3d37baab6cbb10dc560bc431030b92ebe23a845cbe7ccf02fb5a564736f6c6343000804003368747470733a2f2f6170692e6e66746579652e696f2f6170692f6e66745f6d6574612f

Deployed Bytecode

0x6080604052600436106101815760003560e01c8063715018a6116100d157806395f496341161008a578063c87b56dd11610064578063c87b56dd14610515578063dfd233dd14610552578063e985e9c51461057b578063f2fde38b146105b857610181565b806395f4963414610498578063a22cb465146104c3578063b88d4fde146104ec57610181565b8063715018a6146103c0578063830aec6d146103d75780638456cb59146104025780638da5cb5b14610419578063931688cb1461044457806395d89b411461046d57610181565b80632db115441161013e57806342842e0e1161011857806342842e0e146102f25780635c975abb1461031b5780636352211e1461034657806370a082311461038357610181565b80632db11544146102a85780633ccfd60b146102c45780633f4ba83a146102db57610181565b806301ffc9a71461018657806306fdde03146101c357806307e89ec0146101ee578063081812fc14610219578063095ea7b31461025657806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906126d1565b6105e1565b6040516101ba9190612c11565b60405180910390f35b3480156101cf57600080fd5b506101d86106c3565b6040516101e59190612c2c565b60405180910390f35b3480156101fa57600080fd5b50610203610755565b6040516102109190612f2e565b60405180910390f35b34801561022557600080fd5b50610240600480360381019061023b9190612768565b610761565b60405161024d9190612baa565b60405180910390f35b34801561026257600080fd5b5061027d60048036038101906102789190612695565b6107e6565b005b34801561028b57600080fd5b506102a660048036038101906102a1919061258f565b6108fe565b005b6102c260048036038101906102bd9190612768565b61095e565b005b3480156102d057600080fd5b506102d9610b5e565b005b3480156102e757600080fd5b506102f0610c2a565b005b3480156102fe57600080fd5b506103196004803603810190610314919061258f565b610cb0565b005b34801561032757600080fd5b50610330610cd0565b60405161033d9190612c11565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190612768565b610ce7565b60405161037a9190612baa565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a5919061252a565b610d99565b6040516103b79190612f2e565b60405180910390f35b3480156103cc57600080fd5b506103d5610e51565b005b3480156103e357600080fd5b506103ec610ed9565b6040516103f99190612f2e565b60405180910390f35b34801561040e57600080fd5b50610417610edf565b005b34801561042557600080fd5b5061042e610f65565b60405161043b9190612baa565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190612723565b610f8f565b005b34801561047957600080fd5b50610482611021565b60405161048f9190612c2c565b60405180910390f35b3480156104a457600080fd5b506104ad6110b3565b6040516104ba9190612f2e565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190612659565b6110b8565b005b3480156104f857600080fd5b50610513600480360381019061050e91906125de565b6110ce565b005b34801561052157600080fd5b5061053c60048036038101906105379190612768565b611130565b6040516105499190612c2c565b60405180910390f35b34801561055e57600080fd5b506105796004803603810190610574919061252a565b6111d7565b005b34801561058757600080fd5b506105a2600480360381019061059d9190612553565b6112c4565b6040516105af9190612c11565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da919061252a565b611358565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ac57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106bc57506106bb82611450565b5b9050919050565b6060600080546106d2906131ad565b80601f01602080910402602001604051908101604052809291908181526020018280546106fe906131ad565b801561074b5780601f106107205761010080835404028352916020019161074b565b820191906000526020600020905b81548152906001019060200180831161072e57829003601f168201915b5050505050905090565b67071afd498d00000081565b600061076c826114ba565b6107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a290612dee565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107f182610ce7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085990612e8e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610881611526565b73ffffffffffffffffffffffffffffffffffffffff1614806108b057506108af816108aa611526565b6112c4565b5b6108ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e690612d6e565b60405180910390fd5b6108f9838361152e565b505050565b61090f610909611526565b826115e7565b61094e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094590612eae565b60405180910390fd5b6109598383836116c5565b505050565b600260075414156109a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099b90612eee565b60405180910390fd5b60026007819055506109b4610cd0565b156109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb90612d4e565b60405180910390fd5b60008111610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e90612d2e565b60405180910390fd5b6080610400610a469190612fe2565b610a6e82610a60600160095461192190919063ffffffff16565b61193790919063ffffffff16565b1115610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa690612f0e565b60405180910390fd5b610aca8167071afd498d00000061194d90919063ffffffff16565b341015610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0390612e6e565b60405180910390fd5b60005b81811015610b5257610b2333600954611963565b610b39600160095461193790919063ffffffff16565b6009819055508080610b4a90613210565b915050610b0f565b50600160078190555050565b610b66611526565b73ffffffffffffffffffffffffffffffffffffffff16610b84610f65565b73ffffffffffffffffffffffffffffffffffffffff1614610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd190612e0e565b60405180910390fd5b610be2610f65565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c27573d6000803e3d6000fd5b50565b610c32611526565b73ffffffffffffffffffffffffffffffffffffffff16610c50610f65565b73ffffffffffffffffffffffffffffffffffffffff1614610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d90612e0e565b60405180910390fd5b610cae611981565b565b610ccb838383604051806020016040528060008152506110ce565b505050565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790612dae565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190612d8e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e59611526565b73ffffffffffffffffffffffffffffffffffffffff16610e77610f65565b73ffffffffffffffffffffffffffffffffffffffff1614610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490612e0e565b60405180910390fd5b610ed76000611a23565b565b61040081565b610ee7611526565b73ffffffffffffffffffffffffffffffffffffffff16610f05610f65565b73ffffffffffffffffffffffffffffffffffffffff1614610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290612e0e565b60405180910390fd5b610f63611ae9565b565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f97611526565b73ffffffffffffffffffffffffffffffffffffffff16610fb5610f65565b73ffffffffffffffffffffffffffffffffffffffff161461100b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100290612e0e565b60405180910390fd5b8181600a919061101c92919061236c565b505050565b606060018054611030906131ad565b80601f016020809104026020016040519081016040528092919081815260200182805461105c906131ad565b80156110a95780601f1061107e576101008083540402835291602001916110a9565b820191906000526020600020905b81548152906001019060200180831161108c57829003601f168201915b5050505050905090565b608081565b6110ca6110c3611526565b8383611b8c565b5050565b6110df6110d9611526565b836115e7565b61111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590612eae565b60405180910390fd5b61112a84848484611cf9565b50505050565b606061113b826114ba565b61117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190612e4e565b60405180910390fd5b6000611184611d55565b905060008151116111a457604051806020016040528060008152506111cf565b806111ae84611de7565b6040516020016111bf929190612b86565b6040516020818303038152906040525b915050919050565b6111df611526565b73ffffffffffffffffffffffffffffffffffffffff166111fd610f65565b73ffffffffffffffffffffffffffffffffffffffff1614611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a90612e0e565b60405180910390fd5b60806008541115611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129090612ece565b60405180910390fd5b6112a581600854611963565b6112bb600160085461193790919063ffffffff16565b60088190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611360611526565b73ffffffffffffffffffffffffffffffffffffffff1661137e610f65565b73ffffffffffffffffffffffffffffffffffffffff16146113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb90612e0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90612c8e565b60405180910390fd5b61144d81611a23565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166115a183610ce7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115f2826114ba565b611631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162890612d0e565b60405180910390fd5b600061163c83610ce7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116ab57508373ffffffffffffffffffffffffffffffffffffffff1661169384610761565b73ffffffffffffffffffffffffffffffffffffffff16145b806116bc57506116bb81856112c4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166116e582610ce7565b73ffffffffffffffffffffffffffffffffffffffff161461173b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173290612e2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a290612cce565b60405180910390fd5b6117b6838383611f94565b6117c160008261152e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461181191906130c3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118689190612fe2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000818361192f91906130c3565b905092915050565b600081836119459190612fe2565b905092915050565b6000818361195b9190613069565b905092915050565b61197d828260405180602001604052806000815250611f99565b5050565b611989610cd0565b6119c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bf90612c4e565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611a0c611526565b604051611a199190612baa565b60405180910390a1565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611af1610cd0565b15611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2890612d4e565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b75611526565b604051611b829190612baa565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf290612cee565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cec9190612c11565b60405180910390a3505050565b611d048484846116c5565b611d1084848484611ff4565b611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690612c6e565b60405180910390fd5b50505050565b6060600a8054611d64906131ad565b80601f0160208091040260200160405190810160405280929190818152602001828054611d90906131ad565b8015611ddd5780601f10611db257610100808354040283529160200191611ddd565b820191906000526020600020905b815481529060010190602001808311611dc057829003601f168201915b5050505050905090565b60606000821415611e2f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f8f565b600082905060005b60008214611e61578080611e4a90613210565b915050600a82611e5a9190613038565b9150611e37565b60008167ffffffffffffffff811115611ea3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ed55781602001600182028036833780820191505090505b5090505b60008514611f8857600182611eee91906130c3565b9150600a85611efd9190613259565b6030611f099190612fe2565b60f81b818381518110611f45577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f819190613038565b9450611ed9565b8093505050505b919050565b505050565b611fa3838361218b565b611fb06000848484611ff4565b611fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe690612c6e565b60405180910390fd5b505050565b60006120158473ffffffffffffffffffffffffffffffffffffffff16612359565b1561217e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261203e611526565b8786866040518563ffffffff1660e01b81526004016120609493929190612bc5565b602060405180830381600087803b15801561207a57600080fd5b505af19250505080156120ab57506040513d601f19601f820116820180604052508101906120a891906126fa565b60015b61212e573d80600081146120db576040519150601f19603f3d011682016040523d82523d6000602084013e6120e0565b606091505b50600081511415612126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211d90612c6e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612183565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f290612dce565b60405180910390fd5b612204816114ba565b15612244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223b90612cae565b60405180910390fd5b61225060008383611f94565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a09190612fe2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612378906131ad565b90600052602060002090601f01602090048101928261239a57600085556123e1565b82601f106123b357803560ff19168380011785556123e1565b828001600101855582156123e1579182015b828111156123e05782358255916020019190600101906123c5565b5b5090506123ee91906123f2565b5090565b5b8082111561240b5760008160009055506001016123f3565b5090565b600061242261241d84612f6e565b612f49565b90508281526020810184848401111561243a57600080fd5b61244584828561316b565b509392505050565b60008135905061245c816138ce565b92915050565b600081359050612471816138e5565b92915050565b600081359050612486816138fc565b92915050565b60008151905061249b816138fc565b92915050565b600082601f8301126124b257600080fd5b81356124c284826020860161240f565b91505092915050565b60008083601f8401126124dd57600080fd5b8235905067ffffffffffffffff8111156124f657600080fd5b60208301915083600182028301111561250e57600080fd5b9250929050565b60008135905061252481613913565b92915050565b60006020828403121561253c57600080fd5b600061254a8482850161244d565b91505092915050565b6000806040838503121561256657600080fd5b60006125748582860161244d565b92505060206125858582860161244d565b9150509250929050565b6000806000606084860312156125a457600080fd5b60006125b28682870161244d565b93505060206125c38682870161244d565b92505060406125d486828701612515565b9150509250925092565b600080600080608085870312156125f457600080fd5b60006126028782880161244d565b94505060206126138782880161244d565b935050604061262487828801612515565b925050606085013567ffffffffffffffff81111561264157600080fd5b61264d878288016124a1565b91505092959194509250565b6000806040838503121561266c57600080fd5b600061267a8582860161244d565b925050602061268b85828601612462565b9150509250929050565b600080604083850312156126a857600080fd5b60006126b68582860161244d565b92505060206126c785828601612515565b9150509250929050565b6000602082840312156126e357600080fd5b60006126f184828501612477565b91505092915050565b60006020828403121561270c57600080fd5b600061271a8482850161248c565b91505092915050565b6000806020838503121561273657600080fd5b600083013567ffffffffffffffff81111561275057600080fd5b61275c858286016124cb565b92509250509250929050565b60006020828403121561277a57600080fd5b600061278884828501612515565b91505092915050565b61279a816130f7565b82525050565b6127a981613109565b82525050565b60006127ba82612f9f565b6127c48185612fb5565b93506127d481856020860161317a565b6127dd81613346565b840191505092915050565b60006127f382612faa565b6127fd8185612fc6565b935061280d81856020860161317a565b61281681613346565b840191505092915050565b600061282c82612faa565b6128368185612fd7565b935061284681856020860161317a565b80840191505092915050565b600061285f601483612fc6565b915061286a82613357565b602082019050919050565b6000612882603283612fc6565b915061288d82613380565b604082019050919050565b60006128a5602683612fc6565b91506128b0826133cf565b604082019050919050565b60006128c8601c83612fc6565b91506128d38261341e565b602082019050919050565b60006128eb602483612fc6565b91506128f682613447565b604082019050919050565b600061290e601983612fc6565b915061291982613496565b602082019050919050565b6000612931602c83612fc6565b915061293c826134bf565b604082019050919050565b6000612954601d83612fc6565b915061295f8261350e565b602082019050919050565b6000612977601083612fc6565b915061298282613537565b602082019050919050565b600061299a603883612fc6565b91506129a582613560565b604082019050919050565b60006129bd602a83612fc6565b91506129c8826135af565b604082019050919050565b60006129e0602983612fc6565b91506129eb826135fe565b604082019050919050565b6000612a03602083612fc6565b9150612a0e8261364d565b602082019050919050565b6000612a26602c83612fc6565b9150612a3182613676565b604082019050919050565b6000612a49602083612fc6565b9150612a54826136c5565b602082019050919050565b6000612a6c602983612fc6565b9150612a77826136ee565b604082019050919050565b6000612a8f602f83612fc6565b9150612a9a8261373d565b604082019050919050565b6000612ab2600f83612fc6565b9150612abd8261378c565b602082019050919050565b6000612ad5602183612fc6565b9150612ae0826137b5565b604082019050919050565b6000612af8603183612fc6565b9150612b0382613804565b604082019050919050565b6000612b1b601a83612fc6565b9150612b2682613853565b602082019050919050565b6000612b3e601f83612fc6565b9150612b498261387c565b602082019050919050565b6000612b61601483612fc6565b9150612b6c826138a5565b602082019050919050565b612b8081613161565b82525050565b6000612b928285612821565b9150612b9e8284612821565b91508190509392505050565b6000602082019050612bbf6000830184612791565b92915050565b6000608082019050612bda6000830187612791565b612be76020830186612791565b612bf46040830185612b77565b8181036060830152612c0681846127af565b905095945050505050565b6000602082019050612c2660008301846127a0565b92915050565b60006020820190508181036000830152612c4681846127e8565b905092915050565b60006020820190508181036000830152612c6781612852565b9050919050565b60006020820190508181036000830152612c8781612875565b9050919050565b60006020820190508181036000830152612ca781612898565b9050919050565b60006020820190508181036000830152612cc7816128bb565b9050919050565b60006020820190508181036000830152612ce7816128de565b9050919050565b60006020820190508181036000830152612d0781612901565b9050919050565b60006020820190508181036000830152612d2781612924565b9050919050565b60006020820190508181036000830152612d4781612947565b9050919050565b60006020820190508181036000830152612d678161296a565b9050919050565b60006020820190508181036000830152612d878161298d565b9050919050565b60006020820190508181036000830152612da7816129b0565b9050919050565b60006020820190508181036000830152612dc7816129d3565b9050919050565b60006020820190508181036000830152612de7816129f6565b9050919050565b60006020820190508181036000830152612e0781612a19565b9050919050565b60006020820190508181036000830152612e2781612a3c565b9050919050565b60006020820190508181036000830152612e4781612a5f565b9050919050565b60006020820190508181036000830152612e6781612a82565b9050919050565b60006020820190508181036000830152612e8781612aa5565b9050919050565b60006020820190508181036000830152612ea781612ac8565b9050919050565b60006020820190508181036000830152612ec781612aeb565b9050919050565b60006020820190508181036000830152612ee781612b0e565b9050919050565b60006020820190508181036000830152612f0781612b31565b9050919050565b60006020820190508181036000830152612f2781612b54565b9050919050565b6000602082019050612f436000830184612b77565b92915050565b6000612f53612f64565b9050612f5f82826131df565b919050565b6000604051905090565b600067ffffffffffffffff821115612f8957612f88613317565b5b612f9282613346565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612fed82613161565b9150612ff883613161565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561302d5761302c61328a565b5b828201905092915050565b600061304382613161565b915061304e83613161565b92508261305e5761305d6132b9565b5b828204905092915050565b600061307482613161565b915061307f83613161565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130b8576130b761328a565b5b828202905092915050565b60006130ce82613161565b91506130d983613161565b9250828210156130ec576130eb61328a565b5b828203905092915050565b600061310282613141565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561319857808201518184015260208101905061317d565b838111156131a7576000848401525b50505050565b600060028204905060018216806131c557607f821691505b602082108114156131d9576131d86132e8565b5b50919050565b6131e882613346565b810181811067ffffffffffffffff8211171561320757613206613317565b5b80604052505050565b600061321b82613161565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561324e5761324d61328a565b5b600182019050919050565b600061326482613161565b915061326f83613161565b92508261327f5761327e6132b9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f436f756e74206d7573742062652067726561746572207468616e20302e000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482e0000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f45786365656473204f4720726573657276656420737570706c79000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4d617820737570706c792065786365656465642e000000000000000000000000600082015250565b6138d7816130f7565b81146138e257600080fd5b50565b6138ee81613109565b81146138f957600080fd5b50565b61390581613115565b811461391057600080fd5b50565b61391c81613161565b811461392757600080fd5b5056fea2646970667358221220ee6d014030e3d37baab6cbb10dc560bc431030b92ebe23a845cbe7ccf02fb5a564736f6c63430008040033

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.