ETH Price: $3,244.83 (-0.43%)
Gas: 1 Gwei

Token

Just Mogwaiz (JMOGZ)
 

Overview

Max Total Supply

189 JMOGZ

Holders

101

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
glennaclawz.eth
Balance
1 JMOGZ
0x646f2cd15d6f270dcf710f554d826aaaaa068cf5
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:
JustMogwaiz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-17
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.3.2 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.3.2 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.3.2 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.3.2 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.3.2 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.3.2 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.3.2 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: mogwaiz.sol

pragma solidity ^0.8.0;




/// SPDX-License-Identifier: UNLICENSED

contract JustMogwaiz is ERC721Enumerable, Ownable {
   
   using Strings for uint256;
   using Counters for Counters.Counter;
   
   
    string public baseURI;
    string public baseExtension = ".json";
    uint256 public maxSupply = 10008;
    uint256 public price = 0.08 ether;
    
    bool public mogwaizPresaleOpen = false;
    bool public mogwaizMainsaleOpen = false;
    
    Counters.Counter private _tokenIdTracker;

    mapping (address => bool) whiteListed;
   
    constructor(string memory _initBaseURI) ERC721("Just Mogwaiz", "JMOGZ")
    {
        setBaseURI(_initBaseURI);
    }
    
    modifier isPresaleOpen
    {
         require(mogwaizPresaleOpen == true);
         _;
    }

    modifier isMainsaleOpen
    {
         require(mogwaizMainsaleOpen == true);
         _;
    }

    function changePresale(bool _presale) public onlyOwner
    {
        mogwaizPresaleOpen = _presale;
    }
 
    function changeMainsale(bool _mainsale) public onlyOwner
    {
        mogwaizMainsaleOpen = _mainsale;
    } 
    
    function totalToken() public view returns (uint256) {
            return _tokenIdTracker.current();
    }
    
    function addWhiteList(address _whiteListedAddress) public onlyOwner
    {
        whiteListed[_whiteListedAddress] = true;
    }
    function removeWhiteList(address _whiteListedAddress) public onlyOwner
    {
        whiteListed[_whiteListedAddress] = false;
    }   
   
    function preSale(uint8 mintTotal)public payable isPresaleOpen
    {
        require(whiteListed[msg.sender], "You aren't whitelisted!");
        require(mintTotal >= 1 , "Mint Amount Incorrect");
        require(msg.value >= price * mintTotal, "Minting a Mogwaiz Costs 0.08 Ether Each!");
        require(totalToken() < maxSupply, "SOLD OUT!");
       
        for(uint i=0;i<mintTotal;i++)
        {
            _tokenIdTracker.increment();
            _safeMint(msg.sender, totalToken());
        }
    } 
    
    
    function mainSale(uint8 mintTotal)public payable isMainsaleOpen
    {
        require(mintTotal >= 1 , "Mint Amount Incorrect");
        require(msg.value >= price * mintTotal, "Minting a Mogwaiz Costs 0.08 Ether Each!");
        require(totalToken() < maxSupply, "SOLD OUT!");
       
        for(uint i=0;i<mintTotal;i++)
        {
            _tokenIdTracker.increment();
            _safeMint(msg.sender, totalToken());
        }
    }
   
    function withdrawContractEther(address payable recipient) external onlyOwner
    {
        recipient.transfer(getBalance());
    }
    function getBalance() public view returns(uint)
    {
        return address(this).balance;
    }
   
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
   
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }
   
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_whiteListedAddress","type":"address"}],"name":"addWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_mainsale","type":"bool"}],"name":"changeMainsale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_presale","type":"bool"}],"name":"changePresale","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint8","name":"mintTotal","type":"uint8"}],"name":"mainSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mogwaizMainsaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mogwaizPresaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"mintTotal","type":"uint8"}],"name":"preSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_whiteListedAddress","type":"address"}],"name":"removeWhiteList","outputs":[],"stateMutability":"nonpayable","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalToken","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":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"withdrawContractEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001da565b50612718600d5567011c37937e080000600e55600f805461ffff191690553480156200005357600080fd5b506040516200282038038062002820833981016040819052620000769162000280565b604080518082018252600c81526b253ab9ba1026b7b3bbb0b4bd60a11b6020808301918252835180850190945260058452642526a7a3ad60d91b908401528151919291620000c791600091620001da565b508051620000dd906001906020840190620001da565b505050620000fa620000f46200010c60201b60201c565b62000110565b620001058162000162565b50620003af565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001c15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001d690600b906020840190620001da565b5050565b828054620001e8906200035c565b90600052602060002090601f0160209004810192826200020c576000855562000257565b82601f106200022757805160ff191683800117855562000257565b8280016001018555821562000257579182015b82811115620002575782518255916020019190600101906200023a565b506200026592915062000269565b5090565b5b808211156200026557600081556001016200026a565b600060208083850312156200029457600080fd5b82516001600160401b0380821115620002ac57600080fd5b818501915085601f830112620002c157600080fd5b815181811115620002d657620002d662000399565b604051601f8201601f19908116603f0116810190838211818310171562000301576200030162000399565b8160405282815288868487010111156200031a57600080fd5b600093505b828410156200033e57848401860151818501870152928501926200031f565b82841115620003505760008684830101525b98975050505050505050565b600181811c908216806200037157607f821691505b602082108114156200039357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61246180620003bf6000396000f3fe6080604052600436106102045760003560e01c80636c0360eb11610118578063b573f104116100a0578063d5abeb011161006f578063d5abeb0114610595578063e341afdf146105ab578063e7cd4a04146105be578063e985e9c5146105de578063f2fde38b1461062757600080fd5b8063b573f10414610520578063b88d4fde14610540578063c668286214610560578063c87b56dd1461057557600080fd5b80638da5cb5b116100e75780638da5cb5b1461049757806395d89b41146104b5578063a035b1fe146104ca578063a16d605a146104e0578063a22cb4651461050057600080fd5b80636c0360eb1461043357806370a0823114610448578063715018a6146104685780637ce305491461047d57600080fd5b806323b872dd1161019b57806348caf7ef1161016a57806348caf7ef146103ab5780634f6ccce7146103be57806355f804b3146103de578063626be567146103fe5780636352211e1461041357600080fd5b806323b872dd1461032c57806324d6b6581461034c5780632f745c591461036b57806342842e0e1461038b57600080fd5b806309f2b571116101d757806309f2b571146102ba57806312065fe0146102da57806318160ddd146102f75780632042e5c21461030c57600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611f7b565b610647565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610672565b6040516102359190612167565b34801561026c57600080fd5b5061028061027b366004611ffe565b610704565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611f34565b61079e565b005b3480156102c657600080fd5b506102b86102d5366004611f60565b6108b4565b3480156102e657600080fd5b50475b604051908152602001610235565b34801561030357600080fd5b506008546102e9565b34801561031857600080fd5b506102b8610327366004611de8565b6108f8565b34801561033857600080fd5b506102b8610347366004611e3e565b610943565b34801561035857600080fd5b50600f5461022990610100900460ff1681565b34801561037757600080fd5b506102e9610386366004611f34565b610974565b34801561039757600080fd5b506102b86103a6366004611e3e565b610a0a565b6102b86103b9366004612017565b610a25565b3480156103ca57600080fd5b506102e96103d9366004611ffe565b610b9b565b3480156103ea57600080fd5b506102b86103f9366004611fb5565b610c2e565b34801561040a57600080fd5b506102e9610c6b565b34801561041f57600080fd5b5061028061042e366004611ffe565b610c7b565b34801561043f57600080fd5b50610253610cf2565b34801561045457600080fd5b506102e9610463366004611de8565b610d80565b34801561047457600080fd5b506102b8610e07565b34801561048957600080fd5b50600f546102299060ff1681565b3480156104a357600080fd5b50600a546001600160a01b0316610280565b3480156104c157600080fd5b50610253610e3d565b3480156104d657600080fd5b506102e9600e5481565b3480156104ec57600080fd5b506102b86104fb366004611de8565b610e4c565b34801561050c57600080fd5b506102b861051b366004611eff565b610eab565b34801561052c57600080fd5b506102b861053b366004611f60565b610eb6565b34801561054c57600080fd5b506102b861055b366004611e7f565b610ef3565b34801561056c57600080fd5b50610253610f2b565b34801561058157600080fd5b50610253610590366004611ffe565b610f38565b3480156105a157600080fd5b506102e9600d5481565b6102b86105b9366004612017565b611016565b3480156105ca57600080fd5b506102b86105d9366004611de8565b61112a565b3480156105ea57600080fd5b506102296105f9366004611e05565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063357600080fd5b506102b8610642366004611de8565b611178565b60006001600160e01b0319821663780e9d6360e01b148061066c575061066c82611213565b92915050565b60606000805461068190612328565b80601f01602080910402602001604051908101604052809291908181526020018280546106ad90612328565b80156106fa5780601f106106cf576101008083540402835291602001916106fa565b820191906000526020600020905b8154815290600101906020018083116106dd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107a982610c7b565b9050806001600160a01b0316836001600160a01b031614156108175760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610779565b336001600160a01b0382161480610833575061083381336105f9565b6108a55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610779565b6108af8383611263565b505050565b600a546001600160a01b031633146108de5760405162461bcd60e51b815260040161077990612214565b600f80549115156101000261ff0019909216919091179055565b600a546001600160a01b031633146109225760405162461bcd60e51b815260040161077990612214565b6001600160a01b03166000908152601160205260409020805460ff19169055565b61094d33826112d1565b6109695760405162461bcd60e51b815260040161077990612249565b6108af8383836113c8565b600061097f83610d80565b82106109e15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610779565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108af83838360405180602001604052806000815250610ef3565b600f5460ff161515600114610a3957600080fd5b3360009081526011602052604090205460ff16610a985760405162461bcd60e51b815260206004820152601760248201527f596f75206172656e27742077686974656c6973746564210000000000000000006044820152606401610779565b60018160ff161015610ae45760405162461bcd60e51b8152602060048201526015602482015274135a5b9d08105b5bdd5b9d08125b98dbdc9c9958dd605a1b6044820152606401610779565b8060ff16600e54610af591906122c6565b341015610b145760405162461bcd60e51b8152600401610779906121cc565b600d54610b1f610c6b565b10610b585760405162461bcd60e51b8152602060048201526009602482015268534f4c44204f55542160b81b6044820152606401610779565b60005b8160ff16811015610b9757610b74601080546001019055565b610b8533610b80610c6b565b611573565b80610b8f81612363565b915050610b5b565b5050565b6000610ba660085490565b8210610c095760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610779565b60088281548110610c1c57610c1c6123d4565b90600052602060002001549050919050565b600a546001600160a01b03163314610c585760405162461bcd60e51b815260040161077990612214565b8051610b9790600b906020840190611cc4565b6000610c7660105490565b905090565b6000818152600260205260408120546001600160a01b03168061066c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610779565b600b8054610cff90612328565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2b90612328565b8015610d785780601f10610d4d57610100808354040283529160200191610d78565b820191906000526020600020905b815481529060010190602001808311610d5b57829003601f168201915b505050505081565b60006001600160a01b038216610deb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610779565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e315760405162461bcd60e51b815260040161077990612214565b610e3b600061158d565b565b60606001805461068190612328565b600a546001600160a01b03163314610e765760405162461bcd60e51b815260040161077990612214565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610b97573d6000803e3d6000fd5b610b973383836115df565b600a546001600160a01b03163314610ee05760405162461bcd60e51b815260040161077990612214565b600f805460ff1916911515919091179055565b610efd33836112d1565b610f195760405162461bcd60e51b815260040161077990612249565b610f25848484846116ae565b50505050565b600c8054610cff90612328565b6000818152600260205260409020546060906001600160a01b0316610fb75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610779565b6000610fc16116e1565b90506000815111610fe1576040518060200160405280600081525061100f565b80610feb846116f0565b600c604051602001610fff93929190612066565b6040516020818303038152906040525b9392505050565b600f5460ff61010090910416151560011461103057600080fd5b60018160ff16101561107c5760405162461bcd60e51b8152602060048201526015602482015274135a5b9d08105b5bdd5b9d08125b98dbdc9c9958dd605a1b6044820152606401610779565b8060ff16600e5461108d91906122c6565b3410156110ac5760405162461bcd60e51b8152600401610779906121cc565b600d546110b7610c6b565b106110f05760405162461bcd60e51b8152602060048201526009602482015268534f4c44204f55542160b81b6044820152606401610779565b60005b8160ff16811015610b975761110c601080546001019055565b61111833610b80610c6b565b8061112281612363565b9150506110f3565b600a546001600160a01b031633146111545760405162461bcd60e51b815260040161077990612214565b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b600a546001600160a01b031633146111a25760405162461bcd60e51b815260040161077990612214565b6001600160a01b0381166112075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610779565b6112108161158d565b50565b60006001600160e01b031982166380ac58cd60e01b148061124457506001600160e01b03198216635b5e139f60e01b145b8061066c57506301ffc9a760e01b6001600160e01b031983161461066c565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061129882610c7b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661134a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610779565b600061135583610c7b565b9050806001600160a01b0316846001600160a01b031614806113905750836001600160a01b031661138584610704565b6001600160a01b0316145b806113c057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113db82610c7b565b6001600160a01b0316146114435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610779565b6001600160a01b0382166114a55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610779565b6114b08383836117ee565b6114bb600082611263565b6001600160a01b03831660009081526003602052604081208054600192906114e49084906122e5565b90915550506001600160a01b038216600090815260036020526040812080546001929061151290849061229a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610b978282604051806020016040528060008152506118a6565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116415760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610779565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116b98484846113c8565b6116c5848484846118d9565b610f255760405162461bcd60e51b81526004016107799061217a565b6060600b805461068190612328565b6060816117145750506040805180820190915260018152600360fc1b602082015290565b8160005b811561173e578061172881612363565b91506117379050600a836122b2565b9150611718565b60008167ffffffffffffffff811115611759576117596123ea565b6040519080825280601f01601f191660200182016040528015611783576020820181803683370190505b5090505b84156113c0576117986001836122e5565b91506117a5600a8661237e565b6117b090603061229a565b60f81b8183815181106117c5576117c56123d4565b60200101906001600160f81b031916908160001a9053506117e7600a866122b2565b9450611787565b6001600160a01b0383166118495761184481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61186c565b816001600160a01b0316836001600160a01b03161461186c5761186c83826119e6565b6001600160a01b038216611883576108af81611a83565b826001600160a01b0316826001600160a01b0316146108af576108af8282611b32565b6118b08383611b76565b6118bd60008484846118d9565b6108af5760405162461bcd60e51b81526004016107799061217a565b60006001600160a01b0384163b156119db57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061191d90339089908890889060040161212a565b602060405180830381600087803b15801561193757600080fd5b505af1925050508015611967575060408051601f3d908101601f1916820190925261196491810190611f98565b60015b6119c1573d808015611995576040519150601f19603f3d011682016040523d82523d6000602084013e61199a565b606091505b5080516119b95760405162461bcd60e51b81526004016107799061217a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113c0565b506001949350505050565b600060016119f384610d80565b6119fd91906122e5565b600083815260076020526040902054909150808214611a50576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a95906001906122e5565b60008381526009602052604081205460088054939450909284908110611abd57611abd6123d4565b906000526020600020015490508060088381548110611ade57611ade6123d4565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b1657611b166123be565b6001900381819060005260206000200160009055905550505050565b6000611b3d83610d80565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611bcc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610779565b6000818152600260205260409020546001600160a01b031615611c315760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610779565b611c3d600083836117ee565b6001600160a01b0382166000908152600360205260408120805460019290611c6690849061229a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cd090612328565b90600052602060002090601f016020900481019282611cf25760008555611d38565b82601f10611d0b57805160ff1916838001178555611d38565b82800160010185558215611d38579182015b82811115611d38578251825591602001919060010190611d1d565b50611d44929150611d48565b5090565b5b80821115611d445760008155600101611d49565b600067ffffffffffffffff80841115611d7857611d786123ea565b604051601f8501601f19908116603f01168101908282118183101715611da057611da06123ea565b81604052809350858152868686011115611db957600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611de357600080fd5b919050565b600060208284031215611dfa57600080fd5b813561100f81612400565b60008060408385031215611e1857600080fd5b8235611e2381612400565b91506020830135611e3381612400565b809150509250929050565b600080600060608486031215611e5357600080fd5b8335611e5e81612400565b92506020840135611e6e81612400565b929592945050506040919091013590565b60008060008060808587031215611e9557600080fd5b8435611ea081612400565b93506020850135611eb081612400565b925060408501359150606085013567ffffffffffffffff811115611ed357600080fd5b8501601f81018713611ee457600080fd5b611ef387823560208401611d5d565b91505092959194509250565b60008060408385031215611f1257600080fd5b8235611f1d81612400565b9150611f2b60208401611dd3565b90509250929050565b60008060408385031215611f4757600080fd5b8235611f5281612400565b946020939093013593505050565b600060208284031215611f7257600080fd5b61100f82611dd3565b600060208284031215611f8d57600080fd5b813561100f81612415565b600060208284031215611faa57600080fd5b815161100f81612415565b600060208284031215611fc757600080fd5b813567ffffffffffffffff811115611fde57600080fd5b8201601f81018413611fef57600080fd5b6113c084823560208401611d5d565b60006020828403121561201057600080fd5b5035919050565b60006020828403121561202957600080fd5b813560ff8116811461100f57600080fd5b600081518084526120528160208601602086016122fc565b601f01601f19169290920160200192915050565b6000845160206120798285838a016122fc565b85519184019161208c8184848a016122fc565b8554920191600090600181811c90808316806120a957607f831692505b8583108114156120c757634e487b7160e01b85526022600452602485fd5b8080156120db57600181146120ec57612119565b60ff19851688528388019550612119565b60008b81526020902060005b858110156121115781548a8201529084019088016120f8565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061215d9083018461203a565b9695505050505050565b60208152600061100f602083018461203a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f4d696e74696e672061204d6f677761697a20436f73747320302e303820457468604082015267657220456163682160c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156122ad576122ad612392565b500190565b6000826122c1576122c16123a8565b500490565b60008160001904831182151516156122e0576122e0612392565b500290565b6000828210156122f7576122f7612392565b500390565b60005b838110156123175781810151838201526020016122ff565b83811115610f255750506000910152565b600181811c9082168061233c57607f821691505b6020821081141561235d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561237757612377612392565b5060010190565b60008261238d5761238d6123a8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461121057600080fd5b6001600160e01b03198116811461121057600080fdfea2646970667358221220b9048b5af54318e2cbfeb020bb3cbba5590bbf440065d079f85b10ddcc89521c64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f6a7573746d6f677761697a2e6d7970696e6174612e636c6f75642f697066732f516d5941617647547272743447685970576a724c37764b6f70697150356f57787a6b4a58444742536d63724233552f000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636c0360eb11610118578063b573f104116100a0578063d5abeb011161006f578063d5abeb0114610595578063e341afdf146105ab578063e7cd4a04146105be578063e985e9c5146105de578063f2fde38b1461062757600080fd5b8063b573f10414610520578063b88d4fde14610540578063c668286214610560578063c87b56dd1461057557600080fd5b80638da5cb5b116100e75780638da5cb5b1461049757806395d89b41146104b5578063a035b1fe146104ca578063a16d605a146104e0578063a22cb4651461050057600080fd5b80636c0360eb1461043357806370a0823114610448578063715018a6146104685780637ce305491461047d57600080fd5b806323b872dd1161019b57806348caf7ef1161016a57806348caf7ef146103ab5780634f6ccce7146103be57806355f804b3146103de578063626be567146103fe5780636352211e1461041357600080fd5b806323b872dd1461032c57806324d6b6581461034c5780632f745c591461036b57806342842e0e1461038b57600080fd5b806309f2b571116101d757806309f2b571146102ba57806312065fe0146102da57806318160ddd146102f75780632042e5c21461030c57600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611f7b565b610647565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610672565b6040516102359190612167565b34801561026c57600080fd5b5061028061027b366004611ffe565b610704565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611f34565b61079e565b005b3480156102c657600080fd5b506102b86102d5366004611f60565b6108b4565b3480156102e657600080fd5b50475b604051908152602001610235565b34801561030357600080fd5b506008546102e9565b34801561031857600080fd5b506102b8610327366004611de8565b6108f8565b34801561033857600080fd5b506102b8610347366004611e3e565b610943565b34801561035857600080fd5b50600f5461022990610100900460ff1681565b34801561037757600080fd5b506102e9610386366004611f34565b610974565b34801561039757600080fd5b506102b86103a6366004611e3e565b610a0a565b6102b86103b9366004612017565b610a25565b3480156103ca57600080fd5b506102e96103d9366004611ffe565b610b9b565b3480156103ea57600080fd5b506102b86103f9366004611fb5565b610c2e565b34801561040a57600080fd5b506102e9610c6b565b34801561041f57600080fd5b5061028061042e366004611ffe565b610c7b565b34801561043f57600080fd5b50610253610cf2565b34801561045457600080fd5b506102e9610463366004611de8565b610d80565b34801561047457600080fd5b506102b8610e07565b34801561048957600080fd5b50600f546102299060ff1681565b3480156104a357600080fd5b50600a546001600160a01b0316610280565b3480156104c157600080fd5b50610253610e3d565b3480156104d657600080fd5b506102e9600e5481565b3480156104ec57600080fd5b506102b86104fb366004611de8565b610e4c565b34801561050c57600080fd5b506102b861051b366004611eff565b610eab565b34801561052c57600080fd5b506102b861053b366004611f60565b610eb6565b34801561054c57600080fd5b506102b861055b366004611e7f565b610ef3565b34801561056c57600080fd5b50610253610f2b565b34801561058157600080fd5b50610253610590366004611ffe565b610f38565b3480156105a157600080fd5b506102e9600d5481565b6102b86105b9366004612017565b611016565b3480156105ca57600080fd5b506102b86105d9366004611de8565b61112a565b3480156105ea57600080fd5b506102296105f9366004611e05565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063357600080fd5b506102b8610642366004611de8565b611178565b60006001600160e01b0319821663780e9d6360e01b148061066c575061066c82611213565b92915050565b60606000805461068190612328565b80601f01602080910402602001604051908101604052809291908181526020018280546106ad90612328565b80156106fa5780601f106106cf576101008083540402835291602001916106fa565b820191906000526020600020905b8154815290600101906020018083116106dd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107a982610c7b565b9050806001600160a01b0316836001600160a01b031614156108175760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610779565b336001600160a01b0382161480610833575061083381336105f9565b6108a55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610779565b6108af8383611263565b505050565b600a546001600160a01b031633146108de5760405162461bcd60e51b815260040161077990612214565b600f80549115156101000261ff0019909216919091179055565b600a546001600160a01b031633146109225760405162461bcd60e51b815260040161077990612214565b6001600160a01b03166000908152601160205260409020805460ff19169055565b61094d33826112d1565b6109695760405162461bcd60e51b815260040161077990612249565b6108af8383836113c8565b600061097f83610d80565b82106109e15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610779565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108af83838360405180602001604052806000815250610ef3565b600f5460ff161515600114610a3957600080fd5b3360009081526011602052604090205460ff16610a985760405162461bcd60e51b815260206004820152601760248201527f596f75206172656e27742077686974656c6973746564210000000000000000006044820152606401610779565b60018160ff161015610ae45760405162461bcd60e51b8152602060048201526015602482015274135a5b9d08105b5bdd5b9d08125b98dbdc9c9958dd605a1b6044820152606401610779565b8060ff16600e54610af591906122c6565b341015610b145760405162461bcd60e51b8152600401610779906121cc565b600d54610b1f610c6b565b10610b585760405162461bcd60e51b8152602060048201526009602482015268534f4c44204f55542160b81b6044820152606401610779565b60005b8160ff16811015610b9757610b74601080546001019055565b610b8533610b80610c6b565b611573565b80610b8f81612363565b915050610b5b565b5050565b6000610ba660085490565b8210610c095760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610779565b60088281548110610c1c57610c1c6123d4565b90600052602060002001549050919050565b600a546001600160a01b03163314610c585760405162461bcd60e51b815260040161077990612214565b8051610b9790600b906020840190611cc4565b6000610c7660105490565b905090565b6000818152600260205260408120546001600160a01b03168061066c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610779565b600b8054610cff90612328565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2b90612328565b8015610d785780601f10610d4d57610100808354040283529160200191610d78565b820191906000526020600020905b815481529060010190602001808311610d5b57829003601f168201915b505050505081565b60006001600160a01b038216610deb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610779565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e315760405162461bcd60e51b815260040161077990612214565b610e3b600061158d565b565b60606001805461068190612328565b600a546001600160a01b03163314610e765760405162461bcd60e51b815260040161077990612214565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610b97573d6000803e3d6000fd5b610b973383836115df565b600a546001600160a01b03163314610ee05760405162461bcd60e51b815260040161077990612214565b600f805460ff1916911515919091179055565b610efd33836112d1565b610f195760405162461bcd60e51b815260040161077990612249565b610f25848484846116ae565b50505050565b600c8054610cff90612328565b6000818152600260205260409020546060906001600160a01b0316610fb75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610779565b6000610fc16116e1565b90506000815111610fe1576040518060200160405280600081525061100f565b80610feb846116f0565b600c604051602001610fff93929190612066565b6040516020818303038152906040525b9392505050565b600f5460ff61010090910416151560011461103057600080fd5b60018160ff16101561107c5760405162461bcd60e51b8152602060048201526015602482015274135a5b9d08105b5bdd5b9d08125b98dbdc9c9958dd605a1b6044820152606401610779565b8060ff16600e5461108d91906122c6565b3410156110ac5760405162461bcd60e51b8152600401610779906121cc565b600d546110b7610c6b565b106110f05760405162461bcd60e51b8152602060048201526009602482015268534f4c44204f55542160b81b6044820152606401610779565b60005b8160ff16811015610b975761110c601080546001019055565b61111833610b80610c6b565b8061112281612363565b9150506110f3565b600a546001600160a01b031633146111545760405162461bcd60e51b815260040161077990612214565b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b600a546001600160a01b031633146111a25760405162461bcd60e51b815260040161077990612214565b6001600160a01b0381166112075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610779565b6112108161158d565b50565b60006001600160e01b031982166380ac58cd60e01b148061124457506001600160e01b03198216635b5e139f60e01b145b8061066c57506301ffc9a760e01b6001600160e01b031983161461066c565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061129882610c7b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661134a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610779565b600061135583610c7b565b9050806001600160a01b0316846001600160a01b031614806113905750836001600160a01b031661138584610704565b6001600160a01b0316145b806113c057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113db82610c7b565b6001600160a01b0316146114435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610779565b6001600160a01b0382166114a55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610779565b6114b08383836117ee565b6114bb600082611263565b6001600160a01b03831660009081526003602052604081208054600192906114e49084906122e5565b90915550506001600160a01b038216600090815260036020526040812080546001929061151290849061229a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610b978282604051806020016040528060008152506118a6565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116415760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610779565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116b98484846113c8565b6116c5848484846118d9565b610f255760405162461bcd60e51b81526004016107799061217a565b6060600b805461068190612328565b6060816117145750506040805180820190915260018152600360fc1b602082015290565b8160005b811561173e578061172881612363565b91506117379050600a836122b2565b9150611718565b60008167ffffffffffffffff811115611759576117596123ea565b6040519080825280601f01601f191660200182016040528015611783576020820181803683370190505b5090505b84156113c0576117986001836122e5565b91506117a5600a8661237e565b6117b090603061229a565b60f81b8183815181106117c5576117c56123d4565b60200101906001600160f81b031916908160001a9053506117e7600a866122b2565b9450611787565b6001600160a01b0383166118495761184481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61186c565b816001600160a01b0316836001600160a01b03161461186c5761186c83826119e6565b6001600160a01b038216611883576108af81611a83565b826001600160a01b0316826001600160a01b0316146108af576108af8282611b32565b6118b08383611b76565b6118bd60008484846118d9565b6108af5760405162461bcd60e51b81526004016107799061217a565b60006001600160a01b0384163b156119db57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061191d90339089908890889060040161212a565b602060405180830381600087803b15801561193757600080fd5b505af1925050508015611967575060408051601f3d908101601f1916820190925261196491810190611f98565b60015b6119c1573d808015611995576040519150601f19603f3d011682016040523d82523d6000602084013e61199a565b606091505b5080516119b95760405162461bcd60e51b81526004016107799061217a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113c0565b506001949350505050565b600060016119f384610d80565b6119fd91906122e5565b600083815260076020526040902054909150808214611a50576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a95906001906122e5565b60008381526009602052604081205460088054939450909284908110611abd57611abd6123d4565b906000526020600020015490508060088381548110611ade57611ade6123d4565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b1657611b166123be565b6001900381819060005260206000200160009055905550505050565b6000611b3d83610d80565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611bcc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610779565b6000818152600260205260409020546001600160a01b031615611c315760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610779565b611c3d600083836117ee565b6001600160a01b0382166000908152600360205260408120805460019290611c6690849061229a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cd090612328565b90600052602060002090601f016020900481019282611cf25760008555611d38565b82601f10611d0b57805160ff1916838001178555611d38565b82800160010185558215611d38579182015b82811115611d38578251825591602001919060010190611d1d565b50611d44929150611d48565b5090565b5b80821115611d445760008155600101611d49565b600067ffffffffffffffff80841115611d7857611d786123ea565b604051601f8501601f19908116603f01168101908282118183101715611da057611da06123ea565b81604052809350858152868686011115611db957600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611de357600080fd5b919050565b600060208284031215611dfa57600080fd5b813561100f81612400565b60008060408385031215611e1857600080fd5b8235611e2381612400565b91506020830135611e3381612400565b809150509250929050565b600080600060608486031215611e5357600080fd5b8335611e5e81612400565b92506020840135611e6e81612400565b929592945050506040919091013590565b60008060008060808587031215611e9557600080fd5b8435611ea081612400565b93506020850135611eb081612400565b925060408501359150606085013567ffffffffffffffff811115611ed357600080fd5b8501601f81018713611ee457600080fd5b611ef387823560208401611d5d565b91505092959194509250565b60008060408385031215611f1257600080fd5b8235611f1d81612400565b9150611f2b60208401611dd3565b90509250929050565b60008060408385031215611f4757600080fd5b8235611f5281612400565b946020939093013593505050565b600060208284031215611f7257600080fd5b61100f82611dd3565b600060208284031215611f8d57600080fd5b813561100f81612415565b600060208284031215611faa57600080fd5b815161100f81612415565b600060208284031215611fc757600080fd5b813567ffffffffffffffff811115611fde57600080fd5b8201601f81018413611fef57600080fd5b6113c084823560208401611d5d565b60006020828403121561201057600080fd5b5035919050565b60006020828403121561202957600080fd5b813560ff8116811461100f57600080fd5b600081518084526120528160208601602086016122fc565b601f01601f19169290920160200192915050565b6000845160206120798285838a016122fc565b85519184019161208c8184848a016122fc565b8554920191600090600181811c90808316806120a957607f831692505b8583108114156120c757634e487b7160e01b85526022600452602485fd5b8080156120db57600181146120ec57612119565b60ff19851688528388019550612119565b60008b81526020902060005b858110156121115781548a8201529084019088016120f8565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061215d9083018461203a565b9695505050505050565b60208152600061100f602083018461203a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f4d696e74696e672061204d6f677761697a20436f73747320302e303820457468604082015267657220456163682160c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156122ad576122ad612392565b500190565b6000826122c1576122c16123a8565b500490565b60008160001904831182151516156122e0576122e0612392565b500290565b6000828210156122f7576122f7612392565b500390565b60005b838110156123175781810151838201526020016122ff565b83811115610f255750506000910152565b600181811c9082168061233c57607f821691505b6020821081141561235d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561237757612377612392565b5060010190565b60008261238d5761238d6123a8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461121057600080fd5b6001600160e01b03198116811461121057600080fdfea2646970667358221220b9048b5af54318e2cbfeb020bb3cbba5590bbf440065d079f85b10ddcc89521c64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f6a7573746d6f677761697a2e6d7970696e6174612e636c6f75642f697066732f516d5941617647547272743447685970576a724c37764b6f70697150356f57787a6b4a58444742536d63724233552f000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://justmogwaiz.mypinata.cloud/ipfs/QmYAavGTrrt4GhYpWjrL7vKopiqP5oWxzkJXDGBSmcrB3U/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000057
Arg [2] : 68747470733a2f2f6a7573746d6f677761697a2e6d7970696e6174612e636c6f
Arg [3] : 75642f697066732f516d5941617647547272743447685970576a724c37764b6f
Arg [4] : 70697150356f57787a6b4a58444742536d63724233552f000000000000000000


