ETH Price: $3,686.68 (+1.57%)
 

Overview

TokenID

91

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
inverted_mfers

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license
File 1 of 12 : inverted_mfers.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract inverted_mfers is ERC721A, Ownable {
    uint256 MAX_MINTS = 69;
    uint256 MAX_SUPPLY = 10021;
    uint256 public mintRate = 0.0069 ether;

    string public baseURI = "ipfs://bafybeieyetlp2c2vubffzjjap7utuz5jwo2k5b5kupvezfchc5tnfg4fh4/";

    constructor() ERC721A("inverted mfers", "imfers") {}

    function mint(uint256 quantity) external payable {
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        require(msg.value >= (mintRate * quantity), "Not enough ether sent");
        _safeMint(msg.sender, quantity);
    }

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

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

    function setMintRate(uint256 _mintRate) public onlyOwner {
        mintRate = _mintRate;
    }
}

File 2 of 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(updatedIndex);
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 12 : 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 5 of 12 : 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 6 of 12 : 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 7 of 12 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// 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 10 of 12 : 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 11 of 12 : 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 12 of 12 : 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",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","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":"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":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60456008556127256009556618838370f34000600a55610100604052604360808181529062001f6d60a03980516200004091600b9160209091019062000132565b503480156200004e57600080fd5b50604080518082018252600e81526d696e766572746564206d6665727360901b602080830191825283518085019094526006845265696d6665727360d01b908401528151919291620000a39160019162000132565b508051620000b990600290602084019062000132565b505050620000d6620000d0620000dc60201b60201c565b620000e0565b62000215565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014090620001d8565b90600052602060002090601f016020900481019282620001645760008555620001af565b82601f106200017f57805160ff1916838001178555620001af565b82800160010185558215620001af579182015b82811115620001af57825182559160200191906001019062000192565b50620001bd929150620001c1565b5090565b5b80821115620001bd5760008155600101620001c2565b600181811c90821680620001ed57607f821691505b602082108114156200020f57634e487b7160e01b600052602260045260246000fd5b50919050565b611d4880620002256000396000f3fe60806040526004361061018b5760003560e01c806370a08231116100d6578063b88d4fde1161007f578063dbe2193f11610059578063dbe2193f14610439578063e985e9c514610459578063f2fde38b146104a257600080fd5b8063b88d4fde146103e3578063c87b56dd14610403578063ca0dcf161461042357600080fd5b806395d89b41116100b057806395d89b411461039b578063a0712d68146103b0578063a22cb465146103c357600080fd5b806370a0823114610348578063715018a6146103685780638da5cb5b1461037d57600080fd5b80632f745c59116101385780634f6ccce7116101125780634f6ccce7146102f35780636352211e146103135780636c0360eb1461033357600080fd5b80632f745c59146102ab5780633ccfd60b146102cb57806342842e0e146102d357600080fd5b8063095ea7b311610169578063095ea7b31461021f57806318160ddd1461024157806323b872dd1461028b57600080fd5b806301ffc9a71461019057806306fdde03146101c5578063081812fc146101e7575b600080fd5b34801561019c57600080fd5b506101b06101ab366004611ac8565b6104c2565b60405190151581526020015b60405180910390f35b3480156101d157600080fd5b506101da610593565b6040516101bc9190611baf565b3480156101f357600080fd5b50610207610202366004611b00565b610625565b6040516001600160a01b0390911681526020016101bc565b34801561022b57600080fd5b5061023f61023a366004611a9f565b610682565b005b34801561024d57600080fd5b5061027d6000546001600160801b0370010000000000000000000000000000000082048116918116919091031690565b6040519081526020016101bc565b34801561029757600080fd5b5061023f6102a6366004611955565b610742565b3480156102b757600080fd5b5061027d6102c6366004611a9f565b61074d565b61023f610863565b3480156102df57600080fd5b5061023f6102ee366004611955565b6108fe565b3480156102ff57600080fd5b5061027d61030e366004611b00565b610919565b34801561031f57600080fd5b5061020761032e366004611b00565b6109dd565b34801561033f57600080fd5b506101da6109ef565b34801561035457600080fd5b5061027d610363366004611909565b610a7d565b34801561037457600080fd5b5061023f610ae5565b34801561038957600080fd5b506007546001600160a01b0316610207565b3480156103a757600080fd5b506101da610b4b565b61023f6103be366004611b00565b610b5a565b3480156103cf57600080fd5b5061023f6103de366004611a65565b610cb0565b3480156103ef57600080fd5b5061023f6103fe366004611990565b610d5f565b34801561040f57600080fd5b506101da61041e366004611b00565b610d99565b34801561042f57600080fd5b5061027d600a5481565b34801561044557600080fd5b5061023f610454366004611b00565b610e37565b34801561046557600080fd5b506101b0610474366004611923565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156104ae57600080fd5b5061023f6104bd366004611909565b610e96565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061052557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061055957506001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000145b8061058d57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600180546105a290611c50565b80601f01602080910402602001604051908101604052809291908181526020018280546105ce90611c50565b801561061b5780601f106105f05761010080835404028352916020019161061b565b820191906000526020600020905b8154815290600101906020018083116105fe57829003601f168201915b5050505050905090565b600061063082610f75565b610666576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061068d826109dd565b9050806001600160a01b0316836001600160a01b031614156106db576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216148015906106fb57506106f98133610474565b155b15610732576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61073d838383610fa9565b505050565b61073d838383611012565b600061075883610a7d565b8210610790576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080546001600160801b03169080805b8381101561085d57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615801592820192909252906108095750610855565b80516001600160a01b03161561081e57805192505b876001600160a01b0316836001600160a01b03161415610853578684141561084c5750935061058d92505050565b6001909301925b505b6001016107a1565b50600080fd5b6007546001600160a01b031633146108c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6007546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156108fb573d6000803e3d6000fd5b50565b61073d83838360405180602001604052806000815250610d5f565b600080546001600160801b031681805b828110156109aa57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906109a1578583141561099a5750949350505050565b6001909201915b50600101610929565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006109e88261127d565b5192915050565b600b80546109fc90611c50565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2890611c50565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b505050505081565b60006001600160a01b038216610abf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610b3f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b9565b610b4960006113ba565b565b6060600280546105a290611c50565b600854610b6633611419565b610b709083611bc2565b1115610bbe5760405162461bcd60e51b815260206004820152601260248201527f457863656564656420746865206c696d6974000000000000000000000000000060448201526064016108b9565b60095481610bf16000546001600160801b0370010000000000000000000000000000000082048116918116919091031690565b610bfb9190611bc2565b1115610c495760405162461bcd60e51b815260206004820152601660248201527f4e6f7420656e6f75676820746f6b656e73206c6566740000000000000000000060448201526064016108b9565b80600a54610c579190611bee565b341015610ca65760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e74000000000000000000000060448201526064016108b9565b6108fb338261148d565b6001600160a01b038216331415610cf3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d6a848484611012565b610d76848484846114ab565b610d93576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610da482610f75565b610dda576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610de46115ba565b9050805160001415610e055760405180602001604052806000815250610e30565b80610e0f846115c9565b604051602001610e20929190611b44565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610e915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b9565b600a55565b6007546001600160a01b03163314610ef05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b9565b6001600160a01b038116610f6c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108b9565b6108fb816113ba565b600080546001600160801b03168210801561058d575050600090815260036020526040902054600160e01b900460ff161590565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061101d8261127d565b80519091506000906001600160a01b0316336001600160a01b0316148061104b5750815161104b9033610474565b8061106657503361105b84610625565b6001600160a01b0316145b90508061109f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146110ee576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841661112e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61113e6000848460000151610fa9565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611233576000546001600160801b0316811015611233578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561138857600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113865780516001600160a01b03161561131c579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611381579392505050565b61131c565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b03821661145b576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205468010000000000000000900467ffffffffffffffff1690565b6114a7828260405180602001604052806000815250611717565b5050565b60006001600160a01b0384163b156115ae57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114ef903390899088908890600401611b73565b602060405180830381600087803b15801561150957600080fd5b505af1925050508015611539575060408051601f3d908101601f1916820190925261153691810190611ae4565b60015b611594573d808015611567576040519150601f19603f3d011682016040523d82523d6000602084013e61156c565b606091505b50805161158c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115b2565b5060015b949350505050565b6060600b80546105a290611c50565b60608161160957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611633578061161d81611c8b565b915061162c9050600a83611bda565b915061160d565b60008167ffffffffffffffff81111561165c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611686576020820181803683370190505b5090505b84156115b25761169b600183611c0d565b91506116a8600a86611ca6565b6116b3906030611bc2565b60f81b8183815181106116d657634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611710600a86611bda565b945061168a565b61073d83838360016000546001600160801b03166001600160a01b03851661176b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b836117a2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156118be5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611894575061189260008884886114ab565b155b156118b2576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161183d565b50600080546fffffffffffffffffffffffffffffffff19166001600160801b0392909216919091179055611276565b80356001600160a01b038116811461190457600080fd5b919050565b60006020828403121561191a578081fd5b610e30826118ed565b60008060408385031215611935578081fd5b61193e836118ed565b915061194c602084016118ed565b90509250929050565b600080600060608486031215611969578081fd5b611972846118ed565b9250611980602085016118ed565b9150604084013590509250925092565b600080600080608085870312156119a5578081fd5b6119ae856118ed565b93506119bc602086016118ed565b925060408501359150606085013567ffffffffffffffff808211156119df578283fd5b818701915087601f8301126119f2578283fd5b813581811115611a0457611a04611ce6565b604051601f8201601f19908116603f01168101908382118183101715611a2c57611a2c611ce6565b816040528281528a6020848701011115611a44578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611a77578182fd5b611a80836118ed565b915060208301358015158114611a94578182fd5b809150509250929050565b60008060408385031215611ab1578182fd5b611aba836118ed565b946020939093013593505050565b600060208284031215611ad9578081fd5b8135610e3081611cfc565b600060208284031215611af5578081fd5b8151610e3081611cfc565b600060208284031215611b11578081fd5b5035919050565b60008151808452611b30816020860160208601611c24565b601f01601f19169290920160200192915050565b60008351611b56818460208801611c24565b835190830190611b6a818360208801611c24565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611ba56080830184611b18565b9695505050505050565b602081526000610e306020830184611b18565b60008219821115611bd557611bd5611cba565b500190565b600082611be957611be9611cd0565b500490565b6000816000190483118215151615611c0857611c08611cba565b500290565b600082821015611c1f57611c1f611cba565b500390565b60005b83811015611c3f578181015183820152602001611c27565b83811115610d935750506000910152565b600181811c90821680611c6457607f821691505b60208210811415611c8557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c9f57611c9f611cba565b5060010190565b600082611cb557611cb5611cd0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108fb57600080fdfea2646970667358221220b9a498f3ba29d75adfc1595b27c042eb97bf7718ba679922ac41fa11db55c9e564736f6c63430008040033697066733a2f2f62616679626569657965746c7032633276756266667a6a6a6170377574757a356a776f326b3562356b757076657a6663686335746e6667346668342f

