ETH Price: $3,493.47 (+3.63%)
Gas: 4 Gwei

Token

GOD IS APEPE (GIA)
 

Overview

Max Total Supply

7,777 GIA

Holders

3,699

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 GIA
0x356e92663875af45bf85ef664d188f5eb089382d
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:
godisapepe

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-08-27
*/

// SPDX-License-Identifier: MIT
// 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 v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        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 && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public 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() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

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

        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 This is 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/godisapepe.sol


pragma solidity ^0.8.4;


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

    uint256 public PRICE;
    uint256 public MAX_SUPPLY;
    string private BASE_URI;
    uint256 public FREE_MINT_LIMIT_PER_WALLET;
    uint256 public MAX_MINT_PER_TX;
    bool public IS_SALE_ACTIVE;
    uint256 public FREE_MINT_SUPPLY; 
    bool public METADATA_FROZEN;

    mapping(address => uint256) private freeMintAdressData;

    constructor(uint256 price, uint256 maxSupply, string memory baseUri, uint256 freeMintLimitPerWallet, uint256 maxMintPerTX, bool isSaleActive, uint256 freeMintSupply) ERC721A("GOD IS APEPE", "GIA"){
        PRICE = price;
        MAX_SUPPLY = maxSupply;
        BASE_URI = baseUri;
        FREE_MINT_LIMIT_PER_WALLET = freeMintLimitPerWallet;
        MAX_MINT_PER_TX = maxMintPerTX;
        IS_SALE_ACTIVE = isSaleActive;
        FREE_MINT_SUPPLY = freeMintSupply;

        mintOwner(msg.sender,10);
    }

    function updateFreeMintsAdresses(address minter, uint256 count) private{
        freeMintAdressData[minter] += count;
    }

    function returnCurrentMinterFreeMint(address minter) public view returns (uint256){
        return freeMintAdressData[minter];
    }


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

    function setPrice(uint256 price) external onlyOwner(){
        PRICE = price;
    }

    function lowerMaxSupply(uint256 newMaxSupply) external onlyOwner{
        require (newMaxSupply < MAX_SUPPLY, "MAX SUPPLY MORE THAN NEW MAX SUPPLY");
        require (newMaxSupply >= _currentIndex, "NEW MAX SUPPLY IS BIGGER OR EQUAL TO CURRENT INDEX");
        MAX_SUPPLY = newMaxSupply;
    }

    function setBaseURI(string memory baseUri) external onlyOwner {
        require(!METADATA_FROZEN, "METADATA FROZEN");
        BASE_URI = baseUri;
    }

    function setFreeMintLimitPerWallet(uint256 freeMintLimitPerWallet) external onlyOwner{
        FREE_MINT_LIMIT_PER_WALLET = freeMintLimitPerWallet;
    }

    function setSalesActive(bool isSaleActive) external onlyOwner{
        IS_SALE_ACTIVE = isSaleActive;
    }

    function setFreeMintSupply(uint256 freeMintSupply) external onlyOwner{
        FREE_MINT_SUPPLY = freeMintSupply;
    }

    function FreezeMetaData() external onlyOwner{
        METADATA_FROZEN = true;
    }

    // ---------- MINT
    modifier mintRegulation(uint256 _mintAmount){
        require(_mintAmount > 0 && _mintAmount <= MAX_MINT_PER_TX, "MINT AMOUNT IS LESSER 0 OR MINT AMOUT EXCEEDS MINT AMOUNT PER TX");
        require(_currentIndex + _mintAmount <= MAX_SUPPLY, "ALL SOLD. NO SUPPLY.");
        _;
    }

    function mint(uint256 _mintAmount) public payable mintRegulation(_mintAmount) {
        require(IS_SALE_ACTIVE, "Sale is not active!");

        uint256 totalPayable = _mintAmount * PRICE ;

        if (_currentIndex < FREE_MINT_SUPPLY) {
            uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET - freeMintAdressData[msg.sender];
            if (remainingFreeMint > 0) {

                if (_mintAmount >= remainingFreeMint) {
                    totalPayable -= remainingFreeMint * PRICE;
                    updateFreeMintsAdresses(msg.sender, remainingFreeMint);
                } else {
                    totalPayable -= _mintAmount * PRICE;
                    updateFreeMintsAdresses(msg.sender, _mintAmount);
                }
            } 
        }

        require(msg.value >= totalPayable, "Insufficient funds!");

        _safeMint(msg.sender, _mintAmount);
    }

        function mintOwner(address _to, uint256 _mintAmount) public mintRegulation(_mintAmount) onlyOwner {
        _safeMint(_to, _mintAmount);
    }

        function withdraw() public onlyOwner{
        require(address(this).balance > 0, "You have zero balance");
        payable(owner()).transfer(address(this).balance);
    }
        
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint256","name":"freeMintLimitPerWallet","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTX","type":"uint256"},{"internalType":"bool","name":"isSaleActive","type":"bool"},{"internalType":"uint256","name":"freeMintSupply","type":"uint256"}],"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":[],"name":"FREE_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreezeMetaData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_FROZEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"lowerMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"returnCurrentMinterFreeMint","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":"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":"baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintLimitPerWallet","type":"uint256"}],"name":"setFreeMintLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintSupply","type":"uint256"}],"name":"setFreeMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isSaleActive","type":"bool"}],"name":"setSalesActive","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620027ac380380620027ac8339810160408190526200003491620006a9565b604080518082018252600c81526b474f4420495320415045504560a01b60208083019182528351808501909452600384526247494160e81b9084015281519192916200008391600291620005ba565b50805162000099906003906020840190620005ba565b50506000805550620000ab3362000102565b6009879055600a8690558451620000ca90600b906020880190620005ba565b50600c849055600d839055600e805460ff1916831515179055600f819055620000f533600a62000154565b50505050505050620008a6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80600081118015620001685750600d548111155b620001e2576040805162461bcd60e51b81526020600482015260248101919091527f4d494e5420414d4f554e54204953204c45535345522030204f52204d494e542060448201527f414d4f55542045584345454453204d494e5420414d4f554e542050455220545860648201526084015b60405180910390fd5b600a5481600054620001f59190620007fd565b1115620002455760405162461bcd60e51b815260206004820152601460248201527f414c4c20534f4c442e204e4f20535550504c592e0000000000000000000000006044820152606401620001d9565b6008546001600160a01b03163314620002a15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001d9565b620002ad8383620002b2565b505050565b620002d4828260405180602001604052806000815250620002d860201b60201c565b5050565b620002ad83838360016000546001600160a01b0385166200030b57604051622e076360e81b815260040160405180910390fd5b836200032a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015620003e35750620003e3876001600160a01b0316620004aa60201b620010931760201c565b1562000463575b60405182906001600160a01b038916906000906000805160206200278c833981519152908290a460018201916200042790600090899088620004b9565b62000445576040516368d2bf6b60e11b815260040160405180910390fd5b80821415620003ea5782600054146200045d57600080fd5b62000499565b5b6040516001830192906001600160a01b038916906000906000805160206200278c833981519152908290a48082141562000464575b506000555050505050565b50505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620004f0903390899088908890600401620007a7565b602060405180830381600087803b1580156200050b57600080fd5b505af19250505080156200053e575060408051601f3d908101601f191682019092526200053b9181019062000676565b60015b6200059d573d8080156200056f576040519150601f19603f3d011682016040523d82523d6000602084013e62000574565b606091505b50805162000595576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054620005c89062000853565b90600052602060002090601f016020900481019282620005ec576000855562000637565b82601f106200060757805160ff191683800117855562000637565b8280016001018555821562000637579182015b82811115620006375782518255916020019190600101906200061a565b506200064592915062000649565b5090565b5b808211156200064557600081556001016200064a565b805180151581146200067157600080fd5b919050565b6000602082840312156200068957600080fd5b81516001600160e01b031981168114620006a257600080fd5b9392505050565b600080600080600080600060e0888a031215620006c557600080fd5b8751602089015160408a015191985096506001600160401b0380821115620006ec57600080fd5b818a0191508a601f8301126200070157600080fd5b81518181111562000716576200071662000890565b604051601f8201601f19908116603f0116810190838211818310171562000741576200074162000890565b816040528281528d60208487010111156200075b57600080fd5b6200076e83602083016020880162000824565b809950505050505060608801519350608088015192506200079260a0890162000660565b915060c0880151905092959891949750929550565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620007e68160a085016020870162000824565b601f01601f19169190910160a00195945050505050565b600082198211156200081f57634e487b7160e01b600052601160045260246000fd5b500190565b60005b838110156200084157818101518382015260200162000827565b83811115620004a45750506000910152565b600181811c908216806200086857607f821691505b602082108114156200088a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611ed680620008b66000396000f3fe6080604052600436106102045760003560e01c806376d02b7111610118578063a82fe0ac116100a0578063c87b56dd1161006f578063c87b56dd146105af578063e64369d9146105cf578063e985e9c5146105e4578063f2fde38b1461062d578063fdb4953a1461064d57600080fd5b8063a82fe0ac1461052f578063b88d4fde1461054f578063c4c39ed51461056f578063c4e9374d1461058f57600080fd5b80638f7a715f116100e75780638f7a715f146104a757806391b7f5ed146104c757806395d89b41146104e7578063a0712d68146104fc578063a22cb4651461050f57600080fd5b806376d02b71146104435780638d859f3e1461045d5780638da5cb5b146104735780638ecad7211461049157600080fd5b8063343b7b8a1161019b57806355f804b31161016a57806355f804b3146103b85780636352211e146103d857806363eb8bb6146103f857806370a082311461040e578063715018a61461042e57600080fd5b8063343b7b8a1461032d5780633ccfd60b14610363578063408cbf941461037857806342842e0e1461039857600080fd5b806310b0c052116101d757806310b0c052146102ba57806318160ddd146102de57806323b872dd146102f757806332cb6b0c1461031757600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611b60565b610667565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106b9565b6040516102359190611c94565b34801561026c57600080fd5b5061028061027b366004611be3565b61074b565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611b1b565b61078f565b005b3480156102c657600080fd5b506102d0600c5481565b604051908152602001610235565b3480156102ea57600080fd5b50600154600054036102d0565b34801561030357600080fd5b506102b8610312366004611a39565b61081d565b34801561032357600080fd5b506102d0600a5481565b34801561033957600080fd5b506102d06103483660046119eb565b6001600160a01b031660009081526011602052604090205490565b34801561036f57600080fd5b506102b8610828565b34801561038457600080fd5b506102b8610393366004611b1b565b6108df565b3480156103a457600080fd5b506102b86103b3366004611a39565b610998565b3480156103c457600080fd5b506102b86103d3366004611b9a565b6109b3565b3480156103e457600080fd5b506102806103f3366004611be3565b610a39565b34801561040457600080fd5b506102d0600f5481565b34801561041a57600080fd5b506102d06104293660046119eb565b610a4b565b34801561043a57600080fd5b506102b8610a9a565b34801561044f57600080fd5b50600e546102299060ff1681565b34801561046957600080fd5b506102d060095481565b34801561047f57600080fd5b506008546001600160a01b0316610280565b34801561049d57600080fd5b506102d0600d5481565b3480156104b357600080fd5b506102b86104c2366004611be3565b610ad0565b3480156104d357600080fd5b506102b86104e2366004611be3565b610aff565b3480156104f357600080fd5b50610253610b2e565b6102b861050a366004611be3565b610b3d565b34801561051b57600080fd5b506102b861052a366004611af1565b610cf1565b34801561053b57600080fd5b506102b861054a366004611b45565b610d87565b34801561055b57600080fd5b506102b861056a366004611a75565b610dc4565b34801561057b57600080fd5b506102b861058a366004611be3565b610e15565b34801561059b57600080fd5b506102b86105aa366004611be3565b610e44565b3480156105bb57600080fd5b506102536105ca366004611be3565b610f3d565b3480156105db57600080fd5b506102b8610fc2565b3480156105f057600080fd5b506102296105ff366004611a06565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561063957600080fd5b506102b86106483660046119eb565b610ffb565b34801561065957600080fd5b506010546102299060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061069857506001600160e01b03198216635b5e139f60e01b145b806106b357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106c890611dc8565b80601f01602080910402602001604051908101604052809291908181526020018280546106f490611dc8565b80156107415780601f1061071657610100808354040283529160200191610741565b820191906000526020600020905b81548152906001019060200180831161072457829003601f168201915b5050505050905090565b6000610756826110a2565b610773576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079a82610a39565b9050806001600160a01b0316836001600160a01b031614156107cf5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107ef57506107ed81336105ff565b155b1561080d576040516367d9dca160e11b815260040160405180910390fd5b6108188383836110cd565b505050565b610818838383611129565b6008546001600160a01b0316331461085b5760405162461bcd60e51b815260040161085290611d05565b60405180910390fd5b600047116108a35760405162461bcd60e51b8152602060048201526015602482015274596f752068617665207a65726f2062616c616e636560581b6044820152606401610852565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156108dc573d6000803e3d6000fd5b50565b806000811180156108f25750600d548111155b61090e5760405162461bcd60e51b815260040161085290611ca7565b600a548160005461091f9190611d3a565b11156109645760405162461bcd60e51b815260206004820152601460248201527320a6261029a7a622171027279029aaa828262c9760611b6044820152606401610852565b6008546001600160a01b0316331461098e5760405162461bcd60e51b815260040161085290611d05565b6108188383611319565b61081883838360405180602001604052806000815250610dc4565b6008546001600160a01b031633146109dd5760405162461bcd60e51b815260040161085290611d05565b60105460ff1615610a225760405162461bcd60e51b815260206004820152600f60248201526e26a2aa20a220aa2090232927ad22a760891b6044820152606401610852565b8051610a3590600b9060208401906118b0565b5050565b6000610a4482611333565b5192915050565b60006001600160a01b038216610a74576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ac45760405162461bcd60e51b815260040161085290611d05565b610ace600061144f565b565b6008546001600160a01b03163314610afa5760405162461bcd60e51b815260040161085290611d05565b600c55565b6008546001600160a01b03163314610b295760405162461bcd60e51b815260040161085290611d05565b600955565b6060600380546106c890611dc8565b80600081118015610b505750600d548111155b610b6c5760405162461bcd60e51b815260040161085290611ca7565b600a5481600054610b7d9190611d3a565b1115610bc25760405162461bcd60e51b815260206004820152601460248201527320a6261029a7a622171027279029aaa828262c9760611b6044820152606401610852565b600e5460ff16610c0a5760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610852565b600060095483610c1a9190611d66565b9050600f546000541015610ca15733600090815260116020526040812054600c54610c459190611d85565b90508015610c9f57808410610c7c57600954610c619082611d66565b610c6b9083611d85565b9150610c7733826114a1565b610c9f565b600954610c899085611d66565b610c939083611d85565b9150610c9f33856114a1565b505b80341015610ce75760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610852565b6108183384611319565b6001600160a01b038216331415610d1b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610db15760405162461bcd60e51b815260040161085290611d05565b600e805460ff1916911515919091179055565b610dcf848484611129565b6001600160a01b0383163b15158015610df15750610def848484846114d2565b155b15610e0f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610e3f5760405162461bcd60e51b815260040161085290611d05565b600f55565b6008546001600160a01b03163314610e6e5760405162461bcd60e51b815260040161085290611d05565b600a548110610ecb5760405162461bcd60e51b815260206004820152602360248201527f4d415820535550504c59204d4f5245205448414e204e4557204d415820535550604482015262504c5960e81b6064820152608401610852565b600054811015610f385760405162461bcd60e51b815260206004820152603260248201527f4e4557204d415820535550504c5920495320424947474552204f52204551554160448201527109840a89e4086aaa4a48a9ca840929c888ab60731b6064820152608401610852565b600a55565b6060610f48826110a2565b610f6557604051630a14c4b560e41b815260040160405180910390fd5b6000610f6f6115ca565b9050805160001415610f905760405180602001604052806000815250610fbb565b80610f9a846115d9565b604051602001610fab929190611c28565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610fec5760405162461bcd60e51b815260040161085290611d05565b6010805460ff19166001179055565b6008546001600160a01b031633146110255760405162461bcd60e51b815260040161085290611d05565b6001600160a01b03811661108a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610852565b6108dc8161144f565b6001600160a01b03163b151590565b60008054821080156106b3575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061113482611333565b9050836001600160a01b031681600001516001600160a01b03161461116b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611189575061118985336105ff565b806111a45750336111998461074b565b6001600160a01b0316145b9050806111c457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111eb57604051633a954ecd60e21b815260040160405180910390fd5b6111f7600084876110cd565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112cd5760005482146112cd578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a358282604051806020016040528060008152506116d7565b60408051606081018252600080825260208201819052918101919091528160005481101561143657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114345780516001600160a01b0316156113ca579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561142f579392505050565b6113ca565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600090815260116020526040812080548392906114c9908490611d3a565b90915550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611507903390899088908890600401611c57565b602060405180830381600087803b15801561152157600080fd5b505af1925050508015611551575060408051601f3d908101601f1916820190925261154e91810190611b7d565b60015b6115ac573d80801561157f576040519150601f19603f3d011682016040523d82523d6000602084013e611584565b606091505b5080516115a4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546106c890611dc8565b6060816115fd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611627578061161181611e03565b91506116209050600a83611d52565b9150611601565b60008167ffffffffffffffff81111561164257611642611e74565b6040519080825280601f01601f19166020018201604052801561166c576020820181803683370190505b5090505b84156115c257611681600183611d85565b915061168e600a86611e1e565b611699906030611d3a565b60f81b8183815181106116ae576116ae611e5e565b60200101906001600160f81b031916908160001a9053506116d0600a86611d52565b9450611670565b61081883838360016000546001600160a01b03851661170857604051622e076360e81b815260040160405180910390fd5b836117265760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156117d857506001600160a01b0387163b15155b15611861575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461182960008884806001019550886114d2565b611846576040516368d2bf6b60e11b815260040160405180910390fd5b808214156117de57826000541461185c57600080fd5b6118a7565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611862575b50600055611312565b8280546118bc90611dc8565b90600052602060002090601f0160209004810192826118de5760008555611924565b82601f106118f757805160ff1916838001178555611924565b82800160010185558215611924579182015b82811115611924578251825591602001919060010190611909565b50611930929150611934565b5090565b5b808211156119305760008155600101611935565b600067ffffffffffffffff8084111561196457611964611e74565b604051601f8501601f19908116603f0116810190828211818310171561198c5761198c611e74565b816040528093508581528686860111156119a557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146119d657600080fd5b919050565b803580151581146119d657600080fd5b6000602082840312156119fd57600080fd5b610fbb826119bf565b60008060408385031215611a1957600080fd5b611a22836119bf565b9150611a30602084016119bf565b90509250929050565b600080600060608486031215611a4e57600080fd5b611a57846119bf565b9250611a65602085016119bf565b9150604084013590509250925092565b60008060008060808587031215611a8b57600080fd5b611a94856119bf565b9350611aa2602086016119bf565b925060408501359150606085013567ffffffffffffffff811115611ac557600080fd5b8501601f81018713611ad657600080fd5b611ae587823560208401611949565b91505092959194509250565b60008060408385031215611b0457600080fd5b611b0d836119bf565b9150611a30602084016119db565b60008060408385031215611b2e57600080fd5b611b37836119bf565b946020939093013593505050565b600060208284031215611b5757600080fd5b610fbb826119db565b600060208284031215611b7257600080fd5b8135610fbb81611e8a565b600060208284031215611b8f57600080fd5b8151610fbb81611e8a565b600060208284031215611bac57600080fd5b813567ffffffffffffffff811115611bc357600080fd5b8201601f81018413611bd457600080fd5b6115c284823560208401611949565b600060208284031215611bf557600080fd5b5035919050565b60008151808452611c14816020860160208601611d9c565b601f01601f19169290920160200192915050565b60008351611c3a818460208801611d9c565b835190830190611c4e818360208801611d9c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8a90830184611bfc565b9695505050505050565b602081526000610fbb6020830184611bfc565b602080825260409082018190527f4d494e5420414d4f554e54204953204c45535345522030204f52204d494e5420908201527f414d4f55542045584345454453204d494e5420414d4f554e5420504552205458606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611d4d57611d4d611e32565b500190565b600082611d6157611d61611e48565b500490565b6000816000190483118215151615611d8057611d80611e32565b500290565b600082821015611d9757611d97611e32565b500390565b60005b83811015611db7578181015183820152602001611d9f565b83811115610e0f5750506000910152565b600181811c90821680611ddc57607f821691505b60208210811415611dfd57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e1757611e17611e32565b5060010190565b600082611e2d57611e2d611e48565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108dc57600080fdfea2646970667358221220b125fb0ae43af3bfcaf7d97045f2f2bd809841d7b3379afd35f6730ac78473ec64736f6c63430008070033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000000000000000000000000000000000000000000000000071afd498d00000000000000000000000000000000000000000000000000000000000000001e6100000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000001e610000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d64716468457668443867376b696f58396744527066374344374b5a753575323454315357656361536f68786e2f00000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c806376d02b7111610118578063a82fe0ac116100a0578063c87b56dd1161006f578063c87b56dd146105af578063e64369d9146105cf578063e985e9c5146105e4578063f2fde38b1461062d578063fdb4953a1461064d57600080fd5b8063a82fe0ac1461052f578063b88d4fde1461054f578063c4c39ed51461056f578063c4e9374d1461058f57600080fd5b80638f7a715f116100e75780638f7a715f146104a757806391b7f5ed146104c757806395d89b41146104e7578063a0712d68146104fc578063a22cb4651461050f57600080fd5b806376d02b71146104435780638d859f3e1461045d5780638da5cb5b146104735780638ecad7211461049157600080fd5b8063343b7b8a1161019b57806355f804b31161016a57806355f804b3146103b85780636352211e146103d857806363eb8bb6146103f857806370a082311461040e578063715018a61461042e57600080fd5b8063343b7b8a1461032d5780633ccfd60b14610363578063408cbf941461037857806342842e0e1461039857600080fd5b806310b0c052116101d757806310b0c052146102ba57806318160ddd146102de57806323b872dd146102f757806332cb6b0c1461031757600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611b60565b610667565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106b9565b6040516102359190611c94565b34801561026c57600080fd5b5061028061027b366004611be3565b61074b565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611b1b565b61078f565b005b3480156102c657600080fd5b506102d0600c5481565b604051908152602001610235565b3480156102ea57600080fd5b50600154600054036102d0565b34801561030357600080fd5b506102b8610312366004611a39565b61081d565b34801561032357600080fd5b506102d0600a5481565b34801561033957600080fd5b506102d06103483660046119eb565b6001600160a01b031660009081526011602052604090205490565b34801561036f57600080fd5b506102b8610828565b34801561038457600080fd5b506102b8610393366004611b1b565b6108df565b3480156103a457600080fd5b506102b86103b3366004611a39565b610998565b3480156103c457600080fd5b506102b86103d3366004611b9a565b6109b3565b3480156103e457600080fd5b506102806103f3366004611be3565b610a39565b34801561040457600080fd5b506102d0600f5481565b34801561041a57600080fd5b506102d06104293660046119eb565b610a4b565b34801561043a57600080fd5b506102b8610a9a565b34801561044f57600080fd5b50600e546102299060ff1681565b34801561046957600080fd5b506102d060095481565b34801561047f57600080fd5b506008546001600160a01b0316610280565b34801561049d57600080fd5b506102d0600d5481565b3480156104b357600080fd5b506102b86104c2366004611be3565b610ad0565b3480156104d357600080fd5b506102b86104e2366004611be3565b610aff565b3480156104f357600080fd5b50610253610b2e565b6102b861050a366004611be3565b610b3d565b34801561051b57600080fd5b506102b861052a366004611af1565b610cf1565b34801561053b57600080fd5b506102b861054a366004611b45565b610d87565b34801561055b57600080fd5b506102b861056a366004611a75565b610dc4565b34801561057b57600080fd5b506102b861058a366004611be3565b610e15565b34801561059b57600080fd5b506102b86105aa366004611be3565b610e44565b3480156105bb57600080fd5b506102536105ca366004611be3565b610f3d565b3480156105db57600080fd5b506102b8610fc2565b3480156105f057600080fd5b506102296105ff366004611a06565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561063957600080fd5b506102b86106483660046119eb565b610ffb565b34801561065957600080fd5b506010546102299060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061069857506001600160e01b03198216635b5e139f60e01b145b806106b357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106c890611dc8565b80601f01602080910402602001604051908101604052809291908181526020018280546106f490611dc8565b80156107415780601f1061071657610100808354040283529160200191610741565b820191906000526020600020905b81548152906001019060200180831161072457829003601f168201915b5050505050905090565b6000610756826110a2565b610773576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079a82610a39565b9050806001600160a01b0316836001600160a01b031614156107cf5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107ef57506107ed81336105ff565b155b1561080d576040516367d9dca160e11b815260040160405180910390fd5b6108188383836110cd565b505050565b610818838383611129565b6008546001600160a01b0316331461085b5760405162461bcd60e51b815260040161085290611d05565b60405180910390fd5b600047116108a35760405162461bcd60e51b8152602060048201526015602482015274596f752068617665207a65726f2062616c616e636560581b6044820152606401610852565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156108dc573d6000803e3d6000fd5b50565b806000811180156108f25750600d548111155b61090e5760405162461bcd60e51b815260040161085290611ca7565b600a548160005461091f9190611d3a565b11156109645760405162461bcd60e51b815260206004820152601460248201527320a6261029a7a622171027279029aaa828262c9760611b6044820152606401610852565b6008546001600160a01b0316331461098e5760405162461bcd60e51b815260040161085290611d05565b6108188383611319565b61081883838360405180602001604052806000815250610dc4565b6008546001600160a01b031633146109dd5760405162461bcd60e51b815260040161085290611d05565b60105460ff1615610a225760405162461bcd60e51b815260206004820152600f60248201526e26a2aa20a220aa2090232927ad22a760891b6044820152606401610852565b8051610a3590600b9060208401906118b0565b5050565b6000610a4482611333565b5192915050565b60006001600160a01b038216610a74576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ac45760405162461bcd60e51b815260040161085290611d05565b610ace600061144f565b565b6008546001600160a01b03163314610afa5760405162461bcd60e51b815260040161085290611d05565b600c55565b6008546001600160a01b03163314610b295760405162461bcd60e51b815260040161085290611d05565b600955565b6060600380546106c890611dc8565b80600081118015610b505750600d548111155b610b6c5760405162461bcd60e51b815260040161085290611ca7565b600a5481600054610b7d9190611d3a565b1115610bc25760405162461bcd60e51b815260206004820152601460248201527320a6261029a7a622171027279029aaa828262c9760611b6044820152606401610852565b600e5460ff16610c0a5760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610852565b600060095483610c1a9190611d66565b9050600f546000541015610ca15733600090815260116020526040812054600c54610c459190611d85565b90508015610c9f57808410610c7c57600954610c619082611d66565b610c6b9083611d85565b9150610c7733826114a1565b610c9f565b600954610c899085611d66565b610c939083611d85565b9150610c9f33856114a1565b505b80341015610ce75760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610852565b6108183384611319565b6001600160a01b038216331415610d1b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610db15760405162461bcd60e51b815260040161085290611d05565b600e805460ff1916911515919091179055565b610dcf848484611129565b6001600160a01b0383163b15158015610df15750610def848484846114d2565b155b15610e0f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610e3f5760405162461bcd60e51b815260040161085290611d05565b600f55565b6008546001600160a01b03163314610e6e5760405162461bcd60e51b815260040161085290611d05565b600a548110610ecb5760405162461bcd60e51b815260206004820152602360248201527f4d415820535550504c59204d4f5245205448414e204e4557204d415820535550604482015262504c5960e81b6064820152608401610852565b600054811015610f385760405162461bcd60e51b815260206004820152603260248201527f4e4557204d415820535550504c5920495320424947474552204f52204551554160448201527109840a89e4086aaa4a48a9ca840929c888ab60731b6064820152608401610852565b600a55565b6060610f48826110a2565b610f6557604051630a14c4b560e41b815260040160405180910390fd5b6000610f6f6115ca565b9050805160001415610f905760405180602001604052806000815250610fbb565b80610f9a846115d9565b604051602001610fab929190611c28565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610fec5760405162461bcd60e51b815260040161085290611d05565b6010805460ff19166001179055565b6008546001600160a01b031633146110255760405162461bcd60e51b815260040161085290611d05565b6001600160a01b03811661108a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610852565b6108dc8161144f565b6001600160a01b03163b151590565b60008054821080156106b3575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061113482611333565b9050836001600160a01b031681600001516001600160a01b03161461116b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611189575061118985336105ff565b806111a45750336111998461074b565b6001600160a01b0316145b9050806111c457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111eb57604051633a954ecd60e21b815260040160405180910390fd5b6111f7600084876110cd565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112cd5760005482146112cd578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a358282604051806020016040528060008152506116d7565b60408051606081018252600080825260208201819052918101919091528160005481101561143657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114345780516001600160a01b0316156113ca579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561142f579392505050565b6113ca565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600090815260116020526040812080548392906114c9908490611d3a565b90915550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611507903390899088908890600401611c57565b602060405180830381600087803b15801561152157600080fd5b505af1925050508015611551575060408051601f3d908101601f1916820190925261154e91810190611b7d565b60015b6115ac573d80801561157f576040519150601f19603f3d011682016040523d82523d6000602084013e611584565b606091505b5080516115a4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546106c890611dc8565b6060816115fd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611627578061161181611e03565b91506116209050600a83611d52565b9150611601565b60008167ffffffffffffffff81111561164257611642611e74565b6040519080825280601f01601f19166020018201604052801561166c576020820181803683370190505b5090505b84156115c257611681600183611d85565b915061168e600a86611e1e565b611699906030611d3a565b60f81b8183815181106116ae576116ae611e5e565b60200101906001600160f81b031916908160001a9053506116d0600a86611d52565b9450611670565b61081883838360016000546001600160a01b03851661170857604051622e076360e81b815260040160405180910390fd5b836117265760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156117d857506001600160a01b0387163b15155b15611861575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461182960008884806001019550886114d2565b611846576040516368d2bf6b60e11b815260040160405180910390fd5b808214156117de57826000541461185c57600080fd5b6118a7565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611862575b50600055611312565b8280546118bc90611dc8565b90600052602060002090601f0160209004810192826118de5760008555611924565b82601f106118f757805160ff1916838001178555611924565b82800160010185558215611924579182015b82811115611924578251825591602001919060010190611909565b50611930929150611934565b5090565b5b808211156119305760008155600101611935565b600067ffffffffffffffff8084111561196457611964611e74565b604051601f8501601f19908116603f0116810190828211818310171561198c5761198c611e74565b816040528093508581528686860111156119a557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146119d657600080fd5b919050565b803580151581146119d657600080fd5b6000602082840312156119fd57600080fd5b610fbb826119bf565b60008060408385031215611a1957600080fd5b611a22836119bf565b9150611a30602084016119bf565b90509250929050565b600080600060608486031215611a4e57600080fd5b611a57846119bf565b9250611a65602085016119bf565b9150604084013590509250925092565b60008060008060808587031215611a8b57600080fd5b611a94856119bf565b9350611aa2602086016119bf565b925060408501359150606085013567ffffffffffffffff811115611ac557600080fd5b8501601f81018713611ad657600080fd5b611ae587823560208401611949565b91505092959194509250565b60008060408385031215611b0457600080fd5b611b0d836119bf565b9150611a30602084016119db565b60008060408385031215611b2e57600080fd5b611b37836119bf565b946020939093013593505050565b600060208284031215611b5757600080fd5b610fbb826119db565b600060208284031215611b7257600080fd5b8135610fbb81611e8a565b600060208284031215611b8f57600080fd5b8151610fbb81611e8a565b600060208284031215611bac57600080fd5b813567ffffffffffffffff811115611bc357600080fd5b8201601f81018413611bd457600080fd5b6115c284823560208401611949565b600060208284031215611bf557600080fd5b5035919050565b60008151808452611c14816020860160208601611d9c565b601f01601f19169290920160200192915050565b60008351611c3a818460208801611d9c565b835190830190611c4e818360208801611d9c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8a90830184611bfc565b9695505050505050565b602081526000610fbb6020830184611bfc565b602080825260409082018190527f4d494e5420414d4f554e54204953204c45535345522030204f52204d494e5420908201527f414d4f55542045584345454453204d494e5420414d4f554e5420504552205458606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611d4d57611d4d611e32565b500190565b600082611d6157611d61611e48565b500490565b6000816000190483118215151615611d8057611d80611e32565b500290565b600082821015611d9757611d97611e32565b500390565b60005b83811015611db7578181015183820152602001611d9f565b83811115610e0f5750506000910152565b600181811c90821680611ddc57607f821691505b60208210811415611dfd57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e1757611e17611e32565b5060010190565b600082611e2d57611e2d611e48565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108dc57600080fdfea2646970667358221220b125fb0ae43af3bfcaf7d97045f2f2bd809841d7b3379afd35f6730ac78473ec64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000071afd498d00000000000000000000000000000000000000000000000000000000000000001e6100000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000001e610000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d64716468457668443867376b696f58396744527066374344374b5a753575323454315357656361536f68786e2f00000000000000000000

