ETH Price: $2,504.34 (-0.48%)

Token

meowMEOWmeow (MEOW)
 

Overview

Max Total Supply

1,236 MEOW

Holders

195

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 MEOW
0xe569355d9904605a21f0732855e6599f05096156
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:
meowMEOWmeow

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-05-23
*/

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        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) {
        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) {
        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 {
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr) 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) if(!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 virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev 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) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

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

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

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

// File: contracts/thanos.sol

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;




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

    string public baseURI = "ipfs://QmZzDMJo2V1S2K36MwdstWLyBvaSJV3v6j7Ky1okeE2GLd/";
    string public baseExtension = ".json";
    uint256 public cost = 0 ether;
    uint256 public maxSupply = 1000;
    uint256 public maxMintAmount = 5;
    bool public paused = false;


    constructor(string memory _name, string memory _symbol) ERC721A("meowMEOWmeow", "MEOW") {}

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

    // public
    function mint(uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        require(!paused);
        require(_mintAmount > 0);
        require(_mintAmount <= maxMintAmount);
        require(supply + _mintAmount <= maxSupply);
        require(msg.value >= cost * _mintAmount);


        _safeMint(msg.sender, _mintAmount);        
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownerTokens = new uint256[](ownerTokenCount);
        uint256 ownerTokenIdx = 0;
        for (
            uint256 tokenIdx = _startTokenId();
            tokenIdx <= totalSupply();
            tokenIdx++
        ) {
            if (ownerOf(tokenIdx) == _owner) {
                ownerTokens[ownerTokenIdx] = tokenIdx;
                ownerTokenIdx++;
            }
        }
        return ownerTokens;
    }

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

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

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

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

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

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

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }
    
    function setmaxSupply(uint256 _newmaxSupply) public onlyOwner {
        maxSupply = _newmaxSupply;
    }   

    function dMint(address[] calldata addresses, uint256 quantity) external onlyOwner
    {
        require(totalSupply() + quantity <= maxSupply, "Exceeds max supply");
        for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], quantity, "");
        }
    }

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

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"dMint","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":"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxSupply","type":"uint256"}],"name":"setmaxSupply","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":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60e060405260366080818152906200221760a0398051620000299160099160209091019062000176565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005891600a9162000176565b506000600b556103e8600c556005600d55600e805460ff191690553480156200008057600080fd5b506040516200224d3803806200224d833981016040819052620000a391620002d3565b604080518082018252600c81526b6d656f774d454f576d656f7760a01b6020808301918252835180850190945260048452634d454f5760e01b908401528151919291620000f39160029162000176565b5080516200010990600390602084019062000176565b50506001600055506200011c3362000124565b505062000390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000184906200033d565b90600052602060002090601f016020900481019282620001a85760008555620001f3565b82601f10620001c357805160ff1916838001178555620001f3565b82800160010185558215620001f3579182015b82811115620001f3578251825591602001919060010190620001d6565b506200020192915062000205565b5090565b5b8082111562000201576000815560010162000206565b600082601f8301126200022e57600080fd5b81516001600160401b03808211156200024b576200024b6200037a565b604051601f8301601f19908116603f011681019082821181831017156200027657620002766200037a565b816040528381526020925086838588010111156200029357600080fd5b600091505b83821015620002b7578582018301518183018401529082019062000298565b83821115620002c95760008385830101525b9695505050505050565b60008060408385031215620002e757600080fd5b82516001600160401b0380821115620002ff57600080fd5b6200030d868387016200021c565b935060208501519150808211156200032457600080fd5b5062000333858286016200021c565b9150509250929050565b600181811c908216806200035257607f821691505b602082108114156200037457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611e7780620003a06000396000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610550578063d5abeb0114610570578063da3ef23f14610586578063e985e9c5146105a6578063f2fde38b146105ef57600080fd5b8063a22cb465146104db578063b0ce25d9146104fb578063b88d4fde1461051b578063c66828621461053b57600080fd5b80637f00c7a6116100dc5780637f00c7a6146104755780638da5cb5b1461049557806395d89b41146104b3578063a0712d68146104c857600080fd5b80636352211e1461040b5780636c0360eb1461042b57806370a0823114610440578063715018a61461046057600080fd5b8063239c70ae11610185578063438b630011610154578063438b63001461038457806344a0d68a146103b157806355f804b3146103d15780635c975abb146103f157600080fd5b8063239c70ae1461032657806323b872dd1461033c5780633ccfd60b1461035c57806342842e0e1461036457600080fd5b8063095ea7b3116101c1578063095ea7b3146102a457806313faede6146102c457806318160ddd146102e8578063228025e81461030657600080fd5b806301ffc9a7146101f357806302329a291461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611a86565b61060f565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611a6b565b610661565b005b34801561025657600080fd5b5061025f6106a7565b60405161021f9190611c93565b34801561027857600080fd5b5061028c610287366004611b09565b610739565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf3660046119c6565b61077d565b3480156102d057600080fd5b506102da600b5481565b60405190815260200161021f565b3480156102f457600080fd5b506102da600154600054036000190190565b34801561031257600080fd5b50610248610321366004611b09565b610804565b34801561033257600080fd5b506102da600d5481565b34801561034857600080fd5b506102486103573660046118e4565b610833565b61024861083e565b34801561037057600080fd5b5061024861037f3660046118e4565b6108c0565b34801561039057600080fd5b506103a461039f366004611896565b6108db565b60405161021f9190611c4f565b3480156103bd57600080fd5b506102486103cc366004611b09565b6109b7565b3480156103dd57600080fd5b506102486103ec366004611ac0565b6109e6565b3480156103fd57600080fd5b50600e546102139060ff1681565b34801561041757600080fd5b5061028c610426366004611b09565b610a27565b34801561043757600080fd5b5061025f610a39565b34801561044c57600080fd5b506102da61045b366004611896565b610ac7565b34801561046c57600080fd5b50610248610b16565b34801561048157600080fd5b50610248610490366004611b09565b610b4c565b3480156104a157600080fd5b506008546001600160a01b031661028c565b3480156104bf57600080fd5b5061025f610b7b565b6102486104d6366004611b09565b610b8a565b3480156104e757600080fd5b506102486104f636600461199c565b610c08565b34801561050757600080fd5b506102486105163660046119f0565b610c9e565b34801561052757600080fd5b50610248610536366004611920565b610d8d565b34801561054757600080fd5b5061025f610dd1565b34801561055c57600080fd5b5061025f61056b366004611b09565b610dde565b34801561057c57600080fd5b506102da600c5481565b34801561059257600080fd5b506102486105a1366004611ac0565b610eac565b3480156105b257600080fd5b506102136105c13660046118b1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105fb57600080fd5b5061024861060a366004611896565b610ee9565b60006001600160e01b031982166380ac58cd60e01b148061064057506001600160e01b03198216635b5e139f60e01b145b8061065b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106945760405162461bcd60e51b815260040161068b90611ca6565b60405180910390fd5b600e805460ff1916911515919091179055565b6060600280546106b690611d69565b80601f01602080910402602001604051908101604052809291908181526020018280546106e290611d69565b801561072f5780601f106107045761010080835404028352916020019161072f565b820191906000526020600020905b81548152906001019060200180831161071257829003601f168201915b5050505050905090565b600061074482610f81565b610761576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061078882610a27565b9050806001600160a01b0316836001600160a01b031614156107bd5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107f4576107d781336105c1565b6107f4576040516367d9dca160e11b815260040160405180910390fd5b6107ff838383610fba565b505050565b6008546001600160a01b0316331461082e5760405162461bcd60e51b815260040161068b90611ca6565b600c55565b6107ff838383611016565b6008546001600160a01b031633146108685760405162461bcd60e51b815260040161068b90611ca6565b604051600090339047908381818185875af1925050503d80600081146108aa576040519150601f19603f3d011682016040523d82523d6000602084013e6108af565b606091505b50509050806108bd57600080fd5b50565b6107ff83838360405180602001604052806000815250610d8d565b606060006108e883610ac7565b905060008167ffffffffffffffff81111561090557610905611e15565b60405190808252806020026020018201604052801561092e578160200160208202803683370190505b509050600060015b610947600154600054036000190190565b81116109ad57856001600160a01b031661096082610a27565b6001600160a01b0316141561099b578083838151811061098257610982611dff565b60209081029190910101528161099781611da4565b9250505b806109a581611da4565b915050610936565b5090949350505050565b6008546001600160a01b031633146109e15760405162461bcd60e51b815260040161068b90611ca6565b600b55565b6008546001600160a01b03163314610a105760405162461bcd60e51b815260040161068b90611ca6565b8051610a2390600990602084019061175b565b5050565b6000610a3282611205565b5192915050565b60098054610a4690611d69565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7290611d69565b8015610abf5780601f10610a9457610100808354040283529160200191610abf565b820191906000526020600020905b815481529060010190602001808311610aa257829003601f168201915b505050505081565b60006001600160a01b038216610af0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b405760405162461bcd60e51b815260040161068b90611ca6565b610b4a6000611329565b565b6008546001600160a01b03163314610b765760405162461bcd60e51b815260040161068b90611ca6565b600d55565b6060600380546106b690611d69565b6000610b9d600154600054036000190190565b600e5490915060ff1615610bb057600080fd5b60008211610bbd57600080fd5b600d54821115610bcc57600080fd5b600c54610bd98383611cdb565b1115610be457600080fd5b81600b54610bf29190611d07565b341015610bfe57600080fd5b610a23338361137b565b6001600160a01b038216331415610c325760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610cc85760405162461bcd60e51b815260040161068b90611ca6565b600c5481610cdd600154600054036000190190565b610ce79190611cdb565b1115610d2a5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b604482015260640161068b565b60005b82811015610d8757610d75848483818110610d4a57610d4a611dff565b9050602002016020810190610d5f9190611896565b8360405180602001604052806000815250611391565b80610d7f81611da4565b915050610d2d565b50505050565b610d98848484611016565b6001600160a01b0383163b15610d8757610db484848484611556565b610d87576040516368d2bf6b60e11b815260040160405180910390fd5b600a8054610a4690611d69565b6060610de982610f81565b610e4d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161068b565b6000610e5761164e565b90506000815111610e775760405180602001604052806000815250610ea5565b80610e818461165d565b600a604051602001610e9593929190611b4e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610ed65760405162461bcd60e51b815260040161068b90611ca6565b8051610a2390600a90602084019061175b565b6008546001600160a01b03163314610f135760405162461bcd60e51b815260040161068b90611ca6565b6001600160a01b038116610f785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068b565b6108bd81611329565b600081600111158015610f95575060005482105b801561065b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061102182611205565b9050836001600160a01b031681600001516001600160a01b0316146110585760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611076575061107685336105c1565b8061109157503361108684610739565b6001600160a01b0316145b9050806110b157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166110d857604051633a954ecd60e21b815260040160405180910390fd5b6110e460008487610fba565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166111ba5760005482146111ba578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182526000808252602082018190529181019190915281806001116113105760005481101561131057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061130e5780516001600160a01b0316156112a4579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611309579392505050565b6112a4565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a238282604051806020016040528060008152505b6000546001600160a01b0384166113ba57604051622e076360e81b815260040160405180910390fd5b826113d85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611501575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114ca6000878480600101955087611556565b6114e7576040516368d2bf6b60e11b815260040160405180910390fd5b80821061147f5782600054146114fc57600080fd5b611546565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611502575b506000908155610d879085838684565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061158b903390899088908890600401611c12565b602060405180830381600087803b1580156115a557600080fd5b505af19250505080156115d5575060408051601f3d908101601f191682019092526115d291810190611aa3565b60015b611630573d808015611603576040519150601f19603f3d011682016040523d82523d6000602084013e611608565b606091505b508051611628576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546106b690611d69565b6060816116815750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116ab578061169581611da4565b91506116a49050600a83611cf3565b9150611685565b60008167ffffffffffffffff8111156116c6576116c6611e15565b6040519080825280601f01601f1916602001820160405280156116f0576020820181803683370190505b5090505b841561164657611705600183611d26565b9150611712600a86611dbf565b61171d906030611cdb565b60f81b81838151811061173257611732611dff565b60200101906001600160f81b031916908160001a905350611754600a86611cf3565b94506116f4565b82805461176790611d69565b90600052602060002090601f01602090048101928261178957600085556117cf565b82601f106117a257805160ff19168380011785556117cf565b828001600101855582156117cf579182015b828111156117cf5782518255916020019190600101906117b4565b506117db9291506117df565b5090565b5b808211156117db57600081556001016117e0565b600067ffffffffffffffff8084111561180f5761180f611e15565b604051601f8501601f19908116603f0116810190828211818310171561183757611837611e15565b8160405280935085815286868601111561185057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461188157600080fd5b919050565b8035801515811461188157600080fd5b6000602082840312156118a857600080fd5b610ea58261186a565b600080604083850312156118c457600080fd5b6118cd8361186a565b91506118db6020840161186a565b90509250929050565b6000806000606084860312156118f957600080fd5b6119028461186a565b92506119106020850161186a565b9150604084013590509250925092565b6000806000806080858703121561193657600080fd5b61193f8561186a565b935061194d6020860161186a565b925060408501359150606085013567ffffffffffffffff81111561197057600080fd5b8501601f8101871361198157600080fd5b611990878235602084016117f4565b91505092959194509250565b600080604083850312156119af57600080fd5b6119b88361186a565b91506118db60208401611886565b600080604083850312156119d957600080fd5b6119e28361186a565b946020939093013593505050565b600080600060408486031215611a0557600080fd5b833567ffffffffffffffff80821115611a1d57600080fd5b818601915086601f830112611a3157600080fd5b813581811115611a4057600080fd5b8760208260051b8501011115611a5557600080fd5b6020928301989097509590910135949350505050565b600060208284031215611a7d57600080fd5b610ea582611886565b600060208284031215611a9857600080fd5b8135610ea581611e2b565b600060208284031215611ab557600080fd5b8151610ea581611e2b565b600060208284031215611ad257600080fd5b813567ffffffffffffffff811115611ae957600080fd5b8201601f81018413611afa57600080fd5b611646848235602084016117f4565b600060208284031215611b1b57600080fd5b5035919050565b60008151808452611b3a816020860160208601611d3d565b601f01601f19169290920160200192915050565b600084516020611b618285838a01611d3d565b855191840191611b748184848a01611d3d565b8554920191600090600181811c9080831680611b9157607f831692505b858310811415611baf57634e487b7160e01b85526022600452602485fd5b808015611bc35760018114611bd457611c01565b60ff19851688528388019550611c01565b60008b81526020902060005b85811015611bf95781548a820152908401908801611be0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c4590830184611b22565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611c8757835183529284019291840191600101611c6b565b50909695505050505050565b602081526000610ea56020830184611b22565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611cee57611cee611dd3565b500190565b600082611d0257611d02611de9565b500490565b6000816000190483118215151615611d2157611d21611dd3565b500290565b600082821015611d3857611d38611dd3565b500390565b60005b83811015611d58578181015183820152602001611d40565b83811115610d875750506000910152565b600181811c90821680611d7d57607f821691505b60208210811415611d9e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611db857611db8611dd3565b5060010190565b600082611dce57611dce611de9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108bd57600080fdfea2646970667358221220daf7a3ce3f42a54c6824136d46f443d439ad8358663acafc396c9c675a365ba364736f6c63430008070033697066733a2f2f516d5a7a444d4a6f32563153324b33364d77647374574c79427661534a563376366a374b79316f6b654532474c642f0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636352211e1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610550578063d5abeb0114610570578063da3ef23f14610586578063e985e9c5146105a6578063f2fde38b146105ef57600080fd5b8063a22cb465146104db578063b0ce25d9146104fb578063b88d4fde1461051b578063c66828621461053b57600080fd5b80637f00c7a6116100dc5780637f00c7a6146104755780638da5cb5b1461049557806395d89b41146104b3578063a0712d68146104c857600080fd5b80636352211e1461040b5780636c0360eb1461042b57806370a0823114610440578063715018a61461046057600080fd5b8063239c70ae11610185578063438b630011610154578063438b63001461038457806344a0d68a146103b157806355f804b3146103d15780635c975abb146103f157600080fd5b8063239c70ae1461032657806323b872dd1461033c5780633ccfd60b1461035c57806342842e0e1461036457600080fd5b8063095ea7b3116101c1578063095ea7b3146102a457806313faede6146102c457806318160ddd146102e8578063228025e81461030657600080fd5b806301ffc9a7146101f357806302329a291461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611a86565b61060f565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611a6b565b610661565b005b34801561025657600080fd5b5061025f6106a7565b60405161021f9190611c93565b34801561027857600080fd5b5061028c610287366004611b09565b610739565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf3660046119c6565b61077d565b3480156102d057600080fd5b506102da600b5481565b60405190815260200161021f565b3480156102f457600080fd5b506102da600154600054036000190190565b34801561031257600080fd5b50610248610321366004611b09565b610804565b34801561033257600080fd5b506102da600d5481565b34801561034857600080fd5b506102486103573660046118e4565b610833565b61024861083e565b34801561037057600080fd5b5061024861037f3660046118e4565b6108c0565b34801561039057600080fd5b506103a461039f366004611896565b6108db565b60405161021f9190611c4f565b3480156103bd57600080fd5b506102486103cc366004611b09565b6109b7565b3480156103dd57600080fd5b506102486103ec366004611ac0565b6109e6565b3480156103fd57600080fd5b50600e546102139060ff1681565b34801561041757600080fd5b5061028c610426366004611b09565b610a27565b34801561043757600080fd5b5061025f610a39565b34801561044c57600080fd5b506102da61045b366004611896565b610ac7565b34801561046c57600080fd5b50610248610b16565b34801561048157600080fd5b50610248610490366004611b09565b610b4c565b3480156104a157600080fd5b506008546001600160a01b031661028c565b3480156104bf57600080fd5b5061025f610b7b565b6102486104d6366004611b09565b610b8a565b3480156104e757600080fd5b506102486104f636600461199c565b610c08565b34801561050757600080fd5b506102486105163660046119f0565b610c9e565b34801561052757600080fd5b50610248610536366004611920565b610d8d565b34801561054757600080fd5b5061025f610dd1565b34801561055c57600080fd5b5061025f61056b366004611b09565b610dde565b34801561057c57600080fd5b506102da600c5481565b34801561059257600080fd5b506102486105a1366004611ac0565b610eac565b3480156105b257600080fd5b506102136105c13660046118b1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105fb57600080fd5b5061024861060a366004611896565b610ee9565b60006001600160e01b031982166380ac58cd60e01b148061064057506001600160e01b03198216635b5e139f60e01b145b8061065b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106945760405162461bcd60e51b815260040161068b90611ca6565b60405180910390fd5b600e805460ff1916911515919091179055565b6060600280546106b690611d69565b80601f01602080910402602001604051908101604052809291908181526020018280546106e290611d69565b801561072f5780601f106107045761010080835404028352916020019161072f565b820191906000526020600020905b81548152906001019060200180831161071257829003601f168201915b5050505050905090565b600061074482610f81565b610761576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061078882610a27565b9050806001600160a01b0316836001600160a01b031614156107bd5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107f4576107d781336105c1565b6107f4576040516367d9dca160e11b815260040160405180910390fd5b6107ff838383610fba565b505050565b6008546001600160a01b0316331461082e5760405162461bcd60e51b815260040161068b90611ca6565b600c55565b6107ff838383611016565b6008546001600160a01b031633146108685760405162461bcd60e51b815260040161068b90611ca6565b604051600090339047908381818185875af1925050503d80600081146108aa576040519150601f19603f3d011682016040523d82523d6000602084013e6108af565b606091505b50509050806108bd57600080fd5b50565b6107ff83838360405180602001604052806000815250610d8d565b606060006108e883610ac7565b905060008167ffffffffffffffff81111561090557610905611e15565b60405190808252806020026020018201604052801561092e578160200160208202803683370190505b509050600060015b610947600154600054036000190190565b81116109ad57856001600160a01b031661096082610a27565b6001600160a01b0316141561099b578083838151811061098257610982611dff565b60209081029190910101528161099781611da4565b9250505b806109a581611da4565b915050610936565b5090949350505050565b6008546001600160a01b031633146109e15760405162461bcd60e51b815260040161068b90611ca6565b600b55565b6008546001600160a01b03163314610a105760405162461bcd60e51b815260040161068b90611ca6565b8051610a2390600990602084019061175b565b5050565b6000610a3282611205565b5192915050565b60098054610a4690611d69565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7290611d69565b8015610abf5780601f10610a9457610100808354040283529160200191610abf565b820191906000526020600020905b815481529060010190602001808311610aa257829003601f168201915b505050505081565b60006001600160a01b038216610af0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b405760405162461bcd60e51b815260040161068b90611ca6565b610b4a6000611329565b565b6008546001600160a01b03163314610b765760405162461bcd60e51b815260040161068b90611ca6565b600d55565b6060600380546106b690611d69565b6000610b9d600154600054036000190190565b600e5490915060ff1615610bb057600080fd5b60008211610bbd57600080fd5b600d54821115610bcc57600080fd5b600c54610bd98383611cdb565b1115610be457600080fd5b81600b54610bf29190611d07565b341015610bfe57600080fd5b610a23338361137b565b6001600160a01b038216331415610c325760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610cc85760405162461bcd60e51b815260040161068b90611ca6565b600c5481610cdd600154600054036000190190565b610ce79190611cdb565b1115610d2a5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b604482015260640161068b565b60005b82811015610d8757610d75848483818110610d4a57610d4a611dff565b9050602002016020810190610d5f9190611896565b8360405180602001604052806000815250611391565b80610d7f81611da4565b915050610d2d565b50505050565b610d98848484611016565b6001600160a01b0383163b15610d8757610db484848484611556565b610d87576040516368d2bf6b60e11b815260040160405180910390fd5b600a8054610a4690611d69565b6060610de982610f81565b610e4d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161068b565b6000610e5761164e565b90506000815111610e775760405180602001604052806000815250610ea5565b80610e818461165d565b600a604051602001610e9593929190611b4e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610ed65760405162461bcd60e51b815260040161068b90611ca6565b8051610a2390600a90602084019061175b565b6008546001600160a01b03163314610f135760405162461bcd60e51b815260040161068b90611ca6565b6001600160a01b038116610f785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068b565b6108bd81611329565b600081600111158015610f95575060005482105b801561065b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061102182611205565b9050836001600160a01b031681600001516001600160a01b0316146110585760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611076575061107685336105c1565b8061109157503361108684610739565b6001600160a01b0316145b9050806110b157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166110d857604051633a954ecd60e21b815260040160405180910390fd5b6110e460008487610fba565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166111ba5760005482146111ba578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182526000808252602082018190529181019190915281806001116113105760005481101561131057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061130e5780516001600160a01b0316156112a4579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611309579392505050565b6112a4565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a238282604051806020016040528060008152505b6000546001600160a01b0384166113ba57604051622e076360e81b815260040160405180910390fd5b826113d85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611501575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114ca6000878480600101955087611556565b6114e7576040516368d2bf6b60e11b815260040160405180910390fd5b80821061147f5782600054146114fc57600080fd5b611546565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611502575b506000908155610d879085838684565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061158b903390899088908890600401611c12565b602060405180830381600087803b1580156115a557600080fd5b505af19250505080156115d5575060408051601f3d908101601f191682019092526115d291810190611aa3565b60015b611630573d808015611603576040519150601f19603f3d011682016040523d82523d6000602084013e611608565b606091505b508051611628576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546106b690611d69565b6060816116815750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116ab578061169581611da4565b91506116a49050600a83611cf3565b9150611685565b60008167ffffffffffffffff8111156116c6576116c6611e15565b6040519080825280601f01601f1916602001820160405280156116f0576020820181803683370190505b5090505b841561164657611705600183611d26565b9150611712600a86611dbf565b61171d906030611cdb565b60f81b81838151811061173257611732611dff565b60200101906001600160f81b031916908160001a905350611754600a86611cf3565b94506116f4565b82805461176790611d69565b90600052602060002090601f01602090048101928261178957600085556117cf565b82601f106117a257805160ff19168380011785556117cf565b828001600101855582156117cf579182015b828111156117cf5782518255916020019190600101906117b4565b506117db9291506117df565b5090565b5b808211156117db57600081556001016117e0565b600067ffffffffffffffff8084111561180f5761180f611e15565b604051601f8501601f19908116603f0116810190828211818310171561183757611837611e15565b8160405280935085815286868601111561185057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461188157600080fd5b919050565b8035801515811461188157600080fd5b6000602082840312156118a857600080fd5b610ea58261186a565b600080604083850312156118c457600080fd5b6118cd8361186a565b91506118db6020840161186a565b90509250929050565b6000806000606084860312156118f957600080fd5b6119028461186a565b92506119106020850161186a565b9150604084013590509250925092565b6000806000806080858703121561193657600080fd5b61193f8561186a565b935061194d6020860161186a565b925060408501359150606085013567ffffffffffffffff81111561197057600080fd5b8501601f8101871361198157600080fd5b611990878235602084016117f4565b91505092959194509250565b600080604083850312156119af57600080fd5b6119b88361186a565b91506118db60208401611886565b600080604083850312156119d957600080fd5b6119e28361186a565b946020939093013593505050565b600080600060408486031215611a0557600080fd5b833567ffffffffffffffff80821115611a1d57600080fd5b818601915086601f830112611a3157600080fd5b813581811115611a4057600080fd5b8760208260051b8501011115611a5557600080fd5b6020928301989097509590910135949350505050565b600060208284031215611a7d57600080fd5b610ea582611886565b600060208284031215611a9857600080fd5b8135610ea581611e2b565b600060208284031215611ab557600080fd5b8151610ea581611e2b565b600060208284031215611ad257600080fd5b813567ffffffffffffffff811115611ae957600080fd5b8201601f81018413611afa57600080fd5b611646848235602084016117f4565b600060208284031215611b1b57600080fd5b5035919050565b60008151808452611b3a816020860160208601611d3d565b601f01601f19169290920160200192915050565b600084516020611b618285838a01611d3d565b855191840191611b748184848a01611d3d565b8554920191600090600181811c9080831680611b9157607f831692505b858310811415611baf57634e487b7160e01b85526022600452602485fd5b808015611bc35760018114611bd457611c01565b60ff19851688528388019550611c01565b60008b81526020902060005b85811015611bf95781548a820152908401908801611be0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c4590830184611b22565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611c8757835183529284019291840191600101611c6b565b50909695505050505050565b602081526000610ea56020830184611b22565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611cee57611cee611dd3565b500190565b600082611d0257611d02611de9565b500490565b6000816000190483118215151615611d2157611d21611dd3565b500290565b600082821015611d3857611d38611dd3565b500390565b60005b83811015611d58578181015183820152602001611d40565b83811115610d875750506000910152565b600181811c90821680611d7d57607f821691505b60208210811415611d9e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611db857611db8611dd3565b5060010190565b600082611dce57611dce611de9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108bd57600080fdfea2646970667358221220daf7a3ce3f42a54c6824136d46f443d439ad8358663acafc396c9c675a365ba364736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string):
Arg [1] : _symbol (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47459:3588:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28545:305;;;;;;;;;;-1:-1:-1;28545:305:0;;;;;:::i;:::-;;:::i;:::-;;;8501:14:1;;8494:22;8476:41;;8464:2;8449:18;28545:305:0;;;;;;;;50765:79;;;;;;;;;;-1:-1:-1;50765:79:0;;;;;:::i;:::-;;:::i;:::-;;31660:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33164:204::-;;;;;;;;;;-1:-1:-1;33164:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7162:32:1;;;7144:51;;7132:2;7117:18;33164:204:0;6998:203:1;32726:372:0;;;;;;;;;;-1:-1:-1;32726:372:0;;;;;:::i;:::-;;:::i;47673:29::-;;;;;;;;;;;;;;;;;;;10429:25:1;;;10417:2;10402:18;47673:29:0;10283:177:1;27785:312:0;;;;;;;;;;;;49923:1;28048:12;27838:7;28032:13;:28;-1:-1:-1;;28032:46:0;;27785:312;50345:106;;;;;;;;;;-1:-1:-1;50345:106:0;;;;;:::i;:::-;;:::i;47747:32::-;;;;;;;;;;;;;;;;34029:170;;;;;;;;;;-1:-1:-1;34029:170:0;;;;;:::i;:::-;;:::i;50852:192::-;;;:::i;34270:185::-;;;;;;;;;;-1:-1:-1;34270:185:0;;;;;:::i;:::-;;:::i;48447:614::-;;;;;;;;;;-1:-1:-1;48447:614:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49737:86::-;;;;;;;;;;-1:-1:-1;49737:86:0;;;;;:::i;:::-;;:::i;50070:104::-;;;;;;;;;;-1:-1:-1;50070:104:0;;;;;:::i;:::-;;:::i;47786:26::-;;;;;;;;;;-1:-1:-1;47786:26:0;;;;;;;;31468:125;;;;;;;;;;-1:-1:-1;31468:125:0;;;;;:::i;:::-;;:::i;47542:80::-;;;;;;;;;;;;;:::i;28914:206::-;;;;;;;;;;-1:-1:-1;28914:206:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;49940:122::-;;;;;;;;;;-1:-1:-1;49940:122:0;;;;;:::i;:::-;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;31829:104;;;;;;;;;;;;;:::i;48069:370::-;;;;;;:::i;:::-;;:::i;33440:287::-;;;;;;;;;;-1:-1:-1;33440:287:0;;;;;:::i;:::-;;:::i;50462:295::-;;;;;;;;;;-1:-1:-1;50462:295:0;;;;;:::i;:::-;;:::i;34526:370::-;;;;;;;;;;-1:-1:-1;34526:370:0;;;;;:::i;:::-;;:::i;47629:37::-;;;;;;;;;;;;;:::i;49069:642::-;;;;;;;;;;-1:-1:-1;49069:642:0;;;;;:::i;:::-;;:::i;47709:31::-;;;;;;;;;;;;;;;;50182:151;;;;;;;;;;-1:-1:-1;50182:151:0;;;;;:::i;:::-;;:::i;33798:164::-;;;;;;;;;;-1:-1:-1;33798:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33919:25:0;;;33895:4;33919:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33798:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;28545:305::-;28647:4;-1:-1:-1;;;;;;28684:40:0;;-1:-1:-1;;;28684:40:0;;:105;;-1:-1:-1;;;;;;;28741:48:0;;-1:-1:-1;;;28741:48:0;28684:105;:158;;;-1:-1:-1;;;;;;;;;;16995:40:0;;;28806:36;28664:178;28545:305;-1:-1:-1;;28545:305:0:o;50765:79::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;50821:6:::1;:15:::0;;-1:-1:-1;;50821:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50765:79::o;31660:100::-;31714:13;31747:5;31740:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31660:100;:::o;33164:204::-;33232:7;33257:16;33265:7;33257;:16::i;:::-;33252:64;;33282:34;;-1:-1:-1;;;33282:34:0;;;;;;;;;;;33252:64;-1:-1:-1;33336:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33336:24:0;;33164:204::o;32726:372::-;32799:13;32815:24;32831:7;32815:15;:24::i;:::-;32799:40;;32860:5;-1:-1:-1;;;;;32854:11:0;:2;-1:-1:-1;;;;;32854:11:0;;32850:48;;;32874:24;;-1:-1:-1;;;32874:24:0;;;;;;;;;;;32850:48;2883:10;-1:-1:-1;;;;;32915:21:0;;;32911:139;;32942:37;32959:5;2883:10;33798:164;:::i;32942:37::-;32938:112;;33003:35;;-1:-1:-1;;;33003:35:0;;;;;;;;;;;32938:112;33062:28;33071:2;33075:7;33084:5;33062:8;:28::i;:::-;32788:310;32726:372;;:::o;50345:106::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50418:9:::1;:25:::0;50345:106::o;34029:170::-;34163:28;34173:4;34179:2;34183:7;34163:9;:28::i;50852:192::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50927:82:::1;::::0;50909:12:::1;::::0;50935:10:::1;::::0;50973:21:::1;::::0;50909:12;50927:82;50909:12;50927:82;50973:21;50935:10;50927:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50908:101;;;51028:7;51020:16;;;::::0;::::1;;50897:147;50852:192::o:0;34270:185::-;34408:39;34425:4;34431:2;34435:7;34408:39;;;;;;;;;;;;:16;:39::i;48447:614::-;48534:16;48568:23;48594:17;48604:6;48594:9;:17::i;:::-;48568:43;;48622:28;48667:15;48653:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48653:30:0;-1:-1:-1;48622:61:0;-1:-1:-1;48694:21:0;49923:1;48730:295;48810:13;49923:1;28048:12;27838:7;28032:13;:28;-1:-1:-1;;28032:46:0;;27785:312;48810:13;48798:8;:25;48730:295;;48900:6;-1:-1:-1;;;;;48879:27:0;:17;48887:8;48879:7;:17::i;:::-;-1:-1:-1;;;;;48879:27:0;;48875:139;;;48956:8;48927:11;48939:13;48927:26;;;;;;;;:::i;:::-;;;;;;;;;;:37;48983:15;;;;:::i;:::-;;;;48875:139;48838:10;;;;:::i;:::-;;;;48730:295;;;-1:-1:-1;49042:11:0;;48447:614;-1:-1:-1;;;;48447:614:0:o;49737:86::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49800:4:::1;:15:::0;49737:86::o;50070:104::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50145:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50070:104:::0;:::o;31468:125::-;31532:7;31559:21;31572:7;31559:12;:21::i;:::-;:26;;31468:125;-1:-1:-1;;31468:125:0:o;47542:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28914:206::-;28978:7;-1:-1:-1;;;;;29002:19:0;;28998:60;;29030:28;;-1:-1:-1;;;29030:28:0;;;;;;;;;;;28998:60;-1:-1:-1;;;;;;29084:19:0;;;;;:12;:19;;;;;:27;;;;28914:206::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;49940:122::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50021:13:::1;:33:::0;49940:122::o;31829:104::-;31885:13;31918:7;31911:14;;;;;:::i;48069:370::-;48130:14;48147:13;49923:1;28048:12;27838:7;28032:13;:28;-1:-1:-1;;28032:46:0;;27785:312;48147:13;48180:6;;48130:30;;-1:-1:-1;48180:6:0;;48179:7;48171:16;;;;;;48220:1;48206:11;:15;48198:24;;;;;;48256:13;;48241:11;:28;;48233:37;;;;;;48313:9;;48289:20;48298:11;48289:6;:20;:::i;:::-;:33;;48281:42;;;;;;48362:11;48355:4;;:18;;;;:::i;:::-;48342:9;:31;;48334:40;;;;;;48389:34;48399:10;48411:11;48389:9;:34::i;33440:287::-;-1:-1:-1;;;;;33539:24:0;;2883:10;33539:24;33535:54;;;33572:17;;-1:-1:-1;;;33572:17:0;;;;;;;;;;;33535:54;2883:10;33602:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33602:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33602:53:0;;;;;;;;;;33671:48;;8476:41:1;;;33602:42:0;;2883:10;33671:48;;8449:18:1;33671:48:0;;;;;;;33440:287;;:::o;50462:295::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50596:9:::1;;50584:8;50568:13;49923:1:::0;28048:12;27838:7;28032:13;:28;-1:-1:-1;;28032:46:0;;27785:312;50568:13:::1;:24;;;;:::i;:::-;:37;;50560:68;;;::::0;-1:-1:-1;;;50560:68:0;;9361:2:1;50560:68:0::1;::::0;::::1;9343:21:1::0;9400:2;9380:18;;;9373:30;-1:-1:-1;;;9419:18:1;;;9412:48;9477:18;;50560:68:0::1;9159:342:1::0;50560:68:0::1;50644:9;50639:111;50659:20:::0;;::::1;50639:111;;;50701:37;50711:9;;50721:1;50711:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;50725:8;50701:37;;;;;;;;;;;::::0;:9:::1;:37::i;:::-;50681:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50639:111;;;;50462:295:::0;;;:::o;34526:370::-;34693:28;34703:4;34709:2;34713:7;34693:9;:28::i;:::-;-1:-1:-1;;;;;34736:13:0;;7075:19;:23;34732:157;;34757:56;34788:4;34794:2;34798:7;34807:5;34757:30;:56::i;:::-;34753:136;;34837:40;;-1:-1:-1;;;34837:40:0;;;;;;;;;;;47629:37;;;;;;;:::i;49069:642::-;49187:13;49240:16;49248:7;49240;:16::i;:::-;49218:113;;;;-1:-1:-1;;;49218:113:0;;10069:2:1;49218:113:0;;;10051:21:1;10108:2;10088:18;;;10081:30;10147:34;10127:18;;;10120:62;-1:-1:-1;;;10198:18:1;;;10191:45;10253:19;;49218:113:0;9867:411:1;49218:113:0;49344:28;49375:10;:8;:10::i;:::-;49344:41;;49447:1;49422:14;49416:28;:32;:287;;;;;;;;;;;;;;;;;49540:14;49581:18;:7;:16;:18::i;:::-;49626:13;49497:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49416:287;49396:307;49069:642;-1:-1:-1;;;49069:642:0:o;50182:151::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50292:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;4988:201::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;8954:2:1;5069:73:0::1;::::0;::::1;8936:21:1::0;8993:2;8973:18;;;8966:30;9032:34;9012:18;;;9005:62;-1:-1:-1;;;9083:18:1;;;9076:36;9129:19;;5069:73:0::1;8752:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;35151:174::-:0;35208:4;35251:7;49923:1;35232:26;;:53;;;;;35272:13;;35262:7;:23;35232:53;:85;;;;-1:-1:-1;;35290:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35290:27:0;;;;35289:28;;35151:174::o;44373:196::-;44488:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44488:29:0;-1:-1:-1;;;;;44488:29:0;;;;;;;;;44533:28;;44488:24;;44533:28;;;;;;;44373:196;;;:::o;39321:2130::-;39436:35;39474:21;39487:7;39474:12;:21::i;:::-;39436:59;;39534:4;-1:-1:-1;;;;;39512:26:0;:13;:18;;;-1:-1:-1;;;;;39512:26:0;;39508:67;;39547:28;;-1:-1:-1;;;39547:28:0;;;;;;;;;;;39508:67;39588:22;2883:10;-1:-1:-1;;;;;39614:20:0;;;;:73;;-1:-1:-1;39651:36:0;39668:4;2883:10;33798:164;:::i;39651:36::-;39614:126;;;-1:-1:-1;2883:10:0;39704:20;39716:7;39704:11;:20::i;:::-;-1:-1:-1;;;;;39704:36:0;;39614:126;39588:153;;39759:17;39754:66;;39785:35;;-1:-1:-1;;;39785:35:0;;;;;;;;;;;39754:66;-1:-1:-1;;;;;39835:16:0;;39831:52;;39860:23;;-1:-1:-1;;;39860:23:0;;;;;;;;;;;39831:52;40004:35;40021:1;40025:7;40034:4;40004:8;:35::i;:::-;-1:-1:-1;;;;;40335:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40335:31:0;;;;;;;-1:-1:-1;;40335:31:0;;;;;;;40381:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40381:29:0;;;;;;;;;;;40461:20;;;:11;:20;;;;;;40496:18;;-1:-1:-1;;;;;;40529:49:0;;;;-1:-1:-1;;;40562:15:0;40529:49;;;;;;;;;;40852:11;;40912:24;;;;;40955:13;;40461:20;;40912:24;;40955:13;40951:384;;41165:13;;41150:11;:28;41146:174;;41203:20;;41272:28;;;;41246:54;;-1:-1:-1;;;41246:54:0;-1:-1:-1;;;;;;41246:54:0;;;-1:-1:-1;;;;;41203:20:0;;41246:54;;;;41146:174;40310:1036;;;41382:7;41378:2;-1:-1:-1;;;;;41363:27:0;41372:4;-1:-1:-1;;;;;41363:27:0;;;;;;;;;;;39425:2026;;39321:2130;;;:::o;30295:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30406:7:0;;49923:1;30455:23;30451:888;;30491:13;;30484:4;:20;30480:859;;;30525:31;30559:17;;;:11;:17;;;;;;;;;30525:51;;;;;;;;;-1:-1:-1;;;;;30525:51:0;;;;-1:-1:-1;;;30525:51:0;;;;;;;;;;;-1:-1:-1;;;30525:51:0;;;;;;;;;;;;;;30595:729;;30645:14;;-1:-1:-1;;;;;30645:28:0;;30641:101;;30709:9;30295:1111;-1:-1:-1;;;30295:1111:0:o;30641:101::-;-1:-1:-1;;;31084:6:0;31129:17;;;;:11;:17;;;;;;;;;31117:29;;;;;;;;;-1:-1:-1;;;;;31117:29:0;;;;;-1:-1:-1;;;31117:29:0;;;;;;;;;;;-1:-1:-1;;;31117:29:0;;;;;;;;;;;;;31177:28;31173:109;;31245:9;30295:1111;-1:-1:-1;;;30295:1111:0:o;31173:109::-;31044:261;;;30506:833;30480:859;31367:31;;-1:-1:-1;;;31367:31:0;;;;;;;;;;;5349:191;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;35409:104::-;35478:27;35488:2;35492:8;35478:27;;;;;;;;;;;;35886:1749;36009:20;36032:13;-1:-1:-1;;;;;36060:16:0;;36056:48;;36085:19;;-1:-1:-1;;;36085:19:0;;;;;;;;;;;36056:48;36119:13;36115:44;;36141:18;;-1:-1:-1;;;36141:18:0;;;;;;;;;;;36115:44;-1:-1:-1;;;;;36510:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36569:49:0;;36510:44;;;;;;;;36569:49;;;;-1:-1:-1;;36510:44:0;;;;;;36569:49;;;;;;;;;;;;;;;;36635:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36685:66:0;;;-1:-1:-1;;;36735:15:0;36685:66;;;;;;;;;;;;;36635:25;;36832:23;;;;7075:19;:23;36872:631;;36912:313;36943:38;;36968:12;;-1:-1:-1;;;;;36943:38:0;;;36960:1;;36943:38;;36960:1;;36943:38;37009:69;37048:1;37052:2;37056:14;;;;;;37072:5;37009:30;:69::i;:::-;37004:174;;37114:40;;-1:-1:-1;;;37114:40:0;;;;;;;;;;;37004:174;37220:3;37205:12;:18;36912:313;;37306:12;37289:13;;:29;37285:43;;37320:8;;;37285:43;36872:631;;;37369:119;37400:40;;37425:14;;;;;-1:-1:-1;;;;;37400:40:0;;;37417:1;;37400:40;;37417:1;;37400:40;37483:3;37468:12;:18;37369:119;;36872:631;-1:-1:-1;37517:13:0;:28;;;37567:60;;37600:2;37604:12;37618:8;37567:60;:::i;45061:667::-;45245:72;;-1:-1:-1;;;45245:72:0;;45224:4;;-1:-1:-1;;;;;45245:36:0;;;;;:72;;2883:10;;45296:4;;45302:7;;45311:5;;45245:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45245:72:0;;;;;;;;-1:-1:-1;;45245:72:0;;;;;;;;;;;;:::i;:::-;;;45241:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45479:13:0;;45475:235;;45525:40;;-1:-1:-1;;;45525:40:0;;;;;;;;;;;45475:235;45668:6;45662:13;45653:6;45649:2;45645:15;45638:38;45241:480;-1:-1:-1;;;;;;45364:55:0;-1:-1:-1;;;45364:55:0;;-1:-1:-1;45241:480:0;45061:667;;;;;;:::o;47938:108::-;47998:13;48031:7;48024:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:689::-;3066:6;3074;3082;3135:2;3123:9;3114:7;3110:23;3106:32;3103:52;;;3151:1;3148;3141:12;3103:52;3191:9;3178:23;3220:18;3261:2;3253:6;3250:14;3247:34;;;3277:1;3274;3267:12;3247:34;3315:6;3304:9;3300:22;3290:32;;3360:7;3353:4;3349:2;3345:13;3341:27;3331:55;;3382:1;3379;3372:12;3331:55;3422:2;3409:16;3448:2;3440:6;3437:14;3434:34;;;3464:1;3461;3454:12;3434:34;3519:7;3512:4;3502:6;3499:1;3495:14;3491:2;3487:23;3483:34;3480:47;3477:67;;;3540:1;3537;3530:12;3477:67;3571:4;3563:13;;;;3595:6;;-1:-1:-1;3633:20:1;;;;3620:34;;2971:689;-1:-1:-1;;;;2971:689:1:o;3665:180::-;3721:6;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3813:26;3829:9;3813:26;:::i;3850:245::-;3908:6;3961:2;3949:9;3940:7;3936:23;3932:32;3929:52;;;3977:1;3974;3967:12;3929:52;4016:9;4003:23;4035:30;4059:5;4035:30;:::i;4100:249::-;4169:6;4222:2;4210:9;4201:7;4197:23;4193:32;4190:52;;;4238:1;4235;4228:12;4190:52;4270:9;4264:16;4289:30;4313:5;4289:30;:::i;4354:450::-;4423:6;4476:2;4464:9;4455:7;4451:23;4447:32;4444:52;;;4492:1;4489;4482:12;4444:52;4532:9;4519:23;4565:18;4557:6;4554:30;4551:50;;;4597:1;4594;4587:12;4551:50;4620:22;;4673:4;4665:13;;4661:27;-1:-1:-1;4651:55:1;;4702:1;4699;4692:12;4651:55;4725:73;4790:7;4785:2;4772:16;4767:2;4763;4759:11;4725:73;:::i;4809:180::-;4868:6;4921:2;4909:9;4900:7;4896:23;4892:32;4889:52;;;4937:1;4934;4927:12;4889:52;-1:-1:-1;4960:23:1;;4809:180;-1:-1:-1;4809:180:1:o;4994:257::-;5035:3;5073:5;5067:12;5100:6;5095:3;5088:19;5116:63;5172:6;5165:4;5160:3;5156:14;5149:4;5142:5;5138:16;5116:63;:::i;:::-;5233:2;5212:15;-1:-1:-1;;5208:29:1;5199:39;;;;5240:4;5195:50;;4994:257;-1:-1:-1;;4994:257:1:o;5256:1527::-;5480:3;5518:6;5512:13;5544:4;5557:51;5601:6;5596:3;5591:2;5583:6;5579:15;5557:51;:::i;:::-;5671:13;;5630:16;;;;5693:55;5671:13;5630:16;5715:15;;;5693:55;:::i;:::-;5837:13;;5770:20;;;5810:1;;5897;5919:18;;;;5972;;;;5999:93;;6077:4;6067:8;6063:19;6051:31;;5999:93;6140:2;6130:8;6127:16;6107:18;6104:40;6101:167;;;-1:-1:-1;;;6167:33:1;;6223:4;6220:1;6213:15;6253:4;6174:3;6241:17;6101:167;6284:18;6311:110;;;;6435:1;6430:328;;;;6277:481;;6311:110;-1:-1:-1;;6346:24:1;;6332:39;;6391:20;;;;-1:-1:-1;6311:110:1;;6430:328;10538:1;10531:14;;;10575:4;10562:18;;6525:1;6539:169;6553:8;6550:1;6547:15;6539:169;;;6635:14;;6620:13;;;6613:37;6678:16;;;;6570:10;;6539:169;;;6543:3;;6739:8;6732:5;6728:20;6721:27;;6277:481;-1:-1:-1;6774:3:1;;5256:1527;-1:-1:-1;;;;;;;;;;;5256:1527:1:o;7206:488::-;-1:-1:-1;;;;;7475:15:1;;;7457:34;;7527:15;;7522:2;7507:18;;7500:43;7574:2;7559:18;;7552:34;;;7622:3;7617:2;7602:18;;7595:31;;;7400:4;;7643:45;;7668:19;;7660:6;7643:45;:::i;:::-;7635:53;7206:488;-1:-1:-1;;;;;;7206:488:1:o;7699:632::-;7870:2;7922:21;;;7992:13;;7895:18;;;8014:22;;;7841:4;;7870:2;8093:15;;;;8067:2;8052:18;;;7841:4;8136:169;8150:6;8147:1;8144:13;8136:169;;;8211:13;;8199:26;;8280:15;;;;8245:12;;;;8172:1;8165:9;8136:169;;;-1:-1:-1;8322:3:1;;7699:632;-1:-1:-1;;;;;;7699:632:1:o;8528:219::-;8677:2;8666:9;8659:21;8640:4;8697:44;8737:2;8726:9;8722:18;8714:6;8697:44;:::i;9506:356::-;9708:2;9690:21;;;9727:18;;;9720:30;9786:34;9781:2;9766:18;;9759:62;9853:2;9838:18;;9506:356::o;10591:128::-;10631:3;10662:1;10658:6;10655:1;10652:13;10649:39;;;10668:18;;:::i;:::-;-1:-1:-1;10704:9:1;;10591:128::o;10724:120::-;10764:1;10790;10780:35;;10795:18;;:::i;:::-;-1:-1:-1;10829:9:1;;10724:120::o;10849:168::-;10889:7;10955:1;10951;10947:6;10943:14;10940:1;10937:21;10932:1;10925:9;10918:17;10914:45;10911:71;;;10962:18;;:::i;:::-;-1:-1:-1;11002:9:1;;10849:168::o;11022:125::-;11062:4;11090:1;11087;11084:8;11081:34;;;11095:18;;:::i;:::-;-1:-1:-1;11132:9:1;;11022:125::o;11152:258::-;11224:1;11234:113;11248:6;11245:1;11242:13;11234:113;;;11324:11;;;11318:18;11305:11;;;11298:39;11270:2;11263:10;11234:113;;;11365:6;11362:1;11359:13;11356:48;;;-1:-1:-1;;11400:1:1;11382:16;;11375:27;11152:258::o;11415:380::-;11494:1;11490:12;;;;11537;;;11558:61;;11612:4;11604:6;11600:17;11590:27;;11558:61;11665:2;11657:6;11654:14;11634:18;11631:38;11628:161;;;11711:10;11706:3;11702:20;11699:1;11692:31;11746:4;11743:1;11736:15;11774:4;11771:1;11764:15;11628:161;;11415:380;;;:::o;11800:135::-;11839:3;-1:-1:-1;;11860:17:1;;11857:43;;;11880:18;;:::i;:::-;-1:-1:-1;11927:1:1;11916:13;;11800:135::o;11940:112::-;11972:1;11998;11988:35;;12003:18;;:::i;:::-;-1:-1:-1;12037:9:1;;11940:112::o;12057:127::-;12118:10;12113:3;12109:20;12106:1;12099:31;12149:4;12146:1;12139:15;12173:4;12170:1;12163:15;12189:127;12250:10;12245:3;12241:20;12238:1;12231:31;12281:4;12278:1;12271:15;12305:4;12302:1;12295:15;12321:127;12382:10;12377:3;12373:20;12370:1;12363:31;12413:4;12410:1;12403:15;12437:4;12434:1;12427:15;12453:127;12514:10;12509:3;12505:20;12502:1;12495:31;12545:4;12542:1;12535:15;12569:4;12566:1;12559:15;12585:131;-1:-1:-1;;;;;;12659:32:1;;12649:43;;12639:71;;12706:1;12703;12696:12

Swarm Source

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