ETH Price: $3,304.13 (+1.73%)
 

Overview

Max Total Supply

0 DOGSHIT

Holders

42

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 DOGSHIT
0xd6a984153acb6c9e2d788f08c2465a1358bb89a7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Dogshit is a collection of 2500 dogshit NFT's on the Ethereum Blockchain

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DogShitNfts

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : DogShitNfts.sol
pragma solidity ^0.8.0;

// SPDX-License-Identifier: MIT License

// WE ARE SELLING DOGSHIT ON THE BLOCKCHAIN
// Check https://www.dogshitnfts.com/
//
//  ........................................
//  ........................................
//  ..................'.............'.......
//  ........'''''..''''.............'''..'''
//  ..................................'...'.
//  ................   ..   ..........'..''.
//  ................  .::;.   ..............
//  ..'......'...    .,:::,.    ......'.....
//  llllllllcc:.  .,;;:;;,..      ':llllcccl
//  dddddol,... .,;:::,'..  ..'.   .:ooooood
//  dddddo, .......','......;:;..   'lododdd
//  dddddl'.,::;'.';;;;;;;;;;,..     ,oddddd
//  dddo:.  ';:;:::::;::::;,..        .:odod
//  dddl. ..........',,,,,'......',.   .lddd
//  dddl..;;;,'....',;;;;;;;;;;;;,'.   .clll
//  dddl..';:;;:;;::;;;:::;;:;,''..    .:ccc
//  dddoc'.....................       .;cccc
//  dddool:;'.    ..    ....      ..';cccllo
//  ooooooodollllllllllllllllllllllooooooodd
//  looodddodddddddddddddddddddddodddddddddd

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract DogShitNfts is ERC721URIStorage, ERC721Pausable, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    uint public fee;

    address payable private cashOutWallet = payable(0x26121df02555a5292ccc5472153eBEEb0e78A192);
    address[] private cashOutCallers = [0xdbD8BeDceBFA5F98FAb28B6643D98A71A0FCD2d3, 0xA93Cd53a4735fCfA2CB4082Ee8C8cDF3A5cA0114];

    string private _baseURIPrefix;

    event PriceUpdated(uint newPrice);

    receive() external payable {}

    constructor() ERC721("DOGSHIT", "DOGSHIT") {
        fee = 30000000000000000 wei; //0.03 ETH
        _baseURIPrefix = "ipfs://QmPGM5qJ4UJxUnY4z76dgiqVBFy4yZ3vmW37G856Z1usuT/";
    }

    function setBaseURI(string memory baseURIPrefix) public onlyOwner {
        _baseURIPrefix = baseURIPrefix;
    }

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

    function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {
        return super.tokenURI(tokenId);
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal whenNotPaused override(ERC721, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

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

    function mint(address wallet, uint numberOfMints) whenNotPaused public payable returns (uint256) {
        require(_tokenIds.current() >= 10, "Need to mint reserved nfts first");
        require(_tokenIds.current() + numberOfMints <= 2500, "Maximum amount of tokens already minted.");
        require(msg.value >= fee * numberOfMints, "Fee is not correct.");  //User must pay set fee.
        require(numberOfMints <= 30, "You cant mint more than 30 at a time.");

        doMint(wallet, numberOfMints);

        return _tokenIds.current();
    }

    function doMint(address wallet, uint numberOfMints) private {
        for(uint i = 0; i < numberOfMints; i++) {
            _tokenIds.increment();
            uint256 tokenId = _tokenIds.current();
            _safeMint(wallet, tokenId);

            string memory tokenURISuffix = string(abi.encodePacked(toString(tokenId),  ".json"));
            _setTokenURI(tokenId, tokenURISuffix);
        }
    }

    function mintOwner(address wallet) public onlyOwner returns (uint256) {
        require(_tokenIds.current() == 0);

        doMint(wallet, 10);

        return _tokenIds.current();
    }

    function updateFee(uint newFee) public onlyOwner{
      fee = newFee;

      emit PriceUpdated(newFee);
    }

    function getFee() public view returns (uint) {
      return fee;
    }

    function cashOut() public {
        require(msg.sender == cashOutCallers[0] || msg.sender == cashOutCallers[1], "Should be called with whitelisted wallet");
        cashOutWallet.call{value: address(this).balance}("");
    }

    function currentTokenId() public view returns (uint256) {
        return _tokenIds.current();
    }

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 3 of 15 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 4 of 15 : ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

File 5 of 15 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

File 6 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 7 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

File 10 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 of 15 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

File 13 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

File 15 of 15 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"PriceUpdated","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cashOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee","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":[],"name":"getFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"mintOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURIPrefix","type":"string"}],"name":"setBaseURI","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":"uint256","name":"newFee","type":"uint256"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600a80546001600160a01b0319167326121df02555a5292ccc5472153ebeeb0e78a19217905560c060405273dbd8bedcebfa5f98fab28b6643d98a71a0fcd2d3608090815273a93cd53a4735fcfa2cb4082ee8c8cdf3a5ca011460a0526200006c90600b90600262000187565b503480156200007a57600080fd5b506040805180820182526007808252661113d1d4d2125560ca1b602080840182815285518087019096529285528401528151919291620000bd91600091620001f1565b508051620000d3906001906020840190620001f1565b50506007805460ff19169055506000620000ec62000183565b60078054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350666a94d74f43000060095560408051606081019091526036808252620027e4602083013980516200017c91600c91602090910190620001f1565b50620002c2565b3390565b828054828255906000526020600020908101928215620001df579160200282015b82811115620001df57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620001a8565b50620001ed9291506200026e565b5090565b828054620001ff9062000285565b90600052602060002090601f016020900481019282620002235760008555620001df565b82601f106200023e57805160ff1916838001178555620001df565b82800160010185558215620001df579182015b82811115620001df57825182559160200191906001019062000251565b5b80821115620001ed57600081556001016200026f565b6002810460018216806200029a57607f821691505b60208210811415620002bc57634e487b7160e01b600052602260045260246000fd5b50919050565b61251280620002d26000396000f3fe60806040526004361061019f5760003560e01c806370a08231116100ec578063a22cb4651161008a578063ced72f8711610064578063ced72f871461045a578063ddca3f431461046f578063e985e9c514610484578063f2fde38b146104a4576101a6565b8063a22cb465146103fa578063b88d4fde1461041a578063c87b56dd1461043a576101a6565b80638456cb59116100c65780638456cb591461039b5780638da5cb5b146103b05780639012c4a8146103c557806395d89b41146103e5576101a6565b806370a0823114610351578063715018a614610371578063793cd71e14610386576101a6565b80633f4ba83a1161015957806355f804b31161013357806355f804b3146102dc5780635c975abb146102fc57806361f80f88146103115780636352211e14610331576101a6565b80633f4ba83a1461029457806340c10f19146102a957806342842e0e146102bc576101a6565b80629a9b7b146101ab57806301ffc9a7146101d657806306fdde0314610203578063081812fc14610225578063095ea7b31461025257806323b872dd14610274576101a6565b366101a657005b600080fd5b3480156101b757600080fd5b506101c06104c4565b6040516101cd9190612380565b60405180910390f35b3480156101e257600080fd5b506101f66101f1366004611b15565b6104d5565b6040516101cd9190611c83565b34801561020f57600080fd5b5061021861051d565b6040516101cd9190611c8e565b34801561023157600080fd5b50610245610240366004611b93565b6105af565b6040516101cd9190611c32565b34801561025e57600080fd5b5061027261026d366004611aec565b6105fb565b005b34801561028057600080fd5b5061027261028f3660046119fe565b610693565b3480156102a057600080fd5b506102726106cb565b6101c06102b7366004611aec565b610714565b3480156102c857600080fd5b506102726102d73660046119fe565b610804565b3480156102e857600080fd5b506102726102f7366004611b4d565b61081f565b34801561030857600080fd5b506101f6610875565b34801561031d57600080fd5b506101c061032c3660046119b2565b61087e565b34801561033d57600080fd5b5061024561034c366004611b93565b6108e8565b34801561035d57600080fd5b506101c061036c3660046119b2565b61091d565b34801561037d57600080fd5b50610272610961565b34801561039257600080fd5b506102726109f0565b3480156103a757600080fd5b50610272610adf565b3480156103bc57600080fd5b50610245610b26565b3480156103d157600080fd5b506102726103e0366004611b93565b610b3a565b3480156103f157600080fd5b50610218610bb9565b34801561040657600080fd5b50610272610415366004611ab2565b610bc8565b34801561042657600080fd5b50610272610435366004611a39565b610c96565b34801561044657600080fd5b50610218610455366004611b93565b610cd5565b34801561046657600080fd5b506101c0610ce0565b34801561047b57600080fd5b506101c0610ce6565b34801561049057600080fd5b506101f661049f3660046119cc565b610cec565b3480156104b057600080fd5b506102726104bf3660046119b2565b610d1a565b60006104d06008610de6565b905090565b60006001600160e01b031982166380ac58cd60e01b148061050657506001600160e01b03198216635b5e139f60e01b145b80610515575061051582610dea565b90505b919050565b60606000805461052c90612417565b80601f016020809104026020016040519081016040528092919081815260200182805461055890612417565b80156105a55780601f1061057a576101008083540402835291602001916105a5565b820191906000526020600020905b81548152906001019060200180831161058857829003601f168201915b5050505050905090565b60006105ba82610e03565b6105df5760405162461bcd60e51b81526004016105d690612148565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610606826108e8565b9050806001600160a01b0316836001600160a01b0316141561063a5760405162461bcd60e51b81526004016105d690612261565b806001600160a01b031661064c610e20565b6001600160a01b0316148061066857506106688161049f610e20565b6106845760405162461bcd60e51b81526004016105d690611f84565b61068e8383610e24565b505050565b6106a461069e610e20565b82610e92565b6106c05760405162461bcd60e51b81526004016105d6906122a2565b61068e838383610f17565b6106d3610e20565b6001600160a01b03166106e4610b26565b6001600160a01b03161461070a5760405162461bcd60e51b81526004016105d690612194565b610712611044565b565b600061071e610875565b1561073b5760405162461bcd60e51b81526004016105d690611f5a565b600a6107476008610de6565b10156107655760405162461bcd60e51b81526004016105d690611eac565b6109c4826107736008610de6565b61077d9190612389565b111561079b5760405162461bcd60e51b81526004016105d690611de9565b816009546107a991906123b5565b3410156107c85760405162461bcd60e51b81526004016105d690611ee1565b601e8211156107e95760405162461bcd60e51b81526004016105d69061233b565b6107f383836110b2565b6107fd6008610de6565b9392505050565b61068e83838360405180602001604052806000815250610c96565b610827610e20565b6001600160a01b0316610838610b26565b6001600160a01b03161461085e5760405162461bcd60e51b81526004016105d690612194565b805161087190600c906020840190611892565b5050565b60075460ff1690565b6000610888610e20565b6001600160a01b0316610899610b26565b6001600160a01b0316146108bf5760405162461bcd60e51b81526004016105d690612194565b6108c96008610de6565b156108d357600080fd5b6108de82600a6110b2565b6105156008610de6565b6000818152600260205260408120546001600160a01b0316806105155760405162461bcd60e51b81526004016105d69061202b565b60006001600160a01b0382166109455760405162461bcd60e51b81526004016105d690611fe1565b506001600160a01b031660009081526003602052604090205490565b610969610e20565b6001600160a01b031661097a610b26565b6001600160a01b0316146109a05760405162461bcd60e51b81526004016105d690612194565b60075460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360078054610100600160a81b0319169055565b600b600081548110610a1257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316331480610a695750600b600181548110610a5157634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031633145b610a855760405162461bcd60e51b81526004016105d6906122f3565b600a546040516001600160a01b03909116904790610aa290611c2f565b60006040518083038185875af1925050503d806000811461068e576040519150601f19603f3d011682016040523d82523d6000602084013e61068e565b610ae7610e20565b6001600160a01b0316610af8610b26565b6001600160a01b031614610b1e5760405162461bcd60e51b81526004016105d690612194565b61071261112a565b60075461010090046001600160a01b031690565b610b42610e20565b6001600160a01b0316610b53610b26565b6001600160a01b031614610b795760405162461bcd60e51b81526004016105d690612194565b60098190556040517f66cbca4f3c64fecf1dcb9ce094abcf7f68c3450a1d4e3a8e917dd621edb4ebe090610bae908390612380565b60405180910390a150565b60606001805461052c90612417565b610bd0610e20565b6001600160a01b0316826001600160a01b03161415610c015760405162461bcd60e51b81526004016105d690611e75565b8060056000610c0e610e20565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610c52610e20565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c8a9190611c83565b60405180910390a35050565b610ca7610ca1610e20565b83610e92565b610cc35760405162461bcd60e51b81526004016105d6906122a2565b610ccf84848484611185565b50505050565b6060610515826111b8565b60095490565b60095481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610d22610e20565b6001600160a01b0316610d33610b26565b6001600160a01b031614610d595760405162461bcd60e51b81526004016105d690612194565b6001600160a01b038116610d7f5760405162461bcd60e51b81526004016105d690611d6c565b6007546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b5490565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e59826108e8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610e9d82610e03565b610eb95760405162461bcd60e51b81526004016105d690611f0e565b6000610ec4836108e8565b9050806001600160a01b0316846001600160a01b03161480610eff5750836001600160a01b0316610ef4846105af565b6001600160a01b0316145b80610f0f5750610f0f8185610cec565b949350505050565b826001600160a01b0316610f2a826108e8565b6001600160a01b031614610f505760405162461bcd60e51b81526004016105d6906121c9565b6001600160a01b038216610f765760405162461bcd60e51b81526004016105d690611e31565b610f818383836112d1565b610f8c600082610e24565b6001600160a01b0383166000908152600360205260408120805460019290610fb59084906123d4565b90915550506001600160a01b0382166000908152600360205260408120805460019290610fe3908490612389565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61104c610875565b6110685760405162461bcd60e51b81526004016105d690611cec565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61109b610e20565b6040516110a89190611c32565b60405180910390a1565b60005b8181101561068e576110c76008611301565b60006110d36008610de6565b90506110df848261130a565b60006110ea82611324565b6040516020016110fa9190611c06565b6040516020818303038152906040529050611115828261143f565b5050808061112290612452565b9150506110b5565b611132610875565b1561114f5760405162461bcd60e51b81526004016105d690611f5a565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861109b610e20565b611190848484610f17565b61119c84848484611483565b610ccf5760405162461bcd60e51b81526004016105d690611d1a565b60606111c382610e03565b6111df5760405162461bcd60e51b81526004016105d6906120f7565b600082815260066020526040812080546111f890612417565b80601f016020809104026020016040519081016040528092919081815260200182805461122490612417565b80156112715780601f1061124657610100808354040283529160200191611271565b820191906000526020600020905b81548152906001019060200180831161125457829003601f168201915b50505050509050600061128261159e565b905080516000141561129657509050610518565b8151156112c85780826040516020016112b0929190611bd7565b60405160208183030381529060405292505050610518565b610f0f846115ad565b6112d9610875565b156112f65760405162461bcd60e51b81526004016105d690611f5a565b61068e83838361162f565b80546001019055565b61087182826040518060200160405280600081525061165f565b60608161134957506040805180820190915260018152600360fc1b6020820152610518565b8160005b8115611373578061135d81612452565b915061136c9050600a836123a1565b915061134d565b60008167ffffffffffffffff81111561139c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156113c6576020820181803683370190505b5090505b8415610f0f576113db6001836123d4565b91506113e8600a8661246d565b6113f3906030612389565b60f81b81838151811061141657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611438600a866123a1565b94506113ca565b61144882610e03565b6114645760405162461bcd60e51b81526004016105d690612074565b6000828152600660209081526040909120825161068e92840190611892565b6000611497846001600160a01b0316611692565b1561159357836001600160a01b031663150b7a026114b3610e20565b8786866040518563ffffffff1660e01b81526004016114d59493929190611c46565b602060405180830381600087803b1580156114ef57600080fd5b505af192505050801561151f575060408051601f3d908101601f1916820190925261151c91810190611b31565b60015b611579573d80801561154d576040519150601f19603f3d011682016040523d82523d6000602084013e611552565b606091505b5080516115715760405162461bcd60e51b81526004016105d690611d1a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f0f565b506001949350505050565b6060600c805461052c90612417565b60606115b882610e03565b6115d45760405162461bcd60e51b81526004016105d690612212565b60006115de61159e565b905060008151116115fe57604051806020016040528060008152506107fd565b8061160884611698565b604051602001611619929190611bd7565b6040516020818303038152906040529392505050565b61163a83838361068e565b611642610875565b1561068e5760405162461bcd60e51b81526004016105d690611ca1565b61166983836117b3565b6116766000848484611483565b61068e5760405162461bcd60e51b81526004016105d690611d1a565b3b151590565b6060816116bd57506040805180820190915260018152600360fc1b6020820152610518565b8160005b81156116e757806116d181612452565b91506116e09050600a836123a1565b91506116c1565b60008167ffffffffffffffff81111561171057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561173a576020820181803683370190505b5090505b8415610f0f5761174f6001836123d4565b915061175c600a8661246d565b611767906030612389565b60f81b81838151811061178a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117ac600a866123a1565b945061173e565b6001600160a01b0382166117d95760405162461bcd60e51b81526004016105d6906120c2565b6117e281610e03565b156117ff5760405162461bcd60e51b81526004016105d690611db2565b61180b600083836112d1565b6001600160a01b0382166000908152600360205260408120805460019290611834908490612389565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461189e90612417565b90600052602060002090601f0160209004810192826118c05760008555611906565b82601f106118d957805160ff1916838001178555611906565b82800160010185558215611906579182015b828111156119065782518255916020019190600101906118eb565b50611912929150611916565b5090565b5b808211156119125760008155600101611917565b600067ffffffffffffffff80841115611946576119466124ad565b604051601f8501601f19168101602001828111828210171561196a5761196a6124ad565b60405284815291508183850186101561198257600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461051857600080fd5b6000602082840312156119c3578081fd5b6107fd8261199b565b600080604083850312156119de578081fd5b6119e78361199b565b91506119f56020840161199b565b90509250929050565b600080600060608486031215611a12578081fd5b611a1b8461199b565b9250611a296020850161199b565b9150604084013590509250925092565b60008060008060808587031215611a4e578081fd5b611a578561199b565b9350611a656020860161199b565b925060408501359150606085013567ffffffffffffffff811115611a87578182fd5b8501601f81018713611a97578182fd5b611aa68782356020840161192b565b91505092959194509250565b60008060408385031215611ac4578182fd5b611acd8361199b565b915060208301358015158114611ae1578182fd5b809150509250929050565b60008060408385031215611afe578182fd5b611b078361199b565b946020939093013593505050565b600060208284031215611b26578081fd5b81356107fd816124c3565b600060208284031215611b42578081fd5b81516107fd816124c3565b600060208284031215611b5e578081fd5b813567ffffffffffffffff811115611b74578182fd5b8201601f81018413611b84578182fd5b610f0f8482356020840161192b565b600060208284031215611ba4578081fd5b5035919050565b60008151808452611bc38160208601602086016123eb565b601f01601f19169290920160200192915050565b60008351611be98184602088016123eb565b835190830190611bfd8183602088016123eb565b01949350505050565b60008251611c188184602087016123eb565b64173539b7b760d91b920191825250600501919050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c7990830184611bab565b9695505050505050565b901515815260200190565b6000602082526107fd6020830184611bab565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526028908201527f4d6178696d756d20616d6f756e74206f6620746f6b656e7320616c72656164796040820152671036b4b73a32b21760c11b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252818101527f4e65656420746f206d696e74207265736572766564206e667473206669727374604082015260600190565b6020808252601390820152722332b29034b9903737ba1031b7b93932b1ba1760691b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602e908201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60408201526d32bc34b9ba32b73a103a37b5b2b760911b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526028908201527f53686f756c642062652063616c6c656420776974682077686974656c6973746560408201526719081dd85b1b195d60c21b606082015260800190565b60208082526025908201527f596f752063616e74206d696e74206d6f7265207468616e2033302061742061206040820152643a34b6b29760d91b606082015260800190565b90815260200190565b6000821982111561239c5761239c612481565b500190565b6000826123b0576123b0612497565b500490565b60008160001904831182151516156123cf576123cf612481565b500290565b6000828210156123e6576123e6612481565b500390565b60005b838110156124065781810151838201526020016123ee565b83811115610ccf5750506000910152565b60028104600182168061242b57607f821691505b6020821081141561244c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561246657612466612481565b5060010190565b60008261247c5761247c612497565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146124d957600080fd5b5056fea2646970667358221220de452c96e7b2cfc61b7c88be52330c1b31d860b08e04e918739199d93bd19e5564736f6c63430008000033697066733a2f2f516d50474d35714a34554a78556e59347a3736646769715642467934795a33766d573337473835365a31757375542f

Deployed Bytecode

0x60806040526004361061019f5760003560e01c806370a08231116100ec578063a22cb4651161008a578063ced72f8711610064578063ced72f871461045a578063ddca3f431461046f578063e985e9c514610484578063f2fde38b146104a4576101a6565b8063a22cb465146103fa578063b88d4fde1461041a578063c87b56dd1461043a576101a6565b80638456cb59116100c65780638456cb591461039b5780638da5cb5b146103b05780639012c4a8146103c557806395d89b41146103e5576101a6565b806370a0823114610351578063715018a614610371578063793cd71e14610386576101a6565b80633f4ba83a1161015957806355f804b31161013357806355f804b3146102dc5780635c975abb146102fc57806361f80f88146103115780636352211e14610331576101a6565b80633f4ba83a1461029457806340c10f19146102a957806342842e0e146102bc576101a6565b80629a9b7b146101ab57806301ffc9a7146101d657806306fdde0314610203578063081812fc14610225578063095ea7b31461025257806323b872dd14610274576101a6565b366101a657005b600080fd5b3480156101b757600080fd5b506101c06104c4565b6040516101cd9190612380565b60405180910390f35b3480156101e257600080fd5b506101f66101f1366004611b15565b6104d5565b6040516101cd9190611c83565b34801561020f57600080fd5b5061021861051d565b6040516101cd9190611c8e565b34801561023157600080fd5b50610245610240366004611b93565b6105af565b6040516101cd9190611c32565b34801561025e57600080fd5b5061027261026d366004611aec565b6105fb565b005b34801561028057600080fd5b5061027261028f3660046119fe565b610693565b3480156102a057600080fd5b506102726106cb565b6101c06102b7366004611aec565b610714565b3480156102c857600080fd5b506102726102d73660046119fe565b610804565b3480156102e857600080fd5b506102726102f7366004611b4d565b61081f565b34801561030857600080fd5b506101f6610875565b34801561031d57600080fd5b506101c061032c3660046119b2565b61087e565b34801561033d57600080fd5b5061024561034c366004611b93565b6108e8565b34801561035d57600080fd5b506101c061036c3660046119b2565b61091d565b34801561037d57600080fd5b50610272610961565b34801561039257600080fd5b506102726109f0565b3480156103a757600080fd5b50610272610adf565b3480156103bc57600080fd5b50610245610b26565b3480156103d157600080fd5b506102726103e0366004611b93565b610b3a565b3480156103f157600080fd5b50610218610bb9565b34801561040657600080fd5b50610272610415366004611ab2565b610bc8565b34801561042657600080fd5b50610272610435366004611a39565b610c96565b34801561044657600080fd5b50610218610455366004611b93565b610cd5565b34801561046657600080fd5b506101c0610ce0565b34801561047b57600080fd5b506101c0610ce6565b34801561049057600080fd5b506101f661049f3660046119cc565b610cec565b3480156104b057600080fd5b506102726104bf3660046119b2565b610d1a565b60006104d06008610de6565b905090565b60006001600160e01b031982166380ac58cd60e01b148061050657506001600160e01b03198216635b5e139f60e01b145b80610515575061051582610dea565b90505b919050565b60606000805461052c90612417565b80601f016020809104026020016040519081016040528092919081815260200182805461055890612417565b80156105a55780601f1061057a576101008083540402835291602001916105a5565b820191906000526020600020905b81548152906001019060200180831161058857829003601f168201915b5050505050905090565b60006105ba82610e03565b6105df5760405162461bcd60e51b81526004016105d690612148565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610606826108e8565b9050806001600160a01b0316836001600160a01b0316141561063a5760405162461bcd60e51b81526004016105d690612261565b806001600160a01b031661064c610e20565b6001600160a01b0316148061066857506106688161049f610e20565b6106845760405162461bcd60e51b81526004016105d690611f84565b61068e8383610e24565b505050565b6106a461069e610e20565b82610e92565b6106c05760405162461bcd60e51b81526004016105d6906122a2565b61068e838383610f17565b6106d3610e20565b6001600160a01b03166106e4610b26565b6001600160a01b03161461070a5760405162461bcd60e51b81526004016105d690612194565b610712611044565b565b600061071e610875565b1561073b5760405162461bcd60e51b81526004016105d690611f5a565b600a6107476008610de6565b10156107655760405162461bcd60e51b81526004016105d690611eac565b6109c4826107736008610de6565b61077d9190612389565b111561079b5760405162461bcd60e51b81526004016105d690611de9565b816009546107a991906123b5565b3410156107c85760405162461bcd60e51b81526004016105d690611ee1565b601e8211156107e95760405162461bcd60e51b81526004016105d69061233b565b6107f383836110b2565b6107fd6008610de6565b9392505050565b61068e83838360405180602001604052806000815250610c96565b610827610e20565b6001600160a01b0316610838610b26565b6001600160a01b03161461085e5760405162461bcd60e51b81526004016105d690612194565b805161087190600c906020840190611892565b5050565b60075460ff1690565b6000610888610e20565b6001600160a01b0316610899610b26565b6001600160a01b0316146108bf5760405162461bcd60e51b81526004016105d690612194565b6108c96008610de6565b156108d357600080fd5b6108de82600a6110b2565b6105156008610de6565b6000818152600260205260408120546001600160a01b0316806105155760405162461bcd60e51b81526004016105d69061202b565b60006001600160a01b0382166109455760405162461bcd60e51b81526004016105d690611fe1565b506001600160a01b031660009081526003602052604090205490565b610969610e20565b6001600160a01b031661097a610b26565b6001600160a01b0316146109a05760405162461bcd60e51b81526004016105d690612194565b60075460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360078054610100600160a81b0319169055565b600b600081548110610a1257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316331480610a695750600b600181548110610a5157634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031633145b610a855760405162461bcd60e51b81526004016105d6906122f3565b600a546040516001600160a01b03909116904790610aa290611c2f565b60006040518083038185875af1925050503d806000811461068e576040519150601f19603f3d011682016040523d82523d6000602084013e61068e565b610ae7610e20565b6001600160a01b0316610af8610b26565b6001600160a01b031614610b1e5760405162461bcd60e51b81526004016105d690612194565b61071261112a565b60075461010090046001600160a01b031690565b610b42610e20565b6001600160a01b0316610b53610b26565b6001600160a01b031614610b795760405162461bcd60e51b81526004016105d690612194565b60098190556040517f66cbca4f3c64fecf1dcb9ce094abcf7f68c3450a1d4e3a8e917dd621edb4ebe090610bae908390612380565b60405180910390a150565b60606001805461052c90612417565b610bd0610e20565b6001600160a01b0316826001600160a01b03161415610c015760405162461bcd60e51b81526004016105d690611e75565b8060056000610c0e610e20565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610c52610e20565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c8a9190611c83565b60405180910390a35050565b610ca7610ca1610e20565b83610e92565b610cc35760405162461bcd60e51b81526004016105d6906122a2565b610ccf84848484611185565b50505050565b6060610515826111b8565b60095490565b60095481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610d22610e20565b6001600160a01b0316610d33610b26565b6001600160a01b031614610d595760405162461bcd60e51b81526004016105d690612194565b6001600160a01b038116610d7f5760405162461bcd60e51b81526004016105d690611d6c565b6007546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b5490565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e59826108e8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610e9d82610e03565b610eb95760405162461bcd60e51b81526004016105d690611f0e565b6000610ec4836108e8565b9050806001600160a01b0316846001600160a01b03161480610eff5750836001600160a01b0316610ef4846105af565b6001600160a01b0316145b80610f0f5750610f0f8185610cec565b949350505050565b826001600160a01b0316610f2a826108e8565b6001600160a01b031614610f505760405162461bcd60e51b81526004016105d6906121c9565b6001600160a01b038216610f765760405162461bcd60e51b81526004016105d690611e31565b610f818383836112d1565b610f8c600082610e24565b6001600160a01b0383166000908152600360205260408120805460019290610fb59084906123d4565b90915550506001600160a01b0382166000908152600360205260408120805460019290610fe3908490612389565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61104c610875565b6110685760405162461bcd60e51b81526004016105d690611cec565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61109b610e20565b6040516110a89190611c32565b60405180910390a1565b60005b8181101561068e576110c76008611301565b60006110d36008610de6565b90506110df848261130a565b60006110ea82611324565b6040516020016110fa9190611c06565b6040516020818303038152906040529050611115828261143f565b5050808061112290612452565b9150506110b5565b611132610875565b1561114f5760405162461bcd60e51b81526004016105d690611f5a565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861109b610e20565b611190848484610f17565b61119c84848484611483565b610ccf5760405162461bcd60e51b81526004016105d690611d1a565b60606111c382610e03565b6111df5760405162461bcd60e51b81526004016105d6906120f7565b600082815260066020526040812080546111f890612417565b80601f016020809104026020016040519081016040528092919081815260200182805461122490612417565b80156112715780601f1061124657610100808354040283529160200191611271565b820191906000526020600020905b81548152906001019060200180831161125457829003601f168201915b50505050509050600061128261159e565b905080516000141561129657509050610518565b8151156112c85780826040516020016112b0929190611bd7565b60405160208183030381529060405292505050610518565b610f0f846115ad565b6112d9610875565b156112f65760405162461bcd60e51b81526004016105d690611f5a565b61068e83838361162f565b80546001019055565b61087182826040518060200160405280600081525061165f565b60608161134957506040805180820190915260018152600360fc1b6020820152610518565b8160005b8115611373578061135d81612452565b915061136c9050600a836123a1565b915061134d565b60008167ffffffffffffffff81111561139c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156113c6576020820181803683370190505b5090505b8415610f0f576113db6001836123d4565b91506113e8600a8661246d565b6113f3906030612389565b60f81b81838151811061141657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611438600a866123a1565b94506113ca565b61144882610e03565b6114645760405162461bcd60e51b81526004016105d690612074565b6000828152600660209081526040909120825161068e92840190611892565b6000611497846001600160a01b0316611692565b1561159357836001600160a01b031663150b7a026114b3610e20565b8786866040518563ffffffff1660e01b81526004016114d59493929190611c46565b602060405180830381600087803b1580156114ef57600080fd5b505af192505050801561151f575060408051601f3d908101601f1916820190925261151c91810190611b31565b60015b611579573d80801561154d576040519150601f19603f3d011682016040523d82523d6000602084013e611552565b606091505b5080516115715760405162461bcd60e51b81526004016105d690611d1a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f0f565b506001949350505050565b6060600c805461052c90612417565b60606115b882610e03565b6115d45760405162461bcd60e51b81526004016105d690612212565b60006115de61159e565b905060008151116115fe57604051806020016040528060008152506107fd565b8061160884611698565b604051602001611619929190611bd7565b6040516020818303038152906040529392505050565b61163a83838361068e565b611642610875565b1561068e5760405162461bcd60e51b81526004016105d690611ca1565b61166983836117b3565b6116766000848484611483565b61068e5760405162461bcd60e51b81526004016105d690611d1a565b3b151590565b6060816116bd57506040805180820190915260018152600360fc1b6020820152610518565b8160005b81156116e757806116d181612452565b91506116e09050600a836123a1565b91506116c1565b60008167ffffffffffffffff81111561171057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561173a576020820181803683370190505b5090505b8415610f0f5761174f6001836123d4565b915061175c600a8661246d565b611767906030612389565b60f81b81838151811061178a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117ac600a866123a1565b945061173e565b6001600160a01b0382166117d95760405162461bcd60e51b81526004016105d6906120c2565b6117e281610e03565b156117ff5760405162461bcd60e51b81526004016105d690611db2565b61180b600083836112d1565b6001600160a01b0382166000908152600360205260408120805460019290611834908490612389565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461189e90612417565b90600052602060002090601f0160209004810192826118c05760008555611906565b82601f106118d957805160ff1916838001178555611906565b82800160010185558215611906579182015b828111156119065782518255916020019190600101906118eb565b50611912929150611916565b5090565b5b808211156119125760008155600101611917565b600067ffffffffffffffff80841115611946576119466124ad565b604051601f8501601f19168101602001828111828210171561196a5761196a6124ad565b60405284815291508183850186101561198257600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461051857600080fd5b6000602082840312156119c3578081fd5b6107fd8261199b565b600080604083850312156119de578081fd5b6119e78361199b565b91506119f56020840161199b565b90509250929050565b600080600060608486031215611a12578081fd5b611a1b8461199b565b9250611a296020850161199b565b9150604084013590509250925092565b60008060008060808587031215611a4e578081fd5b611a578561199b565b9350611a656020860161199b565b925060408501359150606085013567ffffffffffffffff811115611a87578182fd5b8501601f81018713611a97578182fd5b611aa68782356020840161192b565b91505092959194509250565b60008060408385031215611ac4578182fd5b611acd8361199b565b915060208301358015158114611ae1578182fd5b809150509250929050565b60008060408385031215611afe578182fd5b611b078361199b565b946020939093013593505050565b600060208284031215611b26578081fd5b81356107fd816124c3565b600060208284031215611b42578081fd5b81516107fd816124c3565b600060208284031215611b5e578081fd5b813567ffffffffffffffff811115611b74578182fd5b8201601f81018413611b84578182fd5b610f0f8482356020840161192b565b600060208284031215611ba4578081fd5b5035919050565b60008151808452611bc38160208601602086016123eb565b601f01601f19169290920160200192915050565b60008351611be98184602088016123eb565b835190830190611bfd8183602088016123eb565b01949350505050565b60008251611c188184602087016123eb565b64173539b7b760d91b920191825250600501919050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c7990830184611bab565b9695505050505050565b901515815260200190565b6000602082526107fd6020830184611bab565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526028908201527f4d6178696d756d20616d6f756e74206f6620746f6b656e7320616c72656164796040820152671036b4b73a32b21760c11b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252818101527f4e65656420746f206d696e74207265736572766564206e667473206669727374604082015260600190565b6020808252601390820152722332b29034b9903737ba1031b7b93932b1ba1760691b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602e908201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60408201526d32bc34b9ba32b73a103a37b5b2b760911b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526028908201527f53686f756c642062652063616c6c656420776974682077686974656c6973746560408201526719081dd85b1b195d60c21b606082015260800190565b60208082526025908201527f596f752063616e74206d696e74206d6f7265207468616e2033302061742061206040820152643a34b6b29760d91b606082015260800190565b90815260200190565b6000821982111561239c5761239c612481565b500190565b6000826123b0576123b0612497565b500490565b60008160001904831182151516156123cf576123cf612481565b500290565b6000828210156123e6576123e6612481565b500390565b60005b838110156124065781810151838201526020016123ee565b83811115610ccf5750506000910152565b60028104600182168061242b57607f821691505b6020821081141561244c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561246657612466612481565b5060010190565b60008261247c5761247c612497565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146124d957600080fd5b5056fea2646970667358221220de452c96e7b2cfc61b7c88be52330c1b31d860b08e04e918739199d93bd19e5564736f6c63430008000033

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.