-----Decoded View---------------
Arg [0] : price (uint256): 2000000000000000
Arg [1] : maxSupply (uint256): 7777
Arg [2] : baseUri (string): ipfs://QmdqdhEvhD8g7kioX9gDRpf7CD7KZu5u24T1SWecaSohxn/
Arg [3] : freeMintLimitPerWallet (uint256): 2
Arg [4] : maxMintPerTX (uint256): 10
Arg [5] : isSaleActive (bool): True
Arg [6] : freeMintSupply (uint256): 7777

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000071afd498d0000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001e61
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 0000000000000000000000000000000000000000000000000000000000001e61
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d64716468457668443867376b696f583967445270663743
Arg [9] : 44374b5a753575323454315357656361536f68786e2f00000000000000000000


Deployed Bytecode Sourcemap

44818:3988:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27005:305;;;;;;;;;;-1:-1:-1;27005:305:0;;;;;:::i;:::-;;:::i;:::-;;;5903:14:1;;5896:22;5878:41;;5866:2;5851:18;27005:305:0;;;;;;;;30118:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31621:204::-;;;;;;;;;;-1:-1:-1;31621:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5201:32:1;;;5183:51;;5171:2;5156:18;31621:204:0;5037:203:1;31184:371:0;;;;;;;;;;-1:-1:-1;31184:371:0;;;;;:::i;:::-;;:::i;:::-;;44988:41;;;;;;;;;;;;;;;;;;;10063:25:1;;;10051:2;10036:18;44988:41:0;9917:177:1;26254:303:0;;;;;;;;;;-1:-1:-1;26508:12:0;;26298:7;26492:13;:28;26254:303;;32486:170;;;;;;;;;;-1:-1:-1;32486:170:0;;;;;:::i;:::-;;:::i;44926:25::-;;;;;;;;;;;;;;;;45899:134;;;;;;;;;;-1:-1:-1;45899:134:0;;;;;:::i;:::-;-1:-1:-1;;;;;45999:26:0;45973:7;45999:26;;;:18;:26;;;;;;;45899:134;48620:173;;;;;;;;;;;;;:::i;48464:144::-;;;;;;;;;;-1:-1:-1;48464:144:0;;;;;:::i;:::-;;:::i;32727:185::-;;;;;;;;;;-1:-1:-1;32727:185:0;;;;;:::i;:::-;;:::i;46558:154::-;;;;;;;;;;-1:-1:-1;46558:154:0;;;;;:::i;:::-;;:::i;29926:125::-;;;;;;;;;;-1:-1:-1;29926:125:0;;;;;:::i;:::-;;:::i;45106:31::-;;;;;;;;;;;;;;;;27374:206;;;;;;;;;;-1:-1:-1;27374:206:0;;;;;:::i;:::-;;:::i;4763:103::-;;;;;;;;;;;;;:::i;45073:26::-;;;;;;;;;;-1:-1:-1;45073:26:0;;;;;;;;44899:20;;;;;;;;;;;;;;;;4112:87;;;;;;;;;;-1:-1:-1;4185:6:0;;-1:-1:-1;;;;;4185:6:0;4112:87;;45036:30;;;;;;;;;;;;;;;;46720:155;;;;;;;;;;-1:-1:-1;46720:155:0;;;;;:::i;:::-;;:::i;46160:85::-;;;;;;;;;;-1:-1:-1;46160:85:0;;;;;:::i;:::-;;:::i;30287:104::-;;;;;;;;;;;;;:::i;47540:912::-;;;;;;:::i;:::-;;:::i;31897:287::-;;;;;;;;;;-1:-1:-1;31897:287:0;;;;;:::i;:::-;;:::i;46883:109::-;;;;;;;;;;-1:-1:-1;46883:109:0;;;;;:::i;:::-;;:::i;32983:369::-;;;;;;;;;;-1:-1:-1;32983:369:0;;;;;:::i;:::-;;:::i;47000:121::-;;;;;;;;;;-1:-1:-1;47000:121:0;;;;;:::i;:::-;;:::i;46253:297::-;;;;;;;;;;-1:-1:-1;46253:297:0;;;;;:::i;:::-;;:::i;30462:318::-;;;;;;;;;;-1:-1:-1;30462:318:0;;;;;:::i;:::-;;:::i;47129:85::-;;;;;;;;;;;;;:::i;32255:164::-;;;;;;;;;;-1:-1:-1;32255:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32376:25:0;;;32352:4;32376:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32255:164;5021:201;;;;;;;;;;-1:-1:-1;5021:201:0;;;;;:::i;:::-;;:::i;45145:27::-;;;;;;;;;;-1:-1:-1;45145:27:0;;;;;;;;27005:305;27107:4;-1:-1:-1;;;;;;27144:40:0;;-1:-1:-1;;;27144:40:0;;:105;;-1:-1:-1;;;;;;;27201:48:0;;-1:-1:-1;;;27201:48:0;27144:105;:158;;;-1:-1:-1;;;;;;;;;;17005:40:0;;;27266:36;27124:178;27005:305;-1:-1:-1;;27005:305:0:o;30118:100::-;30172:13;30205:5;30198:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30118:100;:::o;31621:204::-;31689:7;31714:16;31722:7;31714;:16::i;:::-;31709:64;;31739:34;;-1:-1:-1;;;31739:34:0;;;;;;;;;;;31709:64;-1:-1:-1;31793:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31793:24:0;;31621:204::o;31184:371::-;31257:13;31273:24;31289:7;31273:15;:24::i;:::-;31257:40;;31318:5;-1:-1:-1;;;;;31312:11:0;:2;-1:-1:-1;;;;;31312:11:0;;31308:48;;;31332:24;;-1:-1:-1;;;31332:24:0;;;;;;;;;;;31308:48;2916:10;-1:-1:-1;;;;;31373:21:0;;;;;;:63;;-1:-1:-1;31399:37:0;31416:5;2916:10;32255:164;:::i;31399:37::-;31398:38;31373:63;31369:138;;;31460:35;;-1:-1:-1;;;31460:35:0;;;;;;;;;;;31369:138;31519:28;31528:2;31532:7;31541:5;31519:8;:28::i;:::-;31246:309;31184:371;;:::o;32486:170::-;32620:28;32630:4;32636:2;32640:7;32620:9;:28::i;48620:173::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;;;;;;;;;48699:1:::1;48675:21;:25;48667:59;;;::::0;-1:-1:-1;;;48667:59:0;;7516:2:1;48667:59:0::1;::::0;::::1;7498:21:1::0;7555:2;7535:18;;;7528:30;-1:-1:-1;;;7574:18:1;;;7567:51;7635:18;;48667:59:0::1;7314:345:1::0;48667:59:0::1;4185:6:::0;;48737:48:::1;::::0;-1:-1:-1;;;;;4185:6:0;;;;48763:21:::1;48737:48:::0;::::1;;;::::0;::::1;::::0;;;48763:21;4185:6;48737:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48620:173::o:0;48464:144::-;48539:11;47323:1;47309:11;:15;:49;;;;;47343:15;;47328:11;:30;;47309:49;47301:126;;;;-1:-1:-1;;;47301:126:0;;;;;;;:::i;:::-;47477:10;;47462:11;47446:13;;:27;;;;:::i;:::-;:41;;47438:74;;;;-1:-1:-1;;;47438:74:0;;6356:2:1;47438:74:0;;;6338:21:1;6395:2;6375:18;;;6368:30;-1:-1:-1;;;6414:18:1;;;6407:50;6474:18;;47438:74:0;6154:344:1;47438:74:0;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23:::1;4324:68;;;;-1:-1:-1::0;;;4324:68:0::1;;;;;;;:::i;:::-;48573:27:::2;48583:3;48588:11;48573:9;:27::i;32727:185::-:0;32865:39;32882:4;32888:2;32892:7;32865:39;;;;;;;;;;;;:16;:39::i;46558:154::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46640:15:::1;::::0;::::1;;46639:16;46631:44;;;::::0;-1:-1:-1;;;46631:44:0;;9008:2:1;46631:44:0::1;::::0;::::1;8990:21:1::0;9047:2;9027:18;;;9020:30;-1:-1:-1;;;9066:18:1;;;9059:45;9121:18;;46631:44:0::1;8806:339:1::0;46631:44:0::1;46686:18:::0;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46558:154:::0;:::o;29926:125::-;29990:7;30017:21;30030:7;30017:12;:21::i;:::-;:26;;29926:125;-1:-1:-1;;29926:125:0:o;27374:206::-;27438:7;-1:-1:-1;;;;;27462:19:0;;27458:60;;27490:28;;-1:-1:-1;;;27490:28:0;;;;;;;;;;;27458:60;-1:-1:-1;;;;;;27544:19:0;;;;;:12;:19;;;;;:27;;;;27374:206::o;4763:103::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;46720:155::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46816:26:::1;:51:::0;46720:155::o;46160:85::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46224:5:::1;:13:::0;46160:85::o;30287:104::-;30343:13;30376:7;30369:14;;;;;:::i;47540:912::-;47605:11;47323:1;47309:11;:15;:49;;;;;47343:15;;47328:11;:30;;47309:49;47301:126;;;;-1:-1:-1;;;47301:126:0;;;;;;;:::i;:::-;47477:10;;47462:11;47446:13;;:27;;;;:::i;:::-;:41;;47438:74;;;;-1:-1:-1;;;47438:74:0;;6356:2:1;47438:74:0;;;6338:21:1;6395:2;6375:18;;;6368:30;-1:-1:-1;;;6414:18:1;;;6407:50;6474:18;;47438:74:0;6154:344:1;47438:74:0;47637:14:::1;::::0;::::1;;47629:46;;;::::0;-1:-1:-1;;;47629:46:0;;8660:2:1;47629:46:0::1;::::0;::::1;8642:21:1::0;8699:2;8679:18;;;8672:30;-1:-1:-1;;;8718:18:1;;;8711:49;8777:18;;47629:46:0::1;8458:343:1::0;47629:46:0::1;47688:20;47725:5;;47711:11;:19;;;;:::i;:::-;47688:42;;47764:16;;47748:13;;:32;47744:584;;;47873:10;47797:25;47854:30:::0;;;:18:::1;:30;::::0;;;;;47825:26:::1;::::0;:59:::1;::::0;47854:30;47825:59:::1;:::i;:::-;47797:87:::0;-1:-1:-1;47903:21:0;;47899:417:::1;;47966:17;47951:11;:32;47947:354;;48044:5;::::0;48024:25:::1;::::0;:17;:25:::1;:::i;:::-;48008:41;::::0;;::::1;:::i;:::-;;;48072:54;48096:10;48108:17;48072:23;:54::i;:::-;47947:354;;;48205:5;::::0;48191:19:::1;::::0;:11;:19:::1;:::i;:::-;48175:35;::::0;;::::1;:::i;:::-;;;48233:48;48257:10;48269:11;48233:23;:48::i;:::-;47782:546;47744:584;48361:12;48348:9;:25;;48340:57;;;::::0;-1:-1:-1;;;48340:57:0;;9771:2:1;48340:57:0::1;::::0;::::1;9753:21:1::0;9810:2;9790:18;;;9783:30;-1:-1:-1;;;9829:18:1;;;9822:49;9888:18;;48340:57:0::1;9569:343:1::0;48340:57:0::1;48410:34;48420:10;48432:11;48410:9;:34::i;31897:287::-:0;-1:-1:-1;;;;;31996:24:0;;2916:10;31996:24;31992:54;;;32029:17;;-1:-1:-1;;;32029:17:0;;;;;;;;;;;31992:54;2916:10;32059:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32059:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32059:53:0;;;;;;;;;;32128:48;;5878:41:1;;;32059:42:0;;2916:10;32128:48;;5851:18:1;32128:48:0;;;;;;;31897:287;;:::o;46883:109::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46955:14:::1;:29:::0;;-1:-1:-1;;46955:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46883:109::o;32983:369::-;33150:28;33160:4;33166:2;33170:7;33150:9;:28::i;:::-;-1:-1:-1;;;;;33193:13:0;;7108:19;:23;;33193:76;;;;;33213:56;33244:4;33250:2;33254:7;33263:5;33213:30;:56::i;:::-;33212:57;33193:76;33189:156;;;33293:40;;-1:-1:-1;;;33293:40:0;;;;;;;;;;;33189:156;32983:369;;;;:::o;47000:121::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47080:16:::1;:33:::0;47000:121::o;46253:297::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46352:10:::1;;46337:12;:25;46328:74;;;::::0;-1:-1:-1;;;46328:74:0;;7112:2:1;46328:74:0::1;::::0;::::1;7094:21:1::0;7151:2;7131:18;;;7124:30;7190:34;7170:18;;;7163:62;-1:-1:-1;;;7241:18:1;;;7234:33;7284:19;;46328:74:0::1;6910:399:1::0;46328:74:0::1;46438:13;;46422:12;:29;;46413:93;;;::::0;-1:-1:-1;;;46413:93:0;;9352:2:1;46413:93:0::1;::::0;::::1;9334:21:1::0;9391:2;9371:18;;;9364:30;9430:34;9410:18;;;9403:62;-1:-1:-1;;;9481:18:1;;;9474:48;9539:19;;46413:93:0::1;9150:414:1::0;46413:93:0::1;46517:10;:25:::0;46253:297::o;30462:318::-;30535:13;30566:16;30574:7;30566;:16::i;:::-;30561:59;;30591:29;;-1:-1:-1;;;30591:29:0;;;;;;;;;;;30561:59;30633:21;30657:10;:8;:10::i;:::-;30633:34;;30691:7;30685:21;30710:1;30685:26;;:87;;;;;;;;;;;;;;;;;30738:7;30747:18;:7;:16;:18::i;:::-;30721:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30685:87;30678:94;30462:318;-1:-1:-1;;;30462:318:0:o;47129:85::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47184:15:::1;:22:::0;;-1:-1:-1;;47184:22:0::1;47202:4;47184:22;::::0;;47129:85::o;5021:201::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;::::0;-1:-1:-1;;;5102:73:0;;6705:2:1;5102:73:0::1;::::0;::::1;6687:21:1::0;6744:2;6724:18;;;6717:30;6783:34;6763:18;;;6756:62;-1:-1:-1;;;6834:18:1;;;6827:36;6880:19;;5102:73:0::1;6503:402:1::0;5102:73:0::1;5186:28;5205:8;5186:18;:28::i;6813:326::-:0;-1:-1:-1;;;;;7108:19:0;;:23;;;6813:326::o;33607:174::-;33664:4;33728:13;;33718:7;:23;33688:85;;;;-1:-1:-1;;33746:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33746:27:0;;;;33745:28;;33607:174::o;41764:196::-;41879:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41879:29:0;-1:-1:-1;;;;;41879:29:0;;;;;;;;;41924:28;;41879:24;;41924:28;;;;;;;41764:196;;;:::o;36707:2130::-;36822:35;36860:21;36873:7;36860:12;:21::i;:::-;36822:59;;36920:4;-1:-1:-1;;;;;36898:26:0;:13;:18;;;-1:-1:-1;;;;;36898:26:0;;36894:67;;36933:28;;-1:-1:-1;;;36933:28:0;;;;;;;;;;;36894:67;36974:22;2916:10;-1:-1:-1;;;;;37000:20:0;;;;:73;;-1:-1:-1;37037:36:0;37054:4;2916:10;32255:164;:::i;37037:36::-;37000:126;;;-1:-1:-1;2916:10:0;37090:20;37102:7;37090:11;:20::i;:::-;-1:-1:-1;;;;;37090:36:0;;37000:126;36974:153;;37145:17;37140:66;;37171:35;;-1:-1:-1;;;37171:35:0;;;;;;;;;;;37140:66;-1:-1:-1;;;;;37221:16:0;;37217:52;;37246:23;;-1:-1:-1;;;37246:23:0;;;;;;;;;;;37217:52;37390:35;37407:1;37411:7;37420:4;37390:8;:35::i;:::-;-1:-1:-1;;;;;37721:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37721:31:0;;;;;;;-1:-1:-1;;37721:31:0;;;;;;;37767:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37767:29:0;;;;;;;;;;;37847:20;;;:11;:20;;;;;;37882:18;;-1:-1:-1;;;;;;37915:49:0;;;;-1:-1:-1;;;37948:15:0;37915:49;;;;;;;;;;38238:11;;38298:24;;;;;38341:13;;37847:20;;38298:24;;38341:13;38337:384;;38551:13;;38536:11;:28;38532:174;;38589:20;;38658:28;;;;38632:54;;-1:-1:-1;;;38632:54:0;-1:-1:-1;;;;;;38632:54:0;;;-1:-1:-1;;;;;38589:20:0;;38632:54;;;;38532:174;37696:1036;;;38768:7;38764:2;-1:-1:-1;;;;;38749:27:0;38758:4;-1:-1:-1;;;;;38749:27:0;;;;;;;;;;;38787:42;36811:2026;;36707:2130;;;:::o;33789:104::-;33858:27;33868:2;33872:8;33858:27;;;;;;;;;;;;:9;:27::i;28755:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28866:7:0;28949:13;;28942:4;:20;28911:886;;;28983:31;29017:17;;;:11;:17;;;;;;;;;28983:51;;;;;;;;;-1:-1:-1;;;;;28983:51:0;;;;-1:-1:-1;;;28983:51:0;;;;;;;;;;;-1:-1:-1;;;28983:51:0;;;;;;;;;;;;;;29053:729;;29103:14;;-1:-1:-1;;;;;29103:28:0;;29099:101;;29167:9;28755:1109;-1:-1:-1;;;28755:1109:0:o;29099:101::-;-1:-1:-1;;;29542:6:0;29587:17;;;;:11;:17;;;;;;;;;29575:29;;;;;;;;;-1:-1:-1;;;;;29575:29:0;;;;;-1:-1:-1;;;29575:29:0;;;;;;;;;;;-1:-1:-1;;;29575:29:0;;;;;;;;;;;;;29635:28;29631:109;;29703:9;28755:1109;-1:-1:-1;;;28755:1109:0:o;29631:109::-;29502:261;;;28964:833;28911:886;29825:31;;-1:-1:-1;;;29825:31:0;;;;;;;;;;;5382:191;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;;;;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5445:128;5382:191;:::o;45766:125::-;-1:-1:-1;;;;;45848:26:0;;;;;;:18;:26;;;;;:35;;45878:5;;45848:26;:35;;45878:5;;45848:35;:::i;:::-;;;;-1:-1:-1;;;;45766:125:0:o;42452:667::-;42636:72;;-1:-1:-1;;;42636:72:0;;42615:4;;-1:-1:-1;;;;;42636:36:0;;;;;:72;;2916:10;;42687:4;;42693:7;;42702:5;;42636:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42636:72:0;;;;;;;;-1:-1:-1;;42636:72:0;;;;;;;;;;;;:::i;:::-;;;42632:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42870:13:0;;42866:235;;42916:40;;-1:-1:-1;;;42916:40:0;;;;;;;;;;;42866:235;43059:6;43053:13;43044:6;43040:2;43036:15;43029:38;42632:480;-1:-1:-1;;;;;;42755:55:0;-1:-1:-1;;;42755:55:0;;-1:-1:-1;42632:480:0;42452:667;;;;;;:::o;46043:108::-;46103:13;46135:8;46128:15;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;34256:163;34379:32;34385:2;34389:8;34399:5;34406:4;34817:20;34840:13;-1:-1:-1;;;;;34868:16:0;;34864:48;;34893:19;;-1:-1:-1;;;34893:19:0;;;;;;;;;;;34864:48;34927:13;34923:44;;34949:18;;-1:-1:-1;;;34949:18:0;;;;;;;;;;;34923:44;-1:-1:-1;;;;;35318:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35377:49:0;;35318:44;;;;;;;;35377:49;;;;-1:-1:-1;;35318:44:0;;;;;;35377:49;;;;;;;;;;;;;;;;35443:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35493:66:0;;;;-1:-1:-1;;;35543:15:0;35493:66;;;;;;;;;;35443:25;35640:23;;;35684:4;:23;;;;-1:-1:-1;;;;;;35692:13:0;;7108:19;:23;;35692:15;35680:641;;;35728:314;35759:38;;35784:12;;-1:-1:-1;;;;;35759:38:0;;;35776:1;;35759:38;;35776:1;;35759:38;35825:69;35864:1;35868:2;35872:14;;;;;;35888:5;35825:30;:69::i;:::-;35820:174;;35930:40;;-1:-1:-1;;;35930:40:0;;;;;;;;;;;35820:174;36037:3;36021:12;:19;;35728:314;;36123:12;36106:13;;:29;36102:43;;36137:8;;;36102:43;35680:641;;;36186:120;36217:40;;36242:14;;;;;-1:-1:-1;;;;;36217:40:0;;;36234:1;;36217:40;;36234:1;;36217:40;36301:3;36285:12;:19;;36186:120;;35680:641;-1:-1:-1;36335:13:0;:28;36385:60;32983:369;-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:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5245:488::-;-1:-1:-1;;;;;5514:15:1;;;5496:34;;5566:15;;5561:2;5546:18;;5539:43;5613:2;5598:18;;5591:34;;;5661:3;5656:2;5641:18;;5634:31;;;5439:4;;5682:45;;5707:19;;5699:6;5682:45;:::i;:::-;5674:53;5245:488;-1:-1:-1;;;;;;5245:488:1:o;5930:219::-;6079:2;6068:9;6061:21;6042:4;6099:44;6139:2;6128:9;6124:18;6116:6;6099:44;:::i;7664:428::-;7866:2;7848:21;;;7905:2;7885:18;;;7878:30;;;7944:34;7924:18;;;7917:62;8015:34;8010:2;7995:18;;7988:62;8082:3;8067:19;;7664:428::o;8097:356::-;8299:2;8281:21;;;8318:18;;;8311:30;8377:34;8372:2;8357:18;;8350:62;8444:2;8429:18;;8097:356::o;10099:128::-;10139:3;10170:1;10166:6;10163:1;10160:13;10157:39;;;10176:18;;:::i;:::-;-1:-1:-1;10212:9:1;;10099:128::o;10232:120::-;10272:1;10298;10288:35;;10303:18;;:::i;:::-;-1:-1:-1;10337:9:1;;10232:120::o;10357:168::-;10397:7;10463:1;10459;10455:6;10451:14;10448:1;10445:21;10440:1;10433:9;10426:17;10422:45;10419:71;;;10470:18;;:::i;:::-;-1:-1:-1;10510:9:1;;10357:168::o;10530:125::-;10570:4;10598:1;10595;10592:8;10589:34;;;10603:18;;:::i;:::-;-1:-1:-1;10640:9:1;;10530:125::o;10660:258::-;10732:1;10742:113;10756:6;10753:1;10750:13;10742:113;;;10832:11;;;10826:18;10813:11;;;10806:39;10778:2;10771:10;10742:113;;;10873:6;10870:1;10867:13;10864:48;;;-1:-1:-1;;10908:1:1;10890:16;;10883:27;10660:258::o;10923:380::-;11002:1;10998:12;;;;11045;;;11066:61;;11120:4;11112:6;11108:17;11098:27;;11066:61;11173:2;11165:6;11162:14;11142:18;11139:38;11136:161;;;11219:10;11214:3;11210:20;11207:1;11200:31;11254:4;11251:1;11244:15;11282:4;11279:1;11272:15;11136:161;;10923:380;;;:::o;11308:135::-;11347:3;-1:-1:-1;;11368:17:1;;11365:43;;;11388:18;;:::i;:::-;-1:-1:-1;11435:1:1;11424:13;;11308:135::o;11448:112::-;11480:1;11506;11496:35;;11511:18;;:::i;:::-;-1:-1:-1;11545:9:1;;11448:112::o;11565:127::-;11626:10;11621:3;11617:20;11614:1;11607:31;11657:4;11654:1;11647:15;11681:4;11678:1;11671:15;11697:127;11758:10;11753:3;11749:20;11746:1;11739:31;11789:4;11786:1;11779:15;11813:4;11810:1;11803:15;11829:127;11890:10;11885:3;11881:20;11878:1;11871:31;11921:4;11918:1;11911:15;11945:4;11942:1;11935:15;11961:127;12022:10;12017:3;12013:20;12010:1;12003:31;12053:4;12050:1;12043:15;12077:4;12074:1;12067:15;12093:131;-1:-1:-1;;;;;;12167:32:1;;12157:43;;12147:71;;12214:1;12211;12204:12

Swarm Source

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