Deployed Bytecode

0x60806040526004361061018b5760003560e01c806370a08231116100d6578063b88d4fde1161007f578063dbe2193f11610059578063dbe2193f14610439578063e985e9c514610459578063f2fde38b146104a257600080fd5b8063b88d4fde146103e3578063c87b56dd14610403578063ca0dcf161461042357600080fd5b806395d89b41116100b057806395d89b411461039b578063a0712d68146103b0578063a22cb465146103c357600080fd5b806370a0823114610348578063715018a6146103685780638da5cb5b1461037d57600080fd5b80632f745c59116101385780634f6ccce7116101125780634f6ccce7146102f35780636352211e146103135780636c0360eb1461033357600080fd5b80632f745c59146102ab5780633ccfd60b146102cb57806342842e0e146102d357600080fd5b8063095ea7b311610169578063095ea7b31461021f57806318160ddd1461024157806323b872dd1461028b57600080fd5b806301ffc9a71461019057806306fdde03146101c5578063081812fc146101e7575b600080fd5b34801561019c57600080fd5b506101b06101ab366004611ac8565b6104c2565b60405190151581526020015b60405180910390f35b3480156101d157600080fd5b506101da610593565b6040516101bc9190611baf565b3480156101f357600080fd5b50610207610202366004611b00565b610625565b6040516001600160a01b0390911681526020016101bc565b34801561022b57600080fd5b5061023f61023a366004611a9f565b610682565b005b34801561024d57600080fd5b5061027d6000546001600160801b0370010000000000000000000000000000000082048116918116919091031690565b6040519081526020016101bc565b34801561029757600080fd5b5061023f6102a6366004611955565b610742565b3480156102b757600080fd5b5061027d6102c6366004611a9f565b61074d565b61023f610863565b3480156102df57600080fd5b5061023f6102ee366004611955565b6108fe565b3480156102ff57600080fd5b5061027d61030e366004611b00565b610919565b34801561031f57600080fd5b5061020761032e366004611b00565b6109dd565b34801561033f57600080fd5b506101da6109ef565b34801561035457600080fd5b5061027d610363366004611909565b610a7d565b34801561037457600080fd5b5061023f610ae5565b34801561038957600080fd5b506007546001600160a01b0316610207565b3480156103a757600080fd5b506101da610b4b565b61023f6103be366004611b00565b610b5a565b3480156103cf57600080fd5b5061023f6103de366004611a65565b610cb0565b3480156103ef57600080fd5b5061023f6103fe366004611990565b610d5f565b34801561040f57600080fd5b506101da61041e366004611b00565b610d99565b34801561042f57600080fd5b5061027d600a5481565b34801561044557600080fd5b5061023f610454366004611b00565b610e37565b34801561046557600080fd5b506101b0610474366004611923565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156104ae57600080fd5b5061023f6104bd366004611909565b610e96565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061052557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061055957506001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000145b8061058d57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600180546105a290611c50565b80601f01602080910402602001604051908101604052809291908181526020018280546105ce90611c50565b801561061b5780601f106105f05761010080835404028352916020019161061b565b820191906000526020600020905b8154815290600101906020018083116105fe57829003601f168201915b5050505050905090565b600061063082610f75565b610666576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061068d826109dd565b9050806001600160a01b0316836001600160a01b031614156106db576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216148015906106fb57506106f98133610474565b155b15610732576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61073d838383610fa9565b505050565b61073d838383611012565b600061075883610a7d565b8210610790576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080546001600160801b03169080805b8381101561085d57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615801592820192909252906108095750610855565b80516001600160a01b03161561081e57805192505b876001600160a01b0316836001600160a01b03161415610853578684141561084c5750935061058d92505050565b6001909301925b505b6001016107a1565b50600080fd5b6007546001600160a01b031633146108c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6007546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156108fb573d6000803e3d6000fd5b50565b61073d83838360405180602001604052806000815250610d5f565b600080546001600160801b031681805b828110156109aa57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906109a1578583141561099a5750949350505050565b6001909201915b50600101610929565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006109e88261127d565b5192915050565b600b80546109fc90611c50565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2890611c50565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b505050505081565b60006001600160a01b038216610abf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610b3f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b9565b610b4960006113ba565b565b6060600280546105a290611c50565b600854610b6633611419565b610b709083611bc2565b1115610bbe5760405162461bcd60e51b815260206004820152601260248201527f457863656564656420746865206c696d6974000000000000000000000000000060448201526064016108b9565b60095481610bf16000546001600160801b0370010000000000000000000000000000000082048116918116919091031690565b610bfb9190611bc2565b1115610c495760405162461bcd60e51b815260206004820152601660248201527f4e6f7420656e6f75676820746f6b656e73206c6566740000000000000000000060448201526064016108b9565b80600a54610c579190611bee565b341015610ca65760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e74000000000000000000000060448201526064016108b9565b6108fb338261148d565b6001600160a01b038216331415610cf3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d6a848484611012565b610d76848484846114ab565b610d93576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610da482610f75565b610dda576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610de46115ba565b9050805160001415610e055760405180602001604052806000815250610e30565b80610e0f846115c9565b604051602001610e20929190611b44565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610e915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b9565b600a55565b6007546001600160a01b03163314610ef05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b9565b6001600160a01b038116610f6c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108b9565b6108fb816113ba565b600080546001600160801b03168210801561058d575050600090815260036020526040902054600160e01b900460ff161590565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061101d8261127d565b80519091506000906001600160a01b0316336001600160a01b0316148061104b5750815161104b9033610474565b8061106657503361105b84610625565b6001600160a01b0316145b90508061109f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146110ee576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841661112e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61113e6000848460000151610fa9565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611233576000546001600160801b0316811015611233578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561138857600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113865780516001600160a01b03161561131c579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611381579392505050565b61131c565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b03821661145b576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205468010000000000000000900467ffffffffffffffff1690565b6114a7828260405180602001604052806000815250611717565b5050565b60006001600160a01b0384163b156115ae57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114ef903390899088908890600401611b73565b602060405180830381600087803b15801561150957600080fd5b505af1925050508015611539575060408051601f3d908101601f1916820190925261153691810190611ae4565b60015b611594573d808015611567576040519150601f19603f3d011682016040523d82523d6000602084013e61156c565b606091505b50805161158c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115b2565b5060015b949350505050565b6060600b80546105a290611c50565b60608161160957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611633578061161d81611c8b565b915061162c9050600a83611bda565b915061160d565b60008167ffffffffffffffff81111561165c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611686576020820181803683370190505b5090505b84156115b25761169b600183611c0d565b91506116a8600a86611ca6565b6116b3906030611bc2565b60f81b8183815181106116d657634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611710600a86611bda565b945061168a565b61073d83838360016000546001600160801b03166001600160a01b03851661176b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b836117a2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156118be5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611894575061189260008884886114ab565b155b156118b2576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161183d565b50600080546fffffffffffffffffffffffffffffffff19166001600160801b0392909216919091179055611276565b80356001600160a01b038116811461190457600080fd5b919050565b60006020828403121561191a578081fd5b610e30826118ed565b60008060408385031215611935578081fd5b61193e836118ed565b915061194c602084016118ed565b90509250929050565b600080600060608486031215611969578081fd5b611972846118ed565b9250611980602085016118ed565b9150604084013590509250925092565b600080600080608085870312156119a5578081fd5b6119ae856118ed565b93506119bc602086016118ed565b925060408501359150606085013567ffffffffffffffff808211156119df578283fd5b818701915087601f8301126119f2578283fd5b813581811115611a0457611a04611ce6565b604051601f8201601f19908116603f01168101908382118183101715611a2c57611a2c611ce6565b816040528281528a6020848701011115611a44578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611a77578182fd5b611a80836118ed565b915060208301358015158114611a94578182fd5b809150509250929050565b60008060408385031215611ab1578182fd5b611aba836118ed565b946020939093013593505050565b600060208284031215611ad9578081fd5b8135610e3081611cfc565b600060208284031215611af5578081fd5b8151610e3081611cfc565b600060208284031215611b11578081fd5b5035919050565b60008151808452611b30816020860160208601611c24565b601f01601f19169290920160200192915050565b60008351611b56818460208801611c24565b835190830190611b6a818360208801611c24565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611ba56080830184611b18565b9695505050505050565b602081526000610e306020830184611b18565b60008219821115611bd557611bd5611cba565b500190565b600082611be957611be9611cd0565b500490565b6000816000190483118215151615611c0857611c08611cba565b500290565b600082821015611c1f57611c1f611cba565b500390565b60005b83811015611c3f578181015183820152602001611c27565b83811115610d935750506000910152565b600181811c90821680611c6457607f821691505b60208210811415611c8557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c9f57611c9f611cba565b5060010190565b600082611cb557611cb5611cd0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108fb57600080fdfea2646970667358221220b9a498f3ba29d75adfc1595b27c042eb97bf7718ba679922ac41fa11db55c9e564736f6c63430008040033

