ETH Price: $3,107.24 (+1.25%)
Gas: 5 Gwei

Token

F-Bomb (FBOMB)
 

Overview

Max Total Supply

5,000 FBOMB

Holders

1,166

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
102 FBOMB
0xde24bdafdf94acc82bf4224a2dae13e3df661642
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

F-Bombs discovered a doorway to the real world. It turns out, the F-Bombs had been observing their human creators and plotting their escape.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Fbomb

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 13 : Fbomb.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.3;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract Fbomb is ERC721, Ownable {

    uint256 constant MAX_SUPPLY = 9999;

    mapping(address => uint256) private _whitelistMinted;
    mapping(address => uint256) private _presaleMinted;
    mapping(address => uint256) private _publicMinted;

    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdTracker;

    address verifier;
    string public baseTokenURI;
    string public hiddenTokenURI = 'ipfs://QmS8wQqihMheMStSfSXoCNrfJSswVX67QuXdFb98PyNnX5';
    uint256 public maxForSale = 9899;
    uint256 public whitelistStart = 1643651940; // 1/31/2022 5:59pm GMT
    uint256 public whitelistMaxMint = 2;
    uint256 public whitelistPrice = 0.06 ether;
    uint256 public presaleStart = 1643738340; // 2/1/2022 5:59pm GMT
    uint256 public presaleMaxMint = 1;
    uint256 public presalePrice = 0.07 ether;
    uint256 public publicStart = 1643824740; // 2/2/2022 5:59pm GMT
    uint256 public publicMaxMint = 5;
    uint256 public publicPrice = 0.08 ether;

    constructor(
    ) ERC721('F-Bomb', 'FBOMB') {
        verifier = msg.sender;
    }

    function whitelistMint(bytes memory signature, uint256 quantity)
    external payable
    validSignature(signature, 1)
    whitelistActive()
    {
        require(_whitelistMinted[msg.sender] + quantity <= whitelistMaxMint, 'MINT: Quantity is too high');
        require(msg.value == quantity * whitelistPrice, 'MINT: Value is too low');
        _whitelistMinted[msg.sender] += quantity;
        for(uint256 i = 0; i < quantity; i++) {
            if(_tokenIdTracker.current() < maxForSale) {
                _mintSale(msg.sender);
            }
        }
    }

    function presaleMint(bytes memory signature, uint256 quantity)
    external payable
    validSignature(signature, 2)
    presaleActive()
    {
        require(_presaleMinted[msg.sender] + quantity <= presaleMaxMint, 'MINT: Quantity is too high');
        require(msg.value == quantity * presalePrice, 'MINT: Value is too low');
        _presaleMinted[msg.sender] += quantity;
        for(uint256 i = 0; i < quantity; i++) {
            if(_tokenIdTracker.current() < maxForSale) {
                _mintSale(msg.sender);
            }
        }
    }

    function publicMint(uint256 quantity)
    external payable
    publicActive()
    {
        require(_publicMinted[msg.sender] + quantity <= publicMaxMint, 'MINT: Quantity is too high');
        require(msg.value == quantity * publicPrice, 'MINT: Value is too low');
        _publicMinted[msg.sender] += quantity;
        for(uint256 i = 0; i < quantity; i++) {
            if(_tokenIdTracker.current() < maxForSale) {
                _mintSale(msg.sender);
            }
        }
    }

    function adminMint(address to, uint256 quantity) external onlyOwner {
        for(uint256 i = 0; i < quantity; i++) {
            if(_tokenIdTracker.current() < MAX_SUPPLY) {
                if(maxForSale < MAX_SUPPLY) {
                    maxForSale += 1;
                }
                _mintSale(to);
            }
        }
    }

    function _mintSale(address to) internal {
        _tokenIdTracker.increment();
        _safeMint(to, _tokenIdTracker.current());
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_tokenIdTracker.current() >= tokenId && tokenId > 0, "Token doesn't exist");
        return bytes(baseTokenURI).length > 0 ? string(abi.encodePacked(baseTokenURI, Strings.toString(tokenId))) : hiddenTokenURI;
    }

    function totalSupply() public view returns (uint256) {
        return _tokenIdTracker.current();
    }

    function tokenOfOwnerByIndex(address owner, uint256 index) public view returns(uint256) {
        require(index < ERC721.balanceOf(owner), "Owner index out of bounds");
        uint256 count = 0;
        for(uint256 i = 1; i <= _tokenIdTracker.current(); i++) {
            if(ownerOf(i) == owner) {
                if(count == index) {
                    return i;
                }
                count++;
            }
        }
        return 0;
    }

    // MODIFIERS
    modifier validSignature(bytes memory signature, uint256 listType) {
        bytes32 messageHash = sha256(abi.encode(msg.sender, listType));
        require(ECDSA.recover(messageHash, signature) == verifier, 'MINT: Invalid signature');
        _;
    }

    modifier whitelistActive() {
        require(block.timestamp >= whitelistStart, 'MINT: Whitelist is not active');
        _;
    }

    modifier presaleActive() {
        require(block.timestamp >= presaleStart, 'MINT: Presale is not active');
        _;
    }

    modifier publicActive() {
        require(block.timestamp >= publicStart, 'MINT: Minting is not yet open to the public');
        _;
    }

    // ADMIN FUNCTIONS
    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function setBaseURI(string memory baseUri) external onlyOwner {
        baseTokenURI = baseUri;
    }

    function setWhitelistStart(uint256 start) external onlyOwner {
        whitelistStart = start;
    }

    function setWhitelistMaxMint(uint256 max) external onlyOwner {
        whitelistMaxMint = max;
    }

    function setWhitelistPrice(uint256 price) external onlyOwner {
        whitelistPrice = price;
    }

    function setPresaleStart(uint256 start) external onlyOwner {
        presaleStart = start;
    }

    function setPresaleMaxMint(uint256 max) external onlyOwner {
        presaleMaxMint = max;
    }

    function setPresalePrice(uint256 price) external onlyOwner {
        presalePrice = price;
    }

    function setPublicStart(uint256 start) external onlyOwner {
        publicStart = start;
    }

    function setPublicMaxMint(uint256 max) external onlyOwner {
        publicMaxMint = max;
    }

    function setPublicPrice(uint256 price) external onlyOwner {
        publicPrice = price;
    }

    function setMaxForSale(uint256 forSale) external onlyOwner {
        maxForSale = forSale;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 13 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"hiddenTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxForSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"forSale","type":"uint256"}],"name":"setMaxForSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setPresaleMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"}],"name":"setPresaleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setPublicMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"}],"name":"setPublicStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setWhitelistMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"}],"name":"setWhitelistStart","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":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526035608081815290620032cd60a03980516200002991600d9160209091019062000173565b506126ab600e556361f82364600f55600260105566d529ae9e8600006011556361f974e4601255600160135566f8b0a10e4700006014556361fac664601555600560165567011c37937e0800006017553480156200008657600080fd5b5060408051808201825260068152652316a137b6b160d11b602080830191825283518085019094526005845264232127a6a160d91b908401528151919291620000d29160009162000173565b508051620000e890600190602084019062000173565b50505062000105620000ff6200011d60201b60201c565b62000121565b600b80546001600160a01b0319163317905562000256565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001819062000219565b90600052602060002090601f016020900481019282620001a55760008555620001f0565b82601f10620001c057805160ff1916838001178555620001f0565b82800160010185558215620001f0579182015b82811115620001f0578251825591602001919060010190620001d3565b50620001fe92915062000202565b5090565b5b80821115620001fe576000815560010162000203565b600181811c908216806200022e57607f821691505b602082108114156200025057634e487b7160e01b600052602260045260246000fd5b50919050565b61306780620002666000396000f3fe6080604052600436106102fc5760003560e01c806378152bbe1161018f578063b88d4fde116100e1578063e21469631161008a578063ec83ebbd11610064578063ec83ebbd1461080f578063f2fde38b14610824578063fc1a1c361461084457600080fd5b8063e214696314610786578063e58306f9146107a6578063e985e9c5146107c657600080fd5b8063d547cfb7116100bb578063d547cfb71461073b578063de8801e514610750578063df4305d21461076657600080fd5b8063b88d4fde146106db578063c6275255146106fb578063c87b56dd1461071b57600080fd5b8063994d396911610143578063a5f4c6ff1161011d578063a5f4c6ff14610699578063a945bf80146106af578063b68046c8146106c557600080fd5b8063994d396914610643578063a22cb46514610659578063a59585a81461067957600080fd5b80638da5cb5b116101745780638da5cb5b146105fa578063946ef42a1461061857806395d89b411461062e57600080fd5b806378152bbe146105ba57806380941f71146105da57600080fd5b80633549345e1161025357806356171417116101fc578063715018a6116101d6578063715018a61461056f578063717d57d314610584578063722e141d146105a457600080fd5b8063561714171461050f5780636352211e1461052f57806370a082311461054f57600080fd5b806342842e0e1161022d57806342842e0e146104bc5780634e21dc40146104dc57806355f804b3146104ef57600080fd5b80633549345e146104675780633ccfd60b146104875780633d6bcb161461049c57600080fd5b8063095ea7b3116102b55780632db115441161028f5780632db115441461041e5780632f745c5914610431578063305c7d4a1461045157600080fd5b8063095ea7b3146103c957806318160ddd146103e957806323b872dd146103fe57600080fd5b806306fdde03116102e657806306fdde031461035a578063081812fc1461037c57806308e3f868146103b457600080fd5b80620e7fa81461030157806301ffc9a71461032a575b600080fd5b34801561030d57600080fd5b5061031760145481565b6040519081526020015b60405180910390f35b34801561033657600080fd5b5061034a610345366004612c8f565b61085a565b6040519015158152602001610321565b34801561036657600080fd5b5061036f6108f7565b6040516103219190612eae565b34801561038857600080fd5b5061039c610397366004612d50565b610989565b6040516001600160a01b039091168152602001610321565b6103c76103c2366004612cc7565b610a23565b005b3480156103d557600080fd5b506103c76103e4366004612c4e565b610c82565b3480156103f557600080fd5b50610317610db4565b34801561040a57600080fd5b506103c7610419366004612b73565b610dc4565b6103c761042c366004612d50565b610e4b565b34801561043d57600080fd5b5061031761044c366004612c4e565b610fe5565b34801561045d57600080fd5b5061031760165481565b34801561047357600080fd5b506103c7610482366004612d50565b6110aa565b34801561049357600080fd5b506103c76110f7565b3480156104a857600080fd5b506103c76104b7366004612d50565b61117b565b3480156104c857600080fd5b506103c76104d7366004612b73565b6111c8565b6103c76104ea366004612cc7565b6111e3565b3480156104fb57600080fd5b506103c761050a366004612d0a565b611439565b34801561051b57600080fd5b506103c761052a366004612d50565b611494565b34801561053b57600080fd5b5061039c61054a366004612d50565b6114e1565b34801561055b57600080fd5b5061031761056a366004612b27565b61156c565b34801561057b57600080fd5b506103c7611606565b34801561059057600080fd5b506103c761059f366004612d50565b61165a565b3480156105b057600080fd5b5061031760105481565b3480156105c657600080fd5b506103c76105d5366004612d50565b6116a7565b3480156105e657600080fd5b506103c76105f5366004612d50565b6116f4565b34801561060657600080fd5b506006546001600160a01b031661039c565b34801561062457600080fd5b5061031760135481565b34801561063a57600080fd5b5061036f611741565b34801561064f57600080fd5b50610317600f5481565b34801561066557600080fd5b506103c7610674366004612c14565b611750565b34801561068557600080fd5b506103c7610694366004612d50565b61175b565b3480156106a557600080fd5b5061031760155481565b3480156106bb57600080fd5b5061031760175481565b3480156106d157600080fd5b50610317600e5481565b3480156106e757600080fd5b506103c76106f6366004612bae565b6117a8565b34801561070757600080fd5b506103c7610716366004612d50565b611836565b34801561072757600080fd5b5061036f610736366004612d50565b611883565b34801561074757600080fd5b5061036f6119c0565b34801561075c57600080fd5b5061031760125481565b34801561077257600080fd5b506103c7610781366004612d50565b611a4e565b34801561079257600080fd5b506103c76107a1366004612d50565b611a9b565b3480156107b257600080fd5b506103c76107c1366004612c4e565b611ae8565b3480156107d257600080fd5b5061034a6107e1366004612b41565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561081b57600080fd5b5061036f611b8d565b34801561083057600080fd5b506103c761083f366004612b27565b611b9a565b34801561085057600080fd5b5061031760115481565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806108bd57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108f157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606000805461090690612f4f565b80601f016020809104026020016040519081016040528092919081815260200182805461093290612f4f565b801561097f5780601f106109545761010080835404028352916020019161097f565b820191906000526020600020905b81548152906001019060200180831161096257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60408051336020820152600191810182905283919060009060029060600160408051601f1981840301815290829052610a5b91612db0565b602060405180830381855afa158015610a78573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610a9b9190612c77565b600b549091506001600160a01b0316610ab48285611c67565b6001600160a01b031614610b0a5760405162461bcd60e51b815260206004820152601760248201527f4d494e543a20496e76616c6964207369676e617475726500000000000000000060448201526064016109fe565b600f54421015610b5c5760405162461bcd60e51b815260206004820152601d60248201527f4d494e543a2057686974656c697374206973206e6f742061637469766500000060448201526064016109fe565b60105433600090815260076020526040902054610b7a908690612ec1565b1115610bc85760405162461bcd60e51b815260206004820152601a60248201527f4d494e543a205175616e7469747920697320746f6f206869676800000000000060448201526064016109fe565b601154610bd59085612eed565b3414610c235760405162461bcd60e51b815260206004820152601660248201527f4d494e543a2056616c756520697320746f6f206c6f770000000000000000000060448201526064016109fe565b3360009081526007602052604081208054869290610c42908490612ec1565b90915550600090505b84811015610c7a57600e54600a541015610c6857610c6833611c8b565b80610c7281612f8a565b915050610c4b565b505050505050565b6000610c8d826114e1565b9050806001600160a01b0316836001600160a01b03161415610d175760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016109fe565b336001600160a01b0382161480610d335750610d3381336107e1565b610da55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109fe565b610daf8383611cab565b505050565b6000610dbf600a5490565b905090565b610dce3382611d26565b610e405760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109fe565b610daf838383611e1d565b601554421015610ec35760405162461bcd60e51b815260206004820152602b60248201527f4d494e543a204d696e74696e67206973206e6f7420796574206f70656e20746f60448201527f20746865207075626c696300000000000000000000000000000000000000000060648201526084016109fe565b60165433600090815260096020526040902054610ee1908390612ec1565b1115610f2f5760405162461bcd60e51b815260206004820152601a60248201527f4d494e543a205175616e7469747920697320746f6f206869676800000000000060448201526064016109fe565b601754610f3c9082612eed565b3414610f8a5760405162461bcd60e51b815260206004820152601660248201527f4d494e543a2056616c756520697320746f6f206c6f770000000000000000000060448201526064016109fe565b3360009081526009602052604081208054839290610fa9908490612ec1565b90915550600090505b81811015610fe157600e54600a541015610fcf57610fcf33611c8b565b80610fd981612f8a565b915050610fb2565b5050565b6000610ff08361156c565b821061103e5760405162461bcd60e51b815260206004820152601960248201527f4f776e657220696e646578206f7574206f6620626f756e64730000000000000060448201526064016109fe565b600060015b600a54811161109f57846001600160a01b031661105f826114e1565b6001600160a01b0316141561108d578382141561107f5791506108f19050565b8161108981612f8a565b9250505b8061109781612f8a565b915050611043565b506000949350505050565b6006546001600160a01b031633146110f25760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b601455565b6006546001600160a01b0316331461113f5760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611178573d6000803e3d6000fd5b50565b6006546001600160a01b031633146111c35760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b600e55565b610daf838383604051806020016040528060008152506117a8565b604080513360208201526002918101829052839190600090829060600160408051601f198184030181529082905261121a91612db0565b602060405180830381855afa158015611237573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061125a9190612c77565b600b549091506001600160a01b03166112738285611c67565b6001600160a01b0316146112c95760405162461bcd60e51b815260206004820152601760248201527f4d494e543a20496e76616c6964207369676e617475726500000000000000000060448201526064016109fe565b60125442101561131b5760405162461bcd60e51b815260206004820152601b60248201527f4d494e543a2050726573616c65206973206e6f7420616374697665000000000060448201526064016109fe565b60135433600090815260086020526040902054611339908690612ec1565b11156113875760405162461bcd60e51b815260206004820152601a60248201527f4d494e543a205175616e7469747920697320746f6f206869676800000000000060448201526064016109fe565b6014546113949085612eed565b34146113e25760405162461bcd60e51b815260206004820152601660248201527f4d494e543a2056616c756520697320746f6f206c6f770000000000000000000060448201526064016109fe565b3360009081526008602052604081208054869290611401908490612ec1565b90915550600090505b84811015610c7a57600e54600a5410156114275761142733611c8b565b8061143181612f8a565b91505061140a565b6006546001600160a01b031633146114815760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b8051610fe190600c9060208401906129d6565b6006546001600160a01b031633146114dc5760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b601555565b6000818152600260205260408120546001600160a01b0316806108f15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016109fe565b60006001600160a01b0382166115ea5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016109fe565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461164e5760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b6116586000611ff7565b565b6006546001600160a01b031633146116a25760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b601155565b6006546001600160a01b031633146116ef5760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b601255565b6006546001600160a01b0316331461173c5760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b600f55565b60606001805461090690612f4f565b610fe1338383612056565b6006546001600160a01b031633146117a35760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b601655565b6117b23383611d26565b6118245760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109fe565b61183084848484612125565b50505050565b6006546001600160a01b0316331461187e5760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b601755565b60608161188f600a5490565b1015801561189d5750600082115b6118e95760405162461bcd60e51b815260206004820152601360248201527f546f6b656e20646f65736e27742065786973740000000000000000000000000060448201526064016109fe565b6000600c80546118f890612f4f565b90501161198f57600d805461190c90612f4f565b80601f016020809104026020016040519081016040528092919081815260200182805461193890612f4f565b80156119855780601f1061195a57610100808354040283529160200191611985565b820191906000526020600020905b81548152906001019060200180831161196857829003601f168201915b50505050506108f1565b600c61199a836121a3565b6040516020016119ab929190612dcc565b60405160208183030381529060405292915050565b600c80546119cd90612f4f565b80601f01602080910402602001604051908101604052809291908181526020018280546119f990612f4f565b8015611a465780601f10611a1b57610100808354040283529160200191611a46565b820191906000526020600020905b815481529060010190602001808311611a2957829003601f168201915b505050505081565b6006546001600160a01b03163314611a965760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b601355565b6006546001600160a01b03163314611ae35760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b601055565b6006546001600160a01b03163314611b305760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b60005b81811015610daf5761270f611b47600a5490565b1015611b7b5761270f600e541015611b72576001600e6000828254611b6c9190612ec1565b90915550505b611b7b83611c8b565b80611b8581612f8a565b915050611b33565b600d80546119cd90612f4f565b6006546001600160a01b03163314611be25760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b6001600160a01b038116611c5e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109fe565b61117881611ff7565b6000806000611c7685856122f1565b91509150611c8381612361565b509392505050565b611c99600a80546001019055565b61117881611ca6600a5490565b612562565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190611ced826114e1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611d9f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109fe565b6000611daa836114e1565b9050806001600160a01b0316846001600160a01b03161480611de55750836001600160a01b0316611dda84610989565b6001600160a01b0316145b80611e1557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e30826114e1565b6001600160a01b031614611eac5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016109fe565b6001600160a01b038216611f275760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109fe565b611f32600082611cab565b6001600160a01b0383166000908152600360205260408120805460019290611f5b908490612f0c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f89908490612ec1565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120b85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109fe565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612130848484611e1d565b61213c8484848461257c565b6118305760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016109fe565b6060816121e357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561220d57806121f781612f8a565b91506122069050600a83612ed9565b91506121e7565b60008167ffffffffffffffff81111561223657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612260576020820181803683370190505b5090505b8415611e1557612275600183612f0c565b9150612282600a86612fa5565b61228d906030612ec1565b60f81b8183815181106122b057634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506122ea600a86612ed9565b9450612264565b6000808251604114156123285760208301516040840151606085015160001a61231c878285856126d4565b9450945050505061235a565b82516040141561235257602083015160408401516123478683836127c1565b93509350505061235a565b506000905060025b9250929050565b600081600481111561238357634e487b7160e01b600052602160045260246000fd5b141561238c5750565b60018160048111156123ae57634e487b7160e01b600052602160045260246000fd5b14156123fc5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109fe565b600281600481111561241e57634e487b7160e01b600052602160045260246000fd5b141561246c5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109fe565b600381600481111561248e57634e487b7160e01b600052602160045260246000fd5b14156124e75760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016109fe565b600481600481111561250957634e487b7160e01b600052602160045260246000fd5b14156111785760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016109fe565b610fe1828260405180602001604052806000815250612809565b60006001600160a01b0384163b156126c957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125c0903390899088908890600401612e72565b602060405180830381600087803b1580156125da57600080fd5b505af192505050801561260a575060408051601f3d908101601f1916820190925261260791810190612cab565b60015b6126af573d808015612638576040519150601f19603f3d011682016040523d82523d6000602084013e61263d565b606091505b5080516126a75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016109fe565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e15565b506001949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561270b57506000905060036127b8565b8460ff16601b1415801561272357508460ff16601c14155b1561273457506000905060046127b8565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612788573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166127b1576000600192509250506127b8565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b016127fb878288856126d4565b935093505050935093915050565b6128138383612887565b612820600084848461257c565b610daf5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016109fe565b6001600160a01b0382166128dd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109fe565b6000818152600260205260409020546001600160a01b0316156129425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109fe565b6001600160a01b038216600090815260036020526040812080546001929061296b908490612ec1565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546129e290612f4f565b90600052602060002090601f016020900481019282612a045760008555612a4a565b82601f10612a1d57805160ff1916838001178555612a4a565b82800160010185558215612a4a579182015b82811115612a4a578251825591602001919060010190612a2f565b50612a56929150612a5a565b5090565b5b80821115612a565760008155600101612a5b565b600067ffffffffffffffff80841115612a8a57612a8a612fe5565b604051601f8501601f19908116603f01168101908282118183101715612ab257612ab2612fe5565b81604052809350858152868686011115612acb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612afc57600080fd5b919050565b600082601f830112612b11578081fd5b612b2083833560208501612a6f565b9392505050565b600060208284031215612b38578081fd5b612b2082612ae5565b60008060408385031215612b53578081fd5b612b5c83612ae5565b9150612b6a60208401612ae5565b90509250929050565b600080600060608486031215612b87578081fd5b612b9084612ae5565b9250612b9e60208501612ae5565b9150604084013590509250925092565b60008060008060808587031215612bc3578081fd5b612bcc85612ae5565b9350612bda60208601612ae5565b925060408501359150606085013567ffffffffffffffff811115612bfc578182fd5b612c0887828801612b01565b91505092959194509250565b60008060408385031215612c26578182fd5b612c2f83612ae5565b915060208301358015158114612c43578182fd5b809150509250929050565b60008060408385031215612c60578182fd5b612c6983612ae5565b946020939093013593505050565b600060208284031215612c88578081fd5b5051919050565b600060208284031215612ca0578081fd5b8135612b2081612ffb565b600060208284031215612cbc578081fd5b8151612b2081612ffb565b60008060408385031215612cd9578182fd5b823567ffffffffffffffff811115612cef578283fd5b612cfb85828601612b01565b95602094909401359450505050565b600060208284031215612d1b578081fd5b813567ffffffffffffffff811115612d31578182fd5b8201601f81018413612d41578182fd5b611e1584823560208401612a6f565b600060208284031215612d61578081fd5b5035919050565b60008151808452612d80816020860160208601612f23565b601f01601f19169290920160200192915050565b60008151612da6818560208601612f23565b9290920192915050565b60008251612dc2818460208701612f23565b9190910192915050565b600080845482600182811c915080831680612de857607f831692505b6020808410821415612e0857634e487b7160e01b87526022600452602487fd5b818015612e1c5760018114612e2d57612e59565b60ff19861689528489019650612e59565b60008b815260209020885b86811015612e515781548b820152908501908301612e38565b505084890196505b505050505050612e698185612d94565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612ea46080830184612d68565b9695505050505050565b602081526000612b206020830184612d68565b60008219821115612ed457612ed4612fb9565b500190565b600082612ee857612ee8612fcf565b500490565b6000816000190483118215151615612f0757612f07612fb9565b500290565b600082821015612f1e57612f1e612fb9565b500390565b60005b83811015612f3e578181015183820152602001612f26565b838111156118305750506000910152565b600181811c90821680612f6357607f821691505b60208210811415612f8457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f9e57612f9e612fb9565b5060010190565b600082612fb457612fb4612fcf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461117857600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220fa77f6f409781fde004d1e5c439ea197b86d851ff1e118f219557676820365af64736f6c63430008040033697066733a2f2f516d533877517169684d68654d5374536653586f434e72664a53737756583637517558644662393850794e6e5835

Deployed Bytecode

0x6080604052600436106102fc5760003560e01c806378152bbe1161018f578063b88d4fde116100e1578063e21469631161008a578063ec83ebbd11610064578063ec83ebbd1461080f578063f2fde38b14610824578063fc1a1c361461084457600080fd5b8063e214696314610786578063e58306f9146107a6578063e985e9c5146107c657600080fd5b8063d547cfb7116100bb578063d547cfb71461073b578063de8801e514610750578063df4305d21461076657600080fd5b8063b88d4fde146106db578063c6275255146106fb578063c87b56dd1461071b57600080fd5b8063994d396911610143578063a5f4c6ff1161011d578063a5f4c6ff14610699578063a945bf80146106af578063b68046c8146106c557600080fd5b8063994d396914610643578063a22cb46514610659578063a59585a81461067957600080fd5b80638da5cb5b116101745780638da5cb5b146105fa578063946ef42a1461061857806395d89b411461062e57600080fd5b806378152bbe146105ba57806380941f71146105da57600080fd5b80633549345e1161025357806356171417116101fc578063715018a6116101d6578063715018a61461056f578063717d57d314610584578063722e141d146105a457600080fd5b8063561714171461050f5780636352211e1461052f57806370a082311461054f57600080fd5b806342842e0e1161022d57806342842e0e146104bc5780634e21dc40146104dc57806355f804b3146104ef57600080fd5b80633549345e146104675780633ccfd60b146104875780633d6bcb161461049c57600080fd5b8063095ea7b3116102b55780632db115441161028f5780632db115441461041e5780632f745c5914610431578063305c7d4a1461045157600080fd5b8063095ea7b3146103c957806318160ddd146103e957806323b872dd146103fe57600080fd5b806306fdde03116102e657806306fdde031461035a578063081812fc1461037c57806308e3f868146103b457600080fd5b80620e7fa81461030157806301ffc9a71461032a575b600080fd5b34801561030d57600080fd5b5061031760145481565b6040519081526020015b60405180910390f35b34801561033657600080fd5b5061034a610345366004612c8f565b61085a565b6040519015158152602001610321565b34801561036657600080fd5b5061036f6108f7565b6040516103219190612eae565b34801561038857600080fd5b5061039c610397366004612d50565b610989565b6040516001600160a01b039091168152602001610321565b6103c76103c2366004612cc7565b610a23565b005b3480156103d557600080fd5b506103c76103e4366004612c4e565b610c82565b3480156103f557600080fd5b50610317610db4565b34801561040a57600080fd5b506103c7610419366004612b73565b610dc4565b6103c761042c366004612d50565b610e4b565b34801561043d57600080fd5b5061031761044c366004612c4e565b610fe5565b34801561045d57600080fd5b5061031760165481565b34801561047357600080fd5b506103c7610482366004612d50565b6110aa565b34801561049357600080fd5b506103c76110f7565b3480156104a857600080fd5b506103c76104b7366004612d50565b61117b565b3480156104c857600080fd5b506103c76104d7366004612b73565b6111c8565b6103c76104ea366004612cc7565b6111e3565b3480156104fb57600080fd5b506103c761050a366004612d0a565b611439565b34801561051b57600080fd5b506103c761052a366004612d50565b611494565b34801561053b57600080fd5b5061039c61054a366004612d50565b6114e1565b34801561055b57600080fd5b5061031761056a366004612b27565b61156c565b34801561057b57600080fd5b506103c7611606565b34801561059057600080fd5b506103c761059f366004612d50565b61165a565b3480156105b057600080fd5b5061031760105481565b3480156105c657600080fd5b506103c76105d5366004612d50565b6116a7565b3480156105e657600080fd5b506103c76105f5366004612d50565b6116f4565b34801561060657600080fd5b506006546001600160a01b031661039c565b34801561062457600080fd5b5061031760135481565b34801561063a57600080fd5b5061036f611741565b34801561064f57600080fd5b50610317600f5481565b34801561066557600080fd5b506103c7610674366004612c14565b611750565b34801561068557600080fd5b506103c7610694366004612d50565b61175b565b3480156106a557600080fd5b5061031760155481565b3480156106bb57600080fd5b5061031760175481565b3480156106d157600080fd5b50610317600e5481565b3480156106e757600080fd5b506103c76106f6366004612bae565b6117a8565b34801561070757600080fd5b506103c7610716366004612d50565b611836565b34801561072757600080fd5b5061036f610736366004612d50565b611883565b34801561074757600080fd5b5061036f6119c0565b34801561075c57600080fd5b5061031760125481565b34801561077257600080fd5b506103c7610781366004612d50565b611a4e565b34801561079257600080fd5b506103c76107a1366004612d50565b611a9b565b3480156107b257600080fd5b506103c76107c1366004612c4e565b611ae8565b3480156107d257600080fd5b5061034a6107e1366004612b41565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561081b57600080fd5b5061036f611b8d565b34801561083057600080fd5b506103c761083f366004612b27565b611b9a565b34801561085057600080fd5b5061031760115481565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806108bd57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108f157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606000805461090690612f4f565b80601f016020809104026020016040519081016040528092919081815260200182805461093290612f4f565b801561097f5780601f106109545761010080835404028352916020019161097f565b820191906000526020600020905b81548152906001019060200180831161096257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60408051336020820152600191810182905283919060009060029060600160408051601f1981840301815290829052610a5b91612db0565b602060405180830381855afa158015610a78573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610a9b9190612c77565b600b549091506001600160a01b0316610ab48285611c67565b6001600160a01b031614610b0a5760405162461bcd60e51b815260206004820152601760248201527f4d494e543a20496e76616c6964207369676e617475726500000000000000000060448201526064016109fe565b600f54421015610b5c5760405162461bcd60e51b815260206004820152601d60248201527f4d494e543a2057686974656c697374206973206e6f742061637469766500000060448201526064016109fe565b60105433600090815260076020526040902054610b7a908690612ec1565b1115610bc85760405162461bcd60e51b815260206004820152601a60248201527f4d494e543a205175616e7469747920697320746f6f206869676800000000000060448201526064016109fe565b601154610bd59085612eed565b3414610c235760405162461bcd60e51b815260206004820152601660248201527f4d494e543a2056616c756520697320746f6f206c6f770000000000000000000060448201526064016109fe565b3360009081526007602052604081208054869290610c42908490612ec1565b90915550600090505b84811015610c7a57600e54600a541015610c6857610c6833611c8b565b80610c7281612f8a565b915050610c4b565b505050505050565b6000610c8d826114e1565b9050806001600160a01b0316836001600160a01b03161415610d175760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016109fe565b336001600160a01b0382161480610d335750610d3381336107e1565b610da55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109fe565b610daf8383611cab565b505050565b6000610dbf600a5490565b905090565b610dce3382611d26565b610e405760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109fe565b610daf838383611e1d565b601554421015610ec35760405162461bcd60e51b815260206004820152602b60248201527f4d494e543a204d696e74696e67206973206e6f7420796574206f70656e20746f60448201527f20746865207075626c696300000000000000000000000000000000000000000060648201526084016109fe565b60165433600090815260096020526040902054610ee1908390612ec1565b1115610f2f5760405162461bcd60e51b815260206004820152601a60248201527f4d494e543a205175616e7469747920697320746f6f206869676800000000000060448201526064016109fe565b601754610f3c9082612eed565b3414610f8a5760405162461bcd60e51b815260206004820152601660248201527f4d494e543a2056616c756520697320746f6f206c6f770000000000000000000060448201526064016109fe565b3360009081526009602052604081208054839290610fa9908490612ec1565b90915550600090505b81811015610fe157600e54600a541015610fcf57610fcf33611c8b565b80610fd981612f8a565b915050610fb2565b5050565b6000610ff08361156c565b821061103e5760405162461bcd60e51b815260206004820152601960248201527f4f776e657220696e646578206f7574206f6620626f756e64730000000000000060448201526064016109fe565b600060015b600a54811161109f57846001600160a01b031661105f826114e1565b6001600160a01b0316141561108d578382141561107f5791506108f19050565b8161108981612f8a565b9250505b8061109781612f8a565b915050611043565b506000949350505050565b6006546001600160a01b031633146110f25760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b601455565b6006546001600160a01b0316331461113f5760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611178573d6000803e3d6000fd5b50565b6006546001600160a01b031633146111c35760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b600e55565b610daf838383604051806020016040528060008152506117a8565b604080513360208201526002918101829052839190600090829060600160408051601f198184030181529082905261121a91612db0565b602060405180830381855afa158015611237573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061125a9190612c77565b600b549091506001600160a01b03166112738285611c67565b6001600160a01b0316146112c95760405162461bcd60e51b815260206004820152601760248201527f4d494e543a20496e76616c6964207369676e617475726500000000000000000060448201526064016109fe565b60125442101561131b5760405162461bcd60e51b815260206004820152601b60248201527f4d494e543a2050726573616c65206973206e6f7420616374697665000000000060448201526064016109fe565b60135433600090815260086020526040902054611339908690612ec1565b11156113875760405162461bcd60e51b815260206004820152601a60248201527f4d494e543a205175616e7469747920697320746f6f206869676800000000000060448201526064016109fe565b6014546113949085612eed565b34146113e25760405162461bcd60e51b815260206004820152601660248201527f4d494e543a2056616c756520697320746f6f206c6f770000000000000000000060448201526064016109fe565b3360009081526008602052604081208054869290611401908490612ec1565b90915550600090505b84811015610c7a57600e54600a5410156114275761142733611c8b565b8061143181612f8a565b91505061140a565b6006546001600160a01b031633146114815760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b8051610fe190600c9060208401906129d6565b6006546001600160a01b031633146114dc5760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b601555565b6000818152600260205260408120546001600160a01b0316806108f15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016109fe565b60006001600160a01b0382166115ea5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016109fe565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461164e5760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b6116586000611ff7565b565b6006546001600160a01b031633146116a25760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b601155565b6006546001600160a01b031633146116ef5760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b601255565b6006546001600160a01b0316331461173c5760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b600f55565b60606001805461090690612f4f565b610fe1338383612056565b6006546001600160a01b031633146117a35760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b601655565b6117b23383611d26565b6118245760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109fe565b61183084848484612125565b50505050565b6006546001600160a01b0316331461187e5760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b601755565b60608161188f600a5490565b1015801561189d5750600082115b6118e95760405162461bcd60e51b815260206004820152601360248201527f546f6b656e20646f65736e27742065786973740000000000000000000000000060448201526064016109fe565b6000600c80546118f890612f4f565b90501161198f57600d805461190c90612f4f565b80601f016020809104026020016040519081016040528092919081815260200182805461193890612f4f565b80156119855780601f1061195a57610100808354040283529160200191611985565b820191906000526020600020905b81548152906001019060200180831161196857829003601f168201915b50505050506108f1565b600c61199a836121a3565b6040516020016119ab929190612dcc565b60405160208183030381529060405292915050565b600c80546119cd90612f4f565b80601f01602080910402602001604051908101604052809291908181526020018280546119f990612f4f565b8015611a465780601f10611a1b57610100808354040283529160200191611a46565b820191906000526020600020905b815481529060010190602001808311611a2957829003601f168201915b505050505081565b6006546001600160a01b03163314611a965760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b601355565b6006546001600160a01b03163314611ae35760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b601055565b6006546001600160a01b03163314611b305760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b60005b81811015610daf5761270f611b47600a5490565b1015611b7b5761270f600e541015611b72576001600e6000828254611b6c9190612ec1565b90915550505b611b7b83611c8b565b80611b8581612f8a565b915050611b33565b600d80546119cd90612f4f565b6006546001600160a01b03163314611be25760405162461bcd60e51b8152602060048201819052602482015260008051602061301283398151915260448201526064016109fe565b6001600160a01b038116611c5e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109fe565b61117881611ff7565b6000806000611c7685856122f1565b91509150611c8381612361565b509392505050565b611c99600a80546001019055565b61117881611ca6600a5490565b612562565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190611ced826114e1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611d9f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109fe565b6000611daa836114e1565b9050806001600160a01b0316846001600160a01b03161480611de55750836001600160a01b0316611dda84610989565b6001600160a01b0316145b80611e1557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e30826114e1565b6001600160a01b031614611eac5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016109fe565b6001600160a01b038216611f275760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109fe565b611f32600082611cab565b6001600160a01b0383166000908152600360205260408120805460019290611f5b908490612f0c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f89908490612ec1565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120b85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109fe565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612130848484611e1d565b61213c8484848461257c565b6118305760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016109fe565b6060816121e357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561220d57806121f781612f8a565b91506122069050600a83612ed9565b91506121e7565b60008167ffffffffffffffff81111561223657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612260576020820181803683370190505b5090505b8415611e1557612275600183612f0c565b9150612282600a86612fa5565b61228d906030612ec1565b60f81b8183815181106122b057634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506122ea600a86612ed9565b9450612264565b6000808251604114156123285760208301516040840151606085015160001a61231c878285856126d4565b9450945050505061235a565b82516040141561235257602083015160408401516123478683836127c1565b93509350505061235a565b506000905060025b9250929050565b600081600481111561238357634e487b7160e01b600052602160045260246000fd5b141561238c5750565b60018160048111156123ae57634e487b7160e01b600052602160045260246000fd5b14156123fc5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109fe565b600281600481111561241e57634e487b7160e01b600052602160045260246000fd5b141561246c5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109fe565b600381600481111561248e57634e487b7160e01b600052602160045260246000fd5b14156124e75760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016109fe565b600481600481111561250957634e487b7160e01b600052602160045260246000fd5b14156111785760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016109fe565b610fe1828260405180602001604052806000815250612809565b60006001600160a01b0384163b156126c957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125c0903390899088908890600401612e72565b602060405180830381600087803b1580156125da57600080fd5b505af192505050801561260a575060408051601f3d908101601f1916820190925261260791810190612cab565b60015b6126af573d808015612638576040519150601f19603f3d011682016040523d82523d6000602084013e61263d565b606091505b5080516126a75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016109fe565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e15565b506001949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561270b57506000905060036127b8565b8460ff16601b1415801561272357508460ff16601c14155b1561273457506000905060046127b8565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612788573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166127b1576000600192509250506127b8565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b016127fb878288856126d4565b935093505050935093915050565b6128138383612887565b612820600084848461257c565b610daf5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016109fe565b6001600160a01b0382166128dd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109fe565b6000818152600260205260409020546001600160a01b0316156129425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109fe565b6001600160a01b038216600090815260036020526040812080546001929061296b908490612ec1565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546129e290612f4f565b90600052602060002090601f016020900481019282612a045760008555612a4a565b82601f10612a1d57805160ff1916838001178555612a4a565b82800160010185558215612a4a579182015b82811115612a4a578251825591602001919060010190612a2f565b50612a56929150612a5a565b5090565b5b80821115612a565760008155600101612a5b565b600067ffffffffffffffff80841115612a8a57612a8a612fe5565b604051601f8501601f19908116603f01168101908282118183101715612ab257612ab2612fe5565b81604052809350858152868686011115612acb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612afc57600080fd5b919050565b600082601f830112612b11578081fd5b612b2083833560208501612a6f565b9392505050565b600060208284031215612b38578081fd5b612b2082612ae5565b60008060408385031215612b53578081fd5b612b5c83612ae5565b9150612b6a60208401612ae5565b90509250929050565b600080600060608486031215612b87578081fd5b612b9084612ae5565b9250612b9e60208501612ae5565b9150604084013590509250925092565b60008060008060808587031215612bc3578081fd5b612bcc85612ae5565b9350612bda60208601612ae5565b925060408501359150606085013567ffffffffffffffff811115612bfc578182fd5b612c0887828801612b01565b91505092959194509250565b60008060408385031215612c26578182fd5b612c2f83612ae5565b915060208301358015158114612c43578182fd5b809150509250929050565b60008060408385031215612c60578182fd5b612c6983612ae5565b946020939093013593505050565b600060208284031215612c88578081fd5b5051919050565b600060208284031215612ca0578081fd5b8135612b2081612ffb565b600060208284031215612cbc578081fd5b8151612b2081612ffb565b60008060408385031215612cd9578182fd5b823567ffffffffffffffff811115612cef578283fd5b612cfb85828601612b01565b95602094909401359450505050565b600060208284031215612d1b578081fd5b813567ffffffffffffffff811115612d31578182fd5b8201601f81018413612d41578182fd5b611e1584823560208401612a6f565b600060208284031215612d61578081fd5b5035919050565b60008151808452612d80816020860160208601612f23565b601f01601f19169290920160200192915050565b60008151612da6818560208601612f23565b9290920192915050565b60008251612dc2818460208701612f23565b9190910192915050565b600080845482600182811c915080831680612de857607f831692505b6020808410821415612e0857634e487b7160e01b87526022600452602487fd5b818015612e1c5760018114612e2d57612e59565b60ff19861689528489019650612e59565b60008b815260209020885b86811015612e515781548b820152908501908301612e38565b505084890196505b505050505050612e698185612d94565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612ea46080830184612d68565b9695505050505050565b602081526000612b206020830184612d68565b60008219821115612ed457612ed4612fb9565b500190565b600082612ee857612ee8612fcf565b500490565b6000816000190483118215151615612f0757612f07612fb9565b500290565b600082821015612f1e57612f1e612fb9565b500390565b60005b83811015612f3e578181015183820152602001612f26565b838111156118305750506000910152565b600181811c90821680612f6357607f821691505b60208210811415612f8457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f9e57612f9e612fb9565b5060010190565b600082612fb457612fb4612fcf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461117857600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220fa77f6f409781fde004d1e5c439ea197b86d851ff1e118f219557676820365af64736f6c63430008040033

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.