ETH Price: $2,657.76 (+0.57%)

Token

CryptoBullDogsOG (CBD)
 

Overview

Max Total Supply

1,361 CBD

Holders

211

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
mbryanta.eth
Balance
126 CBD
0x39781bc43c91fa5cda0ecc8558abdbbcf4a4bc20
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:
CryptoBullDogsOG

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 13 : NewCryptoBullDogs.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

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

contract CryptoBullDogsOG is ERC721A, Ownable{
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 2222;
    uint256 public constant MAX_PUBLIC_MINT = 100;
    uint256 public constant MAX_WHITELIST_MINT = 100;
    uint256 public constant PUBLIC_SALE_PRICE = .03 ether;
    uint256 public constant WHITELIST_SALE_PRICE = .02 ether;

    string private  baseTokenUri;
    string public   placeholderTokenUri;

    //deploy smart contract, toggle WL, toggle WL when done, toggle publicSale 
    //2 days later toggle reveal
    bool public isRevealed;
    bool public publicSale;
    bool public whiteListSale;
    bool public pause;
    bool public teamMinted;

    bytes32 private merkleRoot;

    mapping(address => uint256) public totalPublicMint;
    mapping(address => uint256) public totalWhitelistMint;

    constructor() ERC721A("CryptoBullDogsOG", "CBD"){

    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "CryptoBullDogs :: Cannot be called by a contract");
        _;
    }

    function mint(uint256 _quantity) external payable callerIsUser{
        require(publicSale, "CryptoBullDogs :: Not Yet Active.");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "CryptoBullDogs :: Beyond Max Supply");
        require((totalPublicMint[msg.sender] +_quantity) <= MAX_PUBLIC_MINT, "CryptoBullDogs :: Already minted 3 times!");
        require(msg.value >= (PUBLIC_SALE_PRICE * _quantity), "CryptoBullDogs :: Below ");

        totalPublicMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function whitelistMint(bytes32[] memory _merkleProof, uint256 _quantity) external payable callerIsUser{
        require(whiteListSale, "CryptoBullDogs :: Minting is on Pause");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "CryptoBullDogs :: Cannot mint beyond max supply");
        require((totalWhitelistMint[msg.sender] + _quantity)  <= MAX_WHITELIST_MINT, "CryptoBullDogs:: Cannot mint beyond whitelist max mint!");
        require(msg.value >= (WHITELIST_SALE_PRICE * _quantity), "CryptoBullDogs :: Payment is below the price");
        //create leaf node
        bytes32 sender = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, sender), "CryptoBullDogs :: You are not whitelisted");

        totalWhitelistMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);

    }

    function teamMint() external onlyOwner{
        require(!teamMinted, "CryptoBullDogs :: Team already minted");
        teamMinted = true;
        _safeMint(msg.sender, 620);
    }

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

    //return uri for certain token
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        uint256 trueId = tokenId + 1;

        if(!isRevealed){
            return placeholderTokenUri;
        }
        //string memory baseURI = _baseURI();
        return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : "";
    }

    /// @dev walletOf() function shouldn't be called on-chain due to gas consumption
    function walletOf() external view returns(uint256[] memory){
        address _owner = msg.sender;
        uint256 numberOfOwnedNFT = balanceOf(_owner);
        uint256[] memory ownerIds = new uint256[](numberOfOwnedNFT);

        for(uint256 index = 0; index < numberOfOwnedNFT; index++){
         //   ownerIds[index] = tokenOfOwnerByIndex(_owner, index);
        }

        return ownerIds;
    }

    function setTokenUri(string memory _baseTokenUri) external onlyOwner{
        baseTokenUri = _baseTokenUri;
    }
    function setPlaceHolderUri(string memory _placeholderTokenUri) external onlyOwner{
        placeholderTokenUri = _placeholderTokenUri;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner{
        merkleRoot = _merkleRoot;
    }

    function getMerkleRoot() external view returns (bytes32){
        return merkleRoot;
    }

    function togglePause() external onlyOwner{
        pause = !pause;
    }

    function toggleWhiteListSale() external onlyOwner{
        whiteListSale = !whiteListSale;
    }

    function togglePublicSale() external onlyOwner{
        publicSale = !publicSale;
    }

    function toggleReveal() external onlyOwner{
        isRevealed = !isRevealed;
    }

    function withdraw() external onlyOwner{
         //3% to developers wallet
        uint256 withdrawAmount_35 = address(this).balance * 3/100;
        payable(0x90EE4b80C3b15b8b83510BE8Fcf2BCeD69a4c9DB).transfer(withdrawAmount_35);  
        payable(msg.sender).transfer(address(this).balance);
    }
}

