ETH Price: $3,267.98 (+3.08%)
Gas: 2 Gwei

Token

Royal Metacats (RMC)
 

Overview

Max Total Supply

333 RMC

Holders

29

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 RMC
0xef7158e8fad9857e767f9335f0b54519f8526375
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:
RoyalMetacats

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-24
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/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: @openzeppelin/contracts/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: @openzeppelin/contracts/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: @openzeppelin/contracts/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: @openzeppelin/contracts/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: @openzeppelin/contracts/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: @openzeppelin/contracts/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: @openzeppelin/contracts/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: @openzeppelin/contracts/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: contracts/ERC721A.sol



pragma solidity ^0.8.4;









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

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

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used). 
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: contracts/RoyalMetacats.sol



// Royal Metacats

pragma solidity ^0.8.4;




contract RoyalMetacats is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;

  string public baseURI;
  string public notRevealedURI;
  string public baseExtension;
  uint256 public cost = 0.12 ether;
  uint256 public WLCost = 0.08 ether;
  uint256 public maxSupply = 999;
  uint256 public maxMintAmount = 5;
  bool public paused = false;
  bool public isWLMintOpen = false;
  bool public isPublicSaleOpen = false;
  bool public revealed = false;
  mapping(address => bool) public whitelisted;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _notRevealedURI
  ) ERC721A(_name, _symbol) {
    setNotRevealedURI(_notRevealedURI);
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }
  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  // public
  function mint(uint256 _mintAmount) public payable {
    uint256 toBeRefunded;
    require(paused,"Minting is not open yet");
    require(_mintAmount <= maxMintAmount, "Can not mint this many");
    require(maxSupply + _mintAmount >= maxSupply,"Reached max supply");

    if(whitelisted[msg.sender] == true  && isWLMintOpen == true) {
      require(msg.value >= WLCost * _mintAmount - toBeRefunded, "Need to send more ETH.");
      _safeMint(msg.sender, _mintAmount);
      return;
    }

    require(isPublicSaleOpen,"public sale is closed");
    require(msg.value >= cost * _mintAmount,"Need to send more ETH.");

    _safeMint(msg.sender, _mintAmount);
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    if(revealed == false) {
      return notRevealedURI;
    }
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

  //only owner
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function airDrop (address[] memory _addresses, uint256[] memory _ammounts) public onlyOwner {
    for (uint256 i =0; i< _addresses.length; i++) {
      _safeMint(_addresses[i], _ammounts[i]);
    }
  }

  function setWLCost (uint256 _WLCost) public onlyOwner {
    WLCost = _WLCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedURI = _notRevealedURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function setIsPublicSaleOpen (bool _bool) public onlyOwner {
    isPublicSaleOpen = _bool;
  }

  function flipMintingState(bool _state) public onlyOwner {
    paused = _state;
  }

 function reveal() public onlyOwner {
   revealed = true;
 }

 function flipWLMintState (bool _bool) public onlyOwner {
   isWLMintOpen = _bool;
 }

 function whitelistUsers(address[] memory _users) public onlyOwner {
   for(uint256 i=0;i<_users.length; i++) {
    whitelisted[_users[i]] = true;
   } 
  }

  function withdraw(address ownerAddress) public payable onlyOwner {
    require(payable(ownerAddress).send(address(this).balance));
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_notRevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"WLCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_ammounts","type":"uint256[]"}],"name":"airDrop","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":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"flipMintingState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"flipWLMintState","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWLMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"setIsPublicSaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_WLCost","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"ownerAddress","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526701aa535d3d0c0000600d5567011c37937e080000600e556103e7600f5560056010556011805463ffffffff191690553480156200004157600080fd5b50604051620026f1380380620026f18339810160408190526200006491620002f4565b8251839083906200007d90600290602085019062000197565b5080516200009390600390602084019062000197565b505050620000b0620000aa620000c960201b60201c565b620000cd565b6001600955620000c0816200011f565b505050620003d8565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b031633146200017e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200019390600b90602084019062000197565b5050565b828054620001a59062000385565b90600052602060002090601f016020900481019282620001c9576000855562000214565b82601f10620001e457805160ff191683800117855562000214565b8280016001018555821562000214579182015b8281111562000214578251825591602001919060010190620001f7565b506200022292915062000226565b5090565b5b8082111562000222576000815560010162000227565b600082601f8301126200024f57600080fd5b81516001600160401b03808211156200026c576200026c620003c2565b604051601f8301601f19908116603f01168101908282118183101715620002975762000297620003c2565b81604052838152602092508683858801011115620002b457600080fd5b600091505b83821015620002d85785820183015181830184015290820190620002b9565b83821115620002ea5760008385830101525b9695505050505050565b6000806000606084860312156200030a57600080fd5b83516001600160401b03808211156200032257600080fd5b62000330878388016200023d565b945060208601519150808211156200034757600080fd5b62000355878388016200023d565b935060408601519150808211156200036c57600080fd5b506200037b868287016200023d565b9150509250925092565b600181811c908216806200039a57607f821691505b60208210811415620003bc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61230980620003e86000396000f3fe60806040526004361061025c5760003560e01c80637225038011610144578063d1d19213116100b6578063dc38882e1161007a578063dc38882e146106be578063e985e9c5146106de578063edec5f2714610727578063f2c4ce1e14610747578063f2fde38b14610767578063f685905a1461078757600080fd5b8063d1d1921314610618578063d432d3e314610638578063d5abeb0114610658578063d936547e1461066e578063da3ef23f1461069e57600080fd5b8063a0712d6811610108578063a0712d681461057b578063a22cb4651461058e578063a475b5dd146105ae578063b88d4fde146105c3578063c6682862146105e3578063c87b56dd146105f857600080fd5b806372250380146104fd5780637f00c7a6146105125780638da5cb5b146105325780638eae128d1461055057806395d89b411461056657600080fd5b806342842e0e116101dd5780635c975abb116101a15780635c975abb146104595780636352211e1461047357806365216a41146104935780636c0360eb146104b357806370a08231146104c8578063715018a6146104e857600080fd5b806342842e0e146103c557806344a0d68a146103e5578063518302271461040557806351cff8d91461042657806355f804b31461043957600080fd5b806318160ddd1161022457806318160ddd146103365780631a6949e31461034f578063239c70ae1461036f57806323b872dd1461038557806334cfe893146103a557600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806313faede614610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004611f0a565b6107a6565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107f8565b60405161028d91906120d2565b3480156102c457600080fd5b506102d86102d3366004611f8c565b61088a565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004611dd0565b6108ce565b005b34801561031e57600080fd5b50610328600d5481565b60405190815260200161028d565b34801561034257600080fd5b5060015460005403610328565b34801561035b57600080fd5b506011546102819062010000900460ff1681565b34801561037b57600080fd5b5061032860105481565b34801561039157600080fd5b506103106103a0366004611cef565b61095c565b3480156103b157600080fd5b506103106103c0366004611eef565b610967565b3480156103d157600080fd5b506103106103e0366004611cef565b6109ad565b3480156103f157600080fd5b50610310610400366004611f8c565b6109c8565b34801561041157600080fd5b50601154610281906301000000900460ff1681565b610310610434366004611ca1565b6109f7565b34801561044557600080fd5b50610310610454366004611f44565b610a51565b34801561046557600080fd5b506011546102819060ff1681565b34801561047f57600080fd5b506102d861048e366004611f8c565b610a92565b34801561049f57600080fd5b506103106104ae366004611e2e565b610aa4565b3480156104bf57600080fd5b506102ab610b28565b3480156104d457600080fd5b506103286104e3366004611ca1565b610bb6565b3480156104f457600080fd5b50610310610c04565b34801561050957600080fd5b506102ab610c3a565b34801561051e57600080fd5b5061031061052d366004611f8c565b610c47565b34801561053e57600080fd5b506008546001600160a01b03166102d8565b34801561055c57600080fd5b50610328600e5481565b34801561057257600080fd5b506102ab610c76565b610310610589366004611f8c565b610c85565b34801561059a57600080fd5b506103106105a9366004611da6565b610e74565b3480156105ba57600080fd5b50610310610f0a565b3480156105cf57600080fd5b506103106105de366004611d2b565b610f49565b3480156105ef57600080fd5b506102ab610f83565b34801561060457600080fd5b506102ab610613366004611f8c565b610f90565b34801561062457600080fd5b50610310610633366004611f8c565b611101565b34801561064457600080fd5b50610310610653366004611eef565b611130565b34801561066457600080fd5b50610328600f5481565b34801561067a57600080fd5b50610281610689366004611ca1565b60126020526000908152604090205460ff1681565b3480156106aa57600080fd5b506103106106b9366004611f44565b611174565b3480156106ca57600080fd5b506103106106d9366004611eef565b6111b1565b3480156106ea57600080fd5b506102816106f9366004611cbc565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561073357600080fd5b50610310610742366004611dfa565b6111f7565b34801561075357600080fd5b50610310610762366004611f44565b611289565b34801561077357600080fd5b50610310610782366004611ca1565b6112c6565b34801561079357600080fd5b5060115461028190610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806107d757506001600160e01b03198216635b5e139f60e01b145b806107f257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610807906121fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610833906121fb565b80156108805780601f1061085557610100808354040283529160200191610880565b820191906000526020600020905b81548152906001019060200180831161086357829003601f168201915b5050505050905090565b60006108958261135e565b6108b2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108d982610a92565b9050806001600160a01b0316836001600160a01b0316141561090e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061092e575061092c81336106f9565b155b1561094c576040516367d9dca160e11b815260040160405180910390fd5b610957838383611389565b505050565b6109578383836113e5565b6008546001600160a01b0316331461099a5760405162461bcd60e51b8152600401610991906120e5565b60405180910390fd5b6011805460ff1916911515919091179055565b61095783838360405180602001604052806000815250610f49565b6008546001600160a01b031633146109f25760405162461bcd60e51b8152600401610991906120e5565b600d55565b6008546001600160a01b03163314610a215760405162461bcd60e51b8152600401610991906120e5565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050610a4e57600080fd5b50565b6008546001600160a01b03163314610a7b5760405162461bcd60e51b8152600401610991906120e5565b8051610a8e90600a906020840190611b0c565b5050565b6000610a9d826115f9565b5192915050565b6008546001600160a01b03163314610ace5760405162461bcd60e51b8152600401610991906120e5565b60005b825181101561095757610b16838281518110610aef57610aef612291565b6020026020010151838381518110610b0957610b09612291565b6020026020010151611712565b80610b2081612236565b915050610ad1565b600a8054610b35906121fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610b61906121fb565b8015610bae5780601f10610b8357610100808354040283529160200191610bae565b820191906000526020600020905b815481529060010190602001808311610b9157829003601f168201915b505050505081565b60006001600160a01b038216610bdf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c2e5760405162461bcd60e51b8152600401610991906120e5565b610c38600061172c565b565b600b8054610b35906121fb565b6008546001600160a01b03163314610c715760405162461bcd60e51b8152600401610991906120e5565b601055565b606060038054610807906121fb565b60115460009060ff16610cda5760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e67206973206e6f74206f70656e207965740000000000000000006044820152606401610991565b601054821115610d255760405162461bcd60e51b815260206004820152601660248201527543616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610991565b600f54610d32838261216d565b1015610d755760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820737570706c7960701b6044820152606401610991565b3360009081526012602052604090205460ff1615156001148015610da6575060115460ff6101009091041615156001145b15610e16578082600e54610dba9190612199565b610dc491906121b8565b341015610e0c5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610991565b610a8e3383611712565b60115462010000900460ff16610e665760405162461bcd60e51b81526020600482015260156024820152741c1d589b1a58c81cd85b19481a5cc818db1bdcd959605a1b6044820152606401610991565b81600d54610dc49190612199565b6001600160a01b038216331415610e9e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f345760405162461bcd60e51b8152600401610991906120e5565b6011805463ff00000019166301000000179055565b610f548484846113e5565b610f608484848461177e565b610f7d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600c8054610b35906121fb565b6060610f9b8261135e565b610fff5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610991565b6011546301000000900460ff166110a257600b805461101d906121fb565b80601f0160208091040260200160405190810160405280929190818152602001828054611049906121fb565b80156110965780601f1061106b57610100808354040283529160200191611096565b820191906000526020600020905b81548152906001019060200180831161107957829003601f168201915b50505050509050919050565b60006110ac61188d565b905060008151116110cc57604051806020016040528060008152506110fa565b806110d68461189c565b600c6040516020016110ea93929190611fd1565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461112b5760405162461bcd60e51b8152600401610991906120e5565b600e55565b6008546001600160a01b0316331461115a5760405162461bcd60e51b8152600401610991906120e5565b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b0316331461119e5760405162461bcd60e51b8152600401610991906120e5565b8051610a8e90600c906020840190611b0c565b6008546001600160a01b031633146111db5760405162461bcd60e51b8152600401610991906120e5565b60118054911515620100000262ff000019909216919091179055565b6008546001600160a01b031633146112215760405162461bcd60e51b8152600401610991906120e5565b60005b8151811015610a8e5760016012600084848151811061124557611245612291565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061128181612236565b915050611224565b6008546001600160a01b031633146112b35760405162461bcd60e51b8152600401610991906120e5565b8051610a8e90600b906020840190611b0c565b6008546001600160a01b031633146112f05760405162461bcd60e51b8152600401610991906120e5565b6001600160a01b0381166113555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610991565b610a4e8161172c565b60008054821080156107f2575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113f0826115f9565b80519091506000906001600160a01b0316336001600160a01b0316148061141e5750815161141e90336106f9565b8061143957503361142e8461088a565b6001600160a01b0316145b90508061145957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461148e5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166114b557604051633a954ecd60e21b815260040160405180910390fd5b6114c56000848460000151611389565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166115af576000548110156115af57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482908110156116f957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906116f75780516001600160a01b03161561168e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156116f2579392505050565b61168e565b505b604051636f96cda160e11b815260040160405180910390fd5b610a8e828260405180602001604052806000815250611999565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561188157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117c2903390899088908890600401612095565b602060405180830381600087803b1580156117dc57600080fd5b505af192505050801561180c575060408051601f3d908101601f1916820190925261180991810190611f27565b60015b611867573d80801561183a576040519150601f19603f3d011682016040523d82523d6000602084013e61183f565b606091505b50805161185f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611885565b5060015b949350505050565b6060600a8054610807906121fb565b6060816118c05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118ea57806118d481612236565b91506118e39050600a83612185565b91506118c4565b6000816001600160401b03811115611904576119046122a7565b6040519080825280601f01601f19166020018201604052801561192e576020820181803683370190505b5090505b8415611885576119436001836121b8565b9150611950600a86612251565b61195b90603061216d565b60f81b81838151811061197057611970612291565b60200101906001600160f81b031916908160001a905350611992600a86612185565b9450611932565b61095783838360016000546001600160a01b0385166119ca57604051622e076360e81b815260040160405180910390fd5b836119e85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611b035760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611ad95750611ad7600088848861177e565b155b15611af7576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611a82565b506000556115f2565b828054611b18906121fb565b90600052602060002090601f016020900481019282611b3a5760008555611b80565b82601f10611b5357805160ff1916838001178555611b80565b82800160010185558215611b80579182015b82811115611b80578251825591602001919060010190611b65565b50611b8c929150611b90565b5090565b5b80821115611b8c5760008155600101611b91565b60006001600160401b03831115611bbe57611bbe6122a7565b611bd1601f8401601f191660200161211a565b9050828152838383011115611be557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611c1357600080fd5b919050565b600082601f830112611c2957600080fd5b81356020611c3e611c398361214a565b61211a565b80838252828201915082860187848660051b8901011115611c5e57600080fd5b60005b85811015611c8457611c7282611bfc565b84529284019290840190600101611c61565b5090979650505050505050565b80358015158114611c1357600080fd5b600060208284031215611cb357600080fd5b6110fa82611bfc565b60008060408385031215611ccf57600080fd5b611cd883611bfc565b9150611ce660208401611bfc565b90509250929050565b600080600060608486031215611d0457600080fd5b611d0d84611bfc565b9250611d1b60208501611bfc565b9150604084013590509250925092565b60008060008060808587031215611d4157600080fd5b611d4a85611bfc565b9350611d5860208601611bfc565b92506040850135915060608501356001600160401b03811115611d7a57600080fd5b8501601f81018713611d8b57600080fd5b611d9a87823560208401611ba5565b91505092959194509250565b60008060408385031215611db957600080fd5b611dc283611bfc565b9150611ce660208401611c91565b60008060408385031215611de357600080fd5b611dec83611bfc565b946020939093013593505050565b600060208284031215611e0c57600080fd5b81356001600160401b03811115611e2257600080fd5b61188584828501611c18565b60008060408385031215611e4157600080fd5b82356001600160401b0380821115611e5857600080fd5b611e6486838701611c18565b9350602091508185013581811115611e7b57600080fd5b85019050601f81018613611e8e57600080fd5b8035611e9c611c398261214a565b80828252848201915084840189868560051b8701011115611ebc57600080fd5b600094505b83851015611edf578035835260019490940193918501918501611ec1565b5080955050505050509250929050565b600060208284031215611f0157600080fd5b6110fa82611c91565b600060208284031215611f1c57600080fd5b81356110fa816122bd565b600060208284031215611f3957600080fd5b81516110fa816122bd565b600060208284031215611f5657600080fd5b81356001600160401b03811115611f6c57600080fd5b8201601f81018413611f7d57600080fd5b61188584823560208401611ba5565b600060208284031215611f9e57600080fd5b5035919050565b60008151808452611fbd8160208601602086016121cf565b601f01601f19169290920160200192915050565b600084516020611fe48285838a016121cf565b855191840191611ff78184848a016121cf565b8554920191600090600181811c908083168061201457607f831692505b85831081141561203257634e487b7160e01b85526022600452602485fd5b808015612046576001811461205757612084565b60ff19851688528388019550612084565b60008b81526020902060005b8581101561207c5781548a820152908401908801612063565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120c890830184611fa5565b9695505050505050565b6020815260006110fa6020830184611fa5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612142576121426122a7565b604052919050565b60006001600160401b03821115612163576121636122a7565b5060051b60200190565b6000821982111561218057612180612265565b500190565b6000826121945761219461227b565b500490565b60008160001904831182151516156121b3576121b3612265565b500290565b6000828210156121ca576121ca612265565b500390565b60005b838110156121ea5781810151838201526020016121d2565b83811115610f7d5750506000910152565b600181811c9082168061220f57607f821691505b6020821081141561223057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561224a5761224a612265565b5060010190565b6000826122605761226061227b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a4e57600080fdfea2646970667358221220d21548d75996134b2c62b3c2b9b557622a4f039ef7e502b2cee7277483d5382864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e526f79616c204d657461636174730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003524d430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004a68747470733a2f2f726f79616c6d657461636174732e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f6e6f7452657665616c65644d65746144617461742e6a736f6e00000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80637225038011610144578063d1d19213116100b6578063dc38882e1161007a578063dc38882e146106be578063e985e9c5146106de578063edec5f2714610727578063f2c4ce1e14610747578063f2fde38b14610767578063f685905a1461078757600080fd5b8063d1d1921314610618578063d432d3e314610638578063d5abeb0114610658578063d936547e1461066e578063da3ef23f1461069e57600080fd5b8063a0712d6811610108578063a0712d681461057b578063a22cb4651461058e578063a475b5dd146105ae578063b88d4fde146105c3578063c6682862146105e3578063c87b56dd146105f857600080fd5b806372250380146104fd5780637f00c7a6146105125780638da5cb5b146105325780638eae128d1461055057806395d89b411461056657600080fd5b806342842e0e116101dd5780635c975abb116101a15780635c975abb146104595780636352211e1461047357806365216a41146104935780636c0360eb146104b357806370a08231146104c8578063715018a6146104e857600080fd5b806342842e0e146103c557806344a0d68a146103e5578063518302271461040557806351cff8d91461042657806355f804b31461043957600080fd5b806318160ddd1161022457806318160ddd146103365780631a6949e31461034f578063239c70ae1461036f57806323b872dd1461038557806334cfe893146103a557600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806313faede614610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004611f0a565b6107a6565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107f8565b60405161028d91906120d2565b3480156102c457600080fd5b506102d86102d3366004611f8c565b61088a565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004611dd0565b6108ce565b005b34801561031e57600080fd5b50610328600d5481565b60405190815260200161028d565b34801561034257600080fd5b5060015460005403610328565b34801561035b57600080fd5b506011546102819062010000900460ff1681565b34801561037b57600080fd5b5061032860105481565b34801561039157600080fd5b506103106103a0366004611cef565b61095c565b3480156103b157600080fd5b506103106103c0366004611eef565b610967565b3480156103d157600080fd5b506103106103e0366004611cef565b6109ad565b3480156103f157600080fd5b50610310610400366004611f8c565b6109c8565b34801561041157600080fd5b50601154610281906301000000900460ff1681565b610310610434366004611ca1565b6109f7565b34801561044557600080fd5b50610310610454366004611f44565b610a51565b34801561046557600080fd5b506011546102819060ff1681565b34801561047f57600080fd5b506102d861048e366004611f8c565b610a92565b34801561049f57600080fd5b506103106104ae366004611e2e565b610aa4565b3480156104bf57600080fd5b506102ab610b28565b3480156104d457600080fd5b506103286104e3366004611ca1565b610bb6565b3480156104f457600080fd5b50610310610c04565b34801561050957600080fd5b506102ab610c3a565b34801561051e57600080fd5b5061031061052d366004611f8c565b610c47565b34801561053e57600080fd5b506008546001600160a01b03166102d8565b34801561055c57600080fd5b50610328600e5481565b34801561057257600080fd5b506102ab610c76565b610310610589366004611f8c565b610c85565b34801561059a57600080fd5b506103106105a9366004611da6565b610e74565b3480156105ba57600080fd5b50610310610f0a565b3480156105cf57600080fd5b506103106105de366004611d2b565b610f49565b3480156105ef57600080fd5b506102ab610f83565b34801561060457600080fd5b506102ab610613366004611f8c565b610f90565b34801561062457600080fd5b50610310610633366004611f8c565b611101565b34801561064457600080fd5b50610310610653366004611eef565b611130565b34801561066457600080fd5b50610328600f5481565b34801561067a57600080fd5b50610281610689366004611ca1565b60126020526000908152604090205460ff1681565b3480156106aa57600080fd5b506103106106b9366004611f44565b611174565b3480156106ca57600080fd5b506103106106d9366004611eef565b6111b1565b3480156106ea57600080fd5b506102816106f9366004611cbc565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561073357600080fd5b50610310610742366004611dfa565b6111f7565b34801561075357600080fd5b50610310610762366004611f44565b611289565b34801561077357600080fd5b50610310610782366004611ca1565b6112c6565b34801561079357600080fd5b5060115461028190610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806107d757506001600160e01b03198216635b5e139f60e01b145b806107f257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610807906121fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610833906121fb565b80156108805780601f1061085557610100808354040283529160200191610880565b820191906000526020600020905b81548152906001019060200180831161086357829003601f168201915b5050505050905090565b60006108958261135e565b6108b2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108d982610a92565b9050806001600160a01b0316836001600160a01b0316141561090e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061092e575061092c81336106f9565b155b1561094c576040516367d9dca160e11b815260040160405180910390fd5b610957838383611389565b505050565b6109578383836113e5565b6008546001600160a01b0316331461099a5760405162461bcd60e51b8152600401610991906120e5565b60405180910390fd5b6011805460ff1916911515919091179055565b61095783838360405180602001604052806000815250610f49565b6008546001600160a01b031633146109f25760405162461bcd60e51b8152600401610991906120e5565b600d55565b6008546001600160a01b03163314610a215760405162461bcd60e51b8152600401610991906120e5565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050610a4e57600080fd5b50565b6008546001600160a01b03163314610a7b5760405162461bcd60e51b8152600401610991906120e5565b8051610a8e90600a906020840190611b0c565b5050565b6000610a9d826115f9565b5192915050565b6008546001600160a01b03163314610ace5760405162461bcd60e51b8152600401610991906120e5565b60005b825181101561095757610b16838281518110610aef57610aef612291565b6020026020010151838381518110610b0957610b09612291565b6020026020010151611712565b80610b2081612236565b915050610ad1565b600a8054610b35906121fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610b61906121fb565b8015610bae5780601f10610b8357610100808354040283529160200191610bae565b820191906000526020600020905b815481529060010190602001808311610b9157829003601f168201915b505050505081565b60006001600160a01b038216610bdf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c2e5760405162461bcd60e51b8152600401610991906120e5565b610c38600061172c565b565b600b8054610b35906121fb565b6008546001600160a01b03163314610c715760405162461bcd60e51b8152600401610991906120e5565b601055565b606060038054610807906121fb565b60115460009060ff16610cda5760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e67206973206e6f74206f70656e207965740000000000000000006044820152606401610991565b601054821115610d255760405162461bcd60e51b815260206004820152601660248201527543616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610991565b600f54610d32838261216d565b1015610d755760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820737570706c7960701b6044820152606401610991565b3360009081526012602052604090205460ff1615156001148015610da6575060115460ff6101009091041615156001145b15610e16578082600e54610dba9190612199565b610dc491906121b8565b341015610e0c5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610991565b610a8e3383611712565b60115462010000900460ff16610e665760405162461bcd60e51b81526020600482015260156024820152741c1d589b1a58c81cd85b19481a5cc818db1bdcd959605a1b6044820152606401610991565b81600d54610dc49190612199565b6001600160a01b038216331415610e9e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f345760405162461bcd60e51b8152600401610991906120e5565b6011805463ff00000019166301000000179055565b610f548484846113e5565b610f608484848461177e565b610f7d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600c8054610b35906121fb565b6060610f9b8261135e565b610fff5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610991565b6011546301000000900460ff166110a257600b805461101d906121fb565b80601f0160208091040260200160405190810160405280929190818152602001828054611049906121fb565b80156110965780601f1061106b57610100808354040283529160200191611096565b820191906000526020600020905b81548152906001019060200180831161107957829003601f168201915b50505050509050919050565b60006110ac61188d565b905060008151116110cc57604051806020016040528060008152506110fa565b806110d68461189c565b600c6040516020016110ea93929190611fd1565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461112b5760405162461bcd60e51b8152600401610991906120e5565b600e55565b6008546001600160a01b0316331461115a5760405162461bcd60e51b8152600401610991906120e5565b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b0316331461119e5760405162461bcd60e51b8152600401610991906120e5565b8051610a8e90600c906020840190611b0c565b6008546001600160a01b031633146111db5760405162461bcd60e51b8152600401610991906120e5565b60118054911515620100000262ff000019909216919091179055565b6008546001600160a01b031633146112215760405162461bcd60e51b8152600401610991906120e5565b60005b8151811015610a8e5760016012600084848151811061124557611245612291565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061128181612236565b915050611224565b6008546001600160a01b031633146112b35760405162461bcd60e51b8152600401610991906120e5565b8051610a8e90600b906020840190611b0c565b6008546001600160a01b031633146112f05760405162461bcd60e51b8152600401610991906120e5565b6001600160a01b0381166113555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610991565b610a4e8161172c565b60008054821080156107f2575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113f0826115f9565b80519091506000906001600160a01b0316336001600160a01b0316148061141e5750815161141e90336106f9565b8061143957503361142e8461088a565b6001600160a01b0316145b90508061145957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461148e5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166114b557604051633a954ecd60e21b815260040160405180910390fd5b6114c56000848460000151611389565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166115af576000548110156115af57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482908110156116f957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906116f75780516001600160a01b03161561168e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156116f2579392505050565b61168e565b505b604051636f96cda160e11b815260040160405180910390fd5b610a8e828260405180602001604052806000815250611999565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561188157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117c2903390899088908890600401612095565b602060405180830381600087803b1580156117dc57600080fd5b505af192505050801561180c575060408051601f3d908101601f1916820190925261180991810190611f27565b60015b611867573d80801561183a576040519150601f19603f3d011682016040523d82523d6000602084013e61183f565b606091505b50805161185f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611885565b5060015b949350505050565b6060600a8054610807906121fb565b6060816118c05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118ea57806118d481612236565b91506118e39050600a83612185565b91506118c4565b6000816001600160401b03811115611904576119046122a7565b6040519080825280601f01601f19166020018201604052801561192e576020820181803683370190505b5090505b8415611885576119436001836121b8565b9150611950600a86612251565b61195b90603061216d565b60f81b81838151811061197057611970612291565b60200101906001600160f81b031916908160001a905350611992600a86612185565b9450611932565b61095783838360016000546001600160a01b0385166119ca57604051622e076360e81b815260040160405180910390fd5b836119e85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611b035760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611ad95750611ad7600088848861177e565b155b15611af7576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611a82565b506000556115f2565b828054611b18906121fb565b90600052602060002090601f016020900481019282611b3a5760008555611b80565b82601f10611b5357805160ff1916838001178555611b80565b82800160010185558215611b80579182015b82811115611b80578251825591602001919060010190611b65565b50611b8c929150611b90565b5090565b5b80821115611b8c5760008155600101611b91565b60006001600160401b03831115611bbe57611bbe6122a7565b611bd1601f8401601f191660200161211a565b9050828152838383011115611be557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611c1357600080fd5b919050565b600082601f830112611c2957600080fd5b81356020611c3e611c398361214a565b61211a565b80838252828201915082860187848660051b8901011115611c5e57600080fd5b60005b85811015611c8457611c7282611bfc565b84529284019290840190600101611c61565b5090979650505050505050565b80358015158114611c1357600080fd5b600060208284031215611cb357600080fd5b6110fa82611bfc565b60008060408385031215611ccf57600080fd5b611cd883611bfc565b9150611ce660208401611bfc565b90509250929050565b600080600060608486031215611d0457600080fd5b611d0d84611bfc565b9250611d1b60208501611bfc565b9150604084013590509250925092565b60008060008060808587031215611d4157600080fd5b611d4a85611bfc565b9350611d5860208601611bfc565b92506040850135915060608501356001600160401b03811115611d7a57600080fd5b8501601f81018713611d8b57600080fd5b611d9a87823560208401611ba5565b91505092959194509250565b60008060408385031215611db957600080fd5b611dc283611bfc565b9150611ce660208401611c91565b60008060408385031215611de357600080fd5b611dec83611bfc565b946020939093013593505050565b600060208284031215611e0c57600080fd5b81356001600160401b03811115611e2257600080fd5b61188584828501611c18565b60008060408385031215611e4157600080fd5b82356001600160401b0380821115611e5857600080fd5b611e6486838701611c18565b9350602091508185013581811115611e7b57600080fd5b85019050601f81018613611e8e57600080fd5b8035611e9c611c398261214a565b80828252848201915084840189868560051b8701011115611ebc57600080fd5b600094505b83851015611edf578035835260019490940193918501918501611ec1565b5080955050505050509250929050565b600060208284031215611f0157600080fd5b6110fa82611c91565b600060208284031215611f1c57600080fd5b81356110fa816122bd565b600060208284031215611f3957600080fd5b81516110fa816122bd565b600060208284031215611f5657600080fd5b81356001600160401b03811115611f6c57600080fd5b8201601f81018413611f7d57600080fd5b61188584823560208401611ba5565b600060208284031215611f9e57600080fd5b5035919050565b60008151808452611fbd8160208601602086016121cf565b601f01601f19169290920160200192915050565b600084516020611fe48285838a016121cf565b855191840191611ff78184848a016121cf565b8554920191600090600181811c908083168061201457607f831692505b85831081141561203257634e487b7160e01b85526022600452602485fd5b808015612046576001811461205757612084565b60ff19851688528388019550612084565b60008b81526020902060005b8581101561207c5781548a820152908401908801612063565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120c890830184611fa5565b9695505050505050565b6020815260006110fa6020830184611fa5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612142576121426122a7565b604052919050565b60006001600160401b03821115612163576121636122a7565b5060051b60200190565b6000821982111561218057612180612265565b500190565b6000826121945761219461227b565b500490565b60008160001904831182151516156121b3576121b3612265565b500290565b6000828210156121ca576121ca612265565b500390565b60005b838110156121ea5781810151838201526020016121d2565b83811115610f7d5750506000910152565b600181811c9082168061220f57607f821691505b6020821081141561223057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561224a5761224a612265565b5060010190565b6000826122605761226061227b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a4e57600080fdfea2646970667358221220d21548d75996134b2c62b3c2b9b557622a4f039ef7e502b2cee7277483d5382864736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e526f79616c204d657461636174730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003524d430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004a68747470733a2f2f726f79616c6d657461636174732e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f6e6f7452657665616c65644d65746144617461742e6a736f6e00000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Royal Metacats
Arg [1] : _symbol (string): RMC
Arg [2] : _notRevealedURI (string): https://royalmetacats.s3.us-east-2.amazonaws.com/notRevealedMetaDatat.json

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 526f79616c204d65746163617473000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 524d430000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000004a
Arg [8] : 68747470733a2f2f726f79616c6d657461636174732e73332e75732d65617374
Arg [9] : 2d322e616d617a6f6e6177732e636f6d2f6e6f7452657665616c65644d657461
Arg [10] : 44617461742e6a736f6e00000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46355:3670:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24020:305;;;;;;;;;;-1:-1:-1;24020:305:0;;;;;:::i;:::-;;:::i;:::-;;;8926:14:1;;8919:22;8901:41;;8889:2;8874:18;24020:305:0;;;;;;;;27380:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28883:204::-;;;;;;;;;;-1:-1:-1;28883:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8224:32:1;;;8206:51;;8194:2;8179:18;28883:204:0;8060:203:1;28446:371:0;;;;;;;;;;-1:-1:-1;28446:371:0;;;;;:::i;:::-;;:::i;:::-;;46543:32;;;;;;;;;;;;;;;;;;;12258:25:1;;;12246:2;12231:18;46543:32:0;12112:177:1;23677:271:0;;;;;;;;;;-1:-1:-1;23913:12:0;;23721:7;23897:13;:28;23677:271;;46759:36;;;;;;;;;;-1:-1:-1;46759:36:0;;;;;;;;;;;46654:32;;;;;;;;;;;;;;;;29740:170;;;;;;;;;;-1:-1:-1;29740:170:0;;;;;:::i;:::-;;:::i;49475:84::-;;;;;;;;;;-1:-1:-1;49475:84:0;;;;;:::i;:::-;;:::i;29981:185::-;;;;;;;;;;-1:-1:-1;29981:185:0;;;;;:::i;:::-;;:::i;48507:80::-;;;;;;;;;;-1:-1:-1;48507:80:0;;;;;:::i;:::-;;:::i;46800:28::-;;;;;;;;;;-1:-1:-1;46800:28:0;;;;;;;;;;;49886:136;;;;;;:::i;:::-;;:::i;49015:98::-;;;;;;;;;;-1:-1:-1;49015:98:0;;;;;:::i;:::-;;:::i;46691:26::-;;;;;;;;;;-1:-1:-1;46691:26:0;;;;;;;;27189:124;;;;;;;;;;-1:-1:-1;27189:124:0;;;;;:::i;:::-;;:::i;48593:205::-;;;;;;;;;;-1:-1:-1;48593:205:0;;;;;:::i;:::-;;:::i;46452:21::-;;;;;;;;;;;;;:::i;24389:206::-;;;;;;;;;;-1:-1:-1;24389:206:0;;;;;:::i;:::-;;:::i;42869:94::-;;;;;;;;;;;;;:::i;46478:28::-;;;;;;;;;;;;;:::i;48893:116::-;;;;;;;;;;-1:-1:-1;48893:116:0;;;;;:::i;:::-;;:::i;42218:87::-;;;;;;;;;;-1:-1:-1;42291:6:0;;-1:-1:-1;;;;;42291:6:0;42218:87;;46580:34;;;;;;;;;;;;;;;;27549:104;;;;;;;;;;;;;:::i;47318:674::-;;;;;;:::i;:::-;;:::i;29159:279::-;;;;;;;;;;-1:-1:-1;29159:279:0;;;;;:::i;:::-;;:::i;49564:61::-;;;;;;;;;;;;;:::i;30237:342::-;;;;;;;;;;-1:-1:-1;30237:342:0;;;;;:::i;:::-;;:::i;46511:27::-;;;;;;;;;;;;;:::i;47998:487::-;;;;;;;;;;-1:-1:-1;47998:487:0;;;;;:::i;:::-;;:::i;48804:83::-;;;;;;;;;;-1:-1:-1;48804:83:0;;;;;:::i;:::-;;:::i;49630:86::-;;;;;;;;;;-1:-1:-1;49630:86:0;;;;;:::i;:::-;;:::i;46619:30::-;;;;;;;;;;;;;;;;46833:43;;;;;;;;;;-1:-1:-1;46833:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;49245:122;;;;;;;;;;-1:-1:-1;49245:122:0;;;;;:::i;:::-;;:::i;49373:96::-;;;;;;;;;;-1:-1:-1;49373:96:0;;;;;:::i;:::-;;:::i;29509:164::-;;;;;;;;;;-1:-1:-1;29509:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29630:25:0;;;29606:4;29630:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29509:164;49721:159;;;;;;;;;;-1:-1:-1;49721:159:0;;;;;:::i;:::-;;:::i;49119:120::-;;;;;;;;;;-1:-1:-1;49119:120:0;;;;;:::i;:::-;;:::i;43118:192::-;;;;;;;;;;-1:-1:-1;43118:192:0;;;;;:::i;:::-;;:::i;46722:32::-;;;;;;;;;;-1:-1:-1;46722:32:0;;;;;;;;;;;24020:305;24122:4;-1:-1:-1;;;;;;24159:40:0;;-1:-1:-1;;;24159:40:0;;:105;;-1:-1:-1;;;;;;;24216:48:0;;-1:-1:-1;;;24216:48:0;24159:105;:158;;;-1:-1:-1;;;;;;;;;;12918:40:0;;;24281:36;24139:178;24020:305;-1:-1:-1;;24020:305:0:o;27380:100::-;27434:13;27467:5;27460:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27380:100;:::o;28883:204::-;28951:7;28976:16;28984:7;28976;:16::i;:::-;28971:64;;29001:34;;-1:-1:-1;;;29001:34:0;;;;;;;;;;;28971:64;-1:-1:-1;29055:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29055:24:0;;28883:204::o;28446:371::-;28519:13;28535:24;28551:7;28535:15;:24::i;:::-;28519:40;;28580:5;-1:-1:-1;;;;;28574:11:0;:2;-1:-1:-1;;;;;28574:11:0;;28570:48;;;28594:24;;-1:-1:-1;;;28594:24:0;;;;;;;;;;;28570:48;20203:10;-1:-1:-1;;;;;28635:21:0;;;;;;:63;;-1:-1:-1;28661:37:0;28678:5;20203:10;29509:164;:::i;28661:37::-;28660:38;28635:63;28631:138;;;28722:35;;-1:-1:-1;;;28722:35:0;;;;;;;;;;;28631:138;28781:28;28790:2;28794:7;28803:5;28781:8;:28::i;:::-;28508:309;28446:371;;:::o;29740:170::-;29874:28;29884:4;29890:2;29894:7;29874:9;:28::i;49475:84::-;42291:6;;-1:-1:-1;;;;;42291:6:0;20203:10;42438:23;42430:68;;;;-1:-1:-1;;;42430:68:0;;;;;;;:::i;:::-;;;;;;;;;49538:6:::1;:15:::0;;-1:-1:-1;;49538:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49475:84::o;29981:185::-;30119:39;30136:4;30142:2;30146:7;30119:39;;;;;;;;;;;;:16;:39::i;48507:80::-;42291:6;;-1:-1:-1;;;;;42291:6:0;20203:10;42438:23;42430:68;;;;-1:-1:-1;;;42430:68:0;;;;;;;:::i;:::-;48566:4:::1;:15:::0;48507:80::o;49886:136::-;42291:6;;-1:-1:-1;;;;;42291:6:0;20203:10;42438:23;42430:68;;;;-1:-1:-1;;;42430:68:0;;;;;;;:::i;:::-;49966:49:::1;::::0;-1:-1:-1;;;;;49966:26:0;::::1;::::0;49993:21:::1;49966:49:::0;::::1;;;::::0;::::1;::::0;;;49993:21;49966:26;:49;::::1;;;;;;49958:58;;;::::0;::::1;;49886:136:::0;:::o;49015:98::-;42291:6;;-1:-1:-1;;;;;42291:6:0;20203:10;42438:23;42430:68;;;;-1:-1:-1;;;42430:68:0;;;;;;;:::i;:::-;49086:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49015:98:::0;:::o;27189:124::-;27253:7;27280:20;27292:7;27280:11;:20::i;:::-;:25;;27189:124;-1:-1:-1;;27189:124:0:o;48593:205::-;42291:6;;-1:-1:-1;;;;;42291:6:0;20203:10;42438:23;42430:68;;;;-1:-1:-1;;;42430:68:0;;;;;;;:::i;:::-;48697:9:::1;48692:101;48714:10;:17;48711:1;:20;48692:101;;;48747:38;48757:10;48768:1;48757:13;;;;;;;;:::i;:::-;;;;;;;48772:9;48782:1;48772:12;;;;;;;;:::i;:::-;;;;;;;48747:9;:38::i;:::-;48733:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48692:101;;46452:21:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24389:206::-;24453:7;-1:-1:-1;;;;;24477:19:0;;24473:60;;24505:28;;-1:-1:-1;;;24505:28:0;;;;;;;;;;;24473:60;-1:-1:-1;;;;;;24559:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24559:27:0;;24389:206::o;42869:94::-;42291:6;;-1:-1:-1;;;;;42291:6:0;20203:10;42438:23;42430:68;;;;-1:-1:-1;;;42430:68:0;;;;;;;:::i;:::-;42934:21:::1;42952:1;42934:9;:21::i;:::-;42869:94::o:0;46478:28::-;;;;;;;:::i;48893:116::-;42291:6;;-1:-1:-1;;;;;42291:6:0;20203:10;42438:23;42430:68;;;;-1:-1:-1;;;42430:68:0;;;;;;;:::i;:::-;48970:13:::1;:33:::0;48893:116::o;27549:104::-;27605:13;27638:7;27631:14;;;;;:::i;47318:674::-;47410:6;;47375:20;;47410:6;;47402:41;;;;-1:-1:-1;;;47402:41:0;;11962:2:1;47402:41:0;;;11944:21:1;12001:2;11981:18;;;11974:30;12040:25;12020:18;;;12013:53;12083:18;;47402:41:0;11760:347:1;47402:41:0;47473:13;;47458:11;:28;;47450:63;;;;-1:-1:-1;;;47450:63:0;;10133:2:1;47450:63:0;;;10115:21:1;10172:2;10152:18;;;10145:30;-1:-1:-1;;;10191:18:1;;;10184:52;10253:18;;47450:63:0;9931:346:1;47450:63:0;47555:9;;47528:23;47540:11;47555:9;47528:23;:::i;:::-;:36;;47520:66;;;;-1:-1:-1;;;47520:66:0;;9786:2:1;47520:66:0;;;9768:21:1;9825:2;9805:18;;;9798:30;-1:-1:-1;;;9844:18:1;;;9837:48;9902:18;;47520:66:0;9584:342:1;47520:66:0;47610:10;47598:23;;;;:11;:23;;;;;;;;:31;;:23;:31;:56;;;;-1:-1:-1;47634:12:0;;;;;;;;:20;;:12;:20;47598:56;47595:219;;;47709:12;47695:11;47686:6;;:20;;;;:::i;:::-;:35;;;;:::i;:::-;47673:9;:48;;47665:83;;;;-1:-1:-1;;;47665:83:0;;11611:2:1;47665:83:0;;;11593:21:1;11650:2;11630:18;;;11623:30;-1:-1:-1;;;11669:18:1;;;11662:52;11731:18;;47665:83:0;11409:346:1;47665:83:0;47757:34;47767:10;47779:11;47757:9;:34::i;47595:219::-;47830:16;;;;;;;47822:49;;;;-1:-1:-1;;;47822:49:0;;10484:2:1;47822:49:0;;;10466:21:1;10523:2;10503:18;;;10496:30;-1:-1:-1;;;10542:18:1;;;10535:51;10603:18;;47822:49:0;10282:345:1;47822:49:0;47906:11;47899:4;;:18;;;;:::i;29159:279::-;-1:-1:-1;;;;;29250:24:0;;20203:10;29250:24;29246:54;;;29283:17;;-1:-1:-1;;;29283:17:0;;;;;;;;;;;29246:54;20203:10;29313:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29313:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29313:53:0;;;;;;;;;;29382:48;;8901:41:1;;;29313:42:0;;20203:10;29382:48;;8874:18:1;29382:48:0;;;;;;;29159:279;;:::o;49564:61::-;42291:6;;-1:-1:-1;;;;;42291:6:0;20203:10;42438:23;42430:68;;;;-1:-1:-1;;;42430:68:0;;;;;;;:::i;:::-;49605:8:::1;:15:::0;;-1:-1:-1;;49605:15:0::1;::::0;::::1;::::0;;49564:61::o;30237:342::-;30404:28;30414:4;30420:2;30424:7;30404:9;:28::i;:::-;30448:48;30471:4;30477:2;30481:7;30490:5;30448:22;:48::i;:::-;30443:129;;30520:40;;-1:-1:-1;;;30520:40:0;;;;;;;;;;;30443:129;30237:342;;;;:::o;46511:27::-;;;;;;;:::i;47998:487::-;48096:13;48137:16;48145:7;48137;:16::i;:::-;48121:97;;;;-1:-1:-1;;;48121:97:0;;11195:2:1;48121:97:0;;;11177:21:1;11234:2;11214:18;;;11207:30;11273:34;11253:18;;;11246:62;-1:-1:-1;;;11324:18:1;;;11317:45;11379:19;;48121:97:0;10993:411:1;48121:97:0;48228:8;;;;;;;48225:60;;48263:14;48256:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47998:487;;;:::o;48225:60::-;48291:28;48322:10;:8;:10::i;:::-;48291:41;;48377:1;48352:14;48346:28;:32;:133;;;;;;;;;;;;;;;;;48414:14;48430:18;:7;:16;:18::i;:::-;48450:13;48397:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48346:133;48339:140;47998:487;-1:-1:-1;;;47998:487:0:o;48804:83::-;42291:6;;-1:-1:-1;;;;;42291:6:0;20203:10;42438:23;42430:68;;;;-1:-1:-1;;;42430:68:0;;;;;;;:::i;:::-;48865:6:::1;:16:::0;48804:83::o;49630:86::-;42291:6;;-1:-1:-1;;;;;42291:6:0;20203:10;42438:23;42430:68;;;;-1:-1:-1;;;42430:68:0;;;;;;;:::i;:::-;49691:12:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;49691:20:0;;::::1;::::0;;;::::1;::::0;;49630:86::o;49245:122::-;42291:6;;-1:-1:-1;;;;;42291:6:0;20203:10;42438:23;42430:68;;;;-1:-1:-1;;;42430:68:0;;;;;;;:::i;:::-;49328:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;49373:96::-:0;42291:6;;-1:-1:-1;;;;;42291:6:0;20203:10;42438:23;42430:68;;;;-1:-1:-1;;;42430:68:0;;;;;;;:::i;:::-;49439:16:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;49439:24:0;;::::1;::::0;;;::::1;::::0;;49373:96::o;49721:159::-;42291:6;;-1:-1:-1;;;;;42291:6:0;20203:10;42438:23;42430:68;;;;-1:-1:-1;;;42430:68:0;;;;;;;:::i;:::-;49797:9:::1;49793:81;49811:6;:13;49809:1;:15;49793:81;;;49863:4;49838:11;:22;49850:6;49857:1;49850:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;49838:22:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;49838:22:0;:29;;-1:-1:-1;;49838:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49826:3;::::1;::::0;::::1;:::i;:::-;;;;49793:81;;49119:120:::0;42291:6;;-1:-1:-1;;;;;42291:6:0;20203:10;42438:23;42430:68;;;;-1:-1:-1;;;42430:68:0;;;;;;;:::i;:::-;49201:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;43118:192::-:0;42291:6;;-1:-1:-1;;;;;42291:6:0;20203:10;42438:23;42430:68;;;;-1:-1:-1;;;42430:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43207:22:0;::::1;43199:73;;;::::0;-1:-1:-1;;;43199:73:0;;9379:2:1;43199:73:0::1;::::0;::::1;9361:21:1::0;9418:2;9398:18;;;9391:30;9457:34;9437:18;;;9430:62;-1:-1:-1;;;9508:18:1;;;9501:36;9554:19;;43199:73:0::1;9177:402:1::0;43199:73:0::1;43283:19;43293:8;43283:9;:19::i;30834:144::-:0;30891:4;30925:13;;30915:7;:23;:55;;;;-1:-1:-1;;30943:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;30943:27:0;;;;30942:28;;30834:144::o;38040:196::-;38155:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38155:29:0;-1:-1:-1;;;;;38155:29:0;;;;;;;;;38200:28;;38155:24;;38200:28;;;;;;;38040:196;;;:::o;33541:2112::-;33656:35;33694:20;33706:7;33694:11;:20::i;:::-;33769:18;;33656:58;;-1:-1:-1;33727:22:0;;-1:-1:-1;;;;;33753:34:0;20203:10;-1:-1:-1;;;;;33753:34:0;;:101;;;-1:-1:-1;33821:18:0;;33804:50;;20203:10;29509:164;:::i;33804:50::-;33753:154;;;-1:-1:-1;20203:10:0;33871:20;33883:7;33871:11;:20::i;:::-;-1:-1:-1;;;;;33871:36:0;;33753:154;33727:181;;33926:17;33921:66;;33952:35;;-1:-1:-1;;;33952:35:0;;;;;;;;;;;33921:66;34024:4;-1:-1:-1;;;;;34002:26:0;:13;:18;;;-1:-1:-1;;;;;34002:26:0;;33998:67;;34037:28;;-1:-1:-1;;;34037:28:0;;;;;;;;;;;33998:67;-1:-1:-1;;;;;34080:16:0;;34076:52;;34105:23;;-1:-1:-1;;;34105:23:0;;;;;;;;;;;34076:52;34249:49;34266:1;34270:7;34279:13;:18;;;34249:8;:49::i;:::-;-1:-1:-1;;;;;34594:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;34594:31:0;;;-1:-1:-1;;;;;34594:31:0;;;-1:-1:-1;;34594:31:0;;;;;;;34640:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34640:29:0;;;;;;;;;;;34686:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;34731:61:0;;;;-1:-1:-1;;;34776:15:0;34731:61;;;;;;;;;;;35066:11;;;35096:24;;;;;:29;35066:11;;35096:29;35092:445;;35321:13;;35307:11;:27;35303:219;;;35391:18;;;35359:24;;;:11;:24;;;;;;;;:50;;35474:28;;;;-1:-1:-1;;;;;35432:70:0;-1:-1:-1;;;35432:70:0;-1:-1:-1;;;;;;35432:70:0;;;-1:-1:-1;;;;;35359:50:0;;;35432:70;;;;;;;35303:219;34569:979;35584:7;35580:2;-1:-1:-1;;;;;35565:27:0;35574:4;-1:-1:-1;;;;;35565:27:0;;;;;;;;;;;35603:42;33645:2008;;33541:2112;;;:::o;26044:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;26210:13:0;;26154:7;;26203:20;;26199:861;;;26244:31;26278:17;;;:11;:17;;;;;;;;;26244:51;;;;;;;;;-1:-1:-1;;;;;26244:51:0;;;;-1:-1:-1;;;26244:51:0;;-1:-1:-1;;;;;26244:51:0;;;;;;;;-1:-1:-1;;;26244:51:0;;;;;;;;;;;;;;26314:731;;26364:14;;-1:-1:-1;;;;;26364:28:0;;26360:101;;26428:9;26044:1083;-1:-1:-1;;;26044:1083:0:o;26360:101::-;-1:-1:-1;;;26805:6:0;26850:17;;;;:11;:17;;;;;;;;;26838:29;;;;;;;;;-1:-1:-1;;;;;26838:29:0;;;;;-1:-1:-1;;;26838:29:0;;-1:-1:-1;;;;;26838:29:0;;;;;;;;-1:-1:-1;;;26838:29:0;;;;;;;;;;;;;26898:28;26894:109;;26966:9;26044:1083;-1:-1:-1;;;26044:1083:0:o;26894:109::-;26765:261;;;26225:835;26199:861;27088:31;;-1:-1:-1;;;27088:31:0;;;;;;;;;;;30986:104;31055:27;31065:2;31069:8;31055:27;;;;;;;;;;;;:9;:27::i;43318:173::-;43393:6;;;-1:-1:-1;;;;;43410:17:0;;;-1:-1:-1;;;;;;43410:17:0;;;;;;;43443:40;;43393:6;;;43410:17;43393:6;;43443:40;;43374:16;;43443:40;43363:128;43318:173;:::o;38801:790::-;38956:4;-1:-1:-1;;;;;38977:13:0;;3192:20;3240:8;38973:611;;39013:72;;-1:-1:-1;;;39013:72:0;;-1:-1:-1;;;;;39013:36:0;;;;;:72;;20203:10;;39064:4;;39070:7;;39079:5;;39013:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39013:72:0;;;;;;;;-1:-1:-1;;39013:72:0;;;;;;;;;;;;:::i;:::-;;;39009:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39259:13:0;;39255:259;;39309:40;;-1:-1:-1;;;39309:40:0;;;;;;;;;;;39255:259;39464:6;39458:13;39449:6;39445:2;39441:15;39434:38;39009:520;-1:-1:-1;;;;;;39136:55:0;-1:-1:-1;;;39136:55:0;;-1:-1:-1;39129:62:0;;38973:611;-1:-1:-1;39568:4:0;38973:611;38801:790;;;;;;:::o;47197:102::-;47257:13;47286:7;47279:14;;;;;:::i;344:723::-;400:13;621:10;617:53;;-1:-1:-1;;648:10:0;;;;;;;;;;;;-1:-1:-1;;;648:10:0;;;;;344:723::o;617:53::-;695:5;680:12;736:78;743:9;;736:78;;769:8;;;;:::i;:::-;;-1:-1:-1;792:10:0;;-1:-1:-1;800:2:0;792:10;;:::i;:::-;;;736:78;;;824:19;856:6;-1:-1:-1;;;;;846:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;846:17:0;;824:39;;874:154;881:10;;874:154;;908:11;918:1;908:11;;:::i;:::-;;-1:-1:-1;977:10:0;985:2;977:5;:10;:::i;:::-;964:24;;:2;:24;:::i;:::-;951:39;;934:6;941;934:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;934:56:0;;;;;;;;-1:-1:-1;1005:11:0;1014:2;1005:11;;:::i;:::-;;;874:154;;31453:163;31576:32;31582:2;31586:8;31596:5;31603:4;32014:20;32037:13;-1:-1:-1;;;;;32065:16:0;;32061:48;;32090:19;;-1:-1:-1;;;32090:19:0;;;;;;;;;;;32061:48;32124:13;32120:44;;32146:18;;-1:-1:-1;;;32146:18:0;;;;;;;;;;;32120:44;-1:-1:-1;;;;;32515:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32574:49:0;;-1:-1:-1;;;;;32515:44:0;;;;;;;32574:49;;;;-1:-1:-1;;32515:44:0;;;;;;32574:49;;;;;;;;;;;;;;;;32640:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;32690:66:0;;;;-1:-1:-1;;;32740:15:0;32690:66;;;;;;;;;;;32640:25;;32825:328;32845:8;32841:1;:12;32825:328;;;32884:38;;32909:12;;-1:-1:-1;;;;;32884:38:0;;;32901:1;;32884:38;;32901:1;;32884:38;32945:4;:68;;;;;32954:59;32985:1;32989:2;32993:12;33007:5;32954:22;:59::i;:::-;32953:60;32945:68;32941:164;;;33045:40;;-1:-1:-1;;;33045:40:0;;;;;;;;;;;32941:164;33123:14;;;;;32855:3;32825:328;;;-1:-1:-1;33169:13:0;:28;33219:60;30237:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:679::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:169;1098:2;1095:1;1092:9;1084:169;;;1155:23;1174:3;1155:23;:::i;:::-;1143:36;;1199:12;;;;1231;;;;1116:1;1109:9;1084:169;;;-1:-1:-1;1271:5:1;;603:679;-1:-1:-1;;;;;;;603:679:1:o;1287:160::-;1352:20;;1408:13;;1401:21;1391:32;;1381:60;;1437:1;1434;1427:12;1452:186;1511:6;1564:2;1552:9;1543:7;1539:23;1535:32;1532:52;;;1580:1;1577;1570:12;1532:52;1603:29;1622:9;1603:29;:::i;1643:260::-;1711:6;1719;1772:2;1760:9;1751:7;1747:23;1743:32;1740:52;;;1788:1;1785;1778:12;1740:52;1811:29;1830:9;1811:29;:::i;:::-;1801:39;;1859:38;1893:2;1882:9;1878:18;1859:38;:::i;:::-;1849:48;;1643:260;;;;;:::o;1908:328::-;1985:6;1993;2001;2054:2;2042:9;2033:7;2029:23;2025:32;2022:52;;;2070:1;2067;2060:12;2022:52;2093:29;2112:9;2093:29;:::i;:::-;2083:39;;2141:38;2175:2;2164:9;2160:18;2141:38;:::i;:::-;2131:48;;2226:2;2215:9;2211:18;2198:32;2188:42;;1908:328;;;;;:::o;2241:666::-;2336:6;2344;2352;2360;2413:3;2401:9;2392:7;2388:23;2384:33;2381:53;;;2430:1;2427;2420:12;2381:53;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2501:38;2535:2;2524:9;2520:18;2501:38;:::i;:::-;2491:48;;2586:2;2575:9;2571:18;2558:32;2548:42;;2641:2;2630:9;2626:18;2613:32;-1:-1:-1;;;;;2660:6:1;2657:30;2654:50;;;2700:1;2697;2690:12;2654:50;2723:22;;2776:4;2768:13;;2764:27;-1:-1:-1;2754:55:1;;2805:1;2802;2795:12;2754:55;2828:73;2893:7;2888:2;2875:16;2870:2;2866;2862:11;2828:73;:::i;:::-;2818:83;;;2241:666;;;;;;;:::o;2912:254::-;2977:6;2985;3038:2;3026:9;3017:7;3013:23;3009:32;3006:52;;;3054:1;3051;3044:12;3006:52;3077:29;3096:9;3077:29;:::i;:::-;3067:39;;3125:35;3156:2;3145:9;3141:18;3125:35;:::i;3171:254::-;3239:6;3247;3300:2;3288:9;3279:7;3275:23;3271:32;3268:52;;;3316:1;3313;3306:12;3268:52;3339:29;3358:9;3339:29;:::i;:::-;3329:39;3415:2;3400:18;;;;3387:32;;-1:-1:-1;;;3171:254:1:o;3430:348::-;3514:6;3567:2;3555:9;3546:7;3542:23;3538:32;3535:52;;;3583:1;3580;3573:12;3535:52;3623:9;3610:23;-1:-1:-1;;;;;3648:6:1;3645:30;3642:50;;;3688:1;3685;3678:12;3642:50;3711:61;3764:7;3755:6;3744:9;3740:22;3711:61;:::i;3783:1149::-;3901:6;3909;3962:2;3950:9;3941:7;3937:23;3933:32;3930:52;;;3978:1;3975;3968:12;3930:52;4018:9;4005:23;-1:-1:-1;;;;;4088:2:1;4080:6;4077:14;4074:34;;;4104:1;4101;4094:12;4074:34;4127:61;4180:7;4171:6;4160:9;4156:22;4127:61;:::i;:::-;4117:71;;4207:2;4197:12;;4262:2;4251:9;4247:18;4234:32;4291:2;4281:8;4278:16;4275:36;;;4307:1;4304;4297:12;4275:36;4330:24;;;-1:-1:-1;4385:4:1;4377:13;;4373:27;-1:-1:-1;4363:55:1;;4414:1;4411;4404:12;4363:55;4450:2;4437:16;4473:60;4489:43;4529:2;4489:43;:::i;4473:60::-;4555:3;4579:2;4574:3;4567:15;4607:2;4602:3;4598:12;4591:19;;4638:2;4634;4630:11;4686:7;4681:2;4675;4672:1;4668:10;4664:2;4660:19;4656:28;4653:41;4650:61;;;4707:1;4704;4697:12;4650:61;4729:1;4720:10;;4739:163;4753:2;4750:1;4747:9;4739:163;;;4810:17;;4798:30;;4771:1;4764:9;;;;;4848:12;;;;4880;;4739:163;;;4743:3;4921:5;4911:15;;;;;;;3783:1149;;;;;:::o;4937:180::-;4993:6;5046:2;5034:9;5025:7;5021:23;5017:32;5014:52;;;5062:1;5059;5052:12;5014:52;5085:26;5101:9;5085:26;:::i;5122:245::-;5180:6;5233:2;5221:9;5212:7;5208:23;5204:32;5201:52;;;5249:1;5246;5239:12;5201:52;5288:9;5275:23;5307:30;5331:5;5307:30;:::i;5372:249::-;5441:6;5494:2;5482:9;5473:7;5469:23;5465:32;5462:52;;;5510:1;5507;5500:12;5462:52;5542:9;5536:16;5561:30;5585:5;5561:30;:::i;5626:450::-;5695:6;5748:2;5736:9;5727:7;5723:23;5719:32;5716:52;;;5764:1;5761;5754:12;5716:52;5804:9;5791:23;-1:-1:-1;;;;;5829:6:1;5826:30;5823:50;;;5869:1;5866;5859:12;5823:50;5892:22;;5945:4;5937:13;;5933:27;-1:-1:-1;5923:55:1;;5974:1;5971;5964:12;5923:55;5997:73;6062:7;6057:2;6044:16;6039:2;6035;6031:11;5997:73;:::i;6081:180::-;6140:6;6193:2;6181:9;6172:7;6168:23;6164:32;6161:52;;;6209:1;6206;6199:12;6161:52;-1:-1:-1;6232:23:1;;6081:180;-1:-1:-1;6081:180:1:o;6266:257::-;6307:3;6345:5;6339:12;6372:6;6367:3;6360:19;6388:63;6444:6;6437:4;6432:3;6428:14;6421:4;6414:5;6410:16;6388:63;:::i;:::-;6505:2;6484:15;-1:-1:-1;;6480:29:1;6471:39;;;;6512:4;6467:50;;6266:257;-1:-1:-1;;6266:257:1:o;6528:1527::-;6752:3;6790:6;6784:13;6816:4;6829:51;6873:6;6868:3;6863:2;6855:6;6851:15;6829:51;:::i;:::-;6943:13;;6902:16;;;;6965:55;6943:13;6902:16;6987:15;;;6965:55;:::i;:::-;7109:13;;7042:20;;;7082:1;;7169;7191:18;;;;7244;;;;7271:93;;7349:4;7339:8;7335:19;7323:31;;7271:93;7412:2;7402:8;7399:16;7379:18;7376:40;7373:167;;;-1:-1:-1;;;7439:33:1;;7495:4;7492:1;7485:15;7525:4;7446:3;7513:17;7373:167;7556:18;7583:110;;;;7707:1;7702:328;;;;7549:481;;7583:110;-1:-1:-1;;7618:24:1;;7604:39;;7663:20;;;;-1:-1:-1;7583:110:1;;7702:328;12835:1;12828:14;;;12872:4;12859:18;;7797:1;7811:169;7825:8;7822:1;7819:15;7811:169;;;7907:14;;7892:13;;;7885:37;7950:16;;;;7842:10;;7811:169;;;7815:3;;8011:8;8004:5;8000:20;7993:27;;7549:481;-1:-1:-1;8046:3:1;;6528:1527;-1:-1:-1;;;;;;;;;;;6528:1527:1:o;8268:488::-;-1:-1:-1;;;;;8537:15:1;;;8519:34;;8589:15;;8584:2;8569:18;;8562:43;8636:2;8621:18;;8614:34;;;8684:3;8679:2;8664:18;;8657:31;;;8462:4;;8705:45;;8730:19;;8722:6;8705:45;:::i;:::-;8697:53;8268:488;-1:-1:-1;;;;;;8268:488:1:o;8953:219::-;9102:2;9091:9;9084:21;9065:4;9122:44;9162:2;9151:9;9147:18;9139:6;9122:44;:::i;10632:356::-;10834:2;10816:21;;;10853:18;;;10846:30;10912:34;10907:2;10892:18;;10885:62;10979:2;10964:18;;10632:356::o;12294:275::-;12365:2;12359:9;12430:2;12411:13;;-1:-1:-1;;12407:27:1;12395:40;;-1:-1:-1;;;;;12450:34:1;;12486:22;;;12447:62;12444:88;;;12512:18;;:::i;:::-;12548:2;12541:22;12294:275;;-1:-1:-1;12294:275:1:o;12574:183::-;12634:4;-1:-1:-1;;;;;12659:6:1;12656:30;12653:56;;;12689:18;;:::i;:::-;-1:-1:-1;12734:1:1;12730:14;12746:4;12726:25;;12574:183::o;12888:128::-;12928:3;12959:1;12955:6;12952:1;12949:13;12946:39;;;12965:18;;:::i;:::-;-1:-1:-1;13001:9:1;;12888:128::o;13021:120::-;13061:1;13087;13077:35;;13092:18;;:::i;:::-;-1:-1:-1;13126:9:1;;13021:120::o;13146:168::-;13186:7;13252:1;13248;13244:6;13240:14;13237:1;13234:21;13229:1;13222:9;13215:17;13211:45;13208:71;;;13259:18;;:::i;:::-;-1:-1:-1;13299:9:1;;13146:168::o;13319:125::-;13359:4;13387:1;13384;13381:8;13378:34;;;13392:18;;:::i;:::-;-1:-1:-1;13429:9:1;;13319:125::o;13449:258::-;13521:1;13531:113;13545:6;13542:1;13539:13;13531:113;;;13621:11;;;13615:18;13602:11;;;13595:39;13567:2;13560:10;13531:113;;;13662:6;13659:1;13656:13;13653:48;;;-1:-1:-1;;13697:1:1;13679:16;;13672:27;13449:258::o;13712:380::-;13791:1;13787:12;;;;13834;;;13855:61;;13909:4;13901:6;13897:17;13887:27;;13855:61;13962:2;13954:6;13951:14;13931:18;13928:38;13925:161;;;14008:10;14003:3;13999:20;13996:1;13989:31;14043:4;14040:1;14033:15;14071:4;14068:1;14061:15;13925:161;;13712:380;;;:::o;14097:135::-;14136:3;-1:-1:-1;;14157:17:1;;14154:43;;;14177:18;;:::i;:::-;-1:-1:-1;14224:1:1;14213:13;;14097:135::o;14237:112::-;14269:1;14295;14285:35;;14300:18;;:::i;:::-;-1:-1:-1;14334:9:1;;14237:112::o;14354:127::-;14415:10;14410:3;14406:20;14403:1;14396:31;14446:4;14443:1;14436:15;14470:4;14467:1;14460:15;14486:127;14547:10;14542:3;14538:20;14535:1;14528:31;14578:4;14575:1;14568:15;14602:4;14599:1;14592:15;14618:127;14679:10;14674:3;14670:20;14667:1;14660:31;14710:4;14707:1;14700:15;14734:4;14731:1;14724:15;14750:127;14811:10;14806:3;14802:20;14799:1;14792:31;14842:4;14839:1;14832:15;14866:4;14863:1;14856:15;14882:131;-1:-1:-1;;;;;;14956:32:1;;14946:43;;14936:71;;15003:1;15000;14993:12

Swarm Source

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