ETH Price: $3,073.89 (-6.63%)
Gas: 9 Gwei

Token

Mimic Shhans Husband (MSH)
 

Overview

Max Total Supply

9,407 MSH

Holders

978

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 MSH
0xCC64FFAe0a6F3683f5E3421020FE69fE939b940C
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:
MimicShhansHusband

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-11
*/

// File: contracts/hg.sol

/**
 *Submitted for verification at Etherscan.io on 2022-09-07
*/

// File: contracts/MimicShhansHusband.sol

pragma solidity ^0.8.16;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}

interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxiliary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

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

    /**
     * @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, _toString(tokenId), ".json")) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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-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 {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) 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` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

    /**
     * @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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

contract MimicShhansHusband is Ownable, ERC721A {
  string public baseURI = "https://nftstorage.link/ipfs/bafybeifdt63blcwnukq2albjux7rnjoltpk5erjgoxxnx7mcsc5q4z4hv4/";

  bool public isMintOpen = false;

  bool public isFreeMintOpen = true;

  uint256 public immutable unitPrice = 0.002 ether;

  uint256 public immutable maxSupply = 10000;

  uint256 public immutable maxWalletSupply = 30;

  uint256 public immutable maxWalletFreeSupply = 10;

  constructor(uint256 _mintCntToOwner) ERC721A('Mimic Shhans Husband', 'MSH') {
    _mint(msg.sender, _mintCntToOwner);
  }

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

  function _startTokenId() internal pure override returns (uint256) {
    return 1;
  }

  function startTokenId() external pure returns (uint256) {
    return _startTokenId();
  }

  function nextTokenId() external view returns (uint256) {
    return _nextTokenId();
  }

  function numberMinted(address owner) external view returns (uint256) {
    return _numberMinted(owner);
  }

  function getBalance() external view returns (uint256) {
    return address(this).balance;
  }

  function mint(uint256 quantity) external payable {
    unchecked {
      require(isMintOpen, '0');

      uint256 currentSupply = _nextTokenId() - 1;
      require((currentSupply + quantity) <= maxSupply, '1');

      uint256 walletSupply = _numberMinted(msg.sender);
      require((walletSupply + quantity) <= maxWalletSupply, '2');

      if (isFreeMintOpen == false || currentSupply >= 9000) {
        require(msg.value >= unitPrice * quantity, '3');
      } else {
        uint256 walletFreeSupply = walletSupply > maxWalletFreeSupply
            ? maxWalletFreeSupply
            : walletSupply;
        uint256 freeQuantity = maxWalletFreeSupply > walletFreeSupply
            ? maxWalletFreeSupply - walletFreeSupply
            : 0;
        require(
            msg.value >= unitPrice * (quantity > freeQuantity ? quantity - freeQuantity : 0),
            '4'
        );
      }
    }

    _mint(msg.sender, quantity);
  }

  function setBaseURI(string calldata uri) external onlyOwner {
    baseURI = uri;
  }

  function setIsMintOpen(bool _isMintOpen) external onlyOwner {
    isMintOpen = _isMintOpen;
  }

  function setIsFreeMintOpen(bool _isFreeMintOpen) external onlyOwner {
    isFreeMintOpen = _isFreeMintOpen;
  }

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

  function marketMint(address[] memory marketmintaddress, uint256[] memory mintquantity) public onlyOwner {
    for (uint256 i = 0; i < marketmintaddress.length; i++) {
      require(totalSupply() + mintquantity[i] <= maxSupply, "Exceed supply");
      _safeMint(marketmintaddress[i], mintquantity[i]);
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_mintCntToOwner","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"marketmintaddress","type":"address[]"},{"internalType":"uint256[]","name":"mintquantity","type":"uint256[]"}],"name":"marketMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isFreeMintOpen","type":"bool"}],"name":"setIsFreeMintOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isMintOpen","type":"bool"}],"name":"setIsMintOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unitPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610180604052605961010081815290620020cc61012039600990620000259082620002fd565b50600a805461ffff191661010017815566071afd498d000060805261271060a052601e60c05260e0523480156200005b57600080fd5b5060405162002125380380620021258339810160408190526200007e91620003c9565b6040518060400160405280601481526020017f4d696d696320536868616e732048757362616e640000000000000000000000008152506040518060400160405280600381526020016209aa6960eb1b815250620000ea620000e46200012160201b60201c565b62000125565b6003620000f88382620002fd565b506004620001078282620002fd565b505060018055506200011a338262000175565b50620003e3565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001546001600160a01b0383166200019f57604051622e076360e81b815260040160405180910390fd5b81600003620001c15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106200020b57600155505b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200028457607f821691505b602082108103620002a557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200025457600081815260208120601f850160051c81016020861015620002d45750805b601f850160051c820191505b81811015620002f557828155600101620002e0565b505050505050565b81516001600160401b0381111562000319576200031962000259565b62000331816200032a84546200026f565b84620002ab565b602080601f831160018114620003695760008415620003505750858301515b600019600386901b1c1916600185901b178555620002f5565b600085815260208120601f198616915b828110156200039a5788860151825594840194600190910190840162000379565b5085821015620003b95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620003dc57600080fd5b5051919050565b60805160a05160c05160e051611c706200045c600039600081816103d501528181610d2c01528181610d5901528181610d800152610dae0152600081816104ee0152610c5b01526000818161058101528181610be70152610fee0152600081816105e901528181610cd00152610de50152611c706000f3fe6080604052600436106101f95760003560e01c806375794a3c1161010d578063b88d4fde116100a0578063e6798baa1161006f578063e6798baa146105c3578063e73faa2d146105d7578063e9014f9d1461060b578063e985e9c51461062b578063f2fde38b1461064b57600080fd5b8063b88d4fde1461052f578063c87b56dd1461054f578063d5abeb011461056f578063dc33e681146105a357600080fd5b8063a0712d68116100dc578063a0712d68146104a9578063a22cb465146104bc578063a542f1c4146104dc578063a6f5f0141461051057600080fd5b806375794a3c146104415780638da5cb5b1461045657806395d89b41146104745780639da2f5f51461048957600080fd5b806323b872dd116101905780636352211e1161015f5780636352211e146103a357806365d547ec146103c35780636c0360eb146103f757806370a082311461040c578063715018a61461042c57600080fd5b806323b872dd1461032357806342842e0e1461034357806351cff8d91461036357806355f804b31461038357600080fd5b806312065fe0116101cc57806312065fe0146102af578063125c917c146102cc57806318160ddd146102ec578063199080161461030957600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611583565b61066b565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b506102486106bd565b60405161022a91906115f0565b34801561026157600080fd5b50610275610270366004611603565b61074f565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611638565b610793565b005b3480156102bb57600080fd5b50475b60405190815260200161022a565b3480156102d857600080fd5b506102ad6102e7366004611672565b610833565b3480156102f857600080fd5b5060025460015403600019016102be565b34801561031557600080fd5b50600a5461021e9060ff1681565b34801561032f57600080fd5b506102ad61033e36600461168d565b610855565b34801561034f57600080fd5b506102ad61035e36600461168d565b6109ee565b34801561036f57600080fd5b506102ad61037e3660046116c9565b610a0e565b34801561038f57600080fd5b506102ad61039e3660046116e4565b610a4f565b3480156103af57600080fd5b506102756103be366004611603565b610a64565b3480156103cf57600080fd5b506102be7f000000000000000000000000000000000000000000000000000000000000000081565b34801561040357600080fd5b50610248610a6f565b34801561041857600080fd5b506102be6104273660046116c9565b610afd565b34801561043857600080fd5b506102ad610b4c565b34801561044d57600080fd5b506102be610b60565b34801561046257600080fd5b506000546001600160a01b0316610275565b34801561048057600080fd5b50610248610b70565b34801561049557600080fd5b506102ad6104a4366004611672565b610b7f565b6102ad6104b7366004611603565b610b9a565b3480156104c857600080fd5b506102ad6104d7366004611756565b610e4a565b3480156104e857600080fd5b506102be7f000000000000000000000000000000000000000000000000000000000000000081565b34801561051c57600080fd5b50600a5461021e90610100900460ff1681565b34801561053b57600080fd5b506102ad61054a3660046117d0565b610edf565b34801561055b57600080fd5b5061024861056a366004611603565b610f29565b34801561057b57600080fd5b506102be7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105af57600080fd5b506102be6105be3660046116c9565b610fad565b3480156105cf57600080fd5b5060016102be565b3480156105e357600080fd5b506102be7f000000000000000000000000000000000000000000000000000000000000000081565b34801561061757600080fd5b506102ad61062636600461191f565b610fd8565b34801561063757600080fd5b5061021e6106463660046119df565b6110d0565b34801561065757600080fd5b506102ad6106663660046116c9565b6110fe565b60006301ffc9a760e01b6001600160e01b03198316148061069c57506380ac58cd60e01b6001600160e01b03198316145b806106b75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546106cc90611a09565b80601f01602080910402602001604051908101604052809291908181526020018280546106f890611a09565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b600061075a82611174565b610777576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061079e82610a64565b9050336001600160a01b038216146107d7576107ba81336110d0565b6107d7576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61083b6111a9565b600a80549115156101000261ff0019909216919091179055565b600061086082611203565b9050836001600160a01b0316816001600160a01b0316146108935760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176108e0576108c386336110d0565b6108e057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661090757604051633a954ecd60e21b815260040160405180910390fd5b801561091257600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b841690036109a4576001840160008181526005602052604081205490036109a25760015481146109a25760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610a0983838360405180602001604052806000815250610edf565b505050565b610a166111a9565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610a4b573d6000803e3d6000fd5b5050565b610a576111a9565b6009610a09828483611a89565b60006106b782611203565b60098054610a7c90611a09565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa890611a09565b8015610af55780601f10610aca57610100808354040283529160200191610af5565b820191906000526020600020905b815481529060010190602001808311610ad857829003601f168201915b505050505081565b60006001600160a01b038216610b26576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610b546111a9565b610b5e6000611272565b565b6000610b6b60015490565b905090565b6060600480546106cc90611a09565b610b876111a9565b600a805460ff1916911515919091179055565b600a5460ff16610bd55760405162461bcd60e51b81526020600482015260016024820152600360fc1b60448201526064015b60405180910390fd5b60006001610be260015490565b0390507f00000000000000000000000000000000000000000000000000000000000000008282011115610c3b5760405162461bcd60e51b81526020600482015260016024820152603160f81b6044820152606401610bcc565b336000908152600660205260409081902054901c67ffffffffffffffff167f00000000000000000000000000000000000000000000000000000000000000008382011115610caf5760405162461bcd60e51b81526020600482015260016024820152601960f91b6044820152606401610bcc565b600a54610100900460ff161580610cc857506123288210155b15610d2857827f000000000000000000000000000000000000000000000000000000000000000002341015610d235760405162461bcd60e51b81526020600482015260016024820152603360f81b6044820152606401610bcc565b610e3b565b60007f00000000000000000000000000000000000000000000000000000000000000008211610d575781610d79565b7f00000000000000000000000000000000000000000000000000000000000000005b90506000817f000000000000000000000000000000000000000000000000000000000000000011610dab576000610dcf565b817f0000000000000000000000000000000000000000000000000000000000000000035b9050808511610ddf576000610de3565b8085035b7f000000000000000000000000000000000000000000000000000000000000000002341015610e385760405162461bcd60e51b81526020600482015260016024820152600d60fa1b6044820152606401610bcc565b50505b5050610e4733826112c2565b50565b336001600160a01b03831603610e735760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610eea848484610855565b6001600160a01b0383163b15610f2357610f06848484846113a2565b610f23576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f3482611174565b610f5157604051630a14c4b560e41b815260040160405180910390fd5b6000610f5b61148d565b90508051600003610f7b5760405180602001604052806000815250610fa6565b80610f858461149c565b604051602001610f96929190611b49565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c166106b7565b610fe06111a9565b60005b8251811015610a09577f000000000000000000000000000000000000000000000000000000000000000082828151811061101f5761101f611b88565b602002602001015161103a6002546001546000199190030190565b6110449190611bb4565b11156110825760405162461bcd60e51b815260206004820152600d60248201526c45786365656420737570706c7960981b6044820152606401610bcc565b6110be83828151811061109757611097611b88565b60200260200101518383815181106110b1576110b1611b88565b60200260200101516114eb565b806110c881611bc7565b915050610fe3565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6111066111a9565b6001600160a01b03811661116b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bcc565b610e4781611272565b600081600111158015611188575060015482105b80156106b7575050600090815260056020526040902054600160e01b161590565b6000546001600160a01b03163314610b5e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bcc565b60008180600111611259576001548110156112595760008181526005602052604081205490600160e01b82169003611257575b80600003610fa6575060001901600081815260056020526040902054611236565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001546001600160a01b0383166112eb57604051622e076360e81b815260040160405180910390fd5b8160000361130c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106113565760015550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113d7903390899088908890600401611be0565b6020604051808303816000875af1925050508015611412575060408051601f3d908101601f1916820190925261140f91810190611c1d565b60015b611470573d808015611440576040519150601f19603f3d011682016040523d82523d6000602084013e611445565b606091505b508051600003611468576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546106cc90611a09565b604080516080810191829052607f0190826030600a8206018353600a90045b80156114d957600183039250600a81066030018353600a90046114bb565b50819003601f19909101908152919050565b610a4b82826040518060200160405280600081525061150a83836112c2565b6001600160a01b0383163b15610a09576001548281035b61153460008683806001019450866113a2565b611551576040516368d2bf6b60e11b815260040160405180910390fd5b81811061152157816001541461156657600080fd5b5050505050565b6001600160e01b031981168114610e4757600080fd5b60006020828403121561159557600080fd5b8135610fa68161156d565b60005b838110156115bb5781810151838201526020016115a3565b50506000910152565b600081518084526115dc8160208601602086016115a0565b601f01601f19169290920160200192915050565b602081526000610fa660208301846115c4565b60006020828403121561161557600080fd5b5035919050565b80356001600160a01b038116811461163357600080fd5b919050565b6000806040838503121561164b57600080fd5b6116548361161c565b946020939093013593505050565b8035801515811461163357600080fd5b60006020828403121561168457600080fd5b610fa682611662565b6000806000606084860312156116a257600080fd5b6116ab8461161c565b92506116b96020850161161c565b9150604084013590509250925092565b6000602082840312156116db57600080fd5b610fa68261161c565b600080602083850312156116f757600080fd5b823567ffffffffffffffff8082111561170f57600080fd5b818501915085601f83011261172357600080fd5b81358181111561173257600080fd5b86602082850101111561174457600080fd5b60209290920196919550909350505050565b6000806040838503121561176957600080fd5b6117728361161c565b915061178060208401611662565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c8576117c8611789565b604052919050565b600080600080608085870312156117e657600080fd5b6117ef8561161c565b935060206117fe81870161161c565b935060408601359250606086013567ffffffffffffffff8082111561182257600080fd5b818801915088601f83011261183657600080fd5b81358181111561184857611848611789565b61185a601f8201601f1916850161179f565b9150808252898482850101111561187057600080fd5b808484018584013760008482840101525080935050505092959194509250565b600067ffffffffffffffff8211156118aa576118aa611789565b5060051b60200190565b600082601f8301126118c557600080fd5b813560206118da6118d583611890565b61179f565b82815260059290921b840181019181810190868411156118f957600080fd5b8286015b8481101561191457803583529183019183016118fd565b509695505050505050565b6000806040838503121561193257600080fd5b823567ffffffffffffffff8082111561194a57600080fd5b818501915085601f83011261195e57600080fd5b8135602061196e6118d583611890565b82815260059290921b8401810191818101908984111561198d57600080fd5b948201945b838610156119b2576119a38661161c565b82529482019490820190611992565b965050860135925050808211156119c857600080fd5b506119d5858286016118b4565b9150509250929050565b600080604083850312156119f257600080fd5b6119fb8361161c565b91506117806020840161161c565b600181811c90821680611a1d57607f821691505b602082108103611a3d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610a0957600081815260208120601f850160051c81016020861015611a6a5750805b601f850160051c820191505b818110156109e657828155600101611a76565b67ffffffffffffffff831115611aa157611aa1611789565b611ab583611aaf8354611a09565b83611a43565b6000601f841160018114611ae95760008515611ad15750838201355b600019600387901b1c1916600186901b178355611566565b600083815260209020601f19861690835b82811015611b1a5786850135825560209485019460019092019101611afa565b5086821015611b375760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60008351611b5b8184602088016115a0565b835190830190611b6f8183602088016115a0565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156106b7576106b7611b9e565b600060018201611bd957611bd9611b9e565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c13908301846115c4565b9695505050505050565b600060208284031215611c2f57600080fd5b8151610fa68161156d56fea2646970667358221220a412c57cead6531d2b14a96477ce6f87801257e23c6ca68e791ae9cf835d7ac764736f6c6343000810003368747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f626166796265696664743633626c63776e756b7132616c626a757837726e6a6f6c74706b3565726a676f78786e78376d6373633571347a346876342f0000000000000000000000000000000000000000000000000000000000000032

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806375794a3c1161010d578063b88d4fde116100a0578063e6798baa1161006f578063e6798baa146105c3578063e73faa2d146105d7578063e9014f9d1461060b578063e985e9c51461062b578063f2fde38b1461064b57600080fd5b8063b88d4fde1461052f578063c87b56dd1461054f578063d5abeb011461056f578063dc33e681146105a357600080fd5b8063a0712d68116100dc578063a0712d68146104a9578063a22cb465146104bc578063a542f1c4146104dc578063a6f5f0141461051057600080fd5b806375794a3c146104415780638da5cb5b1461045657806395d89b41146104745780639da2f5f51461048957600080fd5b806323b872dd116101905780636352211e1161015f5780636352211e146103a357806365d547ec146103c35780636c0360eb146103f757806370a082311461040c578063715018a61461042c57600080fd5b806323b872dd1461032357806342842e0e1461034357806351cff8d91461036357806355f804b31461038357600080fd5b806312065fe0116101cc57806312065fe0146102af578063125c917c146102cc57806318160ddd146102ec578063199080161461030957600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611583565b61066b565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b506102486106bd565b60405161022a91906115f0565b34801561026157600080fd5b50610275610270366004611603565b61074f565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611638565b610793565b005b3480156102bb57600080fd5b50475b60405190815260200161022a565b3480156102d857600080fd5b506102ad6102e7366004611672565b610833565b3480156102f857600080fd5b5060025460015403600019016102be565b34801561031557600080fd5b50600a5461021e9060ff1681565b34801561032f57600080fd5b506102ad61033e36600461168d565b610855565b34801561034f57600080fd5b506102ad61035e36600461168d565b6109ee565b34801561036f57600080fd5b506102ad61037e3660046116c9565b610a0e565b34801561038f57600080fd5b506102ad61039e3660046116e4565b610a4f565b3480156103af57600080fd5b506102756103be366004611603565b610a64565b3480156103cf57600080fd5b506102be7f000000000000000000000000000000000000000000000000000000000000000a81565b34801561040357600080fd5b50610248610a6f565b34801561041857600080fd5b506102be6104273660046116c9565b610afd565b34801561043857600080fd5b506102ad610b4c565b34801561044d57600080fd5b506102be610b60565b34801561046257600080fd5b506000546001600160a01b0316610275565b34801561048057600080fd5b50610248610b70565b34801561049557600080fd5b506102ad6104a4366004611672565b610b7f565b6102ad6104b7366004611603565b610b9a565b3480156104c857600080fd5b506102ad6104d7366004611756565b610e4a565b3480156104e857600080fd5b506102be7f000000000000000000000000000000000000000000000000000000000000001e81565b34801561051c57600080fd5b50600a5461021e90610100900460ff1681565b34801561053b57600080fd5b506102ad61054a3660046117d0565b610edf565b34801561055b57600080fd5b5061024861056a366004611603565b610f29565b34801561057b57600080fd5b506102be7f000000000000000000000000000000000000000000000000000000000000271081565b3480156105af57600080fd5b506102be6105be3660046116c9565b610fad565b3480156105cf57600080fd5b5060016102be565b3480156105e357600080fd5b506102be7f00000000000000000000000000000000000000000000000000071afd498d000081565b34801561061757600080fd5b506102ad61062636600461191f565b610fd8565b34801561063757600080fd5b5061021e6106463660046119df565b6110d0565b34801561065757600080fd5b506102ad6106663660046116c9565b6110fe565b60006301ffc9a760e01b6001600160e01b03198316148061069c57506380ac58cd60e01b6001600160e01b03198316145b806106b75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546106cc90611a09565b80601f01602080910402602001604051908101604052809291908181526020018280546106f890611a09565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b600061075a82611174565b610777576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061079e82610a64565b9050336001600160a01b038216146107d7576107ba81336110d0565b6107d7576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61083b6111a9565b600a80549115156101000261ff0019909216919091179055565b600061086082611203565b9050836001600160a01b0316816001600160a01b0316146108935760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176108e0576108c386336110d0565b6108e057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661090757604051633a954ecd60e21b815260040160405180910390fd5b801561091257600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b841690036109a4576001840160008181526005602052604081205490036109a25760015481146109a25760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610a0983838360405180602001604052806000815250610edf565b505050565b610a166111a9565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610a4b573d6000803e3d6000fd5b5050565b610a576111a9565b6009610a09828483611a89565b60006106b782611203565b60098054610a7c90611a09565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa890611a09565b8015610af55780601f10610aca57610100808354040283529160200191610af5565b820191906000526020600020905b815481529060010190602001808311610ad857829003601f168201915b505050505081565b60006001600160a01b038216610b26576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610b546111a9565b610b5e6000611272565b565b6000610b6b60015490565b905090565b6060600480546106cc90611a09565b610b876111a9565b600a805460ff1916911515919091179055565b600a5460ff16610bd55760405162461bcd60e51b81526020600482015260016024820152600360fc1b60448201526064015b60405180910390fd5b60006001610be260015490565b0390507f00000000000000000000000000000000000000000000000000000000000027108282011115610c3b5760405162461bcd60e51b81526020600482015260016024820152603160f81b6044820152606401610bcc565b336000908152600660205260409081902054901c67ffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000001e8382011115610caf5760405162461bcd60e51b81526020600482015260016024820152601960f91b6044820152606401610bcc565b600a54610100900460ff161580610cc857506123288210155b15610d2857827f00000000000000000000000000000000000000000000000000071afd498d000002341015610d235760405162461bcd60e51b81526020600482015260016024820152603360f81b6044820152606401610bcc565b610e3b565b60007f000000000000000000000000000000000000000000000000000000000000000a8211610d575781610d79565b7f000000000000000000000000000000000000000000000000000000000000000a5b90506000817f000000000000000000000000000000000000000000000000000000000000000a11610dab576000610dcf565b817f000000000000000000000000000000000000000000000000000000000000000a035b9050808511610ddf576000610de3565b8085035b7f00000000000000000000000000000000000000000000000000071afd498d000002341015610e385760405162461bcd60e51b81526020600482015260016024820152600d60fa1b6044820152606401610bcc565b50505b5050610e4733826112c2565b50565b336001600160a01b03831603610e735760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610eea848484610855565b6001600160a01b0383163b15610f2357610f06848484846113a2565b610f23576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f3482611174565b610f5157604051630a14c4b560e41b815260040160405180910390fd5b6000610f5b61148d565b90508051600003610f7b5760405180602001604052806000815250610fa6565b80610f858461149c565b604051602001610f96929190611b49565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c166106b7565b610fe06111a9565b60005b8251811015610a09577f000000000000000000000000000000000000000000000000000000000000271082828151811061101f5761101f611b88565b602002602001015161103a6002546001546000199190030190565b6110449190611bb4565b11156110825760405162461bcd60e51b815260206004820152600d60248201526c45786365656420737570706c7960981b6044820152606401610bcc565b6110be83828151811061109757611097611b88565b60200260200101518383815181106110b1576110b1611b88565b60200260200101516114eb565b806110c881611bc7565b915050610fe3565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6111066111a9565b6001600160a01b03811661116b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bcc565b610e4781611272565b600081600111158015611188575060015482105b80156106b7575050600090815260056020526040902054600160e01b161590565b6000546001600160a01b03163314610b5e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bcc565b60008180600111611259576001548110156112595760008181526005602052604081205490600160e01b82169003611257575b80600003610fa6575060001901600081815260056020526040902054611236565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001546001600160a01b0383166112eb57604051622e076360e81b815260040160405180910390fd5b8160000361130c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106113565760015550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113d7903390899088908890600401611be0565b6020604051808303816000875af1925050508015611412575060408051601f3d908101601f1916820190925261140f91810190611c1d565b60015b611470573d808015611440576040519150601f19603f3d011682016040523d82523d6000602084013e611445565b606091505b508051600003611468576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546106cc90611a09565b604080516080810191829052607f0190826030600a8206018353600a90045b80156114d957600183039250600a81066030018353600a90046114bb565b50819003601f19909101908152919050565b610a4b82826040518060200160405280600081525061150a83836112c2565b6001600160a01b0383163b15610a09576001548281035b61153460008683806001019450866113a2565b611551576040516368d2bf6b60e11b815260040160405180910390fd5b81811061152157816001541461156657600080fd5b5050505050565b6001600160e01b031981168114610e4757600080fd5b60006020828403121561159557600080fd5b8135610fa68161156d565b60005b838110156115bb5781810151838201526020016115a3565b50506000910152565b600081518084526115dc8160208601602086016115a0565b601f01601f19169290920160200192915050565b602081526000610fa660208301846115c4565b60006020828403121561161557600080fd5b5035919050565b80356001600160a01b038116811461163357600080fd5b919050565b6000806040838503121561164b57600080fd5b6116548361161c565b946020939093013593505050565b8035801515811461163357600080fd5b60006020828403121561168457600080fd5b610fa682611662565b6000806000606084860312156116a257600080fd5b6116ab8461161c565b92506116b96020850161161c565b9150604084013590509250925092565b6000602082840312156116db57600080fd5b610fa68261161c565b600080602083850312156116f757600080fd5b823567ffffffffffffffff8082111561170f57600080fd5b818501915085601f83011261172357600080fd5b81358181111561173257600080fd5b86602082850101111561174457600080fd5b60209290920196919550909350505050565b6000806040838503121561176957600080fd5b6117728361161c565b915061178060208401611662565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c8576117c8611789565b604052919050565b600080600080608085870312156117e657600080fd5b6117ef8561161c565b935060206117fe81870161161c565b935060408601359250606086013567ffffffffffffffff8082111561182257600080fd5b818801915088601f83011261183657600080fd5b81358181111561184857611848611789565b61185a601f8201601f1916850161179f565b9150808252898482850101111561187057600080fd5b808484018584013760008482840101525080935050505092959194509250565b600067ffffffffffffffff8211156118aa576118aa611789565b5060051b60200190565b600082601f8301126118c557600080fd5b813560206118da6118d583611890565b61179f565b82815260059290921b840181019181810190868411156118f957600080fd5b8286015b8481101561191457803583529183019183016118fd565b509695505050505050565b6000806040838503121561193257600080fd5b823567ffffffffffffffff8082111561194a57600080fd5b818501915085601f83011261195e57600080fd5b8135602061196e6118d583611890565b82815260059290921b8401810191818101908984111561198d57600080fd5b948201945b838610156119b2576119a38661161c565b82529482019490820190611992565b965050860135925050808211156119c857600080fd5b506119d5858286016118b4565b9150509250929050565b600080604083850312156119f257600080fd5b6119fb8361161c565b91506117806020840161161c565b600181811c90821680611a1d57607f821691505b602082108103611a3d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610a0957600081815260208120601f850160051c81016020861015611a6a5750805b601f850160051c820191505b818110156109e657828155600101611a76565b67ffffffffffffffff831115611aa157611aa1611789565b611ab583611aaf8354611a09565b83611a43565b6000601f841160018114611ae95760008515611ad15750838201355b600019600387901b1c1916600186901b178355611566565b600083815260209020601f19861690835b82811015611b1a5786850135825560209485019460019092019101611afa565b5086821015611b375760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60008351611b5b8184602088016115a0565b835190830190611b6f8183602088016115a0565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156106b7576106b7611b9e565b600060018201611bd957611bd9611b9e565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c13908301846115c4565b9695505050505050565b600060208284031215611c2f57600080fd5b8151610fa68161156d56fea2646970667358221220a412c57cead6531d2b14a96477ce6f87801257e23c6ca68e791ae9cf835d7ac764736f6c63430008100033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000032

-----Decoded View---------------
Arg [0] : _mintCntToOwner (uint256): 50

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000032


Deployed Bytecode Sourcemap

46311:2900:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16170:615;;;;;;;;;;-1:-1:-1;16170:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;16170:615:0;;;;;;;;21817:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23772:204::-;;;;;;;;;;-1:-1:-1;23772:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;23772:204:0;1533:203:1;23320:386:0;;;;;;;;;;-1:-1:-1;23320:386:0;;;;;:::i;:::-;;:::i;:::-;;47404:95;;;;;;;;;;-1:-1:-1;47472:21:0;47404:95;;;2324:25:1;;;2312:2;2297:18;47404:95:0;2178:177:1;48663:113:0;;;;;;;;;;-1:-1:-1;48663:113:0;;;;;:::i;:::-;;:::i;15224:315::-;;;;;;;;;;-1:-1:-1;15490:12:0;;47084:1;15474:13;:28;-1:-1:-1;;15474:46:0;15224:315;;46486:30;;;;;;;;;;-1:-1:-1;46486:30:0;;;;;;;;33037:2800;;;;;;;;;;-1:-1:-1;33037:2800:0;;;;;:::i;:::-;;:::i;24662:185::-;;;;;;;;;;-1:-1:-1;24662:185:0;;;;;:::i;:::-;;:::i;48782:105::-;;;;;;;;;;-1:-1:-1;48782:105:0;;;;;:::i;:::-;;:::i;48468:86::-;;;;;;;;;;-1:-1:-1;48468:86:0;;;;;:::i;:::-;;:::i;21606:144::-;;;;;;;;;;-1:-1:-1;21606:144:0;;;;;:::i;:::-;;:::i;46719:49::-;;;;;;;;;;;;;;;46364:115;;;;;;;;;;;;;:::i;16849:224::-;;;;;;;;;;-1:-1:-1;16849:224:0;;;;;:::i;:::-;;:::i;1638:103::-;;;;;;;;;;;;;:::i;47194:89::-;;;;;;;;;;;;;:::i;990:87::-;;;;;;;;;;-1:-1:-1;1036:7:0;1063:6;-1:-1:-1;;;;;1063:6:0;990:87;;21986:104;;;;;;;;;;;;;:::i;48560:97::-;;;;;;;;;;-1:-1:-1;48560:97:0;;;;;:::i;:::-;;:::i;47505:957::-;;;;;;:::i;:::-;;:::i;24048:308::-;;;;;;;;;;-1:-1:-1;24048:308:0;;;;;:::i;:::-;;:::i;46667:45::-;;;;;;;;;;;;;;;46523:33;;;;;;;;;;-1:-1:-1;46523:33:0;;;;;;;;;;;24918:399;;;;;;;;;;-1:-1:-1;24918:399:0;;;;;:::i;:::-;;:::i;22161:327::-;;;;;;;;;;-1:-1:-1;22161:327:0;;;;;:::i;:::-;;:::i;46618:42::-;;;;;;;;;;;;;;;47289:109;;;;;;;;;;-1:-1:-1;47289:109:0;;;;;:::i;:::-;;:::i;47097:91::-;;;;;;;;;;-1:-1:-1;47084:1:0;47097:91;47194:89;46563:48;;;;;;;;;;;;;;;48893:315;;;;;;;;;;-1:-1:-1;48893:315:0;;;;;:::i;:::-;;:::i;24427:164::-;;;;;;;;;;-1:-1:-1;24427:164:0;;;;;:::i;:::-;;:::i;1896:201::-;;;;;;;;;;-1:-1:-1;1896:201:0;;;;;:::i;:::-;;:::i;16170:615::-;16255:4;-1:-1:-1;;;;;;;;;16555:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16632:25:0;;;16555:102;:179;;;-1:-1:-1;;;;;;;;;;16709:25:0;;;16555:179;16535:199;16170:615;-1:-1:-1;;16170:615:0:o;21817:100::-;21871:13;21904:5;21897:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21817:100;:::o;23772:204::-;23840:7;23865:16;23873:7;23865;:16::i;:::-;23860:64;;23890:34;;-1:-1:-1;;;23890:34:0;;;;;;;;;;;23860:64;-1:-1:-1;23944:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23944:24:0;;23772:204::o;23320:386::-;23393:13;23409:16;23417:7;23409;:16::i;:::-;23393:32;-1:-1:-1;44220:10:0;-1:-1:-1;;;;;23442:28:0;;;23438:175;;23490:44;23507:5;44220:10;24427:164;:::i;23490:44::-;23485:128;;23562:35;;-1:-1:-1;;;23562:35:0;;;;;;;;;;;23485:128;23625:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23625:29:0;-1:-1:-1;;;;;23625:29:0;;;;;;;;;23670:28;;23625:24;;23670:28;;;;;;;23382:324;23320:386;;:::o;48663:113::-;876:13;:11;:13::i;:::-;48738:14:::1;:32:::0;;;::::1;;;;-1:-1:-1::0;;48738:32:0;;::::1;::::0;;;::::1;::::0;;48663:113::o;33037:2800::-;33171:27;33201;33220:7;33201:18;:27::i;:::-;33171:57;;33286:4;-1:-1:-1;;;;;33245:45:0;33261:19;-1:-1:-1;;;;;33245:45:0;;33241:86;;33299:28;;-1:-1:-1;;;33299:28:0;;;;;;;;;;;33241:86;33341:27;31767:21;;;31594:15;31809:4;31802:36;31891:4;31875:21;;31981:26;;44220:10;32734:30;;;-1:-1:-1;;;;;32432:26:0;;32713:19;;;32710:55;33520:174;;33607:43;33624:4;44220:10;24427:164;:::i;33607:43::-;33602:92;;33659:35;;-1:-1:-1;;;33659:35:0;;;;;;;;;;;33602:92;-1:-1:-1;;;;;33711:16:0;;33707:52;;33736:23;;-1:-1:-1;;;33736:23:0;;;;;;;;;;;33707:52;33908:15;33905:160;;;34048:1;34027:19;34020:30;33905:160;-1:-1:-1;;;;;34443:24:0;;;;;;;:18;:24;;;;;;34441:26;;-1:-1:-1;;34441:26:0;;;34512:22;;;;;;;;;34510:24;;-1:-1:-1;34510:24:0;;;21505:11;21481:22;21477:40;21464:62;-1:-1:-1;;;21464:62:0;34805:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;35099:46:0;;:51;;35095:626;;35203:1;35193:11;;35171:19;35326:30;;;:17;:30;;;;;;:35;;35322:384;;35464:13;;35449:11;:28;35445:242;;35611:30;;;;:17;:30;;;;;:52;;;35445:242;35152:569;35095:626;35768:7;35764:2;-1:-1:-1;;;;;35749:27:0;35758:4;-1:-1:-1;;;;;35749:27:0;;;;;;;;;;;35787:42;33160:2677;;;33037:2800;;;:::o;24662:185::-;24800:39;24817:4;24823:2;24827:7;24800:39;;;;;;;;;;;;:16;:39::i;:::-;24662:185;;;:::o;48782:105::-;876:13;:11;:13::i;:::-;48838:43:::1;::::0;-1:-1:-1;;;;;48838:20:0;::::1;::::0;48859:21:::1;48838:43:::0;::::1;;;::::0;::::1;::::0;;;48859:21;48838:20;:43;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48782:105:::0;:::o;48468:86::-;876:13;:11;:13::i;:::-;48535:7:::1;:13;48545:3:::0;;48535:7;:13:::1;:::i;21606:144::-:0;21670:7;21713:27;21732:7;21713:18;:27::i;46364:115::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16849:224::-;16913:7;-1:-1:-1;;;;;16937:19:0;;16933:60;;16965:28;;-1:-1:-1;;;16965:28:0;;;;;;;;;;;16933:60;-1:-1:-1;;;;;;17011:25:0;;;;;:18;:25;;;;;;11404:13;17011:54;;16849:224::o;1638:103::-;876:13;:11;:13::i;:::-;1703:30:::1;1730:1;1703:18;:30::i;:::-;1638:103::o:0;47194:89::-;47240:7;47263:14;14993:13;;;14919:95;47263:14;47256:21;;47194:89;:::o;21986:104::-;22042:13;22075:7;22068:14;;;;;:::i;48560:97::-;876:13;:11;:13::i;:::-;48627:10:::1;:24:::0;;-1:-1:-1;;48627:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48560:97::o;47505:957::-;47588:10;;;;47580:24;;;;-1:-1:-1;;;47580:24:0;;10403:2:1;47580:24:0;;;10385:21:1;10442:1;10422:18;;;10415:29;-1:-1:-1;;;10460:18:1;;;10453:31;10501:18;;47580:24:0;;;;;;;;;47615:21;47656:1;47639:14;14993:13;;;14919:95;47639:14;:18;47615:42;;47704:9;47691:8;47675:13;:24;47674:39;;47666:53;;;;-1:-1:-1;;;47666:53:0;;10732:2:1;47666:53:0;;;10714:21:1;10771:1;10751:18;;;10744:29;-1:-1:-1;;;10789:18:1;;;10782:31;10830:18;;47666:53:0;10530:324:1;47666:53:0;47767:10;47730:20;17244:25;;;:18;:25;;11541:2;17244:25;;;;;:49;;11404:13;17243:80;47824:15;47796:23;;;47795:44;;47787:58;;;;-1:-1:-1;;;47787:58:0;;11061:2:1;47787:58:0;;;11043:21:1;11100:1;11080:18;;;11073:29;-1:-1:-1;;;11118:18:1;;;11111:31;11159:18;;47787:58:0;10859:324:1;47787:58:0;47860:14;;;;;;;:23;;:48;;;47904:4;47887:13;:21;;47860:48;47856:558;;;47954:8;47942:9;:20;47929:9;:33;;47921:47;;;;-1:-1:-1;;;47921:47:0;;11390:2:1;47921:47:0;;;11372:21:1;11429:1;11409:18;;;11402:29;-1:-1:-1;;;11447:18:1;;;11440:31;11488:18;;47921:47:0;11188:324:1;47921:47:0;47856:558;;;47995:24;48037:19;48022:12;:34;:97;;48107:12;48022:97;;;48072:19;48022:97;47995:124;;48130:20;48175:16;48153:19;:38;:109;;48261:1;48153:109;;;48229:16;48207:19;:38;48153:109;48130:132;;48332:12;48321:8;:23;:53;;48373:1;48321:53;;;48358:12;48347:8;:23;48321:53;48308:9;:67;48295:9;:80;;48273:131;;;;-1:-1:-1;;;48273:131:0;;11719:2:1;48273:131:0;;;11701:21:1;11758:1;11738:18;;;11731:29;-1:-1:-1;;;11776:18:1;;;11769:31;11817:18;;48273:131:0;11517:324:1;48273:131:0;47984:430;;47856:558;47561:860;;48429:27;48435:10;48447:8;48429:5;:27::i;:::-;47505:957;:::o;24048:308::-;44220:10;-1:-1:-1;;;;;24147:31:0;;;24143:61;;24187:17;;-1:-1:-1;;;24187:17:0;;;;;;;;;;;24143:61;44220:10;24217:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24217:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24217:60:0;;;;;;;;;;24293:55;;540:41:1;;;24217:49:0;;44220:10;24293:55;;513:18:1;24293:55:0;;;;;;;24048:308;;:::o;24918:399::-;25085:31;25098:4;25104:2;25108:7;25085:12;:31::i;:::-;-1:-1:-1;;;;;25131:14:0;;;:19;25127:183;;25170:56;25201:4;25207:2;25211:7;25220:5;25170:30;:56::i;:::-;25165:145;;25254:40;;-1:-1:-1;;;25254:40:0;;;;;;;;;;;25165:145;24918:399;;;;:::o;22161:327::-;22234:13;22265:16;22273:7;22265;:16::i;:::-;22260:59;;22290:29;;-1:-1:-1;;;22290:29:0;;;;;;;;;;;22260:59;22332:21;22356:10;:8;:10::i;:::-;22332:34;;22390:7;22384:21;22409:1;22384:26;:96;;;;;;;;;;;;;;;;;22437:7;22446:18;22456:7;22446:9;:18::i;:::-;22420:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22384:96;22377:103;22161:327;-1:-1:-1;;;22161:327:0:o;47289:109::-;-1:-1:-1;;;;;17244:25:0;;47349:7;17244:25;;;:18;:25;;11541:2;17244:25;;;;11404:13;17244:49;;17243:80;47372:20;17155:176;48893:315;876:13;:11;:13::i;:::-;49009:9:::1;49004:199;49028:17;:24;49024:1;:28;49004:199;;;49111:9;49092:12;49105:1;49092:15;;;;;;;;:::i;:::-;;;;;;;49076:13;15490:12:::0;;47084:1;15474:13;-1:-1:-1;;15474:28:0;;;:46;;15224:315;49076:13:::1;:31;;;;:::i;:::-;:44;;49068:70;;;::::0;-1:-1:-1;;;49068:70:0;;13110:2:1;49068:70:0::1;::::0;::::1;13092:21:1::0;13149:2;13129:18;;;13122:30;-1:-1:-1;;;13168:18:1;;;13161:43;13221:18;;49068:70:0::1;12908:337:1::0;49068:70:0::1;49147:48;49157:17;49175:1;49157:20;;;;;;;;:::i;:::-;;;;;;;49179:12;49192:1;49179:15;;;;;;;;:::i;:::-;;;;;;;49147:9;:48::i;:::-;49054:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49004:199;;24427:164:::0;-1:-1:-1;;;;;24548:25:0;;;24524:4;24548:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24427:164::o;1896:201::-;876:13;:11;:13::i;:::-;-1:-1:-1;;;;;1985:22:0;::::1;1977:73;;;::::0;-1:-1:-1;;;1977:73:0;;13592:2:1;1977:73:0::1;::::0;::::1;13574:21:1::0;13631:2;13611:18;;;13604:30;13670:34;13650:18;;;13643:62;-1:-1:-1;;;13721:18:1;;;13714:36;13767:19;;1977:73:0::1;13390:402:1::0;1977:73:0::1;2061:28;2080:8;2061:18;:28::i;25572:273::-:0;25629:4;25685:7;47084:1;25666:26;;:66;;;;;25719:13;;25709:7;:23;25666:66;:152;;;;-1:-1:-1;;25770:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25770:43:0;:48;;25572:273::o;1155:132::-;1036:7;1063:6;-1:-1:-1;;;;;1063:6:0;44220:10;1219:23;1211:68;;;;-1:-1:-1;;;1211:68:0;;13999:2:1;1211:68:0;;;13981:21:1;;;14018:18;;;14011:30;14077:34;14057:18;;;14050:62;14129:18;;1211:68:0;13797:356:1;18523:1129:0;18590:7;18625;;47084:1;18674:23;18670:915;;18727:13;;18720:4;:20;18716:869;;;18765:14;18782:23;;;:17;:23;;;;;;;-1:-1:-1;;;18871:23:0;;:28;;18867:699;;19390:113;19397:6;19407:1;19397:11;19390:113;;-1:-1:-1;;;19468:6:0;19450:25;;;;:17;:25;;;;;;19390:113;;18867:699;18742:843;18716:869;19613:31;;-1:-1:-1;;;19613:31:0;;;;;;;;;;;2257:191;2331:16;2350:6;;-1:-1:-1;;;;;2367:17:0;;;-1:-1:-1;;;;;;2367:17:0;;;;;;2400:40;;2350:6;;;;;;;2400:40;;2331:16;2400:40;2320:128;2257:191;:::o;27403:1529::-;27491:13;;-1:-1:-1;;;;;27519:16:0;;27515:48;;27544:19;;-1:-1:-1;;;27544:19:0;;;;;;;;;;;27515:48;27578:8;27590:1;27578:13;27574:44;;27600:18;;-1:-1:-1;;;27600:18:0;;;;;;;;;;;27574:44;-1:-1:-1;;;;;28106:22:0;;;;;;:18;:22;;11541:2;28106:22;;:70;;28144:31;28132:44;;28106:70;;;21505:11;21481:22;21477:40;-1:-1:-1;23224:15:0;;23199:23;23195:45;21474:51;21464:62;28419:31;;;;:17;:31;;;;;:173;28437:12;28668:23;;;28706:101;28733:35;;28758:9;;;;;-1:-1:-1;;;;;28733:35:0;;;28750:1;;28733:35;;28750:1;;28733:35;28802:3;28792:7;:13;28706:101;;28823:13;:19;-1:-1:-1;24662:185:0;;;:::o;39788:716::-;39972:88;;-1:-1:-1;;;39972:88:0;;39951:4;;-1:-1:-1;;;;;39972:45:0;;;;;:88;;44220:10;;40039:4;;40045:7;;40054:5;;39972:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39972:88:0;;;;;;;;-1:-1:-1;;39972:88:0;;;;;;;;;;;;:::i;:::-;;;39968:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40255:6;:13;40272:1;40255:18;40251:235;;40301:40;;-1:-1:-1;;;40301:40:0;;;;;;;;;;;40251:235;40444:6;40438:13;40429:6;40425:2;40421:15;40414:38;39968:529;-1:-1:-1;;;;;;40131:64:0;-1:-1:-1;;;40131:64:0;;-1:-1:-1;39788:716:0;;;;;;:::o;46904:94::-;46956:13;46985:7;46978:14;;;;;:::i;44344:1960::-;44813:4;44807:11;;44820:3;44803:21;;44898:17;;;;45594:11;;;45473:5;45726:2;45740;45730:13;;45722:22;45594:11;45709:36;45781:2;45771:13;;45365:697;45800:4;45365:697;;;45991:1;45986:3;45982:11;45975:18;;46042:2;46036:4;46032:13;46028:2;46024:22;46019:3;46011:36;45895:2;45885:13;;45365:697;;;-1:-1:-1;46092:13:0;;;-1:-1:-1;;46207:12:0;;;46267:19;;;46207:12;44344:1960;-1:-1:-1;44344:1960:0:o;25929:104::-;25998:27;26008:2;26012:8;25998:27;;;;;;;;;;;;26572:19;26578:2;26582:8;26572:5;:19::i;:::-;-1:-1:-1;;;;;26633:14:0;;;:19;26629:483;;26687:13;;26735:14;;;26768:233;26799:62;26838:1;26842:2;26846:7;;;;;;26855:5;26799:30;:62::i;:::-;26794:167;;26897:40;;-1:-1:-1;;;26897:40:0;;;;;;;;;;;26794:167;26996:3;26988:5;:11;26768:233;;27083:3;27066:13;;:20;27062:34;;27088:8;;;27062:34;26654:458;;26449:681;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;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:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:160::-;2425:20;;2481:13;;2474:21;2464:32;;2454:60;;2510:1;2507;2500:12;2525:180;2581:6;2634:2;2622:9;2613:7;2609:23;2605:32;2602:52;;;2650:1;2647;2640:12;2602:52;2673:26;2689:9;2673:26;:::i;2710:328::-;2787:6;2795;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;3028:2;3017:9;3013:18;3000:32;2990:42;;2710:328;;;;;:::o;3043:186::-;3102:6;3155:2;3143:9;3134:7;3130:23;3126:32;3123:52;;;3171:1;3168;3161:12;3123:52;3194:29;3213:9;3194:29;:::i;3234:592::-;3305:6;3313;3366:2;3354:9;3345:7;3341:23;3337:32;3334:52;;;3382:1;3379;3372:12;3334:52;3422:9;3409:23;3451:18;3492:2;3484:6;3481:14;3478:34;;;3508:1;3505;3498:12;3478:34;3546:6;3535:9;3531:22;3521:32;;3591:7;3584:4;3580:2;3576:13;3572:27;3562:55;;3613:1;3610;3603:12;3562:55;3653:2;3640:16;3679:2;3671:6;3668:14;3665:34;;;3695:1;3692;3685:12;3665:34;3740:7;3735:2;3726:6;3722:2;3718:15;3714:24;3711:37;3708:57;;;3761:1;3758;3751:12;3708:57;3792:2;3784:11;;;;;3814:6;;-1:-1:-1;3234:592:1;;-1:-1:-1;;;;3234:592:1:o;3831:254::-;3896:6;3904;3957:2;3945:9;3936:7;3932:23;3928:32;3925:52;;;3973:1;3970;3963:12;3925:52;3996:29;4015:9;3996:29;:::i;:::-;3986:39;;4044:35;4075:2;4064:9;4060:18;4044:35;:::i;:::-;4034:45;;3831:254;;;;;:::o;4090:127::-;4151:10;4146:3;4142:20;4139:1;4132:31;4182:4;4179:1;4172:15;4206:4;4203:1;4196:15;4222:275;4293:2;4287:9;4358:2;4339:13;;-1:-1:-1;;4335:27:1;4323:40;;4393:18;4378:34;;4414:22;;;4375:62;4372:88;;;4440:18;;:::i;:::-;4476:2;4469:22;4222:275;;-1:-1:-1;4222:275:1:o;4502:980::-;4597:6;4605;4613;4621;4674:3;4662:9;4653:7;4649:23;4645:33;4642:53;;;4691:1;4688;4681:12;4642:53;4714:29;4733:9;4714:29;:::i;:::-;4704:39;;4762:2;4783:38;4817:2;4806:9;4802:18;4783:38;:::i;:::-;4773:48;;4868:2;4857:9;4853:18;4840:32;4830:42;;4923:2;4912:9;4908:18;4895:32;4946:18;4987:2;4979:6;4976:14;4973:34;;;5003:1;5000;4993:12;4973:34;5041:6;5030:9;5026:22;5016:32;;5086:7;5079:4;5075:2;5071:13;5067:27;5057:55;;5108:1;5105;5098:12;5057:55;5144:2;5131:16;5166:2;5162;5159:10;5156:36;;;5172:18;;:::i;:::-;5214:53;5257:2;5238:13;;-1:-1:-1;;5234:27:1;5230:36;;5214:53;:::i;:::-;5201:66;;5290:2;5283:5;5276:17;5330:7;5325:2;5320;5316;5312:11;5308:20;5305:33;5302:53;;;5351:1;5348;5341:12;5302:53;5406:2;5401;5397;5393:11;5388:2;5381:5;5377:14;5364:45;5450:1;5445:2;5440;5433:5;5429:14;5425:23;5418:34;;5471:5;5461:15;;;;;4502:980;;;;;;;:::o;5487:183::-;5547:4;5580:18;5572:6;5569:30;5566:56;;;5602:18;;:::i;:::-;-1:-1:-1;5647:1:1;5643:14;5659:4;5639:25;;5487:183::o;5675:662::-;5729:5;5782:3;5775:4;5767:6;5763:17;5759:27;5749:55;;5800:1;5797;5790:12;5749:55;5836:6;5823:20;5862:4;5886:60;5902:43;5942:2;5902:43;:::i;:::-;5886:60;:::i;:::-;5980:15;;;6066:1;6062:10;;;;6050:23;;6046:32;;;6011:12;;;;6090:15;;;6087:35;;;6118:1;6115;6108:12;6087:35;6154:2;6146:6;6142:15;6166:142;6182:6;6177:3;6174:15;6166:142;;;6248:17;;6236:30;;6286:12;;;;6199;;6166:142;;;-1:-1:-1;6326:5:1;5675:662;-1:-1:-1;;;;;;5675:662:1:o;6342:1146::-;6460:6;6468;6521:2;6509:9;6500:7;6496:23;6492:32;6489:52;;;6537:1;6534;6527:12;6489:52;6577:9;6564:23;6606:18;6647:2;6639:6;6636:14;6633:34;;;6663:1;6660;6653:12;6633:34;6701:6;6690:9;6686:22;6676:32;;6746:7;6739:4;6735:2;6731:13;6727:27;6717:55;;6768:1;6765;6758:12;6717:55;6804:2;6791:16;6826:4;6850:60;6866:43;6906:2;6866:43;:::i;6850:60::-;6944:15;;;7026:1;7022:10;;;;7014:19;;7010:28;;;6975:12;;;;7050:19;;;7047:39;;;7082:1;7079;7072:12;7047:39;7106:11;;;;7126:148;7142:6;7137:3;7134:15;7126:148;;;7208:23;7227:3;7208:23;:::i;:::-;7196:36;;7159:12;;;;7252;;;;7126:148;;;7293:5;-1:-1:-1;;7336:18:1;;7323:32;;-1:-1:-1;;7367:16:1;;;7364:36;;;7396:1;7393;7386:12;7364:36;;7419:63;7474:7;7463:8;7452:9;7448:24;7419:63;:::i;:::-;7409:73;;;6342:1146;;;;;:::o;7493:260::-;7561:6;7569;7622:2;7610:9;7601:7;7597:23;7593:32;7590:52;;;7638:1;7635;7628:12;7590:52;7661:29;7680:9;7661:29;:::i;:::-;7651:39;;7709:38;7743:2;7732:9;7728:18;7709:38;:::i;7758:380::-;7837:1;7833:12;;;;7880;;;7901:61;;7955:4;7947:6;7943:17;7933:27;;7901:61;8008:2;8000:6;7997:14;7977:18;7974:38;7971:161;;8054:10;8049:3;8045:20;8042:1;8035:31;8089:4;8086:1;8079:15;8117:4;8114:1;8107:15;7971:161;;7758:380;;;:::o;8269:545::-;8371:2;8366:3;8363:11;8360:448;;;8407:1;8432:5;8428:2;8421:17;8477:4;8473:2;8463:19;8547:2;8535:10;8531:19;8528:1;8524:27;8518:4;8514:38;8583:4;8571:10;8568:20;8565:47;;;-1:-1:-1;8606:4:1;8565:47;8661:2;8656:3;8652:12;8649:1;8645:20;8639:4;8635:31;8625:41;;8716:82;8734:2;8727:5;8724:13;8716:82;;;8779:17;;;8760:1;8749:13;8716:82;;8990:1206;9114:18;9109:3;9106:27;9103:53;;;9136:18;;:::i;:::-;9165:94;9255:3;9215:38;9247:4;9241:11;9215:38;:::i;:::-;9209:4;9165:94;:::i;:::-;9285:1;9310:2;9305:3;9302:11;9327:1;9322:616;;;;9982:1;9999:3;9996:93;;;-1:-1:-1;10055:19:1;;;10042:33;9996:93;-1:-1:-1;;8947:1:1;8943:11;;;8939:24;8935:29;8925:40;8971:1;8967:11;;;8922:57;10102:78;;9295:895;;9322:616;8216:1;8209:14;;;8253:4;8240:18;;-1:-1:-1;;9358:17:1;;;9459:9;9481:229;9495:7;9492:1;9489:14;9481:229;;;9584:19;;;9571:33;9556:49;;9691:4;9676:20;;;;9644:1;9632:14;;;;9511:12;9481:229;;;9485:3;9738;9729:7;9726:16;9723:159;;;9862:1;9858:6;9852:3;9846;9843:1;9839:11;9835:21;9831:34;9827:39;9814:9;9809:3;9805:19;9792:33;9788:79;9780:6;9773:95;9723:159;;;9925:1;9919:3;9916:1;9912:11;9908:19;9902:4;9895:33;9295:895;;8990:1206;;;:::o;11846:663::-;12126:3;12164:6;12158:13;12180:66;12239:6;12234:3;12227:4;12219:6;12215:17;12180:66;:::i;:::-;12309:13;;12268:16;;;;12331:70;12309:13;12268:16;12378:4;12366:17;;12331:70;:::i;:::-;-1:-1:-1;;;12423:20:1;;12452:22;;;12501:1;12490:13;;11846:663;-1:-1:-1;;;;11846:663:1:o;12514:127::-;12575:10;12570:3;12566:20;12563:1;12556:31;12606:4;12603:1;12596:15;12630:4;12627:1;12620:15;12646:127;12707:10;12702:3;12698:20;12695:1;12688:31;12738:4;12735:1;12728:15;12762:4;12759:1;12752:15;12778:125;12843:9;;;12864:10;;;12861:36;;;12877:18;;:::i;13250:135::-;13289:3;13310:17;;;13307:43;;13330:18;;:::i;:::-;-1:-1:-1;13377:1:1;13366:13;;13250:135::o;14158:489::-;-1:-1:-1;;;;;14427:15:1;;;14409:34;;14479:15;;14474:2;14459:18;;14452:43;14526:2;14511:18;;14504:34;;;14574:3;14569:2;14554:18;;14547:31;;;14352:4;;14595:46;;14621:19;;14613:6;14595:46;:::i;:::-;14587:54;14158:489;-1:-1:-1;;;;;;14158:489:1:o;14652:249::-;14721:6;14774:2;14762:9;14753:7;14749:23;14745:32;14742:52;;;14790:1;14787;14780:12;14742:52;14822:9;14816:16;14841:30;14865:5;14841:30;:::i

Swarm Source

ipfs://a412c57cead6531d2b14a96477ce6f87801257e23c6ca68e791ae9cf835d7ac7
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.