ETH Price: $2,457.94 (-4.63%)

Token

V4Apes (V4Apes)
 

Overview

Max Total Supply

3,227 V4Apes

Holders

310

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
129 V4Apes
0xc144647c80f49d8cf5a96872d86b9fa19943cfb8
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:
v4apes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @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/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


// 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: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.4;

//contract forked from 0xmfers



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

    uint256 public V4APRICE; //0.01 Ξ = 10000000000000000 Wei
    uint256 public V4AMAX_SUPPLY; //MAX SUPPLY IS 10000
    uint256 public FREE_MINT_CAP_PER_WALLET_ADDRESS; //2 Free Mints PER WALLET 
    uint256 public MAX_MINT_QUANTITY_PER_TX; //MAX 100 PER WALLET
    uint256 public FREE_MINT_IS_ALLOWED_UNTIL; // FREE MINT UNTIL X AMOUNT HAVE BEEN CLAIMED
    bool public IS_SALE_UP_AND_RUNNING; //ALL THINGS ARE A GO
    bool public IS_METADATA_FROZEN; //FREEZE METADATA AFTER MINTED HAS BEEN REVEALED 
    string private BASE_URI; //METADATA
    string public baseExtension = ".json";

    mapping(address => uint256) private freeMintCountMap;

    constructor(uint256 price, uint256 maxSupply, string memory baseUri, uint256 freeMintAllowance, uint256 maxMintPerTx, bool isSaleActive, uint256 freeMintIsAllowedUntil) ERC721A("V4Apes", "V4Apes") {
        V4APRICE = price;
        V4AMAX_SUPPLY = maxSupply;
        BASE_URI = baseUri;
        FREE_MINT_CAP_PER_WALLET_ADDRESS = freeMintAllowance;
        MAX_MINT_QUANTITY_PER_TX = maxMintPerTx;
        IS_SALE_UP_AND_RUNNING = isSaleActive;
        FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil;
    }

    /** GETTERS **/

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

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

    /** SETTERS  **/

    function setPrice(uint256 customPrice) external onlyOwner {
        V4APRICE = customPrice;
    }

    function lowerMaxSupply(uint256 newMaxSupply) external onlyOwner {
        require(newMaxSupply < V4AMAX_SUPPLY, "Invalid new max supply");
        require(newMaxSupply >= _currentIndex, "Invalid new max supply");
        V4AMAX_SUPPLY = newMaxSupply;
    }

    function setBaseURI(string memory customBaseURI_) external onlyOwner {
        require(!IS_METADATA_FROZEN, "Metadata is already frozen!");
        BASE_URI = customBaseURI_;
    }

    function setFreeMintAllowance(uint256 freeMintAllowance) external onlyOwner {
        FREE_MINT_CAP_PER_WALLET_ADDRESS = freeMintAllowance;
    }

    function setMaxMintPerTx(uint256 maxMintPerTx) external onlyOwner {
        MAX_MINT_QUANTITY_PER_TX = maxMintPerTx;
    }

    function setSaleActive(bool saleIsActive) external onlyOwner {
        IS_SALE_UP_AND_RUNNING = saleIsActive;
    }

    function setFreeMintAllowedUntil(uint256 freeMintIsAllowedUntil) external onlyOwner {
        FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil;
    }

    function freezeMetadata() external onlyOwner {
        IS_METADATA_FROZEN = true;
    }

    /** FREE MINT FOR THE LUCKY APES**/

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

    /** MINT APES **/

    modifier mintCompliance(uint256 _mintAmount) {
        require(_mintAmount > 0 && _mintAmount <= MAX_MINT_QUANTITY_PER_TX, "Invalid mint amount!");
        require(_currentIndex + _mintAmount <= V4AMAX_SUPPLY, "Max supply exceeded!");
        _;
    }

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

        uint256 price = V4APRICE * _mintAmount;

        if (_currentIndex < FREE_MINT_IS_ALLOWED_UNTIL) {
            uint256 remainingFreeMint = FREE_MINT_CAP_PER_WALLET_ADDRESS - freeMintCountMap[msg.sender];
            if (remainingFreeMint > 0) {
                if (_mintAmount >= remainingFreeMint) {
                    price -= remainingFreeMint * V4APRICE;
                    updateFreeMintCount(msg.sender, remainingFreeMint);
                } else {
                    price -= _mintAmount * V4APRICE;
                    updateFreeMintCount(msg.sender, _mintAmount);
                }
            }
        }

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

        _safeMint(msg.sender, _mintAmount);
    }

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

    /** WITHDRAW **/
    
    //DAO WALLET
    address private constant payoutAddress1 = 0xc144647c80F49d8CF5a96872D86B9fA19943cFB8;
    

    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;

        Address.sendValue(payable(payoutAddress1), balance / 2);
        
    }
}

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":"freeMintAllowance","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"},{"internalType":"bool","name":"isSaleActive","type":"bool"},{"internalType":"uint256","name":"freeMintIsAllowedUntil","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"},{"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_CAP_PER_WALLET_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_IS_ALLOWED_UNTIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_METADATA_FROZEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_UP_AND_RUNNING","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_QUANTITY_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"V4AMAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"V4APRICE","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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"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":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"}],"name":"setFreeMintAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"name":"setFreeMintAllowedUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"customPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleActive","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"}]