File 2 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 13 : 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 AuxQueryForZeroAddress();
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 extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 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**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    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;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * 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 (_startTokenId() <= curr && 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 (to.isContract() && !_checkContractOnERC721Received(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 _startTokenId() <= tokenId && 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 > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 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;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = 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**256.
        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**256.
        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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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))
                }
            }
        }
    }

    /**
     * @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 5 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 8 of 13 : 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 13 : 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 10 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 13 : 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 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","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":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_placeholderTokenUri","type":"string"}],"name":"setPlaceHolderUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","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":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteListSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalWhitelistMint","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":"walletOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252601081526f43727970746f42756c6c446f67734f4760801b60208083019182528351808501909452600384526210d09160ea1b9084015281519192916200006591600291620000e5565b5080516200007b906003906020840190620000e5565b505060008055506200008d3362000093565b620001c8565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000f3906200018b565b90600052602060002090601f01602090048101928262000117576000855562000162565b82601f106200013257805160ff191683800117855562000162565b8280016001018555821562000162579182015b828111156200016257825182559160200191906001019062000145565b506200017092915062000174565b5090565b5b8082111562000170576000815560010162000175565b600181811c90821680620001a057607f821691505b60208210811415620001c257634e487b7160e01b600052602260045260246000fd5b50919050565b61262580620001d86000396000f3fe60806040526004361061025c5760003560e01c806370a0823111610144578063b0962c53116100b6578063c4ae31681161007a578063c4ae31681461069c578063c87b56dd146106b1578063e222c7f9146106d1578063e8b5498d146106e6578063e985e9c514610708578063f2fde38b1461075157600080fd5b8063b0962c531461062c578063b88d4fde1461064c578063ba7a86b81461066c578063bc912e1a14610681578063c08dfd3c146104e457600080fd5b806386a173ee1161010857806386a173ee146105915780638bb64a8c146105b15780638da5cb5b146105c657806395d89b41146105e4578063a0712d68146105f9578063a22cb4651461060c57600080fd5b806370a08231146104f9578063715018a6146105195780637cb647591461052e57806383a974a21461054e5780638456cb591461057057600080fd5b80632904e6d9116101dd57806349590657116101a1578063495906571461046b5780634cf5f7a41461048057806354214f69146104955780635b8ad429146104af5780636352211e146104c457806365f13097146104e457600080fd5b80632904e6d9146103ee57806332cb6b0c1461040157806333bc1c5c146104175780633ccfd60b1461043657806342842e0e1461044b57600080fd5b8063081812fc11610224578063081812fc14610330578063095ea7b31461036857806318160ddd146103885780631c16521c146103a157806323b872dd146103ce57600080fd5b806301ffc9a7146102615780630345e3cb146102965780630675b7c6146102d157806306fdde03146102f357806307e89ec014610315575b600080fd5b34801561026d57600080fd5b5061028161027c366004611f2f565b610771565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102c36102b1366004611f68565b600e6020526000908152604090205481565b60405190815260200161028d565b3480156102dd57600080fd5b506102f16102ec366004612020565b6107c3565b005b3480156102ff57600080fd5b5061030861080d565b60405161028d91906120c0565b34801561032157600080fd5b506102c3666a94d74f43000081565b34801561033c57600080fd5b5061035061034b3660046120d3565b61089f565b6040516001600160a01b03909116815260200161028d565b34801561037457600080fd5b506102f16103833660046120ec565b6108e3565b34801561039457600080fd5b50600154600054036102c3565b3480156103ad57600080fd5b506102c36103bc366004611f68565b600d6020526000908152604090205481565b3480156103da57600080fd5b506102f16103e9366004612116565b610971565b6102f16103fc366004612152565b61097c565b34801561040d57600080fd5b506102c36108ae81565b34801561042357600080fd5b50600b5461028190610100900460ff1681565b34801561044257600080fd5b506102f1610c5c565b34801561045757600080fd5b506102f1610466366004612116565b610d10565b34801561047757600080fd5b50600c546102c3565b34801561048c57600080fd5b50610308610d2b565b3480156104a157600080fd5b50600b546102819060ff1681565b3480156104bb57600080fd5b506102f1610db9565b3480156104d057600080fd5b506103506104df3660046120d3565b610df7565b3480156104f057600080fd5b506102c3606481565b34801561050557600080fd5b506102c3610514366004611f68565b610e09565b34801561052557600080fd5b506102f1610e57565b34801561053a57600080fd5b506102f16105493660046120d3565b610e8d565b34801561055a57600080fd5b50610563610ebc565b60405161028d91906121fd565b34801561057c57600080fd5b50600b54610281906301000000900460ff1681565b34801561059d57600080fd5b50600b546102819062010000900460ff1681565b3480156105bd57600080fd5b506102f1610f37565b3480156105d257600080fd5b506008546001600160a01b0316610350565b3480156105f057600080fd5b50610308610f80565b6102f16106073660046120d3565b610f8f565b34801561061857600080fd5b506102f1610627366004612241565b611194565b34801561063857600080fd5b506102f1610647366004612020565b61122a565b34801561065857600080fd5b506102f161066736600461227d565b611267565b34801561067857600080fd5b506102f16112b8565b34801561068d57600080fd5b506102c366470de4df82000081565b3480156106a857600080fd5b506102f161136c565b3480156106bd57600080fd5b506103086106cc3660046120d3565b6113b7565b3480156106dd57600080fd5b506102f1611531565b3480156106f257600080fd5b50600b5461028190640100000000900460ff1681565b34801561071457600080fd5b506102816107233660046122f8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561075d57600080fd5b506102f161076c366004611f68565b611578565b60006001600160e01b031982166380ac58cd60e01b14806107a257506001600160e01b03198216635b5e139f60e01b145b806107bd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107f65760405162461bcd60e51b81526004016107ed9061232b565b60405180910390fd5b8051610809906009906020840190611e80565b5050565b60606002805461081c90612360565b80601f016020809104026020016040519081016040528092919081815260200182805461084890612360565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b60006108aa82611610565b6108c7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ee82610df7565b9050806001600160a01b0316836001600160a01b031614156109235760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061094357506109418133610723565b155b15610961576040516367d9dca160e11b815260040160405180910390fd5b61096c83838361163b565b505050565b61096c838383611697565b32331461099b5760405162461bcd60e51b81526004016107ed9061239b565b600b5462010000900460ff16610a015760405162461bcd60e51b815260206004820152602560248201527f43727970746f42756c6c446f6773203a3a204d696e74696e67206973206f6e20604482015264506175736560d81b60648201526084016107ed565b6108ae81610a126001546000540390565b610a1c9190612401565b1115610a825760405162461bcd60e51b815260206004820152602f60248201527f43727970746f42756c6c446f6773203a3a2043616e6e6f74206d696e7420626560448201526e796f6e64206d617820737570706c7960881b60648201526084016107ed565b336000908152600e6020526040902054606490610aa0908390612401565b1115610b145760405162461bcd60e51b815260206004820152603760248201527f43727970746f42756c6c446f67733a3a2043616e6e6f74206d696e742062657960448201527f6f6e642077686974656c697374206d6178206d696e742100000000000000000060648201526084016107ed565b610b258166470de4df820000612419565b341015610b895760405162461bcd60e51b815260206004820152602c60248201527f43727970746f42756c6c446f6773203a3a205061796d656e742069732062656c60448201526b6f772074686520707269636560a01b60648201526084016107ed565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610bcf83600c54836118ab565b610c2d5760405162461bcd60e51b815260206004820152602960248201527f43727970746f42756c6c446f6773203a3a20596f7520617265206e6f742077686044820152681a5d195b1a5cdd195960ba1b60648201526084016107ed565b336000908152600e602052604081208054849290610c4c908490612401565b9091555061096c905033836118c1565b6008546001600160a01b03163314610c865760405162461bcd60e51b81526004016107ed9061232b565b60006064610c95476003612419565b610c9f919061244e565b6040519091507390ee4b80c3b15b8b83510be8fcf2bced69a4c9db9082156108fc029083906000818181858888f19350505050158015610ce3573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015610809573d6000803e3d6000fd5b61096c83838360405180602001604052806000815250611267565b600a8054610d3890612360565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6490612360565b8015610db15780601f10610d8657610100808354040283529160200191610db1565b820191906000526020600020905b815481529060010190602001808311610d9457829003601f168201915b505050505081565b6008546001600160a01b03163314610de35760405162461bcd60e51b81526004016107ed9061232b565b600b805460ff19811660ff90911615179055565b6000610e02826118db565b5192915050565b60006001600160a01b038216610e32576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610e815760405162461bcd60e51b81526004016107ed9061232b565b610e8b60006119f5565b565b6008546001600160a01b03163314610eb75760405162461bcd60e51b81526004016107ed9061232b565b600c55565b6060336000610eca82610e09565b90506000816001600160401b03811115610ee657610ee6611f83565b604051908082528060200260200182016040528015610f0f578160200160208202803683370190505b50905060005b82811015610f2f5780610f2781612462565b915050610f15565b509392505050565b6008546001600160a01b03163314610f615760405162461bcd60e51b81526004016107ed9061232b565b600b805462ff0000198116620100009182900460ff1615909102179055565b60606003805461081c90612360565b323314610fae5760405162461bcd60e51b81526004016107ed9061239b565b600b54610100900460ff1661100f5760405162461bcd60e51b815260206004820152602160248201527f43727970746f42756c6c446f6773203a3a204e6f7420596574204163746976656044820152601760f91b60648201526084016107ed565b6108ae816110206001546000540390565b61102a9190612401565b11156110845760405162461bcd60e51b815260206004820152602360248201527f43727970746f42756c6c446f6773203a3a204265796f6e64204d617820537570604482015262706c7960e81b60648201526084016107ed565b336000908152600d60205260409020546064906110a2908390612401565b11156111025760405162461bcd60e51b815260206004820152602960248201527f43727970746f42756c6c446f6773203a3a20416c7265616479206d696e74656460448201526820332074696d65732160b81b60648201526084016107ed565b61111381666a94d74f430000612419565b3410156111625760405162461bcd60e51b815260206004820152601860248201527f43727970746f42756c6c446f6773203a3a2042656c6f7720000000000000000060448201526064016107ed565b336000908152600d602052604081208054839290611181908490612401565b90915550611191905033826118c1565b50565b6001600160a01b0382163314156111be5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146112545760405162461bcd60e51b81526004016107ed9061232b565b805161080990600a906020840190611e80565b611272848484611697565b6001600160a01b0383163b15158015611294575061129284848484611a47565b155b156112b2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146112e25760405162461bcd60e51b81526004016107ed9061232b565b600b54640100000000900460ff161561134b5760405162461bcd60e51b815260206004820152602560248201527f43727970746f42756c6c446f6773203a3a205465616d20616c7265616479206d6044820152641a5b9d195960da1b60648201526084016107ed565b600b805464ff000000001916640100000000179055610e8b3361026c6118c1565b6008546001600160a01b031633146113965760405162461bcd60e51b81526004016107ed9061232b565b600b805463ff00000019811663010000009182900460ff1615909102179055565b60606113c282611610565b6114265760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ed565b6000611433836001612401565b600b5490915060ff166114d357600a805461144d90612360565b80601f016020809104026020016040519081016040528092919081815260200182805461147990612360565b80156114c65780601f1061149b576101008083540402835291602001916114c6565b820191906000526020600020905b8154815290600101906020018083116114a957829003601f168201915b5050505050915050919050565b6000600980546114e290612360565b9050116114fe576040518060200160405280600081525061152a565b600961150982611b3f565b60405160200161151a929190612499565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461155b5760405162461bcd60e51b81526004016107ed9061232b565b600b805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146115a25760405162461bcd60e51b81526004016107ed9061232b565b6001600160a01b0381166116075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ed565b611191816119f5565b60008054821080156107bd575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116a2826118db565b80519091506000906001600160a01b0316336001600160a01b031614806116d0575081516116d09033610723565b806116eb5750336116e08461089f565b6001600160a01b0316145b90508061170b57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117405760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661176757604051633a954ecd60e21b815260040160405180910390fd5b611777600084846000015161163b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166118615760005481101561186157825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000826118b88584611c3c565b14949350505050565b610809828260405180602001604052806000815250611ca8565b6040805160608101825260008082526020820181905291810191909152816000548110156119dc57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119da5780516001600160a01b031615611971579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156119d5579392505050565b611971565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a7c903390899088908890600401612554565b602060405180830381600087803b158015611a9657600080fd5b505af1925050508015611ac6575060408051601f3d908101601f19168201909252611ac391810190612591565b60015b611b21573d808015611af4576040519150601f19603f3d011682016040523d82523d6000602084013e611af9565b606091505b508051611b19576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611b635750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b8d5780611b7781612462565b9150611b869050600a8361244e565b9150611b67565b6000816001600160401b03811115611ba757611ba7611f83565b6040519080825280601f01601f191660200182016040528015611bd1576020820181803683370190505b5090505b8415611b3757611be66001836125ae565b9150611bf3600a866125c5565b611bfe906030612401565b60f81b818381518110611c1357611c136125d9565b60200101906001600160f81b031916908160001a905350611c35600a8661244e565b9450611bd5565b600081815b8451811015610f2f576000858281518110611c5e57611c5e6125d9565b60200260200101519050808311611c845760008381526020829052604090209250611c95565b600081815260208490526040902092505b5080611ca081612462565b915050611c41565b61096c83838360016000546001600160a01b038516611cd957604051622e076360e81b815260040160405180910390fd5b83611cf75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611da857506001600160a01b0387163b15155b15611e31575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611df96000888480600101955088611a47565b611e16576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611dae578260005414611e2c57600080fd5b611e77565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611e32575b506000556118a4565b828054611e8c90612360565b90600052602060002090601f016020900481019282611eae5760008555611ef4565b82601f10611ec757805160ff1916838001178555611ef4565b82800160010185558215611ef4579182015b82811115611ef4578251825591602001919060010190611ed9565b50611f00929150611f04565b5090565b5b80821115611f005760008155600101611f05565b6001600160e01b03198116811461119157600080fd5b600060208284031215611f4157600080fd5b813561152a81611f19565b80356001600160a01b0381168114611f6357600080fd5b919050565b600060208284031215611f7a57600080fd5b61152a82611f4c565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611fc157611fc1611f83565b604052919050565b60006001600160401b03831115611fe257611fe2611f83565b611ff5601f8401601f1916602001611f99565b905082815283838301111561200957600080fd5b828260208301376000602084830101529392505050565b60006020828403121561203257600080fd5b81356001600160401b0381111561204857600080fd5b8201601f8101841361205957600080fd5b611b3784823560208401611fc9565b60005b8381101561208357818101518382015260200161206b565b838111156112b25750506000910152565b600081518084526120ac816020860160208601612068565b601f01601f19169290920160200192915050565b60208152600061152a6020830184612094565b6000602082840312156120e557600080fd5b5035919050565b600080604083850312156120ff57600080fd5b61210883611f4c565b946020939093013593505050565b60008060006060848603121561212b57600080fd5b61213484611f4c565b925061214260208501611f4c565b9150604084013590509250925092565b6000806040838503121561216557600080fd5b82356001600160401b038082111561217c57600080fd5b818501915085601f83011261219057600080fd5b81356020828211156121a4576121a4611f83565b8160051b92506121b5818401611f99565b82815292840181019281810190898511156121cf57600080fd5b948201945b848610156121ed578535825294820194908201906121d4565b9997909101359750505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561223557835183529284019291840191600101612219565b50909695505050505050565b6000806040838503121561225457600080fd5b61225d83611f4c565b91506020830135801515811461227257600080fd5b809150509250929050565b6000806000806080858703121561229357600080fd5b61229c85611f4c565b93506122aa60208601611f4c565b92506040850135915060608501356001600160401b038111156122cc57600080fd5b8501601f810187136122dd57600080fd5b6122ec87823560208401611fc9565b91505092959194509250565b6000806040838503121561230b57600080fd5b61231483611f4c565b915061232260208401611f4c565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061237457607f821691505b6020821081141561239557634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526030908201527f43727970746f42756c6c446f6773203a3a2043616e6e6f742062652063616c6c60408201526f195908189e48184818dbdb9d1c9858dd60821b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612414576124146123eb565b500190565b6000816000190483118215151615612433576124336123eb565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261245d5761245d612438565b500490565b6000600019821415612476576124766123eb565b5060010190565b6000815161248f818560208601612068565b9290920192915050565b600080845481600182811c9150808316806124b557607f831692505b60208084108214156124d557634e487b7160e01b86526022600452602486fd5b8180156124e957600181146124fa57612527565b60ff19861689528489019650612527565b60008b81526020902060005b8681101561251f5781548b820152908501908301612506565b505084890196505b50505050505061254b61253a828661247d565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061258790830184612094565b9695505050505050565b6000602082840312156125a357600080fd5b815161152a81611f19565b6000828210156125c0576125c06123eb565b500390565b6000826125d4576125d4612438565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220d03c257824bec73bfe856a00cec1c846daf8f0d7e6986d3adb9f01ea393f3b9764736f6c63430008090033

Deployed Bytecode

0x60806040526004361061025c5760003560e01c806370a0823111610144578063b0962c53116100b6578063c4ae31681161007a578063c4ae31681461069c578063c87b56dd146106b1578063e222c7f9146106d1578063e8b5498d146106e6578063e985e9c514610708578063f2fde38b1461075157600080fd5b8063b0962c531461062c578063b88d4fde1461064c578063ba7a86b81461066c578063bc912e1a14610681578063c08dfd3c146104e457600080fd5b806386a173ee1161010857806386a173ee146105915780638bb64a8c146105b15780638da5cb5b146105c657806395d89b41146105e4578063a0712d68146105f9578063a22cb4651461060c57600080fd5b806370a08231146104f9578063715018a6146105195780637cb647591461052e57806383a974a21461054e5780638456cb591461057057600080fd5b80632904e6d9116101dd57806349590657116101a1578063495906571461046b5780634cf5f7a41461048057806354214f69146104955780635b8ad429146104af5780636352211e146104c457806365f13097146104e457600080fd5b80632904e6d9146103ee57806332cb6b0c1461040157806333bc1c5c146104175780633ccfd60b1461043657806342842e0e1461044b57600080fd5b8063081812fc11610224578063081812fc14610330578063095ea7b31461036857806318160ddd146103885780631c16521c146103a157806323b872dd146103ce57600080fd5b806301ffc9a7146102615780630345e3cb146102965780630675b7c6146102d157806306fdde03146102f357806307e89ec014610315575b600080fd5b34801561026d57600080fd5b5061028161027c366004611f2f565b610771565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102c36102b1366004611f68565b600e6020526000908152604090205481565b60405190815260200161028d565b3480156102dd57600080fd5b506102f16102ec366004612020565b6107c3565b005b3480156102ff57600080fd5b5061030861080d565b60405161028d91906120c0565b34801561032157600080fd5b506102c3666a94d74f43000081565b34801561033c57600080fd5b5061035061034b3660046120d3565b61089f565b6040516001600160a01b03909116815260200161028d565b34801561037457600080fd5b506102f16103833660046120ec565b6108e3565b34801561039457600080fd5b50600154600054036102c3565b3480156103ad57600080fd5b506102c36103bc366004611f68565b600d6020526000908152604090205481565b3480156103da57600080fd5b506102f16103e9366004612116565b610971565b6102f16103fc366004612152565b61097c565b34801561040d57600080fd5b506102c36108ae81565b34801561042357600080fd5b50600b5461028190610100900460ff1681565b34801561044257600080fd5b506102f1610c5c565b34801561045757600080fd5b506102f1610466366004612116565b610d10565b34801561047757600080fd5b50600c546102c3565b34801561048c57600080fd5b50610308610d2b565b3480156104a157600080fd5b50600b546102819060ff1681565b3480156104bb57600080fd5b506102f1610db9565b3480156104d057600080fd5b506103506104df3660046120d3565b610df7565b3480156104f057600080fd5b506102c3606481565b34801561050557600080fd5b506102c3610514366004611f68565b610e09565b34801561052557600080fd5b506102f1610e57565b34801561053a57600080fd5b506102f16105493660046120d3565b610e8d565b34801561055a57600080fd5b50610563610ebc565b60405161028d91906121fd565b34801561057c57600080fd5b50600b54610281906301000000900460ff1681565b34801561059d57600080fd5b50600b546102819062010000900460ff1681565b3480156105bd57600080fd5b506102f1610f37565b3480156105d257600080fd5b506008546001600160a01b0316610350565b3480156105f057600080fd5b50610308610f80565b6102f16106073660046120d3565b610f8f565b34801561061857600080fd5b506102f1610627366004612241565b611194565b34801561063857600080fd5b506102f1610647366004612020565b61122a565b34801561065857600080fd5b506102f161066736600461227d565b611267565b34801561067857600080fd5b506102f16112b8565b34801561068d57600080fd5b506102c366470de4df82000081565b3480156106a857600080fd5b506102f161136c565b3480156106bd57600080fd5b506103086106cc3660046120d3565b6113b7565b3480156106dd57600080fd5b506102f1611531565b3480156106f257600080fd5b50600b5461028190640100000000900460ff1681565b34801561071457600080fd5b506102816107233660046122f8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561075d57600080fd5b506102f161076c366004611f68565b611578565b60006001600160e01b031982166380ac58cd60e01b14806107a257506001600160e01b03198216635b5e139f60e01b145b806107bd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107f65760405162461bcd60e51b81526004016107ed9061232b565b60405180910390fd5b8051610809906009906020840190611e80565b5050565b60606002805461081c90612360565b80601f016020809104026020016040519081016040528092919081815260200182805461084890612360565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b60006108aa82611610565b6108c7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ee82610df7565b9050806001600160a01b0316836001600160a01b031614156109235760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061094357506109418133610723565b155b15610961576040516367d9dca160e11b815260040160405180910390fd5b61096c83838361163b565b505050565b61096c838383611697565b32331461099b5760405162461bcd60e51b81526004016107ed9061239b565b600b5462010000900460ff16610a015760405162461bcd60e51b815260206004820152602560248201527f43727970746f42756c6c446f6773203a3a204d696e74696e67206973206f6e20604482015264506175736560d81b60648201526084016107ed565b6108ae81610a126001546000540390565b610a1c9190612401565b1115610a825760405162461bcd60e51b815260206004820152602f60248201527f43727970746f42756c6c446f6773203a3a2043616e6e6f74206d696e7420626560448201526e796f6e64206d617820737570706c7960881b60648201526084016107ed565b336000908152600e6020526040902054606490610aa0908390612401565b1115610b145760405162461bcd60e51b815260206004820152603760248201527f43727970746f42756c6c446f67733a3a2043616e6e6f74206d696e742062657960448201527f6f6e642077686974656c697374206d6178206d696e742100000000000000000060648201526084016107ed565b610b258166470de4df820000612419565b341015610b895760405162461bcd60e51b815260206004820152602c60248201527f43727970746f42756c6c446f6773203a3a205061796d656e742069732062656c60448201526b6f772074686520707269636560a01b60648201526084016107ed565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610bcf83600c54836118ab565b610c2d5760405162461bcd60e51b815260206004820152602960248201527f43727970746f42756c6c446f6773203a3a20596f7520617265206e6f742077686044820152681a5d195b1a5cdd195960ba1b60648201526084016107ed565b336000908152600e602052604081208054849290610c4c908490612401565b9091555061096c905033836118c1565b6008546001600160a01b03163314610c865760405162461bcd60e51b81526004016107ed9061232b565b60006064610c95476003612419565b610c9f919061244e565b6040519091507390ee4b80c3b15b8b83510be8fcf2bced69a4c9db9082156108fc029083906000818181858888f19350505050158015610ce3573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015610809573d6000803e3d6000fd5b61096c83838360405180602001604052806000815250611267565b600a8054610d3890612360565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6490612360565b8015610db15780601f10610d8657610100808354040283529160200191610db1565b820191906000526020600020905b815481529060010190602001808311610d9457829003601f168201915b505050505081565b6008546001600160a01b03163314610de35760405162461bcd60e51b81526004016107ed9061232b565b600b805460ff19811660ff90911615179055565b6000610e02826118db565b5192915050565b60006001600160a01b038216610e32576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610e815760405162461bcd60e51b81526004016107ed9061232b565b610e8b60006119f5565b565b6008546001600160a01b03163314610eb75760405162461bcd60e51b81526004016107ed9061232b565b600c55565b6060336000610eca82610e09565b90506000816001600160401b03811115610ee657610ee6611f83565b604051908082528060200260200182016040528015610f0f578160200160208202803683370190505b50905060005b82811015610f2f5780610f2781612462565b915050610f15565b509392505050565b6008546001600160a01b03163314610f615760405162461bcd60e51b81526004016107ed9061232b565b600b805462ff0000198116620100009182900460ff1615909102179055565b60606003805461081c90612360565b323314610fae5760405162461bcd60e51b81526004016107ed9061239b565b600b54610100900460ff1661100f5760405162461bcd60e51b815260206004820152602160248201527f43727970746f42756c6c446f6773203a3a204e6f7420596574204163746976656044820152601760f91b60648201526084016107ed565b6108ae816110206001546000540390565b61102a9190612401565b11156110845760405162461bcd60e51b815260206004820152602360248201527f43727970746f42756c6c446f6773203a3a204265796f6e64204d617820537570604482015262706c7960e81b60648201526084016107ed565b336000908152600d60205260409020546064906110a2908390612401565b11156111025760405162461bcd60e51b815260206004820152602960248201527f43727970746f42756c6c446f6773203a3a20416c7265616479206d696e74656460448201526820332074696d65732160b81b60648201526084016107ed565b61111381666a94d74f430000612419565b3410156111625760405162461bcd60e51b815260206004820152601860248201527f43727970746f42756c6c446f6773203a3a2042656c6f7720000000000000000060448201526064016107ed565b336000908152600d602052604081208054839290611181908490612401565b90915550611191905033826118c1565b50565b6001600160a01b0382163314156111be5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146112545760405162461bcd60e51b81526004016107ed9061232b565b805161080990600a906020840190611e80565b611272848484611697565b6001600160a01b0383163b15158015611294575061129284848484611a47565b155b156112b2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146112e25760405162461bcd60e51b81526004016107ed9061232b565b600b54640100000000900460ff161561134b5760405162461bcd60e51b815260206004820152602560248201527f43727970746f42756c6c446f6773203a3a205465616d20616c7265616479206d6044820152641a5b9d195960da1b60648201526084016107ed565b600b805464ff000000001916640100000000179055610e8b3361026c6118c1565b6008546001600160a01b031633146113965760405162461bcd60e51b81526004016107ed9061232b565b600b805463ff00000019811663010000009182900460ff1615909102179055565b60606113c282611610565b6114265760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ed565b6000611433836001612401565b600b5490915060ff166114d357600a805461144d90612360565b80601f016020809104026020016040519081016040528092919081815260200182805461147990612360565b80156114c65780601f1061149b576101008083540402835291602001916114c6565b820191906000526020600020905b8154815290600101906020018083116114a957829003601f168201915b5050505050915050919050565b6000600980546114e290612360565b9050116114fe576040518060200160405280600081525061152a565b600961150982611b3f565b60405160200161151a929190612499565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461155b5760405162461bcd60e51b81526004016107ed9061232b565b600b805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146115a25760405162461bcd60e51b81526004016107ed9061232b565b6001600160a01b0381166116075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ed565b611191816119f5565b60008054821080156107bd575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116a2826118db565b80519091506000906001600160a01b0316336001600160a01b031614806116d0575081516116d09033610723565b806116eb5750336116e08461089f565b6001600160a01b0316145b90508061170b57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117405760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661176757604051633a954ecd60e21b815260040160405180910390fd5b611777600084846000015161163b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166118615760005481101561186157825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000826118b88584611c3c565b14949350505050565b610809828260405180602001604052806000815250611ca8565b6040805160608101825260008082526020820181905291810191909152816000548110156119dc57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119da5780516001600160a01b031615611971579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156119d5579392505050565b611971565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a7c903390899088908890600401612554565b602060405180830381600087803b158015611a9657600080fd5b505af1925050508015611ac6575060408051601f3d908101601f19168201909252611ac391810190612591565b60015b611b21573d808015611af4576040519150601f19603f3d011682016040523d82523d6000602084013e611af9565b606091505b508051611b19576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611b635750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b8d5780611b7781612462565b9150611b869050600a8361244e565b9150611b67565b6000816001600160401b03811115611ba757611ba7611f83565b6040519080825280601f01601f191660200182016040528015611bd1576020820181803683370190505b5090505b8415611b3757611be66001836125ae565b9150611bf3600a866125c5565b611bfe906030612401565b60f81b818381518110611c1357611c136125d9565b60200101906001600160f81b031916908160001a905350611c35600a8661244e565b9450611bd5565b600081815b8451811015610f2f576000858281518110611c5e57611c5e6125d9565b60200260200101519050808311611c845760008381526020829052604090209250611c95565b600081815260208490526040902092505b5080611ca081612462565b915050611c41565b61096c83838360016000546001600160a01b038516611cd957604051622e076360e81b815260040160405180910390fd5b83611cf75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611da857506001600160a01b0387163b15155b15611e31575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611df96000888480600101955088611a47565b611e16576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611dae578260005414611e2c57600080fd5b611e77565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611e32575b506000556118a4565b828054611e8c90612360565b90600052602060002090601f016020900481019282611eae5760008555611ef4565b82601f10611ec757805160ff1916838001178555611ef4565b82800160010185558215611ef4579182015b82811115611ef4578251825591602001919060010190611ed9565b50611f00929150611f04565b5090565b5b80821115611f005760008155600101611f05565b6001600160e01b03198116811461119157600080fd5b600060208284031215611f4157600080fd5b813561152a81611f19565b80356001600160a01b0381168114611f6357600080fd5b919050565b600060208284031215611f7a57600080fd5b61152a82611f4c565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611fc157611fc1611f83565b604052919050565b60006001600160401b03831115611fe257611fe2611f83565b611ff5601f8401601f1916602001611f99565b905082815283838301111561200957600080fd5b828260208301376000602084830101529392505050565b60006020828403121561203257600080fd5b81356001600160401b0381111561204857600080fd5b8201601f8101841361205957600080fd5b611b3784823560208401611fc9565b60005b8381101561208357818101518382015260200161206b565b838111156112b25750506000910152565b600081518084526120ac816020860160208601612068565b601f01601f19169290920160200192915050565b60208152600061152a6020830184612094565b6000602082840312156120e557600080fd5b5035919050565b600080604083850312156120ff57600080fd5b61210883611f4c565b946020939093013593505050565b60008060006060848603121561212b57600080fd5b61213484611f4c565b925061214260208501611f4c565b9150604084013590509250925092565b6000806040838503121561216557600080fd5b82356001600160401b038082111561217c57600080fd5b818501915085601f83011261219057600080fd5b81356020828211156121a4576121a4611f83565b8160051b92506121b5818401611f99565b82815292840181019281810190898511156121cf57600080fd5b948201945b848610156121ed578535825294820194908201906121d4565b9997909101359750505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561223557835183529284019291840191600101612219565b50909695505050505050565b6000806040838503121561225457600080fd5b61225d83611f4c565b91506020830135801515811461227257600080fd5b809150509250929050565b6000806000806080858703121561229357600080fd5b61229c85611f4c565b93506122aa60208601611f4c565b92506040850135915060608501356001600160401b038111156122cc57600080fd5b8501601f810187136122dd57600080fd5b6122ec87823560208401611fc9565b91505092959194509250565b6000806040838503121561230b57600080fd5b61231483611f4c565b915061232260208401611f4c565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061237457607f821691505b6020821081141561239557634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526030908201527f43727970746f42756c6c446f6773203a3a2043616e6e6f742062652063616c6c60408201526f195908189e48184818dbdb9d1c9858dd60821b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612414576124146123eb565b500190565b6000816000190483118215151615612433576124336123eb565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261245d5761245d612438565b500490565b6000600019821415612476576124766123eb565b5060010190565b6000815161248f818560208601612068565b9290920192915050565b600080845481600182811c9150808316806124b557607f831692505b60208084108214156124d557634e487b7160e01b86526022600452602486fd5b8180156124e957600181146124fa57612527565b60ff19861689528489019650612527565b60008b81526020902060005b8681101561251f5781548b820152908501908301612506565b505084890196505b50505050505061254b61253a828661247d565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061258790830184612094565b9695505050505050565b6000602082840312156125a357600080fd5b815161152a81611f19565b6000828210156125c0576125c06123eb565b500390565b6000826125d4576125d4612438565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220d03c257824bec73bfe856a00cec1c846daf8f0d7e6986d3adb9f01ea393f3b9764736f6c63430008090033

Deployed Bytecode Sourcemap

220:4876:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4843:300:12;;;;;;;;;;-1:-1:-1;4843:300:12;;;;;:::i;:::-;;:::i;:::-;;;565:14:13;;558:22;540:41;;528:2;513:18;4843:300:12;;;;;;;;994:53:11;;;;;;;;;;-1:-1:-1;994:53:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1107:25:13;;;1095:2;1080:18;994:53:11;961:177:13;3964:113:11;;;;;;;;;;-1:-1:-1;3964:113:11;;;;;:::i;:::-;;:::i;:::-;;8139:98:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;455:53:11:-;;;;;;;;;;;;499:9;455:53;;9595:200:12;;;;;;;;;;-1:-1:-1;9595:200:12;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3545:32:13;;;3527:51;;3515:2;3500:18;9595:200:12;3381:203:13;9172:362:12;;;;;;;;;;-1:-1:-1;9172:362:12;;;;;:::i;:::-;;:::i;4114:297::-;;;;;;;;;;-1:-1:-1;4364:12:12;;4158:7;4348:13;:28;4114:297;;938:50:11;;;;;;;;;;-1:-1:-1;938:50:11;;;;;:::i;:::-;;;;;;;;;;;;;;10426:164:12;;;;;;;;;;-1:-1:-1;10426:164:12;;;;;:::i;:::-;;:::i;1805:858:11:-;;;;;;:::i;:::-;;:::i;303:41::-;;;;;;;;;;;;340:4;303:41;;794:22;;;;;;;;;;-1:-1:-1;794:22:11;;;;;;;;;;;4795:299;;;;;;;;;;;;;:::i;10656:179:12:-;;;;;;;;;;-1:-1:-1;10656:179:12;;;;;:::i;:::-;;:::i;4337:90:11:-;;;;;;;;;;-1:-1:-1;4410:10:11;;4337:90;;611:35;;;;;;;;;;;;;:::i;766:22::-;;;;;;;;;;-1:-1:-1;766:22:11;;;;;;;;4706:83;;;;;;;;;;;;;:::i;7955:122:12:-;;;;;;;;;;-1:-1:-1;7955:122:12;;;;;:::i;:::-;;:::i;350:45:11:-;;;;;;;;;;;;392:3;350:45;;5202:203:12;;;;;;;;;;-1:-1:-1;5202:203:12;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;4228:103:11:-;;;;;;;;;;-1:-1:-1;4228:103:11;;;;;:::i;:::-;;:::i;3560:398::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;853:17::-;;;;;;;;;;-1:-1:-1;853:17:11;;;;;;;;;;;822:25;;;;;;;;;;-1:-1:-1;822:25:11;;;;;;;;;;;4511:96;;;;;;;;;;;;;:::i;1036:85:0:-;;;;;;;;;;-1:-1:-1;1108:6:0;;-1:-1:-1;;;;;1108:6:0;1036:85;;8301:102:12;;;;;;;;;;;;;:::i;1258:541:11:-;;;;;;:::i;:::-;;:::i;9862:274:12:-;;;;;;;;;;-1:-1:-1;9862:274:12;;;;;:::i;:::-;;:::i;4082:140:11:-;;;;;;;;;;-1:-1:-1;4082:140:11;;;;;:::i;:::-;;:::i;10901:359:12:-;;;;;;;;;;-1:-1:-1;10901:359:12;;;;;:::i;:::-;;:::i;2669:179:11:-;;;;;;;;;;;;;:::i;514:56::-;;;;;;;;;;;;561:9;514:56;;4433:72;;;;;;;;;;;;;:::i;3006:463::-;;;;;;;;;;-1:-1:-1;3006:463:11;;;;;:::i;:::-;;:::i;4613:87::-;;;;;;;;;;;;;:::i;876:22::-;;;;;;;;;;-1:-1:-1;876:22:11;;;;;;;;;;;10202:162:12;;;;;;;;;;-1:-1:-1;10202:162:12;;;;;:::i;:::-;-1:-1:-1;;;;;10322:25:12;;;10299:4;10322:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;10202:162;1918:198:0;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;4843:300:12:-;4945:4;-1:-1:-1;;;;;;4980:40:12;;-1:-1:-1;;;4980:40:12;;:104;;-1:-1:-1;;;;;;;5036:48:12;;-1:-1:-1;;;5036:48:12;4980:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:9;;;5100:36:12;4961:175;4843:300;-1:-1:-1;;4843:300:12:o;3964:113:11:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;;;;;;;;;4042:28:11;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;3964:113:::0;:::o;8139:98:12:-;8193:13;8225:5;8218:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8139:98;:::o;9595:200::-;9663:7;9687:16;9695:7;9687;:16::i;:::-;9682:64;;9712:34;;-1:-1:-1;;;9712:34:12;;;;;;;;;;;9682:64;-1:-1:-1;9764:24:12;;;;:15;:24;;;;;;-1:-1:-1;;;;;9764:24:12;;9595:200::o;9172:362::-;9244:13;9260:24;9276:7;9260:15;:24::i;:::-;9244:40;;9304:5;-1:-1:-1;;;;;9298:11:12;:2;-1:-1:-1;;;;;9298:11:12;;9294:48;;;9318:24;;-1:-1:-1;;;9318:24:12;;;;;;;;;;;9294:48;719:10:6;-1:-1:-1;;;;;9357:21:12;;;;;;:63;;-1:-1:-1;9383:37:12;9400:5;719:10:6;10202:162:12;:::i;9383:37::-;9382:38;9357:63;9353:136;;;9443:35;;-1:-1:-1;;;9443:35:12;;;;;;;;;;;9353:136;9499:28;9508:2;9512:7;9521:5;9499:8;:28::i;:::-;9234:300;9172:362;;:::o;10426:164::-;10555:28;10565:4;10571:2;10575:7;10555:9;:28::i;1805:858:11:-;1158:9;1171:10;1158:23;1150:84;;;;-1:-1:-1;;;1150:84:11;;;;;;;:::i;:::-;1925:13:::1;::::0;;;::::1;;;1917:63;;;::::0;-1:-1:-1;;;1917:63:11;;8860:2:13;1917:63:11::1;::::0;::::1;8842:21:13::0;8899:2;8879:18;;;8872:30;8938:34;8918:18;;;8911:62;-1:-1:-1;;;8989:18:13;;;8982:35;9034:19;;1917:63:11::1;8658:401:13::0;1917:63:11::1;340:4;2015:9;1999:13;4364:12:12::0;;4158:7;4348:13;:28;;4114:297;1999:13:11::1;:25;;;;:::i;:::-;1998:41;;1990:101;;;::::0;-1:-1:-1;;;1990:101:11;;9531:2:13;1990:101:11::1;::::0;::::1;9513:21:13::0;9570:2;9550:18;;;9543:30;9609:34;9589:18;;;9582:62;-1:-1:-1;;;9660:18:13;;;9653:45;9715:19;;1990:101:11::1;9329:411:13::0;1990:101:11::1;2129:10;2110:30;::::0;;;:18:::1;:30;::::0;;;;;446:3:::1;::::0;2110:42:::1;::::0;2143:9;;2110:42:::1;:::i;:::-;2109:67;;2101:135;;;::::0;-1:-1:-1;;;2101:135:11;;9947:2:13;2101:135:11::1;::::0;::::1;9929:21:13::0;9986:2;9966:18;;;9959:30;10025:34;10005:18;;;9998:62;10096:25;10076:18;;;10069:53;10139:19;;2101:135:11::1;9745:419:13::0;2101:135:11::1;2268:32;2291:9:::0;561::::1;2268:32;:::i;:::-;2254:9;:47;;2246:104;;;::::0;-1:-1:-1;;;2246:104:11;;10544:2:13;2246:104:11::1;::::0;::::1;10526:21:13::0;10583:2;10563:18;;;10556:30;10622:34;10602:18;;;10595:62;-1:-1:-1;;;10673:18:13;;;10666:42;10725:19;;2246:104:11::1;10342:408:13::0;2246:104:11::1;2414:28;::::0;-1:-1:-1;;2431:10:11::1;10904:2:13::0;10900:15;10896:53;2414:28:11::1;::::0;::::1;10884:66:13::0;2387:14:11::1;::::0;10966:12:13;;2414:28:11::1;;;;;;;;;;;;2404:39;;;;;;2387:56;;2461:52;2480:12;2494:10;;2506:6;2461:18;:52::i;:::-;2453:106;;;::::0;-1:-1:-1;;;2453:106:11;;11191:2:13;2453:106:11::1;::::0;::::1;11173:21:13::0;11230:2;11210:18;;;11203:30;11269:34;11249:18;;;11242:62;-1:-1:-1;;;11320:18:13;;;11313:39;11369:19;;2453:106:11::1;10989:405:13::0;2453:106:11::1;2589:10;2570:30;::::0;;;:18:::1;:30;::::0;;;;:43;;2604:9;;2570:30;:43:::1;::::0;2604:9;;2570:43:::1;:::i;:::-;::::0;;;-1:-1:-1;2623:32:11::1;::::0;-1:-1:-1;2633:10:11::1;2645:9:::0;2623::::1;:32::i;4795:299::-:0;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4878:25:11::1;4932:3;4906:25;:21;4930:1;4906:25;:::i;:::-;:29;;;;:::i;:::-;4945:79;::::0;4878:57;;-1:-1:-1;4953:42:11::1;::::0;4945:79;::::1;;;::::0;4878:57;;4945:79:::1;::::0;;;4878:57;4953:42;4945:79;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;5036:51:11::1;::::0;5044:10:::1;::::0;5065:21:::1;5036:51:::0;::::1;;;::::0;::::1;::::0;;;5065:21;5044:10;5036:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;10656:179:12::0;10789:39;10806:4;10812:2;10816:7;10789:39;;;;;;;;;;;;:16;:39::i;611:35:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4706:83::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4772:10:11::1;::::0;;-1:-1:-1;;4758:24:11;::::1;4772:10;::::0;;::::1;4771:11;4758:24;::::0;;4706:83::o;7955:122:12:-;8019:7;8045:20;8057:7;8045:11;:20::i;:::-;:25;;7955:122;-1:-1:-1;;7955:122:12:o;5202:203::-;5266:7;-1:-1:-1;;;;;5289:19:12;;5285:60;;5317:28;;-1:-1:-1;;;5317:28:12;;;;;;;;;;;5285:60;-1:-1:-1;;;;;;5370:19:12;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;5370:27:12;;5202: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;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;4228:103:11:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4300:10:11::1;:24:::0;4228:103::o;3560:398::-;3602:16;3646:10;3629:14;3693:17;3646:10;3693:9;:17::i;:::-;3666:44;;3720:25;3762:16;-1:-1:-1;;;;;3748:31:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3748:31:11;;3720:59;;3794:13;3790:136;3821:16;3813:5;:24;3790:136;;;3839:7;;;;:::i;:::-;;;;3790:136;;;-1:-1:-1;3943:8:11;3560:398;-1:-1:-1;;;3560:398:11:o;4511:96::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4587:13:11::1;::::0;;-1:-1:-1;;4570:30:11;::::1;4587:13:::0;;;;::::1;;;4586:14;4570:30:::0;;::::1;;::::0;;4511:96::o;8301:102:12:-;8357:13;8389:7;8382:14;;;;;:::i;1258:541:11:-;1158:9;1171:10;1158:23;1150:84;;;;-1:-1:-1;;;1150:84:11;;;;;;;:::i;:::-;1338:10:::1;::::0;::::1;::::0;::::1;;;1330:56;;;::::0;-1:-1:-1;;;1330:56:11;;11998:2:13;1330:56:11::1;::::0;::::1;11980:21:13::0;12037:2;12017:18;;;12010:30;12076:34;12056:18;;;12049:62;-1:-1:-1;;;12127:18:13;;;12120:31;12168:19;;1330:56:11::1;11796:397:13::0;1330:56:11::1;340:4;1421:9;1405:13;4364:12:12::0;;4158:7;4348:13;:28;;4114:297;1405:13:11::1;:25;;;;:::i;:::-;1404:41;;1396:89;;;::::0;-1:-1:-1;;;1396:89:11;;12400:2:13;1396:89:11::1;::::0;::::1;12382:21:13::0;12439:2;12419:18;;;12412:30;12478:34;12458:18;;;12451:62;-1:-1:-1;;;12529:18:13;;;12522:33;12572:19;;1396:89:11::1;12198:399:13::0;1396:89:11::1;1520:10;1504:27;::::0;;;:15:::1;:27;::::0;;;;;392:3:::1;::::0;1504:38:::1;::::0;1533:9;;1504:38:::1;:::i;:::-;1503:59;;1495:113;;;::::0;-1:-1:-1;;;1495:113:11;;12804:2:13;1495:113:11::1;::::0;::::1;12786:21:13::0;12843:2;12823:18;;;12816:30;12882:34;12862:18;;;12855:62;-1:-1:-1;;;12933:18:13;;;12926:39;12982:19;;1495:113:11::1;12602:405:13::0;1495:113:11::1;1640:29;1660:9:::0;499::::1;1640:29;:::i;:::-;1626:9;:44;;1618:81;;;::::0;-1:-1:-1;;;1618:81:11;;13214:2:13;1618:81:11::1;::::0;::::1;13196:21:13::0;13253:2;13233:18;;;13226:30;13292:26;13272:18;;;13265:54;13336:18;;1618:81:11::1;13012:348:13::0;1618:81:11::1;1726:10;1710:27;::::0;;;:15:::1;:27;::::0;;;;:40;;1741:9;;1710:27;:40:::1;::::0;1741:9;;1710:40:::1;:::i;:::-;::::0;;;-1:-1:-1;1760:32:11::1;::::0;-1:-1:-1;1770:10:11::1;1782:9:::0;1760::::1;:32::i;:::-;1258:541:::0;:::o;9862:274:12:-;-1:-1:-1;;;;;9952:24:12;;719:10:6;9952:24:12;9948:54;;;9985:17;;-1:-1:-1;;;9985:17:12;;;;;;;;;;;9948:54;719:10:6;10013:32:12;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;10013:42:12;;;;;;;;;;;;:53;;-1:-1:-1;;10013:53:12;;;;;;;;;;10081:48;;540:41:13;;;10013:42:12;;719:10:6;10081:48:12;;513:18:13;10081:48:12;;;;;;;9862:274;;:::o;4082:140:11:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4173:42:11;;::::1;::::0;:19:::1;::::0;:42:::1;::::0;::::1;::::0;::::1;:::i;10901:359:12:-:0;11062:28;11072:4;11078:2;11082:7;11062:9;:28::i;:::-;-1:-1:-1;;;;;11104:13:12;;1465:19:5;:23;;11104:76:12;;;;;11124:56;11155:4;11161:2;11165:7;11174:5;11124:30;:56::i;:::-;11123:57;11104:76;11100:154;;;11203:40;;-1:-1:-1;;;11203:40:12;;;;;;;;;;;11100:154;10901:359;;;;:::o;2669:179:11:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2726:10:11::1;::::0;;;::::1;;;2725:11;2717:61;;;::::0;-1:-1:-1;;;2717:61:11;;13567:2:13;2717:61:11::1;::::0;::::1;13549:21:13::0;13606:2;13586:18;;;13579:30;13645:34;13625:18;;;13618:62;-1:-1:-1;;;13696:18:13;;;13689:35;13741:19;;2717:61:11::1;13365:401:13::0;2717:61:11::1;2788:10;:17:::0;;-1:-1:-1;;2788:17:11::1;::::0;::::1;::::0;;2815:26:::1;2825:10;2837:3;2815:9;:26::i;4433:72::-:0;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4493:5:11::1;::::0;;-1:-1:-1;;4484:14:11;::::1;4493:5:::0;;;;::::1;;;4492:6;4484:14:::0;;::::1;;::::0;;4433:72::o;3006:463::-;3079:13;3112:16;3120:7;3112;:16::i;:::-;3104:76;;;;-1:-1:-1;;;3104:76:11;;13973:2:13;3104:76:11;;;13955:21:13;14012:2;13992:18;;;13985:30;14051:34;14031:18;;;14024:62;-1:-1:-1;;;14102:18:13;;;14095:45;14157:19;;3104:76:11;13771:411:13;3104:76:11;3191:14;3208:11;:7;3218:1;3208:11;:::i;:::-;3234:10;;3191:28;;-1:-1:-1;3234:10:11;;3230:66;;3266:19;3259:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3006:463;;;:::o;3230:66::-;3387:1;3364:12;3358:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;3415:12;3429:17;:6;:15;:17::i;:::-;3398:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3358:104;3351:111;3006:463;-1:-1:-1;;;3006:463:11:o;4613:87::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4683:10:11::1;::::0;;-1:-1:-1;;4669:24:11;::::1;4683:10;::::0;;;::::1;;;4682:11;4669:24:::0;;::::1;;::::0;;4613:87::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;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;16129:2:13;1998:73:0::1;::::0;::::1;16111:21:13::0;16168:2;16148:18;;;16141:30;16207:34;16187:18;;;16180:62;-1:-1:-1;;;16258:18:13;;;16251:36;16304:19;;1998:73:0::1;15927:402:13::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;11506:184:12:-:0;11563:4;11626:13;;11616:7;:23;11586:97;;;;-1:-1:-1;;11656:20:12;;;;:11;:20;;;;;:27;-1:-1:-1;;;11656:27:12;;;;11655:28;;11506:184::o;18922:189::-;19032:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19032:29:12;-1:-1:-1;;;;;19032:29:12;;;;;;;;;19076:28;;19032:24;;19076:28;;;;;;;18922:189;;;:::o;14528:2067::-;14638:35;14676:20;14688:7;14676:11;:20::i;:::-;14749:18;;14638:58;;-1:-1:-1;14707:22:12;;-1:-1:-1;;;;;14733:34:12;719:10:6;-1:-1:-1;;;;;14733:34:12;;:100;;;-1:-1:-1;14800:18:12;;14783:50;;719:10:6;10202:162:12;:::i;14783:50::-;14733:152;;;-1:-1:-1;719:10:6;14849:20:12;14861:7;14849:11;:20::i;:::-;-1:-1:-1;;;;;14849:36:12;;14733:152;14707:179;;14902:17;14897:66;;14928:35;;-1:-1:-1;;;14928:35:12;;;;;;;;;;;14897:66;14999:4;-1:-1:-1;;;;;14977:26:12;:13;:18;;;-1:-1:-1;;;;;14977:26:12;;14973:67;;15012:28;;-1:-1:-1;;;15012:28:12;;;;;;;;;;;14973:67;-1:-1:-1;;;;;15054:16:12;;15050:52;;15079:23;;-1:-1:-1;;;15079:23:12;;;;;;;;;;;15050:52;15218:49;15235:1;15239:7;15248:13;:18;;;15218:8;:49::i;:::-;-1:-1:-1;;;;;15557:18:12;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;15557:31:12;;;-1:-1:-1;;;;;15557:31:12;;;-1:-1:-1;;15557:31:12;;;;;;;15602:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;15602:29:12;;;;;;;;;;;15646:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;15690:61:12;;;;-1:-1:-1;;;15735:15:12;15690:61;;;;;;;;;;;16021:11;;;16050:24;;;;;:29;16021:11;;16050:29;16046:438;;16272:13;;16258:11;:27;16254:216;;;16341:18;;;16309:24;;;:11;:24;;;;;;;;:50;;16423:28;;;;-1:-1:-1;;;;;16381:70:12;-1:-1:-1;;;16381:70:12;-1:-1:-1;;;;;;16381:70:12;;;-1:-1:-1;;;;;16309:50:12;;;16381:70;;;;;;;16254:216;15533:961;16528:7;16524:2;-1:-1:-1;;;;;16509:27:12;16518:4;-1:-1:-1;;;;;16509:27:12;;;;;;;;;;;16546:42;14628:1967;;14528:2067;;;:::o;862:184:8:-;983:4;1035;1006:25;1019:5;1026:4;1006:12;:25::i;:::-;:33;;862:184;-1:-1:-1;;;;862:184:8:o;11696:102:12:-;11764:27;11774:2;11778:8;11764:27;;;;;;;;;;;;:9;:27::i;6815:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;6924:7:12;7004:13;;6997:4;:20;6966:868;;;7037:31;7071:17;;;:11;:17;;;;;;;;;7037:51;;;;;;;;;-1:-1:-1;;;;;7037:51:12;;;;-1:-1:-1;;;7037:51:12;;-1:-1:-1;;;;;7037:51:12;;;;;;;;-1:-1:-1;;;7037:51:12;;;;;;;;;;;;;;7106:714;;7155:14;;-1:-1:-1;;;;;7155:28:12;;7151:99;;7218:9;6815:1083;-1:-1:-1;;;6815:1083:12:o;7151:99::-;-1:-1:-1;;;7586:6:12;7630:17;;;;:11;:17;;;;;;;;;7618:29;;;;;;;;;-1:-1:-1;;;;;7618:29:12;;;;;-1:-1:-1;;;7618:29:12;;-1:-1:-1;;;;;7618:29:12;;;;;;;;-1:-1:-1;;;7618:29:12;;;;;;;;;;;;;7677:28;7673:107;;7744:9;6815:1083;-1:-1:-1;;;6815:1083:12:o;7673:107::-;7547:255;;;7019:815;6966:868;7860:31;;-1:-1:-1;;;7860:31:12;;;;;;;;;;;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;2333:124;2270:187;:::o;19592:650:12:-;19770:72;;-1:-1:-1;;;19770:72:12;;19750:4;;-1:-1:-1;;;;;19770:36:12;;;;;:72;;719:10:6;;19821:4:12;;19827:7;;19836:5;;19770:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19770:72:12;;;;;;;;-1:-1:-1;;19770:72:12;;;;;;;;;;;;:::i;:::-;;;19766:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20001:13:12;;19997:229;;20046:40;;-1:-1:-1;;;20046:40:12;;;;;;;;;;;19997:229;20186:6;20180:13;20171:6;20167:2;20163:15;20156:38;19766:470;-1:-1:-1;;;;;;19888:55:12;-1:-1:-1;;;19888:55:12;;-1:-1:-1;19766:470:12;19592:650;;;;;;:::o;328:703:7:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:7;;;;;;;;;;;;-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;-1:-1:-1;;;;;817:17:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-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;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:7;;;;;;;;-1:-1:-1;972:11:7;981:2;972:11;;:::i;:::-;;;844:150;;1398:662:8;1481:7;1523:4;1481:7;1537:488;1561:5;:12;1557:1;:16;1537:488;;;1594:20;1617:5;1623:1;1617:8;;;;;;;;:::i;:::-;;;;;;;1594:31;;1659:12;1643;:28;1639:376;;2134:13;2182:15;;;2217:4;2210:15;;;2263:4;2247:21;;1769:57;;1639:376;;;2134:13;2182:15;;;2217:4;2210:15;;;2263:4;2247:21;;1943:57;;1639:376;-1:-1:-1;1575:3:8;;;;:::i;:::-;;;;1537:488;;12149:157:12;12267:32;12273:2;12277:8;12287:5;12294:4;12686:20;12709:13;-1:-1:-1;;;;;12736:16:12;;12732:48;;12761:19;;-1:-1:-1;;;12761:19:12;;;;;;;;;;;12732:48;12794:13;12790:44;;12816:18;;-1:-1:-1;;;12816:18:12;;;;;;;;;;;12790:44;-1:-1:-1;;;;;13177:16:12;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;13235:49:12;;-1:-1:-1;;;;;13177:44:12;;;;;;;13235:49;;;;-1:-1:-1;;13177:44:12;;;;;;13235:49;;;;;;;;;;;;;;;;13299:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;13348:66:12;;;;-1:-1:-1;;;13398:15:12;13348:66;;;;;;;;;;13299:25;13492:23;;;13534:4;:23;;;;-1:-1:-1;;;;;;13542:13:12;;1465:19:5;:23;;13542:15:12;13530:628;;;13577:309;13607:38;;13632:12;;-1:-1:-1;;;;;13607:38:12;;;13624:1;;13607:38;;13624:1;;13607:38;13672:69;13711:1;13715:2;13719:14;;;;;;13735:5;13672:30;:69::i;:::-;13667:172;;13776:40;;-1:-1:-1;;;13776:40:12;;;;;;;;;;;13667:172;13881:3;13865:12;:19;;13577:309;;13965:12;13948:13;;:29;13944:43;;13979:8;;;13944:43;13530:628;;;14026:118;14056:40;;14081:14;;;;;-1:-1:-1;;;;;14056:40:12;;;14073:1;;14056:40;;14073:1;;14056:40;14139:3;14123:12;:19;;14026:118;;13530:628;-1:-1:-1;14171:13:12;:28;14219:60;10901:359;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:13;-1:-1:-1;;;;;;88:32:13;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:173::-;660:20;;-1:-1:-1;;;;;709:31:13;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:186::-;829:6;882:2;870:9;861:7;857:23;853:32;850:52;;;898:1;895;888:12;850:52;921:29;940:9;921:29;:::i;1143:127::-;1204:10;1199:3;1195:20;1192:1;1185:31;1235:4;1232:1;1225:15;1259:4;1256:1;1249:15;1275:275;1346:2;1340:9;1411:2;1392:13;;-1:-1:-1;;1388:27:13;1376:40;;-1:-1:-1;;;;;1431:34:13;;1467:22;;;1428:62;1425:88;;;1493:18;;:::i;:::-;1529:2;1522:22;1275:275;;-1:-1:-1;1275:275:13:o;1555:407::-;1620:5;-1:-1:-1;;;;;1646:6:13;1643:30;1640:56;;;1676:18;;:::i;:::-;1714:57;1759:2;1738:15;;-1:-1:-1;;1734:29:13;1765:4;1730:40;1714:57;:::i;:::-;1705:66;;1794:6;1787:5;1780:21;1834:3;1825:6;1820:3;1816:16;1813:25;1810:45;;;1851:1;1848;1841:12;1810:45;1900:6;1895:3;1888:4;1881:5;1877:16;1864:43;1954:1;1947:4;1938:6;1931:5;1927:18;1923:29;1916:40;1555:407;;;;;:::o;1967:451::-;2036:6;2089:2;2077:9;2068:7;2064:23;2060:32;2057:52;;;2105:1;2102;2095:12;2057:52;2145:9;2132:23;-1:-1:-1;;;;;2170:6:13;2167:30;2164:50;;;2210:1;2207;2200:12;2164:50;2233:22;;2286:4;2278:13;;2274:27;-1:-1:-1;2264:55:13;;2315:1;2312;2305:12;2264:55;2338:74;2404:7;2399:2;2386:16;2381:2;2377;2373:11;2338:74;:::i;2423:258::-;2495:1;2505:113;2519:6;2516:1;2513:13;2505:113;;;2595:11;;;2589:18;2576:11;;;2569:39;2541:2;2534:10;2505:113;;;2636:6;2633:1;2630:13;2627:48;;;-1:-1:-1;;2671:1:13;2653:16;;2646:27;2423:258::o;2686:269::-;2739:3;2777:5;2771:12;2804:6;2799:3;2792:19;2820:63;2876:6;2869:4;2864:3;2860:14;2853:4;2846:5;2842:16;2820:63;:::i;:::-;2937:2;2916:15;-1:-1:-1;;2912:29:13;2903:39;;;;2944:4;2899:50;;2686:269;-1:-1:-1;;2686:269:13:o;2960:231::-;3109:2;3098:9;3091:21;3072:4;3129:56;3181:2;3170:9;3166:18;3158:6;3129:56;:::i;3196:180::-;3255:6;3308:2;3296:9;3287:7;3283:23;3279:32;3276:52;;;3324:1;3321;3314:12;3276:52;-1:-1:-1;3347:23:13;;3196:180;-1:-1:-1;3196:180:13:o;3589:254::-;3657:6;3665;3718:2;3706:9;3697:7;3693:23;3689:32;3686:52;;;3734:1;3731;3724:12;3686:52;3757:29;3776:9;3757:29;:::i;:::-;3747:39;3833:2;3818:18;;;;3805:32;;-1:-1:-1;;;3589:254:13:o;3848:328::-;3925:6;3933;3941;3994:2;3982:9;3973:7;3969:23;3965:32;3962:52;;;4010:1;4007;4000:12;3962:52;4033:29;4052:9;4033:29;:::i;:::-;4023:39;;4081:38;4115:2;4104:9;4100:18;4081:38;:::i;:::-;4071:48;;4166:2;4155:9;4151:18;4138:32;4128:42;;3848:328;;;;;:::o;4181:1016::-;4274:6;4282;4335:2;4323:9;4314:7;4310:23;4306:32;4303:52;;;4351:1;4348;4341:12;4303:52;4391:9;4378:23;-1:-1:-1;;;;;4461:2:13;4453:6;4450:14;4447:34;;;4477:1;4474;4467:12;4447:34;4515:6;4504:9;4500:22;4490:32;;4560:7;4553:4;4549:2;4545:13;4541:27;4531:55;;4582:1;4579;4572:12;4531:55;4618:2;4605:16;4640:4;4663:2;4659;4656:10;4653:36;;;4669:18;;:::i;:::-;4715:2;4712:1;4708:10;4698:20;;4738:28;4762:2;4758;4754:11;4738:28;:::i;:::-;4800:15;;;4870:11;;;4866:20;;;4831:12;;;;4898:19;;;4895:39;;;4930:1;4927;4920:12;4895:39;4954:11;;;;4974:142;4990:6;4985:3;4982:15;4974:142;;;5056:17;;5044:30;;5007:12;;;;5094;;;;4974:142;;;5135:5;5172:18;;;;5159:32;;-1:-1:-1;;;;;;;4181:1016:13:o;5569:632::-;5740:2;5792:21;;;5862:13;;5765:18;;;5884:22;;;5711:4;;5740:2;5963:15;;;;5937:2;5922:18;;;5711:4;6006:169;6020:6;6017:1;6014:13;6006:169;;;6081:13;;6069:26;;6150:15;;;;6115:12;;;;6042:1;6035:9;6006:169;;;-1:-1:-1;6192:3:13;;5569:632;-1:-1:-1;;;;;;5569:632:13:o;6206:347::-;6271:6;6279;6332:2;6320:9;6311:7;6307:23;6303:32;6300:52;;;6348:1;6345;6338:12;6300:52;6371:29;6390:9;6371:29;:::i;:::-;6361:39;;6450:2;6439:9;6435:18;6422:32;6497:5;6490:13;6483:21;6476:5;6473:32;6463:60;;6519:1;6516;6509:12;6463:60;6542:5;6532:15;;;6206:347;;;;;:::o;6558:667::-;6653:6;6661;6669;6677;6730:3;6718:9;6709:7;6705:23;6701:33;6698:53;;;6747:1;6744;6737:12;6698:53;6770:29;6789:9;6770:29;:::i;:::-;6760:39;;6818:38;6852:2;6841:9;6837:18;6818:38;:::i;:::-;6808:48;;6903:2;6892:9;6888:18;6875:32;6865:42;;6958:2;6947:9;6943:18;6930:32;-1:-1:-1;;;;;6977:6:13;6974:30;6971:50;;;7017:1;7014;7007:12;6971:50;7040:22;;7093:4;7085:13;;7081:27;-1:-1:-1;7071:55:13;;7122:1;7119;7112:12;7071:55;7145:74;7211:7;7206:2;7193:16;7188:2;7184;7180:11;7145:74;:::i;:::-;7135:84;;;6558:667;;;;;;;:::o;7230:260::-;7298:6;7306;7359:2;7347:9;7338:7;7334:23;7330:32;7327:52;;;7375:1;7372;7365:12;7327:52;7398:29;7417:9;7398:29;:::i;:::-;7388:39;;7446:38;7480:2;7469:9;7465:18;7446:38;:::i;:::-;7436:48;;7230:260;;;;;:::o;7495:356::-;7697:2;7679:21;;;7716:18;;;7709:30;7775:34;7770:2;7755:18;;7748:62;7842:2;7827:18;;7495:356::o;7856:380::-;7935:1;7931:12;;;;7978;;;7999:61;;8053:4;8045:6;8041:17;8031:27;;7999:61;8106:2;8098:6;8095:14;8075:18;8072:38;8069:161;;;8152:10;8147:3;8143:20;8140:1;8133:31;8187:4;8184:1;8177:15;8215:4;8212:1;8205:15;8069:161;;7856:380;;;:::o;8241:412::-;8443:2;8425:21;;;8482:2;8462:18;;;8455:30;8521:34;8516:2;8501:18;;8494:62;-1:-1:-1;;;8587:2:13;8572:18;;8565:46;8643:3;8628:19;;8241:412::o;9064:127::-;9125:10;9120:3;9116:20;9113:1;9106:31;9156:4;9153:1;9146:15;9180:4;9177:1;9170:15;9196:128;9236:3;9267:1;9263:6;9260:1;9257:13;9254:39;;;9273:18;;:::i;:::-;-1:-1:-1;9309:9:13;;9196:128::o;10169:168::-;10209:7;10275:1;10271;10267:6;10263:14;10260:1;10257:21;10252:1;10245:9;10238:17;10234:45;10231:71;;;10282:18;;:::i;:::-;-1:-1:-1;10322:9:13;;10169:168::o;11399:127::-;11460:10;11455:3;11451:20;11448:1;11441:31;11491:4;11488:1;11481:15;11515:4;11512:1;11505:15;11531:120;11571:1;11597;11587:35;;11602:18;;:::i;:::-;-1:-1:-1;11636:9:13;;11531:120::o;11656:135::-;11695:3;-1:-1:-1;;11716:17:13;;11713:43;;;11736:18;;:::i;:::-;-1:-1:-1;11783:1:13;11772:13;;11656:135::o;14313:185::-;14355:3;14393:5;14387:12;14408:52;14453:6;14448:3;14441:4;14434:5;14430:16;14408:52;:::i;:::-;14476:16;;;;;14313:185;-1:-1:-1;;14313:185:13:o;14621:1301::-;14898:3;14927:1;14960:6;14954:13;14990:3;15012:1;15040:9;15036:2;15032:18;15022:28;;15100:2;15089:9;15085:18;15122;15112:61;;15166:4;15158:6;15154:17;15144:27;;15112:61;15192:2;15240;15232:6;15229:14;15209:18;15206:38;15203:165;;;-1:-1:-1;;;15267:33:13;;15323:4;15320:1;15313:15;15353:4;15274:3;15341:17;15203:165;15384:18;15411:104;;;;15529:1;15524:320;;;;15377:467;;15411:104;-1:-1:-1;;15444:24:13;;15432:37;;15489:16;;;;-1:-1:-1;15411:104:13;;15524:320;14260:1;14253:14;;;14297:4;14284:18;;15619:1;15633:165;15647:6;15644:1;15641:13;15633:165;;;15725:14;;15712:11;;;15705:35;15768:16;;;;15662:10;;15633:165;;;15637:3;;15827:6;15822:3;15818:16;15811:23;;15377:467;;;;;;;15860:56;15885:30;15911:3;15903:6;15885:30;:::i;:::-;-1:-1:-1;;;14563:20:13;;14608:1;14599:11;;14503:113;15860:56;15853:63;14621:1301;-1:-1:-1;;;;;14621:1301:13:o;16334:500::-;-1:-1:-1;;;;;16603:15:13;;;16585:34;;16655:15;;16650:2;16635:18;;16628:43;16702:2;16687:18;;16680:34;;;16750:3;16745:2;16730:18;;16723:31;;;16528:4;;16771:57;;16808:19;;16800:6;16771:57;:::i;:::-;16763:65;16334:500;-1:-1:-1;;;;;;16334:500:13:o;16839:249::-;16908:6;16961:2;16949:9;16940:7;16936:23;16932:32;16929:52;;;16977:1;16974;16967:12;16929:52;17009:9;17003:16;17028:30;17052:5;17028:30;:::i;17093:125::-;17133:4;17161:1;17158;17155:8;17152:34;;;17166:18;;:::i;:::-;-1:-1:-1;17203:9:13;;17093:125::o;17223:112::-;17255:1;17281;17271:35;;17286:18;;:::i;:::-;-1:-1:-1;17320:9:13;;17223:112::o;17340:127::-;17401:10;17396:3;17392:20;17389:1;17382:31;17432:4;17429:1;17422:15;17456:4;17453:1;17446:15

Swarm Source

ipfs://d03c257824bec73bfe856a00cec1c846daf8f0d7e6986d3adb9f01ea393f3b97
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.