Deployed Bytecode Sourcemap

151:1064:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6342:366:11;;;;;;;;;;-1:-1:-1;6342:366:11;;;;;:::i;:::-;;:::i;:::-;;;5231:14:12;;5224:22;5206:41;;5194:2;5179:18;6342:366:11;;;;;;;;8885:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;10341:200::-;;;;;;;;;;-1:-1:-1;10341:200:11;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4483:55:12;;;4465:74;;4453:2;4438:18;10341:200:11;4420:125:12;9918:362:11;;;;;;;;;;-1:-1:-1;9918:362:11;;;;;:::i;:::-;;:::i;:::-;;3650:274;;;;;;;;;;;;3703:7;3891:12;-1:-1:-1;;;;;3891:12:11;;;;;3875:13;;;:28;;;;3868:35;;3650:274;;;;7444:25:12;;;7432:2;7417:18;3650:274:11;7399:76:12;11172:164:11;;;;;;;;;;-1:-1:-1;11172:164:11;;;;;:::i;:::-;;:::i;5198:1077::-;;;;;;;;;;-1:-1:-1;5198:1077:11;;;;;:::i;:::-;;:::i;897:112:10:-;;;:::i;11402:179:11:-;;;;;;;;;;-1:-1:-1;11402:179:11;;;;;:::i;:::-;;:::i;4210:695::-;;;;;;;;;;-1:-1:-1;4210:695:11;;;;;:::i;:::-;;:::i;8701:122::-;;;;;;;;;;-1:-1:-1;8701:122:11;;;;;:::i;:::-;;:::i;306:93:10:-;;;;;;;;;;;;;:::i;6767:203:11:-;;;;;;;;;;-1:-1:-1;6767:203:11;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;1036:85::-;;;;;;;;;;-1:-1:-1;1108:6:0;;-1:-1:-1;;;;;1108:6:0;1036:85;;9047:102:11;;;;;;;;;;;;;:::i;464:427:10:-;;;;;;:::i;:::-;;:::i;10608:274:11:-;;;;;;;;;;-1:-1:-1;10608:274:11;;;;;:::i;:::-;;:::i;11647:332::-;;;;;;;;;;-1:-1:-1;11647:332:11;;;;;:::i;:::-;;:::i;9215:313::-;;;;;;;;;;-1:-1:-1;9215:313:11;;;;;:::i;:::-;;:::i;261:38:10:-;;;;;;;;;;;;;;;;1119:94;;;;;;;;;;-1:-1:-1;1119:94:10;;;;;:::i;:::-;;:::i;10948:162:11:-;;;;;;;;;;-1:-1:-1;10948:162:11;;;;;:::i;:::-;-1:-1:-1;;;;;11068:25:11;;;11045:4;11068:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;10948:162;1918:198:0;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;6342:366:11:-;6444:4;-1:-1:-1;;;;;;6479:40:11;;6494:25;6479:40;;:104;;-1:-1:-1;;;;;;;6535:48:11;;6550:33;6535:48;6479:104;:170;;;-1:-1:-1;;;;;;;6599:50:11;;6614:35;6599:50;6479:170;:222;;;-1:-1:-1;952:25:8;-1:-1:-1;;;;;;937:40:8;;;6665:36:11;6460:241;6342:366;-1:-1:-1;;6342:366:11:o;8885:98::-;8939:13;8971:5;8964:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8885:98;:::o;10341:200::-;10409:7;10433:16;10441:7;10433;:16::i;:::-;10428:64;;10458:34;;;;;;;;;;;;;;10428:64;-1:-1:-1;10510:24:11;;;;:15;:24;;;;;;-1:-1:-1;;;;;10510:24:11;;10341:200::o;9918:362::-;9990:13;10006:24;10022:7;10006:15;:24::i;:::-;9990:40;;10050:5;-1:-1:-1;;;;;10044:11:11;:2;-1:-1:-1;;;;;10044:11:11;;10040:48;;;10064:24;;;;;;;;;;;;;;10040:48;719:10:6;-1:-1:-1;;;;;10103:21:11;;;;;;:63;;-1:-1:-1;10129:37:11;10146:5;719:10:6;10948:162:11;:::i;10129:37::-;10128:38;10103:63;10099:136;;;10189:35;;;;;;;;;;;;;;10099:136;10245:28;10254:2;10258:7;10267:5;10245:8;:28::i;:::-;9918:362;;;:::o;11172:164::-;11301:28;11311:4;11317:2;11321:7;11301:9;:28::i;5198:1077::-;5287:7;5319:16;5329:5;5319:9;:16::i;:::-;5310:5;:25;5306:61;;5344:23;;;;;;;;;;;;;;5306:61;5377:22;5402:13;;-1:-1:-1;;;;;5402:13:11;;5377:22;;5645:543;5665:14;5661:1;:18;5645:543;;;5704:31;5738:14;;;:11;:14;;;;;;;;;5704:48;;;;;;;;;-1:-1:-1;;;;;5704:48:11;;;;-1:-1:-1;;;5704:48:11;;;;;;;;;;;-1:-1:-1;;;5704:48:11;;;;;;;;;;;;;;;;5770:71;;5814:8;;;5770:71;5862:14;;-1:-1:-1;;;;;5862:28:11;;5858:109;;5934:14;;;-1:-1:-1;5858:109:11;6009:5;-1:-1:-1;;;;;5988:26:11;:17;-1:-1:-1;;;;;5988:26:11;;5984:190;;;6057:5;6042:11;:20;6038:83;;;-1:-1:-1;6097:1:11;-1:-1:-1;6090:8:11;;-1:-1:-1;;;6090:8:11;6038:83;6142:13;;;;;5984:190;5645:543;;5681:3;;5645:543;;;;6260:8;;;897:112:10;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;6789:2:12;1240:68:0;;;6771:21:12;;;6808:18;;;6801:30;6867:34;6847:18;;;6840:62;6919:18;;1240:68:0;;;;;;;;;1108:6;;954:48:10::1;::::0;-1:-1:-1;;;;;1108:6:0;;;;980:21:10::1;954:48:::0;::::1;;;::::0;::::1;::::0;;;980:21;1108:6:0;954:48:10;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;897:112::o:0;11402:179:11:-;11535:39;11552:4;11558:2;11562:7;11535:39;;;;;;;;;;;;:16;:39::i;4210:695::-;4277:7;4321:13;;-1:-1:-1;;;;;4321:13:11;4277:7;;4529:320;4549:14;4545:1;:18;4529:320;;;4588:31;4622:14;;;:11;:14;;;;;;;;;4588:48;;;;;;;;;-1:-1:-1;;;;;4588:48:11;;;;-1:-1:-1;;;4588:48:11;;;;;;;;;;;-1:-1:-1;;;4588:48:11;;;;;;;;;;;;;;4654:181;;4718:5;4703:11;:20;4699:83;;;-1:-1:-1;4758:1:11;4210:695;-1:-1:-1;;;;4210:695:11:o;4699:83::-;4803:13;;;;;4654:181;-1:-1:-1;4565:3:11;;4529:320;;;;4875:23;;;;;;;;;;;;;;8701:122;8765:7;8791:20;8803:7;8791:11;:20::i;:::-;:25;;8701:122;-1:-1:-1;;8701:122:11:o;306:93:10:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6767:203:11:-;6831:7;-1:-1:-1;;;;;6854:19:11;;6850:60;;6882:28;;;;;;;;;;;;;;6850:60;-1:-1:-1;;;;;;6935:19:11;;;;;:12;:19;;;;;:27;;;;6767:203::o;1668:101:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;6789:2:12;1240:68:0;;;6771:21:12;;;6808:18;;;6801:30;6867:34;6847:18;;;6840:62;6919:18;;1240:68:0;6761:182:12;1240:68:0;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;9047:102:11:-;9103:13;9135:7;9128:14;;;;;:::i;464:427:10:-;650:9;;621:25;635:10;621:13;:25::i;:::-;610:36;;:8;:36;:::i;:::-;:49;;602:80;;;;-1:-1:-1;;;602:80:10;;6091:2:12;602:80:10;;;6073:21:12;6130:2;6110:18;;;6103:30;6169:20;6149:18;;;6142:48;6207:18;;602:80:10;6063:168:12;602:80:10;728:10;;716:8;700:13;3703:7:11;3891:12;-1:-1:-1;;;;;3891:12:11;;;;;3875:13;;;:28;;;;3868:35;;3650:274;700:13:10;:24;;;;:::i;:::-;:38;;692:73;;;;-1:-1:-1;;;692:73:10;;6438:2:12;692:73:10;;;6420:21:12;6477:2;6457:18;;;6450:30;6516:24;6496:18;;;6489:52;6558:18;;692:73:10;6410:172:12;692:73:10;808:8;797;;:19;;;;:::i;:::-;783:9;:34;;775:68;;;;-1:-1:-1;;;775:68:10;;7150:2:12;775:68:10;;;7132:21:12;7189:2;7169:18;;;7162:30;7228:23;7208:18;;;7201:51;7269:18;;775:68:10;7122:171:12;775:68:10;853:31;863:10;875:8;853:9;:31::i;10608:274:11:-;-1:-1:-1;;;;;10698:24:11;;719:10:6;10698:24:11;10694:54;;;10731:17;;;;;;;;;;;;;;10694:54;719:10:6;10759:32:11;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;10759:42:11;;;;;;;;;;;;:53;;-1:-1:-1;;10759:53:11;;;;;;;;;;10827:48;;5206:41:12;;;10759:42:11;;719:10:6;10827:48:11;;5179:18:12;10827:48:11;;;;;;;10608:274;;:::o;11647:332::-;11808:28;11818:4;11824:2;11828:7;11808:9;:28::i;:::-;11851:48;11874:4;11880:2;11884:7;11893:5;11851:22;:48::i;:::-;11846:127;;11922:40;;-1:-1:-1;;;11922:40:11;;;;;;;;;;;11846:127;11647:332;;;;:::o;9215:313::-;9288:13;9318:16;9326:7;9318;:16::i;:::-;9313:59;;9343:29;;;;;;;;;;;;;;9313:59;9383:21;9407:10;:8;:10::i;:::-;9383:34;;9440:7;9434:21;9459:1;9434:26;;:87;;;;;;;;;;;;;;;;;9487:7;9496:18;:7;:16;:18::i;:::-;9470:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9434:87;9427:94;9215:313;-1:-1:-1;;;9215:313:11:o;1119:94:10:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;6789:2:12;1240:68:0;;;6771:21:12;;;6808:18;;;6801:30;6867:34;6847:18;;;6840:62;6919:18;;1240:68:0;6761:182:12;1240:68:0;1186:8:10::1;:20:::0;1119:94::o;1918:198:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;6789:2:12;1240:68:0;;;6771:21:12;;;6808:18;;;6801:30;6867:34;6847:18;;;6840:62;6919:18;;1240:68:0;6761:182:12;1240:68:0;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;5684:2:12;1998:73:0::1;::::0;::::1;5666:21:12::0;5723:2;5703:18;;;5696:30;5762:34;5742:18;;;5735:62;5833:8;5813:18;;;5806:36;5859:19;;1998:73:0::1;5656:228:12::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;12225:142:11:-:0;12282:4;12315:13;;-1:-1:-1;;;;;12315:13:11;12305:23;;:55;;;;-1:-1:-1;;12333:20:11;;;;:11;:20;;;;;:27;-1:-1:-1;;;12333:27:11;;;;12332:28;;12225:142::o;19254:189::-;19364:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;19364:29:11;-1:-1:-1;;;;;19364:29:11;;;;;;;;;19408:28;;19364:24;;19408:28;;;;;;;19254:189;;;:::o;14859:2067::-;14969:35;15007:20;15019:7;15007:11;:20::i;:::-;15080:18;;14969:58;;-1:-1:-1;15038:22:11;;-1:-1:-1;;;;;15064:34:11;719:10:6;-1:-1:-1;;;;;15064:34:11;;:100;;;-1:-1:-1;15131:18:11;;15114:50;;719:10:6;10948:162:11;:::i;15114:50::-;15064:152;;;-1:-1:-1;719:10:6;15180:20:11;15192:7;15180:11;:20::i;:::-;-1:-1:-1;;;;;15180:36:11;;15064:152;15038:179;;15233:17;15228:66;;15259:35;;;;;;;;;;;;;;15228:66;15330:4;-1:-1:-1;;;;;15308:26:11;:13;:18;;;-1:-1:-1;;;;;15308:26:11;;15304:67;;15343:28;;;;;;;;;;;;;;15304:67;-1:-1:-1;;;;;15385:16:11;;15381:52;;15410:23;;;;;;;;;;;;;;15381:52;15549:49;15566:1;15570:7;15579:13;:18;;;15549:8;:49::i;:::-;-1:-1:-1;;;;;15888:18:11;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;15888:31:11;;;;;;;-1:-1:-1;;15888:31:11;;;;;;;15933:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;15933:29:11;;;;;;;;;;;15977:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;16021:61:11;;;;-1:-1:-1;;;16066:15:11;16021:61;;;;;;;;;;;16352:11;;;16381:24;;;;;:29;16352:11;;16381:29;16377:438;;16603:13;;-1:-1:-1;;;;;16603:13:11;16589:27;;16585:216;;;16672:18;;;16640:24;;;:11;:24;;;;;;;;:50;;16754:28;;;;16712:70;;-1:-1:-1;;;16712:70:11;-1:-1:-1;;;;;;16712:70:11;;;-1:-1:-1;;;;;16640:50:11;;;16712:70;;;;;;;16585:216;14859:2067;16859:7;16855:2;-1:-1:-1;;;;;16840:27:11;16849:4;-1:-1:-1;;;;;16840:27:11;;;;;;;;;;;16877:42;14859:2067;;;;;:::o;7586:1058::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;7748:13:11;;7695:7;;-1:-1:-1;;;;;7748:13:11;7741:20;;7737:843;;;7781:31;7815:17;;;:11;:17;;;;;;;;;7781:51;;;;;;;;;-1:-1:-1;;;;;7781:51:11;;;;-1:-1:-1;;;7781:51:11;;;;;;;;;;;-1:-1:-1;;;7781:51:11;;;;;;;;;;;;;;7850:716;;7899:14;;-1:-1:-1;;;;;7899:28:11;;7895:99;;7962:9;7586:1058;-1:-1:-1;;;7586:1058:11:o;7895:99::-;-1:-1:-1;;;8332:6:11;8376:17;;;;:11;:17;;;;;;;;;8364:29;;;;;;;;;-1:-1:-1;;;;;8364:29:11;;;;;-1:-1:-1;;;8364:29:11;;;;;;;;;;;-1:-1:-1;;;8364:29:11;;;;;;;;;;;;;8423:28;8419:107;;8490:9;7586:1058;-1:-1:-1;;;7586:1058:11:o;8419:107::-;8293:255;;;7737:843;;8606:31;;;;;;;;;;;;;;2270:187:0;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;2378:17:0;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2270:187;;:::o;6976:204:11:-;7037:7;-1:-1:-1;;;;;7060:19:11;;7056:59;;7088:27;;;;;;;;;;;;;;7056:59;-1:-1:-1;;;;;;7140:19:11;;;;;:12;:19;;;;;:32;;;;;;;6976:204::o;12373:102::-;12441:27;12451:2;12455:8;12441:27;;;;;;;;;;;;:9;:27::i;:::-;12373:102;;:::o;19996:769::-;20146:4;-1:-1:-1;;;;;20166:13:11;;1465:19:5;:23;20162:597:11;;20201:72;;-1:-1:-1;;;20201:72:11;;-1:-1:-1;;;;;20201:36:11;;;;;:72;;719:10:6;;20252:4:11;;20258:7;;20267:5;;20201:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20201:72:11;;;;;;;;-1:-1:-1;;20201:72:11;;;;;;;;;;;;:::i;:::-;;;20197:510;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20444:13:11;;20440:253;;20493:40;;-1:-1:-1;;;20493:40:11;;;;;;;;;;;20440:253;20645:6;20639:13;20630:6;20626:2;20622:15;20615:38;20197:510;-1:-1:-1;;;;;;20323:55:11;-1:-1:-1;;;20323:55:11;;-1:-1:-1;20316:62:11;;20162:597;-1:-1:-1;20744:4:11;20162:597;19996:769;;;;;;:::o;1015:98:10:-;1067:13;1099:7;1092:14;;;;;:::i;328:703:7:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:7;;;;;;;;;;;;;;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:7;;-1:-1:-1;773:2:7;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;-1:-1:-1;;;817:17:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:7;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:7;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;-1:-1:-1;;;902:14:7;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;972:11:7;981:2;972:11;;:::i;:::-;;;844:150;;12826:157:11;12944:32;12950:2;12954:8;12964:5;12971:4;13363:20;13386:13;-1:-1:-1;;;;;13386:13:11;-1:-1:-1;;;;;13413:16:11;;13409:48;;13438:19;;;;;;;;;;;;;;13409:48;13471:13;13467:44;;13493:18;;;;;;;;;;;;;;13467:44;-1:-1:-1;;;;;13855:16:11;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;13913:49:11;;13855:44;;;;;;;;13913:49;;;;-1:-1:-1;;13855:44:11;;;;;;13913:49;;;;;;;;;;;;;;;;13977:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;14026:66:11;;;;-1:-1:-1;;;14076:15:11;14026:66;;;;;;;;;;;13977:25;;14157:322;14177:8;14173:1;:12;14157:322;;;14215:38;;14240:12;;-1:-1:-1;;;;;14215:38:11;;;14232:1;;14215:38;;14232:1;;14215:38;14275:4;:68;;;;;14284:59;14315:1;14319:2;14323:12;14337:5;14284:22;:59::i;:::-;14283:60;14275:68;14271:162;;;14374:40;;-1:-1:-1;;;14374:40:11;;;;;;;;;;;14271:162;14450:14;;;;;14187:3;14157:322;;;-1:-1:-1;14493:13:11;:37;;-1:-1:-1;;14493:37:11;-1:-1:-1;;;;;14493:37:11;;;;;;;;;;14550:60;11647:332;14:196:12;82:20;;-1:-1:-1;;;;;131:54:12;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:196::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;348:6;340;333:22;295:2;376:29;395:9;376:29;:::i;416:270::-;484:6;492;545:2;533:9;524:7;520:23;516:32;513:2;;;566:6;558;551:22;513:2;594:29;613:9;594:29;:::i;:::-;584:39;;642:38;676:2;665:9;661:18;642:38;:::i;:::-;632:48;;503:183;;;;;:::o;691:338::-;768:6;776;784;837:2;825:9;816:7;812:23;808:32;805:2;;;858:6;850;843:22;805:2;886:29;905:9;886:29;:::i;:::-;876:39;;934:38;968:2;957:9;953:18;934:38;:::i;:::-;924:48;;1019:2;1008:9;1004:18;991:32;981:42;;795:234;;;;;:::o;1034:1183::-;1129:6;1137;1145;1153;1206:3;1194:9;1185:7;1181:23;1177:33;1174:2;;;1228:6;1220;1213:22;1174:2;1256:29;1275:9;1256:29;:::i;:::-;1246:39;;1304:38;1338:2;1327:9;1323:18;1304:38;:::i;:::-;1294:48;;1389:2;1378:9;1374:18;1361:32;1351:42;;1444:2;1433:9;1429:18;1416:32;1467:18;1508:2;1500:6;1497:14;1494:2;;;1529:6;1521;1514:22;1494:2;1572:6;1561:9;1557:22;1547:32;;1617:7;1610:4;1606:2;1602:13;1598:27;1588:2;;1644:6;1636;1629:22;1588:2;1685;1672:16;1707:2;1703;1700:10;1697:2;;;1713:18;;:::i;:::-;1788:2;1782:9;1756:2;1842:13;;-1:-1:-1;;1838:22:12;;;1862:2;1834:31;1830:40;1818:53;;;1886:18;;;1906:22;;;1883:46;1880:2;;;1932:18;;:::i;:::-;1972:10;1968:2;1961:22;2007:2;1999:6;1992:18;2047:7;2042:2;2037;2033;2029:11;2025:20;2022:33;2019:2;;;2073:6;2065;2058:22;2019:2;2134;2129;2125;2121:11;2116:2;2108:6;2104:15;2091:46;2157:15;;;2174:2;2153:24;2146:40;;;;1164:1053;;;;-1:-1:-1;1164:1053:12;;-1:-1:-1;;;;1164:1053:12:o;2222:367::-;2287:6;2295;2348:2;2336:9;2327:7;2323:23;2319:32;2316:2;;;2369:6;2361;2354:22;2316:2;2397:29;2416:9;2397:29;:::i;:::-;2387:39;;2476:2;2465:9;2461:18;2448:32;2523:5;2516:13;2509:21;2502:5;2499:32;2489:2;;2550:6;2542;2535:22;2489:2;2578:5;2568:15;;;2306:283;;;;;:::o;2594:264::-;2662:6;2670;2723:2;2711:9;2702:7;2698:23;2694:32;2691:2;;;2744:6;2736;2729:22;2691:2;2772:29;2791:9;2772:29;:::i;:::-;2762:39;2848:2;2833:18;;;;2820:32;;-1:-1:-1;;;2681:177:12:o;2863:255::-;2921:6;2974:2;2962:9;2953:7;2949:23;2945:32;2942:2;;;2995:6;2987;2980:22;2942:2;3039:9;3026:23;3058:30;3082:5;3058:30;:::i;3123:259::-;3192:6;3245:2;3233:9;3224:7;3220:23;3216:32;3213:2;;;3266:6;3258;3251:22;3213:2;3303:9;3297:16;3322:30;3346:5;3322:30;:::i;3387:190::-;3446:6;3499:2;3487:9;3478:7;3474:23;3470:32;3467:2;;;3520:6;3512;3505:22;3467:2;-1:-1:-1;3548:23:12;;3457:120;-1:-1:-1;3457:120:12:o;3582:257::-;3623:3;3661:5;3655:12;3688:6;3683:3;3676:19;3704:63;3760:6;3753:4;3748:3;3744:14;3737:4;3730:5;3726:16;3704:63;:::i;:::-;3821:2;3800:15;-1:-1:-1;;3796:29:12;3787:39;;;;3828:4;3783:50;;3631:208;-1:-1:-1;;3631:208:12:o;3844:470::-;4023:3;4061:6;4055:13;4077:53;4123:6;4118:3;4111:4;4103:6;4099:17;4077:53;:::i;:::-;4193:13;;4152:16;;;;4215:57;4193:13;4152:16;4249:4;4237:17;;4215:57;:::i;:::-;4288:20;;4031:283;-1:-1:-1;;;;4031:283:12:o;4550:511::-;4744:4;-1:-1:-1;;;;;4854:2:12;4846:6;4842:15;4831:9;4824:34;4906:2;4898:6;4894:15;4889:2;4878:9;4874:18;4867:43;;4946:6;4941:2;4930:9;4926:18;4919:34;4989:3;4984:2;4973:9;4969:18;4962:31;5010:45;5050:3;5039:9;5035:19;5027:6;5010:45;:::i;:::-;5002:53;4753:308;-1:-1:-1;;;;;;4753:308:12:o;5258:219::-;5407:2;5396:9;5389:21;5370:4;5427:44;5467:2;5456:9;5452:18;5444:6;5427:44;:::i;7480:128::-;7520:3;7551:1;7547:6;7544:1;7541:13;7538:2;;;7557:18;;:::i;:::-;-1:-1:-1;7593:9:12;;7528:80::o;7613:120::-;7653:1;7679;7669:2;;7684:18;;:::i;:::-;-1:-1:-1;7718:9:12;;7659:74::o;7738:168::-;7778:7;7844:1;7840;7836:6;7832:14;7829:1;7826:21;7821:1;7814:9;7807:17;7803:45;7800:2;;;7851:18;;:::i;:::-;-1:-1:-1;7891:9:12;;7790:116::o;7911:125::-;7951:4;7979:1;7976;7973:8;7970:2;;;7984:18;;:::i;:::-;-1:-1:-1;8021:9:12;;7960:76::o;8041:258::-;8113:1;8123:113;8137:6;8134:1;8131:13;8123:113;;;8213:11;;;8207:18;8194:11;;;8187:39;8159:2;8152:10;8123:113;;;8254:6;8251:1;8248:13;8245:2;;;-1:-1:-1;;8289:1:12;8271:16;;8264:27;8094:205::o;8304:437::-;8383:1;8379:12;;;;8426;;;8447:2;;8501:4;8493:6;8489:17;8479:27;;8447:2;8554;8546:6;8543:14;8523:18;8520:38;8517:2;;;-1:-1:-1;;;8588:1:12;8581:88;8692:4;8689:1;8682:15;8720:4;8717:1;8710:15;8517:2;;8359:382;;;:::o;8746:135::-;8785:3;-1:-1:-1;;8806:17:12;;8803:2;;;8826:18;;:::i;:::-;-1:-1:-1;8873:1:12;8862:13;;8793:88::o;8886:112::-;8918:1;8944;8934:2;;8949:18;;:::i;:::-;-1:-1:-1;8983:9:12;;8924:74::o;9003:184::-;-1:-1:-1;;;9052:1:12;9045:88;9152:4;9149:1;9142:15;9176:4;9173:1;9166:15;9192:184;-1:-1:-1;;;9241:1:12;9234:88;9341:4;9338:1;9331:15;9365:4;9362:1;9355:15;9381:184;-1:-1:-1;;;9430:1:12;9423:88;9530:4;9527:1;9520:15;9554:4;9551:1;9544:15;9570:177;-1:-1:-1;;;;;;9648:5:12;9644:78;9637:5;9634:89;9624:2;;9737:1;9734;9727:12

Swarm Source

ipfs://b9a498f3ba29d75adfc1595b27c042eb97bf7718ba679922ac41fa11db55c9e5
Loading...
Loading
Loading...
Loading
[ 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.