60c06040526005608081905264173539b7b760d91b60a090815262000028916011919062000172565b503480156200003657600080fd5b50604051620025163803806200251683398101604081905262000059916200022e565b60408051808201825260068082526556344170657360d01b6020808401828152855180870190965292855284015281519192916200009a9160029162000172565b508051620000b090600390602084019062000172565b505050620000cd620000c76200011c60201b60201c565b62000120565b6001600955600a879055600b8690558451620000f190601090602088019062000172565b50600c93909355600d91909155600f805460ff1916911515919091179055600e5550620003a4915050565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001809062000351565b90600052602060002090601f016020900481019282620001a45760008555620001ef565b82601f10620001bf57805160ff1916838001178555620001ef565b82800160010185558215620001ef579182015b82811115620001ef578251825591602001919060010190620001d2565b50620001fd92915062000201565b5090565b5b80821115620001fd576000815560010162000202565b805180151581146200022957600080fd5b919050565b600080600080600080600060e0888a0312156200024a57600080fd5b87516020808a015160408b01519299509750906001600160401b03808211156200027357600080fd5b818b0191508b601f8301126200028857600080fd5b8151818111156200029d576200029d6200038e565b604051601f8201601f19908116603f01168101908382118183101715620002c857620002c86200038e565b816040528281528e86848701011115620002e157600080fd5b600093505b82841015620003055784840186015181850187015292850192620002e6565b82841115620003175760008684830101525b809a5050505050505060608801519350608088015192506200033c60a0890162000218565b915060c0880151905092959891949750929550565b600181811c908216806200036657607f821691505b602082108114156200038857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61216280620003b46000396000f3fe60806040526004361061020f5760003560e01c8063841718a611610118578063b0551ac4116100a0578063c87b56dd1161006f578063c87b56dd146105be578063d111515d146105de578063e985e9c5146105f3578063f2fde38b1461063c578063f76854851461065c57600080fd5b8063b0551ac414610549578063b88d4fde14610569578063c4e9374d14610589578063c6682862146105a957600080fd5b806395d89b41116100e757806395d89b41146104d55780639b4a0744146104ea5780639df7159914610500578063a0712d6814610516578063a22cb4651461052957600080fd5b8063841718a6146104575780638b85e43d146104775780638da5cb5b1461049757806391b7f5ed146104b557600080fd5b8063408cbf941161019b578063616cdb1e1161016a578063616cdb1e146103c35780636352211e146103e35780636fbdae511461040357806370a0823114610422578063715018a61461044257600080fd5b8063408cbf941461034d57806342842e0e1461036d57806355f804b31461038d5780635e4d6376146103ad57600080fd5b806318160ddd116101e257806318160ddd146102c55780631b0bd89b146102e857806323b872dd146103025780633ccfd60b146103225780634065b85f1461033757600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611d7f565b610672565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106c4565b6040516102409190611f48565b34801561027757600080fd5b5061028b610286366004611e02565b610756565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611d3a565b61079a565b005b3480156102d157600080fd5b50600154600054035b604051908152602001610240565b3480156102f457600080fd5b50600f546102349060ff1681565b34801561030e57600080fd5b506102c361031d366004611c58565b610828565b34801561032e57600080fd5b506102c3610833565b34801561034357600080fd5b506102da600e5481565b34801561035957600080fd5b506102c3610368366004611d3a565b6108f3565b34801561037957600080fd5b506102c3610388366004611c58565b6109d3565b34801561039957600080fd5b506102c36103a8366004611db9565b6109ee565b3480156103b957600080fd5b506102da600c5481565b3480156103cf57600080fd5b506102c36103de366004611e02565b610a87565b3480156103ef57600080fd5b5061028b6103fe366004611e02565b610ab6565b34801561040f57600080fd5b50600f5461023490610100900460ff1681565b34801561042e57600080fd5b506102da61043d366004611c0a565b610ac8565b34801561044e57600080fd5b506102c3610b17565b34801561046357600080fd5b506102c3610472366004611d64565b610b4d565b34801561048357600080fd5b506102c3610492366004611e02565b610b8a565b3480156104a357600080fd5b506008546001600160a01b031661028b565b3480156104c157600080fd5b506102c36104d0366004611e02565b610bb9565b3480156104e157600080fd5b5061025e610be8565b3480156104f657600080fd5b506102da600d5481565b34801561050c57600080fd5b506102da600a5481565b6102c3610524366004611e02565b610bf7565b34801561053557600080fd5b506102c3610544366004611d10565b610dd2565b34801561055557600080fd5b506102c3610564366004611e02565b610e68565b34801561057557600080fd5b506102c3610584366004611c94565b610e97565b34801561059557600080fd5b506102c36105a4366004611e02565b610ed1565b3480156105b557600080fd5b5061025e610f95565b3480156105ca57600080fd5b5061025e6105d9366004611e02565b611023565b3480156105ea57600080fd5b506102c36110fb565b3480156105ff57600080fd5b5061023461060e366004611c25565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561064857600080fd5b506102c3610657366004611c0a565b611136565b34801561066857600080fd5b506102da600b5481565b60006001600160e01b031982166380ac58cd60e01b14806106a357506001600160e01b03198216635b5e139f60e01b145b806106be57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106d39061201e565b80601f01602080910402602001604051908101604052809291908181526020018280546106ff9061201e565b801561074c5780601f106107215761010080835404028352916020019161074c565b820191906000526020600020905b81548152906001019060200180831161072f57829003601f168201915b5050505050905090565b6000610761826111d1565b61077e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107a582610ab6565b9050806001600160a01b0316836001600160a01b031614156107da5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107fa57506107f8813361060e565b155b15610818576040516367d9dca160e11b815260040160405180910390fd5b6108238383836111fc565b505050565b610823838383611258565b6008546001600160a01b031633146108665760405162461bcd60e51b815260040161085d90611f5b565b60405180910390fd5b600260095414156108b95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161085d565b6002600981905547906108eb9073c144647c80f49d8cf5a96872d86b9fa19943cfb8906108e69084611fa8565b61146e565b506001600955565b806000811180156109065750600d548111155b6109495760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161085d565b600b548160005461095a9190611f90565b111561099f5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161085d565b6008546001600160a01b031633146109c95760405162461bcd60e51b815260040161085d90611f5b565b6108238383611587565b61082383838360405180602001604052806000815250610e97565b6008546001600160a01b03163314610a185760405162461bcd60e51b815260040161085d90611f5b565b600f54610100900460ff1615610a705760405162461bcd60e51b815260206004820152601b60248201527f4d6574616461746120697320616c72656164792066726f7a656e210000000000604482015260640161085d565b8051610a83906010906020840190611acf565b5050565b6008546001600160a01b03163314610ab15760405162461bcd60e51b815260040161085d90611f5b565b600d55565b6000610ac1826115a1565b5192915050565b60006001600160a01b038216610af1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b415760405162461bcd60e51b815260040161085d90611f5b565b610b4b60006116bc565b565b6008546001600160a01b03163314610b775760405162461bcd60e51b815260040161085d90611f5b565b600f805460ff1916911515919091179055565b6008546001600160a01b03163314610bb45760405162461bcd60e51b815260040161085d90611f5b565b600e55565b6008546001600160a01b03163314610be35760405162461bcd60e51b815260040161085d90611f5b565b600a55565b6060600380546106d39061201e565b80600081118015610c0a5750600d548111155b610c4d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161085d565b600b5481600054610c5e9190611f90565b1115610ca35760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161085d565b600f5460ff16610ceb5760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b604482015260640161085d565b600082600a54610cfb9190611fbc565b9050600e546000541015610d825733600090815260126020526040812054600c54610d269190611fdb565b90508015610d8057808410610d5d57600a54610d429082611fbc565b610d4c9083611fdb565b9150610d58338261170e565b610d80565b600a54610d6a9085611fbc565b610d749083611fdb565b9150610d80338561170e565b505b80341015610dc85760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161085d565b6108233384611587565b6001600160a01b038216331415610dfc5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610e925760405162461bcd60e51b815260040161085d90611f5b565b600c55565b610ea2848484611258565b610eae8484848461173f565b610ecb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610efb5760405162461bcd60e51b815260040161085d90611f5b565b600b548110610f455760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b604482015260640161085d565b600054811015610f905760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b604482015260640161085d565b600b55565b60118054610fa29061201e565b80601f0160208091040260200160405190810160405280929190818152602001828054610fce9061201e565b801561101b5780601f10610ff05761010080835404028352916020019161101b565b820191906000526020600020905b815481529060010190602001808311610ffe57829003601f168201915b505050505081565b606061102e826111d1565b6110935760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b606482015260840161085d565b600061109d61184e565b905060008151116110c6576040518060600160405280603681526020016120f7603691396110f4565b806110d08461185d565b60116040516020016110e493929190611e47565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111255760405162461bcd60e51b815260040161085d90611f5b565b600f805461ff001916610100179055565b6008546001600160a01b031633146111605760405162461bcd60e51b815260040161085d90611f5b565b6001600160a01b0381166111c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085d565b6111ce816116bc565b50565b60008054821080156106be575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611263826115a1565b80519091506000906001600160a01b0316336001600160a01b0316148061129157508151611291903361060e565b806112ac5750336112a184610756565b6001600160a01b0316145b9050806112cc57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146113015760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661132857604051633a954ecd60e21b815260040160405180910390fd5b61133860008484600001516111fc565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661142457600054811015611424578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156114be5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161085d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461150b576040519150601f19603f3d011682016040523d82523d6000602084013e611510565b606091505b50509050806108235760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161085d565b610a8382826040518060200160405280600081525061195b565b60408051606081018252600080825260208201819052918101829052905482908110156116a357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906116a15780516001600160a01b031615611637579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561169c579392505050565b611637565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526012602052604081208054839290611736908490611f90565b90915550505050565b60006001600160a01b0384163b1561184257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611783903390899088908890600401611f0b565b602060405180830381600087803b15801561179d57600080fd5b505af19250505080156117cd575060408051601f3d908101601f191682019092526117ca91810190611d9c565b60015b611828573d8080156117fb576040519150601f19603f3d011682016040523d82523d6000602084013e611800565b606091505b508051611820576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611846565b5060015b949350505050565b6060601080546106d39061201e565b6060816118815750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118ab578061189581612059565b91506118a49050600a83611fa8565b9150611885565b60008167ffffffffffffffff8111156118c6576118c66120ca565b6040519080825280601f01601f1916602001820160405280156118f0576020820181803683370190505b5090505b841561184657611905600183611fdb565b9150611912600a86612074565b61191d906030611f90565b60f81b818381518110611932576119326120b4565b60200101906001600160f81b031916908160001a905350611954600a86611fa8565b94506118f4565b61082383838360016000546001600160a01b03851661198c57604051622e076360e81b815260040160405180910390fd5b836119aa5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611ac65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611a9c5750611a9a600088848861173f565b155b15611aba576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611a45565b50600055611467565b828054611adb9061201e565b90600052602060002090601f016020900481019282611afd5760008555611b43565b82601f10611b1657805160ff1916838001178555611b43565b82800160010185558215611b43579182015b82811115611b43578251825591602001919060010190611b28565b50611b4f929150611b53565b5090565b5b80821115611b4f5760008155600101611b54565b600067ffffffffffffffff80841115611b8357611b836120ca565b604051601f8501601f19908116603f01168101908282118183101715611bab57611bab6120ca565b81604052809350858152868686011115611bc457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611bf557600080fd5b919050565b80358015158114611bf557600080fd5b600060208284031215611c1c57600080fd5b6110f482611bde565b60008060408385031215611c3857600080fd5b611c4183611bde565b9150611c4f60208401611bde565b90509250929050565b600080600060608486031215611c6d57600080fd5b611c7684611bde565b9250611c8460208501611bde565b9150604084013590509250925092565b60008060008060808587031215611caa57600080fd5b611cb385611bde565b9350611cc160208601611bde565b925060408501359150606085013567ffffffffffffffff811115611ce457600080fd5b8501601f81018713611cf557600080fd5b611d0487823560208401611b68565b91505092959194509250565b60008060408385031215611d2357600080fd5b611d2c83611bde565b9150611c4f60208401611bfa565b60008060408385031215611d4d57600080fd5b611d5683611bde565b946020939093013593505050565b600060208284031215611d7657600080fd5b6110f482611bfa565b600060208284031215611d9157600080fd5b81356110f4816120e0565b600060208284031215611dae57600080fd5b81516110f4816120e0565b600060208284031215611dcb57600080fd5b813567ffffffffffffffff811115611de257600080fd5b8201601f81018413611df357600080fd5b61184684823560208401611b68565b600060208284031215611e1457600080fd5b5035919050565b60008151808452611e33816020860160208601611ff2565b601f01601f19169290920160200192915050565b600084516020611e5a8285838a01611ff2565b855191840191611e6d8184848a01611ff2565b8554920191600090600181811c9080831680611e8a57607f831692505b858310811415611ea857634e487b7160e01b85526022600452602485fd5b808015611ebc5760018114611ecd57611efa565b60ff19851688528388019550611efa565b60008b81526020902060005b85811015611ef25781548a820152908401908801611ed9565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f3e90830184611e1b565b9695505050505050565b6020815260006110f46020830184611e1b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611fa357611fa3612088565b500190565b600082611fb757611fb761209e565b500490565b6000816000190483118215151615611fd657611fd6612088565b500290565b600082821015611fed57611fed612088565b500390565b60005b8381101561200d578181015183820152602001611ff5565b83811115610ecb5750506000910152565b600181811c9082168061203257607f821691505b6020821081141561205357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561206d5761206d612088565b5060010190565b6000826120835761208361209e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111ce57600080fdfe697066733a2f2f516d62714378597a344169394a315a743141647a765941674d534a524571385551574e7332575173354e664858312fa2646970667358221220db9cb5213efc16a4a8a8edcb7549a8edbb5d5f53eec2e3107fb0d132598ecc9f64736f6c63430008070033000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000271100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d62714378597a344169394a315a743141647a765941674d534a524571385551574e7332575173354e664858312f00000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063841718a611610118578063b0551ac4116100a0578063c87b56dd1161006f578063c87b56dd146105be578063d111515d146105de578063e985e9c5146105f3578063f2fde38b1461063c578063f76854851461065c57600080fd5b8063b0551ac414610549578063b88d4fde14610569578063c4e9374d14610589578063c6682862146105a957600080fd5b806395d89b41116100e757806395d89b41146104d55780639b4a0744146104ea5780639df7159914610500578063a0712d6814610516578063a22cb4651461052957600080fd5b8063841718a6146104575780638b85e43d146104775780638da5cb5b1461049757806391b7f5ed146104b557600080fd5b8063408cbf941161019b578063616cdb1e1161016a578063616cdb1e146103c35780636352211e146103e35780636fbdae511461040357806370a0823114610422578063715018a61461044257600080fd5b8063408cbf941461034d57806342842e0e1461036d57806355f804b31461038d5780635e4d6376146103ad57600080fd5b806318160ddd116101e257806318160ddd146102c55780631b0bd89b146102e857806323b872dd146103025780633ccfd60b146103225780634065b85f1461033757600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611d7f565b610672565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106c4565b6040516102409190611f48565b34801561027757600080fd5b5061028b610286366004611e02565b610756565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611d3a565b61079a565b005b3480156102d157600080fd5b50600154600054035b604051908152602001610240565b3480156102f457600080fd5b50600f546102349060ff1681565b34801561030e57600080fd5b506102c361031d366004611c58565b610828565b34801561032e57600080fd5b506102c3610833565b34801561034357600080fd5b506102da600e5481565b34801561035957600080fd5b506102c3610368366004611d3a565b6108f3565b34801561037957600080fd5b506102c3610388366004611c58565b6109d3565b34801561039957600080fd5b506102c36103a8366004611db9565b6109ee565b3480156103b957600080fd5b506102da600c5481565b3480156103cf57600080fd5b506102c36103de366004611e02565b610a87565b3480156103ef57600080fd5b5061028b6103fe366004611e02565b610ab6565b34801561040f57600080fd5b50600f5461023490610100900460ff1681565b34801561042e57600080fd5b506102da61043d366004611c0a565b610ac8565b34801561044e57600080fd5b506102c3610b17565b34801561046357600080fd5b506102c3610472366004611d64565b610b4d565b34801561048357600080fd5b506102c3610492366004611e02565b610b8a565b3480156104a357600080fd5b506008546001600160a01b031661028b565b3480156104c157600080fd5b506102c36104d0366004611e02565b610bb9565b3480156104e157600080fd5b5061025e610be8565b3480156104f657600080fd5b506102da600d5481565b34801561050c57600080fd5b506102da600a5481565b6102c3610524366004611e02565b610bf7565b34801561053557600080fd5b506102c3610544366004611d10565b610dd2565b34801561055557600080fd5b506102c3610564366004611e02565b610e68565b34801561057557600080fd5b506102c3610584366004611c94565b610e97565b34801561059557600080fd5b506102c36105a4366004611e02565b610ed1565b3480156105b557600080fd5b5061025e610f95565b3480156105ca57600080fd5b5061025e6105d9366004611e02565b611023565b3480156105ea57600080fd5b506102c36110fb565b3480156105ff57600080fd5b5061023461060e366004611c25565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561064857600080fd5b506102c3610657366004611c0a565b611136565b34801561066857600080fd5b506102da600b5481565b60006001600160e01b031982166380ac58cd60e01b14806106a357506001600160e01b03198216635b5e139f60e01b145b806106be57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106d39061201e565b80601f01602080910402602001604051908101604052809291908181526020018280546106ff9061201e565b801561074c5780601f106107215761010080835404028352916020019161074c565b820191906000526020600020905b81548152906001019060200180831161072f57829003601f168201915b5050505050905090565b6000610761826111d1565b61077e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107a582610ab6565b9050806001600160a01b0316836001600160a01b031614156107da5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107fa57506107f8813361060e565b155b15610818576040516367d9dca160e11b815260040160405180910390fd5b6108238383836111fc565b505050565b610823838383611258565b6008546001600160a01b031633146108665760405162461bcd60e51b815260040161085d90611f5b565b60405180910390fd5b600260095414156108b95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161085d565b6002600981905547906108eb9073c144647c80f49d8cf5a96872d86b9fa19943cfb8906108e69084611fa8565b61146e565b506001600955565b806000811180156109065750600d548111155b6109495760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161085d565b600b548160005461095a9190611f90565b111561099f5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161085d565b6008546001600160a01b031633146109c95760405162461bcd60e51b815260040161085d90611f5b565b6108238383611587565b61082383838360405180602001604052806000815250610e97565b6008546001600160a01b03163314610a185760405162461bcd60e51b815260040161085d90611f5b565b600f54610100900460ff1615610a705760405162461bcd60e51b815260206004820152601b60248201527f4d6574616461746120697320616c72656164792066726f7a656e210000000000604482015260640161085d565b8051610a83906010906020840190611acf565b5050565b6008546001600160a01b03163314610ab15760405162461bcd60e51b815260040161085d90611f5b565b600d55565b6000610ac1826115a1565b5192915050565b60006001600160a01b038216610af1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b415760405162461bcd60e51b815260040161085d90611f5b565b610b4b60006116bc565b565b6008546001600160a01b03163314610b775760405162461bcd60e51b815260040161085d90611f5b565b600f805460ff1916911515919091179055565b6008546001600160a01b03163314610bb45760405162461bcd60e51b815260040161085d90611f5b565b600e55565b6008546001600160a01b03163314610be35760405162461bcd60e51b815260040161085d90611f5b565b600a55565b6060600380546106d39061201e565b80600081118015610c0a5750600d548111155b610c4d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161085d565b600b5481600054610c5e9190611f90565b1115610ca35760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161085d565b600f5460ff16610ceb5760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b604482015260640161085d565b600082600a54610cfb9190611fbc565b9050600e546000541015610d825733600090815260126020526040812054600c54610d269190611fdb565b90508015610d8057808410610d5d57600a54610d429082611fbc565b610d4c9083611fdb565b9150610d58338261170e565b610d80565b600a54610d6a9085611fbc565b610d749083611fdb565b9150610d80338561170e565b505b80341015610dc85760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161085d565b6108233384611587565b6001600160a01b038216331415610dfc5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610e925760405162461bcd60e51b815260040161085d90611f5b565b600c55565b610ea2848484611258565b610eae8484848461173f565b610ecb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610efb5760405162461bcd60e51b815260040161085d90611f5b565b600b548110610f455760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b604482015260640161085d565b600054811015610f905760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b604482015260640161085d565b600b55565b60118054610fa29061201e565b80601f0160208091040260200160405190810160405280929190818152602001828054610fce9061201e565b801561101b5780601f10610ff05761010080835404028352916020019161101b565b820191906000526020600020905b815481529060010190602001808311610ffe57829003601f168201915b505050505081565b606061102e826111d1565b6110935760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b606482015260840161085d565b600061109d61184e565b905060008151116110c6576040518060600160405280603681526020016120f7603691396110f4565b806110d08461185d565b60116040516020016110e493929190611e47565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111255760405162461bcd60e51b815260040161085d90611f5b565b600f805461ff001916610100179055565b6008546001600160a01b031633146111605760405162461bcd60e51b815260040161085d90611f5b565b6001600160a01b0381166111c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085d565b6111ce816116bc565b50565b60008054821080156106be575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611263826115a1565b80519091506000906001600160a01b0316336001600160a01b0316148061129157508151611291903361060e565b806112ac5750336112a184610756565b6001600160a01b0316145b9050806112cc57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146113015760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661132857604051633a954ecd60e21b815260040160405180910390fd5b61133860008484600001516111fc565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661142457600054811015611424578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156114be5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161085d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461150b576040519150601f19603f3d011682016040523d82523d6000602084013e611510565b606091505b50509050806108235760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161085d565b610a8382826040518060200160405280600081525061195b565b60408051606081018252600080825260208201819052918101829052905482908110156116a357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906116a15780516001600160a01b031615611637579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561169c579392505050565b611637565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526012602052604081208054839290611736908490611f90565b90915550505050565b60006001600160a01b0384163b1561184257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611783903390899088908890600401611f0b565b602060405180830381600087803b15801561179d57600080fd5b505af19250505080156117cd575060408051601f3d908101601f191682019092526117ca91810190611d9c565b60015b611828573d8080156117fb576040519150601f19603f3d011682016040523d82523d6000602084013e611800565b606091505b508051611820576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611846565b5060015b949350505050565b6060601080546106d39061201e565b6060816118815750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118ab578061189581612059565b91506118a49050600a83611fa8565b9150611885565b60008167ffffffffffffffff8111156118c6576118c66120ca565b6040519080825280601f01601f1916602001820160405280156118f0576020820181803683370190505b5090505b841561184657611905600183611fdb565b9150611912600a86612074565b61191d906030611f90565b60f81b818381518110611932576119326120b4565b60200101906001600160f81b031916908160001a905350611954600a86611fa8565b94506118f4565b61082383838360016000546001600160a01b03851661198c57604051622e076360e81b815260040160405180910390fd5b836119aa5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611ac65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611a9c5750611a9a600088848861173f565b155b15611aba576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611a45565b50600055611467565b828054611adb9061201e565b90600052602060002090601f016020900481019282611afd5760008555611b43565b82601f10611b1657805160ff1916838001178555611b43565b82800160010185558215611b43579182015b82811115611b43578251825591602001919060010190611b28565b50611b4f929150611b53565b5090565b5b80821115611b4f5760008155600101611b54565b600067ffffffffffffffff80841115611b8357611b836120ca565b604051601f8501601f19908116603f01168101908282118183101715611bab57611bab6120ca565b81604052809350858152868686011115611bc457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611bf557600080fd5b919050565b80358015158114611bf557600080fd5b600060208284031215611c1c57600080fd5b6110f482611bde565b60008060408385031215611c3857600080fd5b611c4183611bde565b9150611c4f60208401611bde565b90509250929050565b600080600060608486031215611c6d57600080fd5b611c7684611bde565b9250611c8460208501611bde565b9150604084013590509250925092565b60008060008060808587031215611caa57600080fd5b611cb385611bde565b9350611cc160208601611bde565b925060408501359150606085013567ffffffffffffffff811115611ce457600080fd5b8501601f81018713611cf557600080fd5b611d0487823560208401611b68565b91505092959194509250565b60008060408385031215611d2357600080fd5b611d2c83611bde565b9150611c4f60208401611bfa565b60008060408385031215611d4d57600080fd5b611d5683611bde565b946020939093013593505050565b600060208284031215611d7657600080fd5b6110f482611bfa565b600060208284031215611d9157600080fd5b81356110f4816120e0565b600060208284031215611dae57600080fd5b81516110f4816120e0565b600060208284031215611dcb57600080fd5b813567ffffffffffffffff811115611de257600080fd5b8201601f81018413611df357600080fd5b61184684823560208401611b68565b600060208284031215611e1457600080fd5b5035919050565b60008151808452611e33816020860160208601611ff2565b601f01601f19169290920160200192915050565b600084516020611e5a8285838a01611ff2565b855191840191611e6d8184848a01611ff2565b8554920191600090600181811c9080831680611e8a57607f831692505b858310811415611ea857634e487b7160e01b85526022600452602485fd5b808015611ebc5760018114611ecd57611efa565b60ff19851688528388019550611efa565b60008b81526020902060005b85811015611ef25781548a820152908401908801611ed9565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f3e90830184611e1b565b9695505050505050565b6020815260006110f46020830184611e1b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611fa357611fa3612088565b500190565b600082611fb757611fb761209e565b500490565b6000816000190483118215151615611fd657611fd6612088565b500290565b600082821015611fed57611fed612088565b500390565b60005b8381101561200d578181015183820152602001611ff5565b83811115610ecb5750506000910152565b600181811c9082168061203257607f821691505b6020821081141561205357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561206d5761206d612088565b5060010190565b6000826120835761208361209e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111ce57600080fdfe697066733a2f2f516d62714378597a344169394a315a743141647a765941674d534a524571385551574e7332575173354e664858312fa2646970667358221220db9cb5213efc16a4a8a8edcb7549a8edbb5d5f53eec2e3107fb0d132598ecc9f64736f6c63430008070033

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