Deployed Bytecode Sourcemap

46668:3352:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40420:224;;;;;;;;;;-1:-1:-1;40420:224:0;;;;;:::i;:::-;;:::i;:::-;;;7883:14:1;;7876:22;7858:41;;7846:2;7831:18;40420:224:0;;;;;;;;27861:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29420:221::-;;;;;;;;;;-1:-1:-1;29420:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7181:32:1;;;7163:51;;7151:2;7136:18;29420:221:0;7017:203:1;28943:411:0;;;;;;;;;;-1:-1:-1;28943:411:0;;;;;:::i;:::-;;:::i;:::-;;47623:112;;;;;;;;;;-1:-1:-1;47623:112:0;;;;;:::i;:::-;;:::i;49290:100::-;;;;;;;;;;-1:-1:-1;49361:21:0;49290:100;;;16935:25:1;;;16923:2;16908:18;49290:100:0;16789:177:1;41060:113:0;;;;;;;;;;-1:-1:-1;41148:10:0;:17;41060:113;;48004:135;;;;;;;;;;-1:-1:-1;48004:135:0;;;;;:::i;:::-;;:::i;30170:339::-;;;;;;;;;;-1:-1:-1;30170:339:0;;;;;:::i;:::-;;:::i;47014:39::-;;;;;;;;;;-1:-1:-1;47014:39:0;;;;;;;;;;;40728:256;;;;;;;;;;-1:-1:-1;40728:256:0;;;;;:::i;:::-;;:::i;30580:185::-;;;;;;;;;;-1:-1:-1;30580:185:0;;;;;:::i;:::-;;:::i;48153:518::-;;;;;;:::i;:::-;;:::i;41250:233::-;;;;;;;;;;-1:-1:-1;41250:233:0;;;;;:::i;:::-;;:::i;49520:104::-;;;;;;;;;;-1:-1:-1;49520:104:0;;;;;:::i;:::-;;:::i;47748:107::-;;;;;;;;;;;;;:::i;27555:239::-;;;;;;;;;;-1:-1:-1;27555:239:0;;;;;:::i;:::-;;:::i;46812:21::-;;;;;;;;;;;;;:::i;27285:208::-;;;;;;;;;;-1:-1:-1;27285:208:0;;;;;:::i;:::-;;:::i;6407:103::-;;;;;;;;;;;;;:::i;46969:38::-;;;;;;;;;;-1:-1:-1;46969:38:0;;;;;;;;5756:87;;;;;;;;;;-1:-1:-1;5829:6:0;;-1:-1:-1;;;;;5829:6:0;5756:87;;28030:104;;;;;;;;;;;;;:::i;46923:33::-;;;;;;;;;;;;;;;;49151:133;;;;;;;;;;-1:-1:-1;49151:133:0;;;;;:::i;:::-;;:::i;29713:155::-;;;;;;;;;;-1:-1:-1;29713:155:0;;;;;:::i;:::-;;:::i;47506:108::-;;;;;;;;;;-1:-1:-1;47506:108:0;;;;;:::i;:::-;;:::i;30836:328::-;;;;;;;;;;-1:-1:-1;30836:328:0;;;;;:::i;:::-;;:::i;46840:37::-;;;;;;;;;;;;;:::i;49635:375::-;;;;;;;;;;-1:-1:-1;49635:375:0;;;;;:::i;:::-;;:::i;46884:32::-;;;;;;;;;;;;;;;;48690:450;;;;;;:::i;:::-;;:::i;47867:131::-;;;;;;;;;;-1:-1:-1;47867:131:0;;;;;:::i;:::-;;:::i;29939:164::-;;;;;;;;;;-1:-1:-1;29939:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30060:25:0;;;30036:4;30060:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29939:164;6665:201;;;;;;;;;;-1:-1:-1;6665:201:0;;;;;:::i;:::-;;:::i;40420:224::-;40522:4;-1:-1:-1;;;;;;40546:50:0;;-1:-1:-1;;;40546:50:0;;:90;;;40600:36;40624:11;40600:23;:36::i;:::-;40539:97;40420:224;-1:-1:-1;;40420:224:0:o;27861:100::-;27915:13;27948:5;27941:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27861:100;:::o;29420:221::-;29496:7;32763:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32763:16:0;29516:73;;;;-1:-1:-1;;;29516:73:0;;13119:2:1;29516:73:0;;;13101:21:1;13158:2;13138:18;;;13131:30;13197:34;13177:18;;;13170:62;-1:-1:-1;;;13248:18:1;;;13241:42;13300:19;;29516:73:0;;;;;;;;;-1:-1:-1;29609:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29609:24:0;;29420:221::o;28943:411::-;29024:13;29040:23;29055:7;29040:14;:23::i;:::-;29024:39;;29088:5;-1:-1:-1;;;;;29082:11:0;:2;-1:-1:-1;;;;;29082:11:0;;;29074:57;;;;-1:-1:-1;;;29074:57:0;;15406:2:1;29074:57:0;;;15388:21:1;15445:2;15425:18;;;15418:30;15484:34;15464:18;;;15457:62;-1:-1:-1;;;15535:18:1;;;15528:31;15576:19;;29074:57:0;15204:397:1;29074:57:0;4507:10;-1:-1:-1;;;;;29166:21:0;;;;:62;;-1:-1:-1;29191:37:0;29208:5;4507:10;29939:164;:::i;29191:37::-;29144:168;;;;-1:-1:-1;;;29144:168:0;;11103:2:1;29144:168:0;;;11085:21:1;11142:2;11122:18;;;11115:30;11181:34;11161:18;;;11154:62;11252:26;11232:18;;;11225:54;11296:19;;29144:168:0;10901:420:1;29144:168:0;29325:21;29334:2;29338:7;29325:8;:21::i;:::-;29013:341;28943:411;;:::o;47623:112::-;5829:6;;-1:-1:-1;;;;;5829:6:0;4507:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;47696:19:::1;:31:::0;;;::::1;;;;-1:-1:-1::0;;47696:31:0;;::::1;::::0;;;::::1;::::0;;47623:112::o;48004:135::-;5829:6;;-1:-1:-1;;;;;5829:6:0;4507:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48091:32:0::1;48126:5;48091:32:::0;;;:11:::1;:32;::::0;;;;:40;;-1:-1:-1;;48091:40:0::1;::::0;;48004:135::o;30170:339::-;30365:41;4507:10;30398:7;30365:18;:41::i;:::-;30357:103;;;;-1:-1:-1;;;30357:103:0;;;;;;;:::i;:::-;30473:28;30483:4;30489:2;30493:7;30473:9;:28::i;40728:256::-;40825:7;40861:23;40878:5;40861:16;:23::i;:::-;40853:5;:31;40845:87;;;;-1:-1:-1;;;40845:87:0;;8336:2:1;40845:87:0;;;8318:21:1;8375:2;8355:18;;;8348:30;8414:34;8394:18;;;8387:62;-1:-1:-1;;;8465:18:1;;;8458:41;8516:19;;40845:87:0;8134:407:1;40845:87:0;-1:-1:-1;;;;;;40950:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40728:256::o;30580:185::-;30718:39;30735:4;30741:2;30745:7;30718:39;;;;;;;;;;;;:16;:39::i;48153:518::-;47344:18;;;;:26;;:18;:26;47336:35;;;;;;48251:10:::1;48239:23;::::0;;;:11:::1;:23;::::0;;;;;::::1;;48231:59;;;::::0;-1:-1:-1;;;48231:59:0;;16226:2:1;48231:59:0::1;::::0;::::1;16208:21:1::0;16265:2;16245:18;;;16238:30;16304:25;16284:18;;;16277:53;16347:18;;48231:59:0::1;16024:347:1::0;48231:59:0::1;48322:1;48309:9;:14;;;;48301:49;;;::::0;-1:-1:-1;;;48301:49:0;;13869:2:1;48301:49:0::1;::::0;::::1;13851:21:1::0;13908:2;13888:18;;;13881:30;-1:-1:-1;;;13927:18:1;;;13920:51;13988:18;;48301:49:0::1;13667:345:1::0;48301:49:0::1;48390:9;48382:17;;:5;;:17;;;;:::i;:::-;48369:9;:30;;48361:83;;;;-1:-1:-1::0;;;48361:83:0::1;;;;;;;:::i;:::-;48478:9;;48463:12;:10;:12::i;:::-;:24;48455:46;;;::::0;-1:-1:-1;;;48455:46:0;;13532:2:1;48455:46:0::1;::::0;::::1;13514:21:1::0;13571:1;13551:18;;;13544:29;-1:-1:-1;;;13589:18:1;;;13582:39;13638:18;;48455:46:0::1;13330:332:1::0;48455:46:0::1;48525:6;48521:143;48536:9;48534:11;;:1;:11;48521:143;;;48575:27;:15;1136:19:::0;;1154:1;1136:19;;;1047:127;48575:27:::1;48617:35;48627:10;48639:12;:10;:12::i;:::-;48617:9;:35::i;:::-;48546:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48521:143;;;;48153:518:::0;:::o;41250:233::-;41325:7;41361:30;41148:10;:17;;41060:113;41361:30;41353:5;:38;41345:95;;;;-1:-1:-1;;;41345:95:0;;16578:2:1;41345:95:0;;;16560:21:1;16617:2;16597:18;;;16590:30;16656:34;16636:18;;;16629:62;-1:-1:-1;;;16707:18:1;;;16700:42;16759:19;;41345:95:0;16376:408:1;41345:95:0;41458:10;41469:5;41458:17;;;;;;;;:::i;:::-;;;;;;;;;41451:24;;41250:233;;;:::o;49520:104::-;5829:6;;-1:-1:-1;;;;;5829:6:0;4507:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;49595:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;47748:107::-:0;47791:7;47822:25;:15;1017:14;;925:114;47822:25;47815:32;;47748:107;:::o;27555:239::-;27627:7;27663:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27663:16:0;27698:19;27690:73;;;;-1:-1:-1;;;27690:73:0;;11939:2:1;27690:73:0;;;11921:21:1;11978:2;11958:18;;;11951:30;12017:34;11997:18;;;11990:62;-1:-1:-1;;;12068:18:1;;;12061:39;12117:19;;27690:73:0;11737:405:1;46812:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27285:208::-;27357:7;-1:-1:-1;;;;;27385:19:0;;27377:74;;;;-1:-1:-1;;;27377:74:0;;11528:2:1;27377:74:0;;;11510:21:1;11567:2;11547:18;;;11540:30;11606:34;11586:18;;;11579:62;-1:-1:-1;;;11657:18:1;;;11650:40;11707:19;;27377:74:0;11326:406:1;27377:74:0;-1:-1:-1;;;;;;27469:16:0;;;;;:9;:16;;;;;;;27285:208::o;6407:103::-;5829:6;;-1:-1:-1;;;;;5829:6:0;4507:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;6472:30:::1;6499:1;6472:18;:30::i;:::-;6407:103::o:0;28030:104::-;28086:13;28119:7;28112:14;;;;;:::i;49151:133::-;5829:6;;-1:-1:-1;;;;;5829:6:0;4507:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;49244:32:::1;::::0;-1:-1:-1;;;;;49244:18:0;::::1;::::0;49361:21;49244:32;::::1;;;::::0;::::1;::::0;;;49361:21;49244:18;:32;::::1;;;;;;;;;;;;;::::0;::::1;;;;29713:155:::0;29808:52;4507:10;29841:8;29851;29808:18;:52::i;47506:108::-;5829:6;;-1:-1:-1;;;;;5829:6:0;4507:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;47577:18:::1;:29:::0;;-1:-1:-1;;47577:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47506:108::o;30836:328::-;31011:41;4507:10;31044:7;31011:18;:41::i;:::-;31003:103;;;;-1:-1:-1;;;31003:103:0;;;;;;;:::i;:::-;31117:39;31131:4;31137:2;31141:7;31150:5;31117:13;:39::i;:::-;30836:328;;;;:::o;46840:37::-;;;;;;;:::i;49635:375::-;32739:4;32763:16;;;:7;:16;;;;;;49708:13;;-1:-1:-1;;;;;32763:16:0;49739:76;;;;-1:-1:-1;;;49739:76:0;;14990:2:1;49739:76:0;;;14972:21:1;15029:2;15009:18;;;15002:30;15068:34;15048:18;;;15041:62;-1:-1:-1;;;15119:18:1;;;15112:45;15174:19;;49739:76:0;14788:411:1;49739:76:0;49828:28;49859:10;:8;:10::i;:::-;49828:41;;49918:1;49893:14;49887:28;:32;:115;;;;;;;;;;;;;;;;;49946:14;49962:18;:7;:16;:18::i;:::-;49982:13;49929:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49887:115;49880:122;49635:375;-1:-1:-1;;;49635:375:0:o;48690:450::-;47449:19;;;;;;;;:27;;:19;:27;47441:36;;;;;;48791:1:::1;48778:9;:14;;;;48770:49;;;::::0;-1:-1:-1;;;48770:49:0;;13869:2:1;48770:49:0::1;::::0;::::1;13851:21:1::0;13908:2;13888:18;;;13881:30;-1:-1:-1;;;13927:18:1;;;13920:51;13988:18;;48770:49:0::1;13667:345:1::0;48770:49:0::1;48859:9;48851:17;;:5;;:17;;;;:::i;:::-;48838:9;:30;;48830:83;;;;-1:-1:-1::0;;;48830:83:0::1;;;;;;;:::i;:::-;48947:9;;48932:12;:10;:12::i;:::-;:24;48924:46;;;::::0;-1:-1:-1;;;48924:46:0;;13532:2:1;48924:46:0::1;::::0;::::1;13514:21:1::0;13571:1;13551:18;;;13544:29;-1:-1:-1;;;13589:18:1;;;13582:39;13638:18;;48924:46:0::1;13330:332:1::0;48924:46:0::1;48994:6;48990:143;49005:9;49003:11;;:1;:11;48990:143;;;49044:27;:15;1136:19:::0;;1154:1;1136:19;;;1047:127;49044:27:::1;49086:35;49096:10;49108:12;:10;:12::i;49086:35::-;49015:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48990:143;;47867:131:::0;5829:6;;-1:-1:-1;;;;;5829:6:0;4507:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47951:32:0::1;;::::0;;;:11:::1;:32;::::0;;;;:39;;-1:-1:-1;;47951:39:0::1;47986:4;47951:39;::::0;;47867:131::o;6665:201::-;5829:6;;-1:-1:-1;;;;;5829:6:0;4507:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6754:22:0;::::1;6746:73;;;::::0;-1:-1:-1;;;6746:73:0;;9167:2:1;6746:73:0::1;::::0;::::1;9149:21:1::0;9206:2;9186:18;;;9179:30;9245:34;9225:18;;;9218:62;-1:-1:-1;;;9296:18:1;;;9289:36;9342:19;;6746:73:0::1;8965:402:1::0;6746:73:0::1;6830:28;6849:8;6830:18;:28::i;:::-;6665:201:::0;:::o;26916:305::-;27018:4;-1:-1:-1;;;;;;27055:40:0;;-1:-1:-1;;;27055:40:0;;:105;;-1:-1:-1;;;;;;;27112:48:0;;-1:-1:-1;;;27112:48:0;27055:105;:158;;;-1:-1:-1;;;;;;;;;;18509:40:0;;;27177:36;18400:157;36656:174;36731:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36731:29:0;-1:-1:-1;;;;;36731:29:0;;;;;;;;:24;;36785:23;36731:24;36785:14;:23::i;:::-;-1:-1:-1;;;;;36776:46:0;;;;;;;;;;;36656:174;;:::o;32968:348::-;33061:4;32763:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32763:16:0;33078:73;;;;-1:-1:-1;;;33078:73:0;;10690:2:1;33078:73:0;;;10672:21:1;10729:2;10709:18;;;10702:30;10768:34;10748:18;;;10741:62;-1:-1:-1;;;10819:18:1;;;10812:42;10871:19;;33078:73:0;10488:408:1;33078:73:0;33162:13;33178:23;33193:7;33178:14;:23::i;:::-;33162:39;;33231:5;-1:-1:-1;;;;;33220:16:0;:7;-1:-1:-1;;;;;33220:16:0;;:51;;;;33264:7;-1:-1:-1;;;;;33240:31:0;:20;33252:7;33240:11;:20::i;:::-;-1:-1:-1;;;;;33240:31:0;;33220:51;:87;;;-1:-1:-1;;;;;;30060:25:0;;;30036:4;30060:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33275:32;33212:96;32968:348;-1:-1:-1;;;;32968:348:0:o;35960:578::-;36119:4;-1:-1:-1;;;;;36092:31:0;:23;36107:7;36092:14;:23::i;:::-;-1:-1:-1;;;;;36092:31:0;;36084:85;;;;-1:-1:-1;;;36084:85:0;;14580:2:1;36084:85:0;;;14562:21:1;14619:2;14599:18;;;14592:30;14658:34;14638:18;;;14631:62;-1:-1:-1;;;14709:18:1;;;14702:39;14758:19;;36084:85:0;14378:405:1;36084:85:0;-1:-1:-1;;;;;36188:16:0;;36180:65;;;;-1:-1:-1;;;36180:65:0;;9931:2:1;36180:65:0;;;9913:21:1;9970:2;9950:18;;;9943:30;10009:34;9989:18;;;9982:62;-1:-1:-1;;;10060:18:1;;;10053:34;10104:19;;36180:65:0;9729:400:1;36180:65:0;36258:39;36279:4;36285:2;36289:7;36258:20;:39::i;:::-;36362:29;36379:1;36383:7;36362:8;:29::i;:::-;-1:-1:-1;;;;;36404:15:0;;;;;;:9;:15;;;;;:20;;36423:1;;36404:15;:20;;36423:1;;36404:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36435:13:0;;;;;;:9;:13;;;;;:18;;36452:1;;36435:13;:18;;36452:1;;36435:18;:::i;:::-;;;;-1:-1:-1;;36464:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36464:21:0;-1:-1:-1;;;;;36464:21:0;;;;;;;;;36503:27;;36464:16;;36503:27;;;;;;;35960:578;;;:::o;33658:110::-;33734:26;33744:2;33748:7;33734:26;;;;;;;;;;;;:9;:26::i;7026:191::-;7119:6;;;-1:-1:-1;;;;;7136:17:0;;;-1:-1:-1;;;;;;7136:17:0;;;;;;;7169:40;;7119:6;;;7136:17;7119:6;;7169:40;;7100:16;;7169:40;7089:128;7026:191;:::o;36972:315::-;37127:8;-1:-1:-1;;;;;37118:17:0;:5;-1:-1:-1;;;;;37118:17:0;;;37110:55;;;;-1:-1:-1;;;37110:55:0;;10336:2:1;37110:55:0;;;10318:21:1;10375:2;10355:18;;;10348:30;10414:27;10394:18;;;10387:55;10459:18;;37110:55:0;10134:349:1;37110:55:0;-1:-1:-1;;;;;37176:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37176:46:0;;;;;;;;;;37238:41;;7858::1;;;37238::0;;7831:18:1;37238:41:0;;;;;;;36972:315;;;:::o;32046:::-;32203:28;32213:4;32219:2;32223:7;32203:9;:28::i;:::-;32250:48;32273:4;32279:2;32283:7;32292:5;32250:22;:48::i;:::-;32242:111;;;;-1:-1:-1;;;32242:111:0;;;;;;;:::i;49401:108::-;49461:13;49494:7;49487:14;;;;;:::i;1936:723::-;1992:13;2213:10;2209:53;;-1:-1:-1;;2240:10:0;;;;;;;;;;;;-1:-1:-1;;;2240:10:0;;;;;1936:723::o;2209:53::-;2287:5;2272:12;2328:78;2335:9;;2328:78;;2361:8;;;;:::i;:::-;;-1:-1:-1;2384:10:0;;-1:-1:-1;2392:2:0;2384:10;;:::i;:::-;;;2328:78;;;2416:19;2448:6;2438:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2438:17:0;;2416:39;;2466:154;2473:10;;2466:154;;2500:11;2510:1;2500:11;;:::i;:::-;;-1:-1:-1;2569:10:0;2577:2;2569:5;:10;:::i;:::-;2556:24;;:2;:24;:::i;:::-;2543:39;;2526:6;2533;2526:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2526:56:0;;;;;;;;-1:-1:-1;2597:11:0;2606:2;2597:11;;:::i;:::-;;;2466:154;;42096:589;-1:-1:-1;;;;;42302:18:0;;42298:187;;42337:40;42369:7;43512:10;:17;;43485:24;;;;:15;:24;;;;;:44;;;43540:24;;;;;;;;;;;;43408:164;42337:40;42298:187;;;42407:2;-1:-1:-1;;;;;42399:10:0;:4;-1:-1:-1;;;;;42399:10:0;;42395:90;;42426:47;42459:4;42465:7;42426:32;:47::i;:::-;-1:-1:-1;;;;;42499:16:0;;42495:183;;42532:45;42569:7;42532:36;:45::i;42495:183::-;42605:4;-1:-1:-1;;;;;42599:10:0;:2;-1:-1:-1;;;;;42599:10:0;;42595:83;;42626:40;42654:2;42658:7;42626:27;:40::i;33995:321::-;34125:18;34131:2;34135:7;34125:5;:18::i;:::-;34176:54;34207:1;34211:2;34215:7;34224:5;34176:22;:54::i;:::-;34154:154;;;;-1:-1:-1;;;34154:154:0;;;;;;;:::i;37852:799::-;38007:4;-1:-1:-1;;;;;38028:13:0;;8420:20;8468:8;38024:620;;38064:72;;-1:-1:-1;;;38064:72:0;;-1:-1:-1;;;;;38064:36:0;;;;;:72;;4507:10;;38115:4;;38121:7;;38130:5;;38064:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38064:72:0;;;;;;;;-1:-1:-1;;38064:72:0;;;;;;;;;;;;:::i;:::-;;;38060:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38306:13:0;;38302:272;;38349:60;;-1:-1:-1;;;38349:60:0;;;;;;;:::i;38302:272::-;38524:6;38518:13;38509:6;38505:2;38501:15;38494:38;38060:529;-1:-1:-1;;;;;;38187:51:0;-1:-1:-1;;;38187:51:0;;-1:-1:-1;38180:58:0;;38024:620;-1:-1:-1;38628:4:0;37852:799;;;;;;:::o;44199:988::-;44465:22;44515:1;44490:22;44507:4;44490:16;:22::i;:::-;:26;;;;:::i;:::-;44527:18;44548:26;;;:17;:26;;;;;;44465:51;;-1:-1:-1;44681:28:0;;;44677:328;;-1:-1:-1;;;;;44748:18:0;;44726:19;44748:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44799:30;;;;;;:44;;;44916:30;;:17;:30;;;;;:43;;;44677:328;-1:-1:-1;45101:26:0;;;;:17;:26;;;;;;;;45094:33;;;-1:-1:-1;;;;;45145:18:0;;;;;:12;:18;;;;;:34;;;;;;;45138:41;44199:988::o;45482:1079::-;45760:10;:17;45735:22;;45760:21;;45780:1;;45760:21;:::i;:::-;45792:18;45813:24;;;:15;:24;;;;;;46186:10;:26;;45735:46;;-1:-1:-1;45813:24:0;;45735:46;;46186:26;;;;;;:::i;:::-;;;;;;;;;46164:48;;46250:11;46225:10;46236;46225:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46330:28;;;:15;:28;;;;;;;:41;;;46502:24;;;;;46495:31;46537:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45553:1008;;;45482:1079;:::o;42986:221::-;43071:14;43088:20;43105:2;43088:16;:20::i;:::-;-1:-1:-1;;;;;43119:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43164:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42986:221:0:o;34652:382::-;-1:-1:-1;;;;;34732:16:0;;34724:61;;;;-1:-1:-1;;;34724:61:0;;12758:2:1;34724:61:0;;;12740:21:1;;;12777:18;;;12770:30;12836:34;12816:18;;;12809:62;12888:18;;34724:61:0;12556:356:1;34724:61:0;32739:4;32763:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32763:16:0;:30;34796:58;;;;-1:-1:-1;;;34796:58:0;;9574:2:1;34796:58:0;;;9556:21:1;9613:2;9593:18;;;9586:30;9652;9632:18;;;9625:58;9700:18;;34796:58:0;9372:352:1;34796:58:0;34867:45;34896:1;34900:2;34904:7;34867:20;:45::i;:::-;-1:-1:-1;;;;;34925:13:0;;;;;;:9;:13;;;;;:18;;34942:1;;34925:13;:18;;34942:1;;34925:18;:::i;:::-;;;;-1:-1:-1;;34954:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34954:21:0;-1:-1:-1;;;;;34954:21:0;;;;;;;;34993:33;;34954:16;;;34993:33;;34954:16;;34993:33;34652:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;1327:388::-;1395:6;1403;1456:2;1444:9;1435:7;1431:23;1427:32;1424:52;;;1472:1;1469;1462:12;1424:52;1511:9;1498:23;1530:31;1555:5;1530:31;:::i;:::-;1580:5;-1:-1:-1;1637:2:1;1622:18;;1609:32;1650:33;1609:32;1650:33;:::i;:::-;1702:7;1692:17;;;1327:388;;;;;:::o;1720:456::-;1797:6;1805;1813;1866:2;1854:9;1845:7;1841:23;1837:32;1834:52;;;1882:1;1879;1872:12;1834:52;1921:9;1908:23;1940:31;1965:5;1940:31;:::i;:::-;1990:5;-1:-1:-1;2047:2:1;2032:18;;2019:32;2060:33;2019:32;2060:33;:::i;:::-;1720:456;;2112:7;;-1:-1:-1;;;2166:2:1;2151:18;;;;2138:32;;1720:456::o;2181:794::-;2276:6;2284;2292;2300;2353:3;2341:9;2332:7;2328:23;2324:33;2321:53;;;2370:1;2367;2360:12;2321:53;2409:9;2396:23;2428:31;2453:5;2428:31;:::i;:::-;2478:5;-1:-1:-1;2535:2:1;2520:18;;2507:32;2548:33;2507:32;2548:33;:::i;:::-;2600:7;-1:-1:-1;2654:2:1;2639:18;;2626:32;;-1:-1:-1;2709:2:1;2694:18;;2681:32;2736:18;2725:30;;2722:50;;;2768:1;2765;2758:12;2722:50;2791:22;;2844:4;2836:13;;2832:27;-1:-1:-1;2822:55:1;;2873:1;2870;2863:12;2822:55;2896:73;2961:7;2956:2;2943:16;2938:2;2934;2930:11;2896:73;:::i;:::-;2886:83;;;2181:794;;;;;;;:::o;2980:315::-;3045:6;3053;3106:2;3094:9;3085:7;3081:23;3077:32;3074:52;;;3122:1;3119;3112:12;3074:52;3161:9;3148:23;3180:31;3205:5;3180:31;:::i;:::-;3230:5;-1:-1:-1;3254:35:1;3285:2;3270:18;;3254:35;:::i;:::-;3244:45;;2980:315;;;;;:::o;3300:::-;3368:6;3376;3429:2;3417:9;3408:7;3404:23;3400:32;3397:52;;;3445:1;3442;3435:12;3397:52;3484:9;3471:23;3503:31;3528:5;3503:31;:::i;:::-;3553:5;3605:2;3590:18;;;;3577:32;;-1:-1:-1;;;3300:315:1:o;3620:180::-;3676:6;3729:2;3717:9;3708:7;3704:23;3700:32;3697:52;;;3745:1;3742;3735:12;3697:52;3768:26;3784:9;3768:26;:::i;3805:245::-;3863:6;3916:2;3904:9;3895:7;3891:23;3887:32;3884:52;;;3932:1;3929;3922:12;3884:52;3971:9;3958:23;3990:30;4014:5;3990:30;:::i;4055:249::-;4124:6;4177:2;4165:9;4156:7;4152:23;4148:32;4145:52;;;4193:1;4190;4183:12;4145:52;4225:9;4219:16;4244:30;4268:5;4244:30;:::i;4309:450::-;4378:6;4431:2;4419:9;4410:7;4406:23;4402:32;4399:52;;;4447:1;4444;4437:12;4399:52;4487:9;4474:23;4520:18;4512:6;4509:30;4506:50;;;4552:1;4549;4542:12;4506:50;4575:22;;4628:4;4620:13;;4616:27;-1:-1:-1;4606:55:1;;4657:1;4654;4647:12;4606:55;4680:73;4745:7;4740:2;4727:16;4722:2;4718;4714:11;4680:73;:::i;4764:180::-;4823:6;4876:2;4864:9;4855:7;4851:23;4847:32;4844:52;;;4892:1;4889;4882:12;4844:52;-1:-1:-1;4915:23:1;;4764:180;-1:-1:-1;4764:180:1:o;4949:269::-;5006:6;5059:2;5047:9;5038:7;5034:23;5030:32;5027:52;;;5075:1;5072;5065:12;5027:52;5114:9;5101:23;5164:4;5157:5;5153:16;5146:5;5143:27;5133:55;;5184:1;5181;5174:12;5223:257;5264:3;5302:5;5296:12;5329:6;5324:3;5317:19;5345:63;5401:6;5394:4;5389:3;5385:14;5378:4;5371:5;5367:16;5345:63;:::i;:::-;5462:2;5441:15;-1:-1:-1;;5437:29:1;5428:39;;;;5469:4;5424:50;;5223:257;-1:-1:-1;;5223:257:1:o;5485:1527::-;5709:3;5747:6;5741:13;5773:4;5786:51;5830:6;5825:3;5820:2;5812:6;5808:15;5786:51;:::i;:::-;5900:13;;5859:16;;;;5922:55;5900:13;5859:16;5944:15;;;5922:55;:::i;:::-;6066:13;;5999:20;;;6039:1;;6126;6148:18;;;;6201;;;;6228:93;;6306:4;6296:8;6292:19;6280:31;;6228:93;6369:2;6359:8;6356:16;6336:18;6333:40;6330:167;;;-1:-1:-1;;;6396:33:1;;6452:4;6449:1;6442:15;6482:4;6403:3;6470:17;6330:167;6513:18;6540:110;;;;6664:1;6659:328;;;;6506:481;;6540:110;-1:-1:-1;;6575:24:1;;6561:39;;6620:20;;;;-1:-1:-1;6540:110:1;;6659:328;17044:1;17037:14;;;17081:4;17068:18;;6754:1;6768:169;6782:8;6779:1;6776:15;6768:169;;;6864:14;;6849:13;;;6842:37;6907:16;;;;6799:10;;6768:169;;;6772:3;;6968:8;6961:5;6957:20;6950:27;;6506:481;-1:-1:-1;7003:3:1;;5485:1527;-1:-1:-1;;;;;;;;;;;5485:1527:1:o;7225:488::-;-1:-1:-1;;;;;7494:15:1;;;7476:34;;7546:15;;7541:2;7526:18;;7519:43;7593:2;7578:18;;7571:34;;;7641:3;7636:2;7621:18;;7614:31;;;7419:4;;7662:45;;7687:19;;7679:6;7662:45;:::i;:::-;7654:53;7225:488;-1:-1:-1;;;;;;7225:488:1:o;7910:219::-;8059:2;8048:9;8041:21;8022:4;8079:44;8119:2;8108:9;8104:18;8096:6;8079:44;:::i;8546:414::-;8748:2;8730:21;;;8787:2;8767:18;;;8760:30;8826:34;8821:2;8806:18;;8799:62;-1:-1:-1;;;8892:2:1;8877:18;;8870:48;8950:3;8935:19;;8546:414::o;12147:404::-;12349:2;12331:21;;;12388:2;12368:18;;;12361:30;12427:34;12422:2;12407:18;;12400:62;-1:-1:-1;;;12493:2:1;12478:18;;12471:38;12541:3;12526:19;;12147:404::o;14017:356::-;14219:2;14201:21;;;14238:18;;;14231:30;14297:34;14292:2;14277:18;;14270:62;14364:2;14349:18;;14017:356::o;15606:413::-;15808:2;15790:21;;;15847:2;15827:18;;;15820:30;15886:34;15881:2;15866:18;;15859:62;-1:-1:-1;;;15952:2:1;15937:18;;15930:47;16009:3;15994:19;;15606:413::o;17097:128::-;17137:3;17168:1;17164:6;17161:1;17158:13;17155:39;;;17174:18;;:::i;:::-;-1:-1:-1;17210:9:1;;17097:128::o;17230:120::-;17270:1;17296;17286:35;;17301:18;;:::i;:::-;-1:-1:-1;17335:9:1;;17230:120::o;17355:168::-;17395:7;17461:1;17457;17453:6;17449:14;17446:1;17443:21;17438:1;17431:9;17424:17;17420:45;17417:71;;;17468:18;;:::i;:::-;-1:-1:-1;17508:9:1;;17355:168::o;17528:125::-;17568:4;17596:1;17593;17590:8;17587:34;;;17601:18;;:::i;:::-;-1:-1:-1;17638:9:1;;17528:125::o;17658:258::-;17730:1;17740:113;17754:6;17751:1;17748:13;17740:113;;;17830:11;;;17824:18;17811:11;;;17804:39;17776:2;17769:10;17740:113;;;17871:6;17868:1;17865:13;17862:48;;;-1:-1:-1;;17906:1:1;17888:16;;17881:27;17658:258::o;17921:380::-;18000:1;17996:12;;;;18043;;;18064:61;;18118:4;18110:6;18106:17;18096:27;;18064:61;18171:2;18163:6;18160:14;18140:18;18137:38;18134:161;;;18217:10;18212:3;18208:20;18205:1;18198:31;18252:4;18249:1;18242:15;18280:4;18277:1;18270:15;18134:161;;17921:380;;;:::o;18306:135::-;18345:3;-1:-1:-1;;18366:17:1;;18363:43;;;18386:18;;:::i;:::-;-1:-1:-1;18433:1:1;18422:13;;18306:135::o;18446:112::-;18478:1;18504;18494:35;;18509:18;;:::i;:::-;-1:-1:-1;18543:9:1;;18446:112::o;18563:127::-;18624:10;18619:3;18615:20;18612:1;18605:31;18655:4;18652:1;18645:15;18679:4;18676:1;18669:15;18695:127;18756:10;18751:3;18747:20;18744:1;18737:31;18787:4;18784:1;18777:15;18811:4;18808:1;18801:15;18827:127;18888:10;18883:3;18879:20;18876:1;18869:31;18919:4;18916:1;18909:15;18943:4;18940:1;18933:15;18959:127;19020:10;19015:3;19011:20;19008:1;19001:31;19051:4;19048:1;19041:15;19075:4;19072:1;19065:15;19091:127;19152:10;19147:3;19143:20;19140:1;19133:31;19183:4;19180:1;19173:15;19207:4;19204:1;19197:15;19223:131;-1:-1:-1;;;;;19298:31:1;;19288:42;;19278:70;;19344:1;19341;19334:12;19359:131;-1:-1:-1;;;;;;19433:32:1;;19423:43;;19413:71;;19480:1;19477;19470:12

Swarm Source

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