000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000271100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d62714378597a344169394a315a743141647a765941674d534a524571385551574e7332575173354e664858312f00000000000000000000

-----Decoded View---------------
Arg [0] : price (uint256): 10000000000000000
Arg [1] : maxSupply (uint256): 10001
Arg [2] : baseUri (string): ipfs://QmbqCxYz4Ai9J1Zt1AdzvYAgMSJREq8UQWNs2WQs5NfHX1/
Arg [3] : freeMintAllowance (uint256): 40
Arg [4] : maxMintPerTx (uint256): 20
Arg [5] : isSaleActive (bool): True
Arg [6] : freeMintIsAllowedUntil (uint256): 1000

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002711
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d62714378597a344169394a315a743141647a765941674d
Arg [9] : 534a524571385551574e7332575173354e664858312f00000000000000000000


Deployed Bytecode Sourcemap

47654:4986:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30352:305;;;;;;;;;;-1:-1:-1;30352:305:0;;;;;:::i;:::-;;:::i;:::-;;;7170:14:1;;7163:22;7145:41;;7133:2;7118:18;30352:305:0;;;;;;;;33712:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35215:204::-;;;;;;;;;;-1:-1:-1;35215:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6468:32:1;;;6450:51;;6438:2;6423:18;35215:204:0;6304:203:1;34778:371:0;;;;;;;;;;-1:-1:-1;34778:371:0;;;;;:::i;:::-;;:::i;:::-;;30009:271;;;;;;;;;;-1:-1:-1;30245:12:0;;30053:7;30229:13;:28;30009:271;;;11998:25:1;;;11986:2;11971:18;30009:271:0;11852:177:1;48111:34:0;;;;;;;;;;-1:-1:-1;48111:34:0;;;;;;;;36072:170;;;;;;;;;;-1:-1:-1;36072:170:0;;;;;:::i;:::-;;:::i;52451:186::-;;;;;;;;;;;;;:::i;48017:41::-;;;;;;;;;;;;;;;;52154:144;;;;;;;;;;-1:-1:-1;52154:144:0;;;;;:::i;:::-;;:::i;36313:185::-;;;;;;;;;;-1:-1:-1;36313:185:0;;;;;:::i;:::-;;:::i;49922:183::-;;;;;;;;;;-1:-1:-1;49922:183:0;;;;;:::i;:::-;;:::i;47869:47::-;;;;;;;;;;;;;;;;50268:124;;;;;;;;;;-1:-1:-1;50268:124:0;;;;;:::i;:::-;;:::i;33521:::-;;;;;;;;;;-1:-1:-1;33521:124:0;;;;;:::i;:::-;;:::i;48174:30::-;;;;;;;;;;-1:-1:-1;48174:30:0;;;;;;;;;;;30721:206;;;;;;;;;;-1:-1:-1;30721:206:0;;;;;:::i;:::-;;:::i;7593:103::-;;;;;;;;;;;;;:::i;50400:117::-;;;;;;;;;;-1:-1:-1;50400:117:0;;;;;:::i;:::-;;:::i;50525:154::-;;;;;;;;;;-1:-1:-1;50525:154:0;;;;;:::i;:::-;;:::i;6942:87::-;;;;;;;;;;-1:-1:-1;7015:6:0;;-1:-1:-1;;;;;7015:6:0;6942:87;;49546:99;;;;;;;;;;-1:-1:-1;49546:99:0;;;;;:::i;:::-;;:::i;33881:104::-;;;;;;;;;;;;;:::i;47950:39::-;;;;;;;;;;;;;;;;47748:23;;;;;;;;;;;;;;;;51243:903;;;;;;:::i;:::-;;:::i;35491:279::-;;;;;;;;;;-1:-1:-1;35491:279:0;;;;;:::i;:::-;;:::i;50113:147::-;;;;;;;;;;-1:-1:-1;50113:147:0;;;;;:::i;:::-;;:::i;36569:342::-;;;;;;;;;;-1:-1:-1;36569:342:0;;;;;:::i;:::-;;:::i;49653:261::-;;;;;;;;;;-1:-1:-1;49653:261:0;;;;;:::i;:::-;;:::i;48302:37::-;;;;;;;;;;;;;:::i;49077:437::-;;;;;;;;;;-1:-1:-1;49077:437:0;;;;;:::i;:::-;;:::i;50687:89::-;;;;;;;;;;;;;:::i;35841:164::-;;;;;;;;;;-1:-1:-1;35841:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35962:25:0;;;35938:4;35962:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35841:164;7851:201;;;;;;;;;;-1:-1:-1;7851:201:0;;;;;:::i;:::-;;:::i;47812:28::-;;;;;;;;;;;;;;;;30352:305;30454:4;-1:-1:-1;;;;;;30491:40:0;;-1:-1:-1;;;30491:40:0;;:105;;-1:-1:-1;;;;;;;30548:48:0;;-1:-1:-1;;;30548:48:0;30491:105;:158;;;-1:-1:-1;;;;;;;;;;19835:40:0;;;30613:36;30471:178;30352:305;-1:-1:-1;;30352:305:0:o;33712:100::-;33766:13;33799:5;33792:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33712:100;:::o;35215:204::-;35283:7;35308:16;35316:7;35308;:16::i;:::-;35303:64;;35333:34;;-1:-1:-1;;;35333:34:0;;;;;;;;;;;35303:64;-1:-1:-1;35387:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35387:24:0;;35215:204::o;34778:371::-;34851:13;34867:24;34883:7;34867:15;:24::i;:::-;34851:40;;34912:5;-1:-1:-1;;;;;34906:11:0;:2;-1:-1:-1;;;;;34906:11:0;;34902:48;;;34926:24;;-1:-1:-1;;;34926:24:0;;;;;;;;;;;34902:48;5746:10;-1:-1:-1;;;;;34967:21:0;;;;;;:63;;-1:-1:-1;34993:37:0;35010:5;5746:10;35841:164;:::i;34993:37::-;34992:38;34967:63;34963:138;;;35054:35;;-1:-1:-1;;;35054:35:0;;;;;;;;;;;34963:138;35113:28;35122:2;35126:7;35135:5;35113:8;:28::i;:::-;34840:309;34778:371;;:::o;36072:170::-;36206:28;36216:4;36222:2;36226:7;36206:9;:28::i;52451:186::-;7015:6;;-1:-1:-1;;;;;7015:6:0;5746:10;7162:23;7154:68;;;;-1:-1:-1;;;7154:68:0;;;;;;;:::i;:::-;;;;;;;;;1916:1:::1;2514:7;;:19;;2506:63;;;::::0;-1:-1:-1;;;2506:63:0;;11346:2:1;2506:63:0::1;::::0;::::1;11328:21:1::0;11385:2;11365:18;;;11358:30;11424:33;11404:18;;;11397:61;11475:18;;2506:63:0::1;11144:355:1::0;2506:63:0::1;1916:1;2647:7;:18:::0;;;52530:21:::2;::::0;52564:55:::2;::::0;52394:42:::2;::::0;52607:11:::2;::::0;52530:21;52607:11:::2;:::i;:::-;52564:17;:55::i;:::-;-1:-1:-1::0;1872:1:0::1;2826:7;:22:::0;52451:186::o;52154:144::-;52229:11;51058:1;51044:11;:15;:58;;;;;51078:24;;51063:11;:39;;51044:58;51036:91;;;;-1:-1:-1;;;51036:91:0;;8447:2:1;51036:91:0;;;8429:21:1;8486:2;8466:18;;;8459:30;-1:-1:-1;;;8505:18:1;;;8498:50;8565:18;;51036:91:0;8245:344:1;51036:91:0;51177:13;;51162:11;51146:13;;:27;;;;:::i;:::-;:44;;51138:77;;;;-1:-1:-1;;;51138:77:0;;10997:2:1;51138:77:0;;;10979:21:1;11036:2;11016:18;;;11009:30;-1:-1:-1;;;11055:18:1;;;11048:50;11115:18;;51138:77:0;10795:344:1;51138:77:0;7015:6;;-1:-1:-1;;;;;7015:6:0;5746:10;7162:23:::1;7154:68;;;;-1:-1:-1::0;;;7154:68:0::1;;;;;;;:::i;:::-;52263:27:::2;52273:3;52278:11;52263:9;:27::i;36313:185::-:0;36451:39;36468:4;36474:2;36478:7;36451:39;;;;;;;;;;;;:16;:39::i;49922:183::-;7015:6;;-1:-1:-1;;;;;7015:6:0;5746:10;7162:23;7154:68;;;;-1:-1:-1;;;7154:68:0;;;;;;;:::i;:::-;50011:18:::1;::::0;::::1;::::0;::::1;;;50010:19;50002:59;;;::::0;-1:-1:-1;;;50002:59:0;;8796:2:1;50002:59:0::1;::::0;::::1;8778:21:1::0;8835:2;8815:18;;;8808:30;8874:29;8854:18;;;8847:57;8921:18;;50002:59:0::1;8594:351:1::0;50002:59:0::1;50072:25:::0;;::::1;::::0;:8:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49922:183:::0;:::o;50268:124::-;7015:6;;-1:-1:-1;;;;;7015:6:0;5746:10;7162:23;7154:68;;;;-1:-1:-1;;;7154:68:0;;;;;;;:::i;:::-;50345:24:::1;:39:::0;50268:124::o;33521:::-;33585:7;33612:20;33624:7;33612:11;:20::i;:::-;:25;;33521:124;-1:-1:-1;;33521:124:0:o;30721:206::-;30785:7;-1:-1:-1;;;;;30809:19:0;;30805:60;;30837:28;;-1:-1:-1;;;30837:28:0;;;;;;;;;;;30805:60;-1:-1:-1;;;;;;30891:19:0;;;;;:12;:19;;;;;:27;;;;30721:206::o;7593:103::-;7015:6;;-1:-1:-1;;;;;7015:6:0;5746:10;7162:23;7154:68;;;;-1:-1:-1;;;7154:68:0;;;;;;;:::i;:::-;7658:30:::1;7685:1;7658:18;:30::i;:::-;7593:103::o:0;50400:117::-;7015:6;;-1:-1:-1;;;;;7015:6:0;5746:10;7162:23;7154:68;;;;-1:-1:-1;;;7154:68:0;;;;;;;:::i;:::-;50472:22:::1;:37:::0;;-1:-1:-1;;50472:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50400:117::o;50525:154::-;7015:6;;-1:-1:-1;;;;;7015:6:0;5746:10;7162:23;7154:68;;;;-1:-1:-1;;;7154:68:0;;;;;;;:::i;:::-;50620:26:::1;:51:::0;50525:154::o;49546:99::-;7015:6;;-1:-1:-1;;;;;7015:6:0;5746:10;7162:23;7154:68;;;;-1:-1:-1;;;7154:68:0;;;;;;;:::i;:::-;49615:8:::1;:22:::0;49546:99::o;33881:104::-;33937:13;33970:7;33963:14;;;;;:::i;51243:903::-;51308:11;51058:1;51044:11;:15;:58;;;;;51078:24;;51063:11;:39;;51044:58;51036:91;;;;-1:-1:-1;;;51036:91:0;;8447:2:1;51036:91:0;;;8429:21:1;8486:2;8466:18;;;8459:30;-1:-1:-1;;;8505:18:1;;;8498:50;8565:18;;51036:91:0;8245:344:1;51036:91:0;51177:13;;51162:11;51146:13;;:27;;;;:::i;:::-;:44;;51138:77;;;;-1:-1:-1;;;51138:77:0;;10997:2:1;51138:77:0;;;10979:21:1;11036:2;11016:18;;;11009:30;-1:-1:-1;;;11055:18:1;;;11048:50;11115:18;;51138:77:0;10795:344:1;51138:77:0;51340:22:::1;::::0;::::1;;51332:54;;;::::0;-1:-1:-1;;;51332:54:0;;10298:2:1;51332:54:0::1;::::0;::::1;10280:21:1::0;10337:2;10317:18;;;10310:30;-1:-1:-1;;;10356:18:1;;;10349:49;10415:18;;51332:54:0::1;10096:343:1::0;51332:54:0::1;51399:13;51426:11;51415:8;;:22;;;;:::i;:::-;51399:38;;51470:26;;51454:13;;:42;51450:579;;;51593:10;51513:25;51576:28:::0;;;:16:::1;:28;::::0;;;;;51541:32:::1;::::0;:63:::1;::::0;51576:28;51541:63:::1;:::i;:::-;51513:91:::0;-1:-1:-1;51623:21:0;;51619:399:::1;;51684:17;51669:11;:32;51665:338;;51755:8;::::0;51735:28:::1;::::0;:17;:28:::1;:::i;:::-;51726:37;::::0;;::::1;:::i;:::-;;;51786:50;51806:10;51818:17;51786:19;:50::i;:::-;51665:338;;;51908:8;::::0;51894:22:::1;::::0;:11;:22:::1;:::i;:::-;51885:31;::::0;;::::1;:::i;:::-;;;51939:44;51959:10;51971:11;51939:19;:44::i;:::-;51498:531;51450:579;52062:5;52049:9;:18;;52041:50;;;::::0;-1:-1:-1;;;52041:50:0;;11706:2:1;52041:50:0::1;::::0;::::1;11688:21:1::0;11745:2;11725:18;;;11718:30;-1:-1:-1;;;11764:18:1;;;11757:49;11823:18;;52041:50:0::1;11504:343:1::0;52041:50:0::1;52104:34;52114:10;52126:11;52104:9;:34::i;35491:279::-:0;-1:-1:-1;;;;;35582:24:0;;5746:10;35582:24;35578:54;;;35615:17;;-1:-1:-1;;;35615:17:0;;;;;;;;;;;35578:54;5746:10;35645:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35645:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35645:53:0;;;;;;;;;;35714:48;;7145:41:1;;;35645:42:0;;5746:10;35714:48;;7118:18:1;35714:48:0;;;;;;;35491:279;;:::o;50113:147::-;7015:6;;-1:-1:-1;;;;;7015:6:0;5746:10;7162:23;7154:68;;;;-1:-1:-1;;;7154:68:0;;;;;;;:::i;:::-;50200:32:::1;:52:::0;50113:147::o;36569:342::-;36736:28;36746:4;36752:2;36756:7;36736:9;:28::i;:::-;36780:48;36803:4;36809:2;36813:7;36822:5;36780:22;:48::i;:::-;36775:129;;36852:40;;-1:-1:-1;;;36852:40:0;;;;;;;;;;;36775:129;36569:342;;;;:::o;49653:261::-;7015:6;;-1:-1:-1;;;;;7015:6:0;5746:10;7162:23;7154:68;;;;-1:-1:-1;;;7154:68:0;;;;;;;:::i;:::-;49752:13:::1;;49737:12;:28;49729:63;;;::::0;-1:-1:-1;;;49729:63:0;;10646:2:1;49729:63:0::1;::::0;::::1;10628:21:1::0;10685:2;10665:18;;;10658:30;-1:-1:-1;;;10704:18:1;;;10697:52;10766:18;;49729:63:0::1;10444:346:1::0;49729:63:0::1;49827:13;;49811:12;:29;;49803:64;;;::::0;-1:-1:-1;;;49803:64:0;;10646:2:1;49803:64:0::1;::::0;::::1;10628:21:1::0;10685:2;10665:18;;;10658:30;-1:-1:-1;;;10704:18:1;;;10697:52;10766:18;;49803:64:0::1;10444:346:1::0;49803:64:0::1;49878:13;:28:::0;49653:261::o;48302:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49077:437::-;49150:13;49185:16;49193:7;49185;:16::i;:::-;49177:76;;;;-1:-1:-1;;;49177:76:0;;7623:2:1;49177:76:0;;;7605:21:1;7662:2;7642:18;;;7635:30;7701:34;7681:18;;;7674:62;-1:-1:-1;;;7752:18:1;;;7745:46;7808:19;;49177:76:0;7421:412:1;49177:76:0;49260:28;49291:10;:8;:10::i;:::-;49260:41;;49346:1;49321:14;49315:28;:32;:187;;;;;;;;;;;;;;;;;;;;;;49383:14;49399:18;:7;:16;:18::i;:::-;49419:13;49366:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49315:187;49308:194;49077:437;-1:-1:-1;;;49077:437:0:o;50687:89::-;7015:6;;-1:-1:-1;;;;;7015:6:0;5746:10;7162:23;7154:68;;;;-1:-1:-1;;;7154:68:0;;;;;;;:::i;:::-;50743:18:::1;:25:::0;;-1:-1:-1;;50743:25:0::1;;;::::0;;50687:89::o;7851:201::-;7015:6;;-1:-1:-1;;;;;7015:6:0;5746:10;7162:23;7154:68;;;;-1:-1:-1;;;7154:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7940:22:0;::::1;7932:73;;;::::0;-1:-1:-1;;;7932:73:0;;8040:2:1;7932:73:0::1;::::0;::::1;8022:21:1::0;8079:2;8059:18;;;8052:30;8118:34;8098:18;;;8091:62;-1:-1:-1;;;8169:18:1;;;8162:36;8215:19;;7932:73:0::1;7838:402:1::0;7932:73:0::1;8016:28;8035:8;8016:18;:28::i;:::-;7851:201:::0;:::o;37166:144::-;37223:4;37257:13;;37247:7;:23;:55;;;;-1:-1:-1;;37275:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37275:27:0;;;;37274:28;;37166:144::o;44372:196::-;44487:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44487:29:0;-1:-1:-1;;;;;44487:29:0;;;;;;;;;44532:28;;44487:24;;44532:28;;;;;;;44372:196;;;:::o;39873:2112::-;39988:35;40026:20;40038:7;40026:11;:20::i;:::-;40101:18;;39988:58;;-1:-1:-1;40059:22:0;;-1:-1:-1;;;;;40085:34:0;5746:10;-1:-1:-1;;;;;40085:34:0;;:101;;;-1:-1:-1;40153:18:0;;40136:50;;5746:10;35841:164;:::i;40136:50::-;40085:154;;;-1:-1:-1;5746:10:0;40203:20;40215:7;40203:11;:20::i;:::-;-1:-1:-1;;;;;40203:36:0;;40085:154;40059:181;;40258:17;40253:66;;40284:35;;-1:-1:-1;;;40284:35:0;;;;;;;;;;;40253:66;40356:4;-1:-1:-1;;;;;40334:26:0;:13;:18;;;-1:-1:-1;;;;;40334:26:0;;40330:67;;40369:28;;-1:-1:-1;;;40369:28:0;;;;;;;;;;;40330:67;-1:-1:-1;;;;;40412:16:0;;40408:52;;40437:23;;-1:-1:-1;;;40437:23:0;;;;;;;;;;;40408:52;40581:49;40598:1;40602:7;40611:13;:18;;;40581:8;:49::i;:::-;-1:-1:-1;;;;;40926:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40926:31:0;;;;;;;-1:-1:-1;;40926:31:0;;;;;;;40972:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40972:29:0;;;;;;;;;;;41018:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;41063:61:0;;;;-1:-1:-1;;;41108:15:0;41063:61;;;;;;;;;;;41398:11;;;41428:24;;;;;:29;41398:11;;41428:29;41424:445;;41653:13;;41639:11;:27;41635:219;;;41723:18;;;41691:24;;;:11;:24;;;;;;;;:50;;41806:28;;;;41764:70;;-1:-1:-1;;;41764:70:0;-1:-1:-1;;;;;;41764:70:0;;;-1:-1:-1;;;;;41691:50:0;;;41764:70;;;;;;;41635:219;40901:979;41916:7;41912:2;-1:-1:-1;;;;;41897:27:0;41906:4;-1:-1:-1;;;;;41897:27:0;;;;;;;;;;;41935:42;39977:2008;;39873:2112;;;:::o;10904:317::-;11019:6;10994:21;:31;;10986:73;;;;-1:-1:-1;;;10986:73:0;;9579:2:1;10986:73:0;;;9561:21:1;9618:2;9598:18;;;9591:30;9657:31;9637:18;;;9630:59;9706:18;;10986:73:0;9377:353:1;10986:73:0;11073:12;11091:9;-1:-1:-1;;;;;11091:14:0;11113:6;11091:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11072:52;;;11143:7;11135:78;;;;-1:-1:-1;;;11135:78:0;;9152:2:1;11135:78:0;;;9134:21:1;9191:2;9171:18;;;9164:30;9230:34;9210:18;;;9203:62;9301:28;9281:18;;;9274:56;9347:19;;11135:78:0;8950:422:1;37318:104:0;37387:27;37397:2;37401:8;37387:27;;;;;;;;;;;;:9;:27::i;32376:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;32542:13:0;;32486:7;;32535:20;;32531:861;;;32576:31;32610:17;;;:11;:17;;;;;;;;;32576:51;;;;;;;;;-1:-1:-1;;;;;32576:51:0;;;;-1:-1:-1;;;32576:51:0;;;;;;;;;;;-1:-1:-1;;;32576:51:0;;;;;;;;;;;;;;32646:731;;32696:14;;-1:-1:-1;;;;;32696:28:0;;32692:101;;32760:9;32376:1083;-1:-1:-1;;;32376:1083:0:o;32692:101::-;-1:-1:-1;;;33137:6:0;33182:17;;;;:11;:17;;;;;;;;;33170:29;;;;;;;;;-1:-1:-1;;;;;33170:29:0;;;;;-1:-1:-1;;;33170:29:0;;;;;;;;;;;-1:-1:-1;;;33170:29:0;;;;;;;;;;;;;33230:28;33226:109;;33298:9;32376:1083;-1:-1:-1;;;32376:1083:0:o;33226:109::-;33097:261;;;32557:835;32531:861;33420:31;;-1:-1:-1;;;33420:31:0;;;;;;;;;;;8212:191;8305:6;;;-1:-1:-1;;;;;8322:17:0;;;-1:-1:-1;;;;;;8322:17:0;;;;;;;8355:40;;8305:6;;;8322:17;8305:6;;8355:40;;8286:16;;8355:40;8275:128;8212:191;:::o;50827:120::-;-1:-1:-1;;;;;50906:24:0;;;;;;:16;:24;;;;;:33;;50934:5;;50906:24;:33;;50934:5;;50906:33;:::i;:::-;;;;-1:-1:-1;;;;50827:120:0:o;45133:790::-;45288:4;-1:-1:-1;;;;;45309:13:0;;9938:19;:23;45305:611;;45345:72;;-1:-1:-1;;;45345:72:0;;-1:-1:-1;;;;;45345:36:0;;;;;:72;;5746:10;;45396:4;;45402:7;;45411:5;;45345:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45345:72:0;;;;;;;;-1:-1:-1;;45345:72:0;;;;;;;;;;;;:::i;:::-;;;45341:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45591:13:0;;45587:259;;45641:40;;-1:-1:-1;;;45641:40:0;;;;;;;;;;;45587:259;45796:6;45790:13;45781:6;45777:2;45773:15;45766:38;45341:520;-1:-1:-1;;;;;;45468:55:0;-1:-1:-1;;;45468:55:0;;-1:-1:-1;45461:62:0;;45305:611;-1:-1:-1;45900:4:0;45305:611;45133:790;;;;;;:::o;48960:109::-;49020:13;49053:8;49046:15;;;;;:::i;3228:723::-;3284:13;3505:10;3501:53;;-1:-1:-1;;3532:10:0;;;;;;;;;;;;-1:-1:-1;;;3532:10:0;;;;;3228:723::o;3501:53::-;3579:5;3564:12;3620:78;3627:9;;3620:78;;3653:8;;;;:::i;:::-;;-1:-1:-1;3676:10:0;;-1:-1:-1;3684:2:0;3676:10;;:::i;:::-;;;3620:78;;;3708:19;3740:6;3730:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3730:17:0;;3708:39;;3758:154;3765:10;;3758:154;;3792:11;3802:1;3792:11;;:::i;:::-;;-1:-1:-1;3861:10:0;3869:2;3861:5;:10;:::i;:::-;3848:24;;:2;:24;:::i;:::-;3835:39;;3818:6;3825;3818:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3818:56:0;;;;;;;;-1:-1:-1;3889:11:0;3898:2;3889:11;;:::i;:::-;;;3758:154;;37785:163;37908:32;37914:2;37918:8;37928:5;37935:4;38346:20;38369:13;-1:-1:-1;;;;;38397:16:0;;38393:48;;38422:19;;-1:-1:-1;;;38422:19:0;;;;;;;;;;;38393:48;38456:13;38452:44;;38478:18;;-1:-1:-1;;;38478:18:0;;;;;;;;;;;38452:44;-1:-1:-1;;;;;38847:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38906:49:0;;38847:44;;;;;;;;38906:49;;;;-1:-1:-1;;38847:44:0;;;;;;38906:49;;;;;;;;;;;;;;;;38972:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;39022:66:0;;;;-1:-1:-1;;;39072:15:0;39022:66;;;;;;;;;;;38972:25;;39157:328;39177:8;39173:1;:12;39157:328;;;39216:38;;39241:12;;-1:-1:-1;;;;;39216:38:0;;;39233:1;;39216:38;;39233:1;;39216:38;39277:4;:68;;;;;39286:59;39317:1;39321:2;39325:12;39339:5;39286:22;:59::i;:::-;39285:60;39277:68;39273:164;;;39377:40;;-1:-1:-1;;;39377:40:0;;;;;;;;;;;39273:164;39455:14;;;;;39187:3;39157:328;;;-1:-1:-1;39501:13:0;:28;39551:60;36569:342;-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:1527::-;4786:3;4824:6;4818:13;4850:4;4863:51;4907:6;4902:3;4897:2;4889:6;4885:15;4863:51;:::i;:::-;4977:13;;4936:16;;;;4999:55;4977:13;4936:16;5021:15;;;4999:55;:::i;:::-;5143:13;;5076:20;;;5116:1;;5203;5225:18;;;;5278;;;;5305:93;;5383:4;5373:8;5369:19;5357:31;;5305:93;5446:2;5436:8;5433:16;5413:18;5410:40;5407:167;;;-1:-1:-1;;;5473:33:1;;5529:4;5526:1;5519:15;5559:4;5480:3;5547:17;5407:167;5590:18;5617:110;;;;5741:1;5736:328;;;;5583:481;;5617:110;-1:-1:-1;;5652:24:1;;5638:39;;5697:20;;;;-1:-1:-1;5617:110:1;;5736:328;12107:1;12100:14;;;12144:4;12131:18;;5831:1;5845:169;5859:8;5856:1;5853:15;5845:169;;;5941:14;;5926:13;;;5919:37;5984:16;;;;5876:10;;5845:169;;;5849:3;;6045:8;6038:5;6034:20;6027:27;;5583:481;-1:-1:-1;6080:3:1;;4562:1527;-1:-1:-1;;;;;;;;;;;4562:1527:1:o;6512:488::-;-1:-1:-1;;;;;6781:15:1;;;6763:34;;6833:15;;6828:2;6813:18;;6806:43;6880:2;6865:18;;6858:34;;;6928:3;6923:2;6908:18;;6901:31;;;6706:4;;6949:45;;6974:19;;6966:6;6949:45;:::i;:::-;6941:53;6512:488;-1:-1:-1;;;;;;6512:488:1:o;7197:219::-;7346:2;7335:9;7328:21;7309:4;7366:44;7406:2;7395:9;7391:18;7383:6;7366:44;:::i;9735:356::-;9937:2;9919:21;;;9956:18;;;9949:30;10015:34;10010:2;9995:18;;9988:62;10082:2;10067:18;;9735:356::o;12160:128::-;12200:3;12231:1;12227:6;12224:1;12221:13;12218:39;;;12237:18;;:::i;:::-;-1:-1:-1;12273:9:1;;12160:128::o;12293:120::-;12333:1;12359;12349:35;;12364:18;;:::i;:::-;-1:-1:-1;12398:9:1;;12293:120::o;12418:168::-;12458:7;12524:1;12520;12516:6;12512:14;12509:1;12506:21;12501:1;12494:9;12487:17;12483:45;12480:71;;;12531:18;;:::i;:::-;-1:-1:-1;12571:9:1;;12418:168::o;12591:125::-;12631:4;12659:1;12656;12653:8;12650:34;;;12664:18;;:::i;:::-;-1:-1:-1;12701:9:1;;12591:125::o;12721:258::-;12793:1;12803:113;12817:6;12814:1;12811:13;12803:113;;;12893:11;;;12887:18;12874:11;;;12867:39;12839:2;12832:10;12803:113;;;12934:6;12931:1;12928:13;12925:48;;;-1:-1:-1;;12969:1:1;12951:16;;12944:27;12721:258::o;12984:380::-;13063:1;13059:12;;;;13106;;;13127:61;;13181:4;13173:6;13169:17;13159:27;;13127:61;13234:2;13226:6;13223:14;13203:18;13200:38;13197:161;;;13280:10;13275:3;13271:20;13268:1;13261:31;13315:4;13312:1;13305:15;13343:4;13340:1;13333:15;13197:161;;12984:380;;;:::o;13369:135::-;13408:3;-1:-1:-1;;13429:17:1;;13426:43;;;13449:18;;:::i;:::-;-1:-1:-1;13496:1:1;13485:13;;13369:135::o;13509:112::-;13541:1;13567;13557:35;;13572:18;;:::i;:::-;-1:-1:-1;13606:9:1;;13509:112::o;13626:127::-;13687:10;13682:3;13678:20;13675:1;13668:31;13718:4;13715:1;13708:15;13742:4;13739:1;13732:15;13758:127;13819:10;13814:3;13810:20;13807:1;13800:31;13850:4;13847:1;13840:15;13874:4;13871:1;13864:15;13890:127;13951:10;13946:3;13942:20;13939:1;13932:31;13982:4;13979:1;13972:15;14006:4;14003:1;13996:15;14022:127;14083:10;14078:3;14074:20;14071:1;14064:31;14114:4;14111:1;14104:15;14138:4;14135:1;14128:15;14154:131;-1:-1:-1;;;;;;14228:32:1;;14218:43;;14208:71;;14275:1;14272;14265:12

Swarm Source

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