ETH Price: $3,062.65 (-7.29%)
Gas: 13 Gwei

Token

MoonFarts (MFART$)
 

Overview

Max Total Supply

2,222 MFART$

Holders

348

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
9 MFART$
0x7725511b3b0eaf40497c35eae82e4c69f92e00ee
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:
MoonFarts

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-06-29
*/

// 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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;








/**
 * @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..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

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

    function totalSupply() public view returns (uint256) {
        return currentIndex;
    }

    /**
     * @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) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * 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) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

    unchecked {
        for (uint256 curr = tokenId; curr >= 0; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }
    }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @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) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

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

    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;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
    unchecked {
        _addressData[to].balance += uint128(quantity);
        _addressData[to].numberMinted += uint128(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) {
                require(
                    _checkOnERC721Received(address(0), to, updatedIndex, _data),
                    'ERC721A: transfer to non ERC721Receiver implementer'
                );
            }

            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 ||
        getApproved(tokenId) == _msgSender() ||
        isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _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)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId].addr = prevOwnership.addr;
                _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
            }
        }
    }

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

    /**
     * @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('ERC721A: transfer to non ERC721Receiver implementer');
                } 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.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: contracts/WOOAW.sol



pragma solidity ^0.8.4;




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

    uint256 public PRICE = 0.005 ether; // 5000000000000000 wei cost
    uint256 public MAX_SUPPLY = 2222;
    string private BASE_URI = "ipfs://QmW35u3m7ULJ87NqZ4qsCmjKhtir9c7iFFVTpDf5AruXRD/";
    uint256 public FREE_MINT_LIMIT_PER_WALLET = 2;
    uint256 public MAX_MINT_AMOUNT_PER_TX = 10;
    bool public IS_SALE_ACTIVE;
    uint256 public FREE_MINT_IS_ALLOWED_UNTIL = 1000; // Free mint is allowed until x mint
    bool public METADATA_FROZEN;

    mapping(address => uint256) private freeMintCountMap;

    constructor(uint256 price, uint256 maxSupply, string memory baseUri, uint256 freeMintAllowance, uint256 maxMintPerTx, bool isSaleActive, uint256 freeMintIsAllowedUntil) ERC721A("MoonFarts", "MFART$") {
        PRICE = price;
        MAX_SUPPLY = maxSupply;
        BASE_URI = baseUri;
        FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance;
        MAX_MINT_AMOUNT_PER_TX = maxMintPerTx;
        IS_SALE_ACTIVE = isSaleActive;
        FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil;
    }

    /** FREE MINT **/

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

    function freeMintCount(address addr) public view returns (uint256) {
        return freeMintCountMap[addr];
    }

    /** GETTERS **/

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

    /** SETTERS **/

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

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

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

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

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

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

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

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

    /** MINT **/

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

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

        uint256 price = PRICE * _mintAmount;

        if (currentIndex < FREE_MINT_IS_ALLOWED_UNTIL) {
            uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET - freeMintCountMap[msg.sender];
            if (remainingFreeMint > 0) {
                if (_mintAmount >= remainingFreeMint) {
                    price -= remainingFreeMint * PRICE;
                    updateFreeMintCount(msg.sender, remainingFreeMint);
                } else {
                    price -= _mintAmount * PRICE;
                    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);
    }

    /** PAYOUT **/

    address private payoutAddress1 =
    0x9baeCd33D32d3DcDB53f838b05889bD2f77a5078;

    address private payoutAddress2 =
    0x9baeCd33D32d3DcDB53f838b05889bD2f77a5078;

    address private payoutAddress3 =
    0x9baeCd33D32d3DcDB53f838b05889bD2f77a5078;

    address private payoutAddress4 =
    0x9baeCd33D32d3DcDB53f838b05889bD2f77a5078;

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

        Address.sendValue(payable(payoutAddress1), balance / 4);

        Address.sendValue(payable(payoutAddress2), balance / 4);

        Address.sendValue(payable(payoutAddress3), balance / 4);

        Address.sendValue(payable(payoutAddress4), balance / 4);
    }

    function setPayoutAddress(address addy, uint id) external onlyOwner {
        if (id == 0) {
            payoutAddress1 = addy;
        } else if (id == 1) {
            payoutAddress2 = addy;
        } else if (id == 2) {
            payoutAddress3 = addy;
        } else if (id == 3) {
            payoutAddress4 = addy;
        }
    }
}

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"},{"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_IS_ALLOWED_UNTIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_FROZEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"addy","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"setPayoutAddress","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"}]

6611c37937e080006009556108ae600a5560e06040526036608081815290620027ba60a03980516200003a91600b91602090910190620001ec565b506002600c55600a600d556103e8600f5560128054739baecd33d32d3dcdb53f838b05889bd2f77a50786001600160a01b031991821681179092556013805482168317905560148054821683179055601580549091169091179055348015620000a257600080fd5b50604051620027f0380380620027f0833981016040819052620000c591620002a8565b60408051808201825260098152684d6f6f6e466172747360b81b60208083019182528351808501909452600684526513519054950960d21b9084015281519192916200011491600191620001ec565b5080516200012a906002906020840190620001ec565b50505062000147620001416200019660201b60201c565b6200019a565b60016008556009879055600a86905584516200016b90600b906020880190620001ec565b50600c93909355600d91909155600e805460ff1916911515919091179055600f55506200041e915050565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001fa90620003cb565b90600052602060002090601f0160209004810192826200021e576000855562000269565b82601f106200023957805160ff191683800117855562000269565b8280016001018555821562000269579182015b82811115620002695782518255916020019190600101906200024c565b50620002779291506200027b565b5090565b5b808211156200027757600081556001016200027c565b80518015158114620002a357600080fd5b919050565b600080600080600080600060e0888a031215620002c457600080fd5b87516020808a015160408b01519299509750906001600160401b0380821115620002ed57600080fd5b818b0191508b601f8301126200030257600080fd5b81518181111562000317576200031762000408565b604051601f8201601f19908116603f0116810190838211818310171562000342576200034262000408565b816040528281528e868487010111156200035b57600080fd5b600093505b828410156200037f578484018601518185018701529285019262000360565b82841115620003915760008684830101525b809a505050505050506060880151935060808801519250620003b660a0890162000292565b915060c0880151905092959891949750929550565b600181811c90821680620003e057607f821691505b602082108114156200040257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61238c806200042e6000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063a22cb465116100ab578063d111515d1161006f578063d111515d14610601578063deae121314610616578063e985e9c514610636578063f2fde38b1461067f578063fdb4953a1461069f57600080fd5b8063a22cb46514610561578063b0551ac414610581578063b88d4fde146105a1578063c4e9374d146105c1578063c87b56dd146105e157600080fd5b80638d859f3e116100f25780638d859f3e146104e55780638da5cb5b146104fb57806391b7f5ed1461051957806395d89b4114610539578063a0712d681461054e57600080fd5b8063715018a61461047657806376d02b711461048b578063841718a6146104a55780638b85e43d146104c557600080fd5b80633ccfd60b116101a657806355f804b31161017557806355f804b3146103c05780635ecf8a80146103e0578063616cdb1e146104165780636352211e1461043657806370a082311461045657600080fd5b80633ccfd60b146103555780634065b85f1461036a578063408cbf941461038057806342842e0e146103a057600080fd5b806309ef6527116101ed57806309ef6527146102d057806310b0c052146102f457806318160ddd1461030a57806323b872dd1461031f57806332cb6b0c1461033f57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612021565b6106b9565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061026961070b565b60405161024b9190612155565b34801561028257600080fd5b506102966102913660046120a4565b61079d565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611fdc565b61082d565b005b3480156102dc57600080fd5b506102e6600d5481565b60405190815260200161024b565b34801561030057600080fd5b506102e6600c5481565b34801561031657600080fd5b506000546102e6565b34801561032b57600080fd5b506102ce61033a366004611efa565b610945565b34801561034b57600080fd5b506102e6600a5481565b34801561036157600080fd5b506102ce610950565b34801561037657600080fd5b506102e6600f5481565b34801561038c57600080fd5b506102ce61039b366004611fdc565b610a4d565b3480156103ac57600080fd5b506102ce6103bb366004611efa565b610b2d565b3480156103cc57600080fd5b506102ce6103db36600461205b565b610b48565b3480156103ec57600080fd5b506102e66103fb366004611eac565b6001600160a01b031660009081526011602052604090205490565b34801561042257600080fd5b506102ce6104313660046120a4565b610bcf565b34801561044257600080fd5b506102966104513660046120a4565b610bfe565b34801561046257600080fd5b506102e6610471366004611eac565b610c10565b34801561048257600080fd5b506102ce610ca1565b34801561049757600080fd5b50600e5461023f9060ff1681565b3480156104b157600080fd5b506102ce6104c0366004612006565b610cd7565b3480156104d157600080fd5b506102ce6104e03660046120a4565b610d14565b3480156104f157600080fd5b506102e660095481565b34801561050757600080fd5b506007546001600160a01b0316610296565b34801561052557600080fd5b506102ce6105343660046120a4565b610d43565b34801561054557600080fd5b50610269610d72565b6102ce61055c3660046120a4565b610d81565b34801561056d57600080fd5b506102ce61057c366004611fb2565b610f5c565b34801561058d57600080fd5b506102ce61059c3660046120a4565b611021565b3480156105ad57600080fd5b506102ce6105bc366004611f36565b611050565b3480156105cd57600080fd5b506102ce6105dc3660046120a4565b611089565b3480156105ed57600080fd5b506102696105fc3660046120a4565b61114d565b34801561060d57600080fd5b506102ce61121b565b34801561062257600080fd5b506102ce610631366004611fdc565b611254565b34801561064257600080fd5b5061023f610651366004611ec7565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561068b57600080fd5b506102ce61069a366004611eac565b611322565b3480156106ab57600080fd5b5060105461023f9060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806106ea57506001600160e01b03198216635b5e139f60e01b145b8061070557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461071a9061227e565b80601f01602080910402602001604051908101604052809291908181526020018280546107469061227e565b80156107935780601f1061076857610100808354040283529160200191610793565b820191906000526020600020905b81548152906001019060200180831161077657829003601f168201915b5050505050905090565b60006107aa826000541190565b6108115760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061083882610bfe565b9050806001600160a01b0316836001600160a01b031614156108a75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610808565b336001600160a01b03821614806108c357506108c38133610651565b6109355760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610808565b6109408383836113bd565b505050565b610940838383611419565b6007546001600160a01b0316331461097a5760405162461bcd60e51b815260040161080890612168565b600260085414156109cd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610808565b600260085560125447906109f4906001600160a01b03166109ef600484612208565b6116fe565b601354610a0f906001600160a01b03166109ef600484612208565b601454610a2a906001600160a01b03166109ef600484612208565b601554610a45906001600160a01b03166109ef600484612208565b506001600855565b80600081118015610a605750600d548111155b610aa35760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610808565b600a5481600054610ab491906121f0565b1115610af95760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610808565b6007546001600160a01b03163314610b235760405162461bcd60e51b815260040161080890612168565b6109408383611817565b61094083838360405180602001604052806000815250611050565b6007546001600160a01b03163314610b725760405162461bcd60e51b815260040161080890612168565b60105460ff1615610bb85760405162461bcd60e51b815260206004820152601060248201526f4d657461646174612066726f7a656e2160801b6044820152606401610808565b8051610bcb90600b906020840190611d71565b5050565b6007546001600160a01b03163314610bf95760405162461bcd60e51b815260040161080890612168565b600d55565b6000610c0982611831565b5192915050565b60006001600160a01b038216610c7c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610808565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610ccb5760405162461bcd60e51b815260040161080890612168565b610cd56000611908565b565b6007546001600160a01b03163314610d015760405162461bcd60e51b815260040161080890612168565b600e805460ff1916911515919091179055565b6007546001600160a01b03163314610d3e5760405162461bcd60e51b815260040161080890612168565b600f55565b6007546001600160a01b03163314610d6d5760405162461bcd60e51b815260040161080890612168565b600955565b60606002805461071a9061227e565b80600081118015610d945750600d548111155b610dd75760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610808565b600a5481600054610de891906121f0565b1115610e2d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610808565b600e5460ff16610e755760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610808565b600082600954610e85919061221c565b9050600f546000541015610f0c5733600090815260116020526040812054600c54610eb0919061223b565b90508015610f0a57808410610ee757600954610ecc908261221c565b610ed6908361223b565b9150610ee2338261195a565b610f0a565b600954610ef4908561221c565b610efe908361223b565b9150610f0a338561195a565b505b80341015610f525760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610808565b6109403384611817565b6001600160a01b038216331415610fb55760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610808565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b0316331461104b5760405162461bcd60e51b815260040161080890612168565b600c55565b61105b848484611419565b6110678484848461198b565b6110835760405162461bcd60e51b81526004016108089061219d565b50505050565b6007546001600160a01b031633146110b35760405162461bcd60e51b815260040161080890612168565b600a5481106110fd5760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b6044820152606401610808565b6000548110156111485760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b6044820152606401610808565b600a55565b606061115a826000541190565b6111be5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610808565b60006111c8611a99565b90508051600014156111e95760405180602001604052806000815250611214565b806111f384611aa8565b6040516020016112049291906120e9565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146112455760405162461bcd60e51b815260040161080890612168565b6010805460ff19166001179055565b6007546001600160a01b0316331461127e5760405162461bcd60e51b815260040161080890612168565b806112a457601280546001600160a01b0384166001600160a01b03199091161790555050565b80600114156112ce57601380546001600160a01b0384166001600160a01b03199091161790555050565b80600214156112f857601480546001600160a01b0384166001600160a01b03199091161790555050565b8060031415610bcb57601580546001600160a01b0384166001600160a01b03199091161790555050565b6007546001600160a01b0316331461134c5760405162461bcd60e51b815260040161080890612168565b6001600160a01b0381166113b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610808565b6113ba81611908565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061142482611831565b80519091506000906001600160a01b0316336001600160a01b0316148061145b5750336114508461079d565b6001600160a01b0316145b8061146d5750815161146d9033610651565b9050806114d75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610808565b846001600160a01b031682600001516001600160a01b03161461154b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610808565b6001600160a01b0384166115af5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610808565b6115bf60008484600001516113bd565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166116b457611667816000541190565b156116b4578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b8047101561174e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610808565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461179b576040519150601f19603f3d011682016040523d82523d6000602084013e6117a0565b606091505b50509050806109405760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610808565b610bcb828260405180602001604052806000815250611ba6565b6040805180820190915260008082526020820152611850826000541190565b6118af5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610808565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118fe579392505050565b50600019016118b1565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600090815260116020526040812080548392906119829084906121f0565b90915550505050565b60006001600160a01b0384163b15611a8d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119cf903390899088908890600401612118565b602060405180830381600087803b1580156119e957600080fd5b505af1925050508015611a19575060408051601f3d908101601f19168201909252611a169181019061203e565b60015b611a73573d808015611a47576040519150601f19603f3d011682016040523d82523d6000602084013e611a4c565b606091505b508051611a6b5760405162461bcd60e51b81526004016108089061219d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a91565b5060015b949350505050565b6060600b805461071a9061227e565b606081611acc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611af65780611ae0816122b9565b9150611aef9050600a83612208565b9150611ad0565b60008167ffffffffffffffff811115611b1157611b1161232a565b6040519080825280601f01601f191660200182016040528015611b3b576020820181803683370190505b5090505b8415611a9157611b5060018361223b565b9150611b5d600a866122d4565b611b689060306121f0565b60f81b818381518110611b7d57611b7d612314565b60200101906001600160f81b031916908160001a905350611b9f600a86612208565b9450611b3f565b61094083838360016000546001600160a01b038516611c115760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610808565b83611c6f5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610808565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611d685760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611d5c57611d40600088848861198b565b611d5c5760405162461bcd60e51b81526004016108089061219d565b60019182019101611ced565b506000556116f7565b828054611d7d9061227e565b90600052602060002090601f016020900481019282611d9f5760008555611de5565b82601f10611db857805160ff1916838001178555611de5565b82800160010185558215611de5579182015b82811115611de5578251825591602001919060010190611dca565b50611df1929150611df5565b5090565b5b80821115611df15760008155600101611df6565b600067ffffffffffffffff80841115611e2557611e2561232a565b604051601f8501601f19908116603f01168101908282118183101715611e4d57611e4d61232a565b81604052809350858152868686011115611e6657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e9757600080fd5b919050565b80358015158114611e9757600080fd5b600060208284031215611ebe57600080fd5b61121482611e80565b60008060408385031215611eda57600080fd5b611ee383611e80565b9150611ef160208401611e80565b90509250929050565b600080600060608486031215611f0f57600080fd5b611f1884611e80565b9250611f2660208501611e80565b9150604084013590509250925092565b60008060008060808587031215611f4c57600080fd5b611f5585611e80565b9350611f6360208601611e80565b925060408501359150606085013567ffffffffffffffff811115611f8657600080fd5b8501601f81018713611f9757600080fd5b611fa687823560208401611e0a565b91505092959194509250565b60008060408385031215611fc557600080fd5b611fce83611e80565b9150611ef160208401611e9c565b60008060408385031215611fef57600080fd5b611ff883611e80565b946020939093013593505050565b60006020828403121561201857600080fd5b61121482611e9c565b60006020828403121561203357600080fd5b813561121481612340565b60006020828403121561205057600080fd5b815161121481612340565b60006020828403121561206d57600080fd5b813567ffffffffffffffff81111561208457600080fd5b8201601f8101841361209557600080fd5b611a9184823560208401611e0a565b6000602082840312156120b657600080fd5b5035919050565b600081518084526120d5816020860160208601612252565b601f01601f19169290920160200192915050565b600083516120fb818460208801612252565b83519083019061210f818360208801612252565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061214b908301846120bd565b9695505050505050565b60208152600061121460208301846120bd565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008219821115612203576122036122e8565b500190565b600082612217576122176122fe565b500490565b6000816000190483118215151615612236576122366122e8565b500290565b60008282101561224d5761224d6122e8565b500390565b60005b8381101561226d578181015183820152602001612255565b838111156110835750506000910152565b600181811c9082168061229257607f821691505b602082108114156122b357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122cd576122cd6122e8565b5060010190565b6000826122e3576122e36122fe565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113ba57600080fdfea2646970667358221220b09c0a4ff03a433d34b70ad136b5b7304fefb199db3d5e4b845565f9a8ec2e9e64736f6c63430008070033697066733a2f2f516d57333575336d37554c4a38374e715a347173436d6a4b687469723963376946465654704466354172755852442f0000000000000000000000000000000000000000000000000011c37937e0800000000000000000000000000000000000000000000000000000000000000008ae00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57333575336d37554c4a38374e715a347173436d6a4b687469723963376946465654704466354172755852442f00000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063715018a611610123578063a22cb465116100ab578063d111515d1161006f578063d111515d14610601578063deae121314610616578063e985e9c514610636578063f2fde38b1461067f578063fdb4953a1461069f57600080fd5b8063a22cb46514610561578063b0551ac414610581578063b88d4fde146105a1578063c4e9374d146105c1578063c87b56dd146105e157600080fd5b80638d859f3e116100f25780638d859f3e146104e55780638da5cb5b146104fb57806391b7f5ed1461051957806395d89b4114610539578063a0712d681461054e57600080fd5b8063715018a61461047657806376d02b711461048b578063841718a6146104a55780638b85e43d146104c557600080fd5b80633ccfd60b116101a657806355f804b31161017557806355f804b3146103c05780635ecf8a80146103e0578063616cdb1e146104165780636352211e1461043657806370a082311461045657600080fd5b80633ccfd60b146103555780634065b85f1461036a578063408cbf941461038057806342842e0e146103a057600080fd5b806309ef6527116101ed57806309ef6527146102d057806310b0c052146102f457806318160ddd1461030a57806323b872dd1461031f57806332cb6b0c1461033f57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612021565b6106b9565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061026961070b565b60405161024b9190612155565b34801561028257600080fd5b506102966102913660046120a4565b61079d565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611fdc565b61082d565b005b3480156102dc57600080fd5b506102e6600d5481565b60405190815260200161024b565b34801561030057600080fd5b506102e6600c5481565b34801561031657600080fd5b506000546102e6565b34801561032b57600080fd5b506102ce61033a366004611efa565b610945565b34801561034b57600080fd5b506102e6600a5481565b34801561036157600080fd5b506102ce610950565b34801561037657600080fd5b506102e6600f5481565b34801561038c57600080fd5b506102ce61039b366004611fdc565b610a4d565b3480156103ac57600080fd5b506102ce6103bb366004611efa565b610b2d565b3480156103cc57600080fd5b506102ce6103db36600461205b565b610b48565b3480156103ec57600080fd5b506102e66103fb366004611eac565b6001600160a01b031660009081526011602052604090205490565b34801561042257600080fd5b506102ce6104313660046120a4565b610bcf565b34801561044257600080fd5b506102966104513660046120a4565b610bfe565b34801561046257600080fd5b506102e6610471366004611eac565b610c10565b34801561048257600080fd5b506102ce610ca1565b34801561049757600080fd5b50600e5461023f9060ff1681565b3480156104b157600080fd5b506102ce6104c0366004612006565b610cd7565b3480156104d157600080fd5b506102ce6104e03660046120a4565b610d14565b3480156104f157600080fd5b506102e660095481565b34801561050757600080fd5b506007546001600160a01b0316610296565b34801561052557600080fd5b506102ce6105343660046120a4565b610d43565b34801561054557600080fd5b50610269610d72565b6102ce61055c3660046120a4565b610d81565b34801561056d57600080fd5b506102ce61057c366004611fb2565b610f5c565b34801561058d57600080fd5b506102ce61059c3660046120a4565b611021565b3480156105ad57600080fd5b506102ce6105bc366004611f36565b611050565b3480156105cd57600080fd5b506102ce6105dc3660046120a4565b611089565b3480156105ed57600080fd5b506102696105fc3660046120a4565b61114d565b34801561060d57600080fd5b506102ce61121b565b34801561062257600080fd5b506102ce610631366004611fdc565b611254565b34801561064257600080fd5b5061023f610651366004611ec7565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561068b57600080fd5b506102ce61069a366004611eac565b611322565b3480156106ab57600080fd5b5060105461023f9060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806106ea57506001600160e01b03198216635b5e139f60e01b145b8061070557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461071a9061227e565b80601f01602080910402602001604051908101604052809291908181526020018280546107469061227e565b80156107935780601f1061076857610100808354040283529160200191610793565b820191906000526020600020905b81548152906001019060200180831161077657829003601f168201915b5050505050905090565b60006107aa826000541190565b6108115760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061083882610bfe565b9050806001600160a01b0316836001600160a01b031614156108a75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610808565b336001600160a01b03821614806108c357506108c38133610651565b6109355760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610808565b6109408383836113bd565b505050565b610940838383611419565b6007546001600160a01b0316331461097a5760405162461bcd60e51b815260040161080890612168565b600260085414156109cd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610808565b600260085560125447906109f4906001600160a01b03166109ef600484612208565b6116fe565b601354610a0f906001600160a01b03166109ef600484612208565b601454610a2a906001600160a01b03166109ef600484612208565b601554610a45906001600160a01b03166109ef600484612208565b506001600855565b80600081118015610a605750600d548111155b610aa35760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610808565b600a5481600054610ab491906121f0565b1115610af95760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610808565b6007546001600160a01b03163314610b235760405162461bcd60e51b815260040161080890612168565b6109408383611817565b61094083838360405180602001604052806000815250611050565b6007546001600160a01b03163314610b725760405162461bcd60e51b815260040161080890612168565b60105460ff1615610bb85760405162461bcd60e51b815260206004820152601060248201526f4d657461646174612066726f7a656e2160801b6044820152606401610808565b8051610bcb90600b906020840190611d71565b5050565b6007546001600160a01b03163314610bf95760405162461bcd60e51b815260040161080890612168565b600d55565b6000610c0982611831565b5192915050565b60006001600160a01b038216610c7c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610808565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610ccb5760405162461bcd60e51b815260040161080890612168565b610cd56000611908565b565b6007546001600160a01b03163314610d015760405162461bcd60e51b815260040161080890612168565b600e805460ff1916911515919091179055565b6007546001600160a01b03163314610d3e5760405162461bcd60e51b815260040161080890612168565b600f55565b6007546001600160a01b03163314610d6d5760405162461bcd60e51b815260040161080890612168565b600955565b60606002805461071a9061227e565b80600081118015610d945750600d548111155b610dd75760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610808565b600a5481600054610de891906121f0565b1115610e2d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610808565b600e5460ff16610e755760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610808565b600082600954610e85919061221c565b9050600f546000541015610f0c5733600090815260116020526040812054600c54610eb0919061223b565b90508015610f0a57808410610ee757600954610ecc908261221c565b610ed6908361223b565b9150610ee2338261195a565b610f0a565b600954610ef4908561221c565b610efe908361223b565b9150610f0a338561195a565b505b80341015610f525760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610808565b6109403384611817565b6001600160a01b038216331415610fb55760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610808565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b0316331461104b5760405162461bcd60e51b815260040161080890612168565b600c55565b61105b848484611419565b6110678484848461198b565b6110835760405162461bcd60e51b81526004016108089061219d565b50505050565b6007546001600160a01b031633146110b35760405162461bcd60e51b815260040161080890612168565b600a5481106110fd5760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b6044820152606401610808565b6000548110156111485760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b6044820152606401610808565b600a55565b606061115a826000541190565b6111be5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610808565b60006111c8611a99565b90508051600014156111e95760405180602001604052806000815250611214565b806111f384611aa8565b6040516020016112049291906120e9565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146112455760405162461bcd60e51b815260040161080890612168565b6010805460ff19166001179055565b6007546001600160a01b0316331461127e5760405162461bcd60e51b815260040161080890612168565b806112a457601280546001600160a01b0384166001600160a01b03199091161790555050565b80600114156112ce57601380546001600160a01b0384166001600160a01b03199091161790555050565b80600214156112f857601480546001600160a01b0384166001600160a01b03199091161790555050565b8060031415610bcb57601580546001600160a01b0384166001600160a01b03199091161790555050565b6007546001600160a01b0316331461134c5760405162461bcd60e51b815260040161080890612168565b6001600160a01b0381166113b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610808565b6113ba81611908565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061142482611831565b80519091506000906001600160a01b0316336001600160a01b0316148061145b5750336114508461079d565b6001600160a01b0316145b8061146d5750815161146d9033610651565b9050806114d75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610808565b846001600160a01b031682600001516001600160a01b03161461154b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610808565b6001600160a01b0384166115af5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610808565b6115bf60008484600001516113bd565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166116b457611667816000541190565b156116b4578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b8047101561174e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610808565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461179b576040519150601f19603f3d011682016040523d82523d6000602084013e6117a0565b606091505b50509050806109405760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610808565b610bcb828260405180602001604052806000815250611ba6565b6040805180820190915260008082526020820152611850826000541190565b6118af5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610808565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118fe579392505050565b50600019016118b1565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600090815260116020526040812080548392906119829084906121f0565b90915550505050565b60006001600160a01b0384163b15611a8d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119cf903390899088908890600401612118565b602060405180830381600087803b1580156119e957600080fd5b505af1925050508015611a19575060408051601f3d908101601f19168201909252611a169181019061203e565b60015b611a73573d808015611a47576040519150601f19603f3d011682016040523d82523d6000602084013e611a4c565b606091505b508051611a6b5760405162461bcd60e51b81526004016108089061219d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a91565b5060015b949350505050565b6060600b805461071a9061227e565b606081611acc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611af65780611ae0816122b9565b9150611aef9050600a83612208565b9150611ad0565b60008167ffffffffffffffff811115611b1157611b1161232a565b6040519080825280601f01601f191660200182016040528015611b3b576020820181803683370190505b5090505b8415611a9157611b5060018361223b565b9150611b5d600a866122d4565b611b689060306121f0565b60f81b818381518110611b7d57611b7d612314565b60200101906001600160f81b031916908160001a905350611b9f600a86612208565b9450611b3f565b61094083838360016000546001600160a01b038516611c115760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610808565b83611c6f5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610808565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611d685760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611d5c57611d40600088848861198b565b611d5c5760405162461bcd60e51b81526004016108089061219d565b60019182019101611ced565b506000556116f7565b828054611d7d9061227e565b90600052602060002090601f016020900481019282611d9f5760008555611de5565b82601f10611db857805160ff1916838001178555611de5565b82800160010185558215611de5579182015b82811115611de5578251825591602001919060010190611dca565b50611df1929150611df5565b5090565b5b80821115611df15760008155600101611df6565b600067ffffffffffffffff80841115611e2557611e2561232a565b604051601f8501601f19908116603f01168101908282118183101715611e4d57611e4d61232a565b81604052809350858152868686011115611e6657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e9757600080fd5b919050565b80358015158114611e9757600080fd5b600060208284031215611ebe57600080fd5b61121482611e80565b60008060408385031215611eda57600080fd5b611ee383611e80565b9150611ef160208401611e80565b90509250929050565b600080600060608486031215611f0f57600080fd5b611f1884611e80565b9250611f2660208501611e80565b9150604084013590509250925092565b60008060008060808587031215611f4c57600080fd5b611f5585611e80565b9350611f6360208601611e80565b925060408501359150606085013567ffffffffffffffff811115611f8657600080fd5b8501601f81018713611f9757600080fd5b611fa687823560208401611e0a565b91505092959194509250565b60008060408385031215611fc557600080fd5b611fce83611e80565b9150611ef160208401611e9c565b60008060408385031215611fef57600080fd5b611ff883611e80565b946020939093013593505050565b60006020828403121561201857600080fd5b61121482611e9c565b60006020828403121561203357600080fd5b813561121481612340565b60006020828403121561205057600080fd5b815161121481612340565b60006020828403121561206d57600080fd5b813567ffffffffffffffff81111561208457600080fd5b8201601f8101841361209557600080fd5b611a9184823560208401611e0a565b6000602082840312156120b657600080fd5b5035919050565b600081518084526120d5816020860160208601612252565b601f01601f19169290920160200192915050565b600083516120fb818460208801612252565b83519083019061210f818360208801612252565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061214b908301846120bd565b9695505050505050565b60208152600061121460208301846120bd565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008219821115612203576122036122e8565b500190565b600082612217576122176122fe565b500490565b6000816000190483118215151615612236576122366122e8565b500290565b60008282101561224d5761224d6122e8565b500390565b60005b8381101561226d578181015183820152602001612255565b838111156110835750506000910152565b600181811c9082168061229257607f821691505b602082108114156122b357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122cd576122cd6122e8565b5060010190565b6000826122e3576122e36122fe565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113ba57600080fdfea2646970667358221220b09c0a4ff03a433d34b70ad136b5b7304fefb199db3d5e4b845565f9a8ec2e9e64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000011c37937e0800000000000000000000000000000000000000000000000000000000000000008ae00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57333575336d37554c4a38374e715a347173436d6a4b687469723963376946465654704466354172755852442f00000000000000000000

-----Decoded View---------------
Arg [0] : price (uint256): 5000000000000000
Arg [1] : maxSupply (uint256): 2222
Arg [2] : baseUri (string): ipfs://QmW35u3m7ULJ87NqZ4qsCmjKhtir9c7iFFVTpDf5AruXRD/
Arg [3] : freeMintAllowance (uint256): 2
Arg [4] : maxMintPerTx (uint256): 10
Arg [5] : isSaleActive (bool): True
Arg [6] : freeMintIsAllowedUntil (uint256): 1000

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000011c37937e08000
Arg [1] : 00000000000000000000000000000000000000000000000000000000000008ae
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d57333575336d37554c4a38374e715a347173436d6a4b68
Arg [9] : 7469723963376946465654704466354172755852442f00000000000000000000


Deployed Bytecode Sourcemap

40346:5194:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27406:293;;;;;;;;;;-1:-1:-1;27406:293:0;;;;;:::i;:::-;;:::i;:::-;;;6113:14:1;;6106:22;6088:41;;6076:2;6061:18;27406:293:0;;;;;;;;29181:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30743:214::-;;;;;;;;;;-1:-1:-1;30743:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5411:32:1;;;5393:51;;5381:2;5366:18;30743:214:0;5247:203:1;30264:413:0;;;;;;;;;;-1:-1:-1;30264:413:0;;;;;:::i;:::-;;:::i;:::-;;40693:42;;;;;;;;;;;;;;;;;;;16229:25:1;;;16217:2;16202:18;40693:42:0;16083:177:1;40641:45:0;;;;;;;;;;;;;;;;27243:91;;;;;;;;;;-1:-1:-1;27287:7:0;27314:12;27243:91;;31619:162;;;;;;;;;;-1:-1:-1;31619:162:0;;;;;:::i;:::-;;:::i;40513:32::-;;;;;;;;;;;;;;;;44801:380;;;;;;;;;;;;;:::i;40775:48::-;;;;;;;;;;;;;;;;44271:144;;;;;;;;;;-1:-1:-1;44271:144:0;;;;;:::i;:::-;;:::i;31852:177::-;;;;;;;;;;-1:-1:-1;31852:177:0;;;;;:::i;:::-;;:::i;42278:169::-;;;;;;;;;;-1:-1:-1;42278:169:0;;;;;:::i;:::-;;:::i;41626:115::-;;;;;;;;;;-1:-1:-1;41626:115:0;;;;;:::i;:::-;-1:-1:-1;;;;;41711:22:0;41684:7;41711:22;;;:16;:22;;;;;;;41626:115;42604:122;;;;;;;;;;-1:-1:-1;42604:122:0;;;;;:::i;:::-;;:::i;28990:124::-;;;;;;;;;;-1:-1:-1;28990:124:0;;;;;:::i;:::-;;:::i;27763:221::-;;;;;;;;;;-1:-1:-1;27763:221:0;;;;;:::i;:::-;;:::i;7524:103::-;;;;;;;;;;;;;:::i;40742:26::-;;;;;;;;;;-1:-1:-1;40742:26:0;;;;;;;;42734:109;;;;;;;;;;-1:-1:-1;42734:109:0;;;;;:::i;:::-;;:::i;42851:154::-;;;;;;;;;;-1:-1:-1;42851:154:0;;;;;:::i;:::-;;:::i;40443:34::-;;;;;;;;;;;;;;;;6873:87;;;;;;;;;;-1:-1:-1;6946:6:0;;-1:-1:-1;;;;;6946:6:0;6873:87;;41912:96;;;;;;;;;;-1:-1:-1;41912:96:0;;;;;:::i;:::-;;:::i;29350:104::-;;;;;;;;;;;;;:::i;43384:879::-;;;;;;:::i;:::-;;:::i;31029:288::-;;;;;;;;;;-1:-1:-1;31029:288:0;;;;;:::i;:::-;;:::i;42455:141::-;;;;;;;;;;-1:-1:-1;42455:141:0;;;;;:::i;:::-;;:::i;32100:355::-;;;;;;;;;;-1:-1:-1;32100:355:0;;;;;:::i;:::-;;:::i;42016:254::-;;;;;;;;;;-1:-1:-1;42016:254:0;;;;;:::i;:::-;;:::i;29525:335::-;;;;;;;;;;-1:-1:-1;29525:335:0;;;;;:::i;:::-;;:::i;43013:86::-;;;;;;;;;;;;;:::i;45189:348::-;;;;;;;;;;-1:-1:-1;45189:348:0;;;;;:::i;:::-;;:::i;31388:164::-;;;;;;;;;;-1:-1:-1;31388:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31509:25:0;;;31485:4;31509:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31388:164;7782:201;;;;;;;;;;-1:-1:-1;7782:201:0;;;;;:::i;:::-;;:::i;40867:27::-;;;;;;;;;;-1:-1:-1;40867:27:0;;;;;;;;27406:293;27508:4;-1:-1:-1;;;;;;27541:40:0;;-1:-1:-1;;;27541:40:0;;:101;;-1:-1:-1;;;;;;;27594:48:0;;-1:-1:-1;;;27594:48:0;27541:101;:150;;;-1:-1:-1;;;;;;;;;;19789:40:0;;;27655:36;27525:166;27406:293;-1:-1:-1;;27406:293:0:o;29181:100::-;29235:13;29268:5;29261:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29181:100;:::o;30743:214::-;30811:7;30839:16;30847:7;32767:4;32801:12;-1:-1:-1;32791:22:0;32710:111;30839:16;30831:74;;;;-1:-1:-1;;;30831:74:0;;15523:2:1;30831:74:0;;;15505:21:1;15562:2;15542:18;;;15535:30;15601:34;15581:18;;;15574:62;-1:-1:-1;;;15652:18:1;;;15645:43;15705:19;;30831:74:0;;;;;;;;;-1:-1:-1;30925:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30925:24:0;;30743:214::o;30264:413::-;30337:13;30353:24;30369:7;30353:15;:24::i;:::-;30337:40;;30402:5;-1:-1:-1;;;;;30396:11:0;:2;-1:-1:-1;;;;;30396:11:0;;;30388:58;;;;-1:-1:-1;;;30388:58:0;;12764:2:1;30388:58:0;;;12746:21:1;12803:2;12783:18;;;12776:30;12842:34;12822:18;;;12815:62;-1:-1:-1;;;12893:18:1;;;12886:32;12935:19;;30388:58:0;12562:398:1;30388:58:0;5677:10;-1:-1:-1;;;;;30481:21:0;;;;:62;;-1:-1:-1;30506:37:0;30523:5;5677:10;31388:164;:::i;30506:37::-;30459:169;;;;-1:-1:-1;;;30459:169:0;;8924:2:1;30459:169:0;;;8906:21:1;8963:2;8943:18;;;8936:30;9002:34;8982:18;;;8975:62;9073:27;9053:18;;;9046:55;9118:19;;30459:169:0;8722:421:1;30459:169:0;30641:28;30650:2;30654:7;30663:5;30641:8;:28::i;:::-;30326:351;30264:413;;:::o;31619:162::-;31745:28;31755:4;31761:2;31765:7;31745:9;:28::i;44801:380::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;1847:1:::1;2445:7;;:19;;2437:63;;;::::0;-1:-1:-1;;;2437:63:0;;14747:2:1;2437:63:0::1;::::0;::::1;14729:21:1::0;14786:2;14766:18;;;14759:30;14825:33;14805:18;;;14798:61;14876:18;;2437:63:0::1;14545:355:1::0;2437:63:0::1;1847:1;2578:7;:18:::0;44940:14:::2;::::0;44880:21:::2;::::0;44914:55:::2;::::0;-1:-1:-1;;;;;44940:14:0::2;44957:11;44967:1;44880:21:::0;44957:11:::2;:::i;:::-;44914:17;:55::i;:::-;45008:14;::::0;44982:55:::2;::::0;-1:-1:-1;;;;;45008:14:0::2;45025:11;45035:1;45025:7:::0;:11:::2;:::i;44982:55::-;45076:14;::::0;45050:55:::2;::::0;-1:-1:-1;;;;;45076:14:0::2;45093:11;45103:1;45093:7:::0;:11:::2;:::i;45050:55::-;45144:14;::::0;45118:55:::2;::::0;-1:-1:-1;;;;;45144:14:0::2;45161:11;45171:1;45161:7:::0;:11:::2;:::i;45118:55::-;-1:-1:-1::0;1803:1:0::1;2757:7;:22:::0;44801:380::o;44271:144::-;44346:11;43205:1;43191:11;:15;:56;;;;;43225:22;;43210:11;:37;;43191:56;43183:89;;;;-1:-1:-1;;;43183:89:0;;7384:2:1;43183:89:0;;;7366:21:1;7423:2;7403:18;;;7396:30;-1:-1:-1;;;7442:18:1;;;7435:50;7502:18;;43183:89:0;7182:344:1;43183:89:0;43321:10;;43306:11;43291:12;;:26;;;;:::i;:::-;:40;;43283:73;;;;-1:-1:-1;;;43283:73:0;;13167:2:1;43283:73:0;;;13149:21:1;13206:2;13186:18;;;13179:30;-1:-1:-1;;;13225:18:1;;;13218:50;13285:18;;43283:73:0;12965:344:1;43283:73:0;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23:::1;7085:68;;;;-1:-1:-1::0;;;7085:68:0::1;;;;;;;:::i;:::-;44380:27:::2;44390:3;44395:11;44380:9;:27::i;31852:177::-:0;31982:39;31999:4;32005:2;32009:7;31982:39;;;;;;;;;;;;:16;:39::i;42278:169::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;42367:15:::1;::::0;::::1;;42366:16;42358:45;;;::::0;-1:-1:-1;;;42358:45:0;;12419:2:1;42358:45:0::1;::::0;::::1;12401:21:1::0;12458:2;12438:18;;;12431:30;-1:-1:-1;;;12477:18:1;;;12470:46;12533:18;;42358:45:0::1;12217:340:1::0;42358:45:0::1;42414:25:::0;;::::1;::::0;:8:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42278:169:::0;:::o;42604:122::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;42681:22:::1;:37:::0;42604:122::o;28990:124::-;29054:7;29081:20;29093:7;29081:11;:20::i;:::-;:25;;28990:124;-1:-1:-1;;28990:124:0:o;27763:221::-;27827:7;-1:-1:-1;;;;;27855:19:0;;27847:75;;;;-1:-1:-1;;;27847:75:0;;9350:2:1;27847:75:0;;;9332:21:1;9389:2;9369:18;;;9362:30;9428:34;9408:18;;;9401:62;-1:-1:-1;;;9479:18:1;;;9472:41;9530:19;;27847:75:0;9148:407:1;27847:75:0;-1:-1:-1;;;;;;27948:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27948:27:0;;27763:221::o;7524:103::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;7589:30:::1;7616:1;7589:18;:30::i;:::-;7524:103::o:0;42734:109::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;42806:14:::1;:29:::0;;-1:-1:-1;;42806:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42734:109::o;42851:154::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;42946:26:::1;:51:::0;42851:154::o;41912:96::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;41981:5:::1;:19:::0;41912:96::o;29350:104::-;29406:13;29439:7;29432:14;;;;;:::i;43384:879::-;43449:11;43205:1;43191:11;:15;:56;;;;;43225:22;;43210:11;:37;;43191:56;43183:89;;;;-1:-1:-1;;;43183:89:0;;7384:2:1;43183:89:0;;;7366:21:1;7423:2;7403:18;;;7396:30;-1:-1:-1;;;7442:18:1;;;7435:50;7502:18;;43183:89:0;7182:344:1;43183:89:0;43321:10;;43306:11;43291:12;;:26;;;;:::i;:::-;:40;;43283:73;;;;-1:-1:-1;;;43283:73:0;;13167:2:1;43283:73:0;;;13149:21:1;13206:2;13186:18;;;13179:30;-1:-1:-1;;;13225:18:1;;;13218:50;13285:18;;43283:73:0;12965:344:1;43283:73:0;43481:14:::1;::::0;::::1;;43473:46;;;::::0;-1:-1:-1;;;43473:46:0;;11720:2:1;43473:46:0::1;::::0;::::1;11702:21:1::0;11759:2;11739:18;;;11732:30;-1:-1:-1;;;11778:18:1;;;11771:49;11837:18;;43473:46:0::1;11518:343:1::0;43473:46:0::1;43532:13;43556:11;43548:5;;:19;;;;:::i;:::-;43532:35;;43599:26;;43584:12;;:41;43580:566;;;43716:10;43642:25;43699:28:::0;;;:16:::1;:28;::::0;;;;;43670:26:::1;::::0;:57:::1;::::0;43699:28;43670:57:::1;:::i;:::-;43642:85:::0;-1:-1:-1;43746:21:0;;43742:393:::1;;43807:17;43792:11;:32;43788:332;;43878:5;::::0;43858:25:::1;::::0;:17;:25:::1;:::i;:::-;43849:34;::::0;;::::1;:::i;:::-;;;43906:50;43926:10;43938:17;43906:19;:50::i;:::-;43788:332;;;44028:5;::::0;44014:19:::1;::::0;:11;:19:::1;:::i;:::-;44005:28;::::0;;::::1;:::i;:::-;;;44056:44;44076:10;44088:11;44056:19;:44::i;:::-;43627:519;43580:566;44179:5;44166:9;:18;;44158:50;;;::::0;-1:-1:-1;;;44158:50:0;;15937:2:1;44158:50:0::1;::::0;::::1;15919:21:1::0;15976:2;15956:18;;;15949:30;-1:-1:-1;;;15995:18:1;;;15988:49;16054:18;;44158:50:0::1;15735:343:1::0;44158:50:0::1;44221:34;44231:10;44243:11;44221:9;:34::i;31029:288::-:0;-1:-1:-1;;;;;31124:24:0;;5677:10;31124:24;;31116:63;;;;-1:-1:-1;;;31116:63:0;;10946:2:1;31116:63:0;;;10928:21:1;10985:2;10965:18;;;10958:30;11024:28;11004:18;;;10997:56;11070:18;;31116:63:0;10744:350:1;31116:63:0;5677:10;31192:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31192:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31192:53:0;;;;;;;;;;31261:48;;6088:41:1;;;31192:42:0;;5677:10;31261:48;;6061:18:1;31261:48:0;;;;;;;31029:288;;:::o;42455:141::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;42542:26:::1;:46:::0;42455:141::o;32100:355::-;32259:28;32269:4;32275:2;32279:7;32259:9;:28::i;:::-;32320:48;32343:4;32349:2;32353:7;32362:5;32320:22;:48::i;:::-;32298:149;;;;-1:-1:-1;;;32298:149:0;;;;;;;:::i;:::-;32100:355;;;;:::o;42016:254::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;42115:10:::1;;42100:12;:25;42092:60;;;::::0;-1:-1:-1;;;42092:60:0;;12068:2:1;42092:60:0::1;::::0;::::1;12050:21:1::0;12107:2;12087:18;;;12080:30;-1:-1:-1;;;12126:18:1;;;12119:52;12188:18;;42092:60:0::1;11866:346:1::0;42092:60:0::1;42187:12;;42171;:28;;42163:63;;;::::0;-1:-1:-1;;;42163:63:0;;12068:2:1;42163:63:0::1;::::0;::::1;12050:21:1::0;12107:2;12087:18;;;12080:30;-1:-1:-1;;;12126:18:1;;;12119:52;12188:18;;42163:63:0::1;11866:346:1::0;42163:63:0::1;42237:10;:25:::0;42016:254::o;29525:335::-;29598:13;29632:16;29640:7;32767:4;32801:12;-1:-1:-1;32791:22:0;32710:111;29632:16;29624:76;;;;-1:-1:-1;;;29624:76:0;;10530:2:1;29624:76:0;;;10512:21:1;10569:2;10549:18;;;10542:30;10608:34;10588:18;;;10581:62;-1:-1:-1;;;10659:18:1;;;10652:45;10714:19;;29624:76:0;10328:411:1;29624:76:0;29713:21;29737:10;:8;:10::i;:::-;29713:34;;29771:7;29765:21;29790:1;29765:26;;:87;;;;;;;;;;;;;;;;;29818:7;29827:18;:7;:16;:18::i;:::-;29801:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29765:87;29758:94;29525:335;-1:-1:-1;;;29525:335:0:o;43013:86::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;43069:15:::1;:22:::0;;-1:-1:-1;;43069:22:0::1;43087:4;43069:22;::::0;;43013:86::o;45189:348::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;45272:7;45268:262:::1;;45296:14;:21:::0;;-1:-1:-1;;;;;45296:21:0;::::1;-1:-1:-1::0;;;;;;45296:21:0;;::::1;;::::0;;42414:25:::1;42278:169:::0;:::o;45268:262::-:1;45339:2;45345:1;45339:7;45335:195;;;45363:14;:21:::0;;-1:-1:-1;;;;;45363:21:0;::::1;-1:-1:-1::0;;;;;;45363:21:0;;::::1;;::::0;;42414:25:::1;42278:169:::0;:::o;45335:195::-:1;45406:2;45412:1;45406:7;45402:128;;;45430:14;:21:::0;;-1:-1:-1;;;;;45430:21:0;::::1;-1:-1:-1::0;;;;;;45430:21:0;;::::1;;::::0;;42414:25:::1;42278:169:::0;:::o;45402:128::-:1;45473:2;45479:1;45473:7;45469:61;;;45497:14;:21:::0;;-1:-1:-1;;;;;45497:21:0;::::1;-1:-1:-1::0;;;;;;45497:21:0;;::::1;;::::0;;45189:348;;:::o;7782:201::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7871:22:0;::::1;7863:73;;;::::0;-1:-1:-1;;;7863:73:0;;6566:2:1;7863:73:0::1;::::0;::::1;6548:21:1::0;6605:2;6585:18;;;6578:30;6644:34;6624:18;;;6617:62;-1:-1:-1;;;6695:18:1;;;6688:36;6741:19;;7863:73:0::1;6364:402:1::0;7863:73:0::1;7947:28;7966:8;7947:18;:28::i;:::-;7782:201:::0;:::o;37490:196::-;37605:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37605:29:0;-1:-1:-1;;;;;37605:29:0;;;;;;;;;37650:28;;37605:24;;37650:28;;;;;;;37490:196;;;:::o;35438:1934::-;35553:35;35591:20;35603:7;35591:11;:20::i;:::-;35666:18;;35553:58;;-1:-1:-1;35624:22:0;;-1:-1:-1;;;;;35650:34:0;5677:10;-1:-1:-1;;;;;35650:34:0;;:83;;;-1:-1:-1;5677:10:0;35697:20;35709:7;35697:11;:20::i;:::-;-1:-1:-1;;;;;35697:36:0;;35650:83;:146;;;-1:-1:-1;35763:18:0;;35746:50;;5677:10;31388:164;:::i;35746:50::-;35624:173;;35818:17;35810:80;;;;-1:-1:-1;;;35810:80:0;;11301:2:1;35810:80:0;;;11283:21:1;11340:2;11320:18;;;11313:30;11379:34;11359:18;;;11352:62;-1:-1:-1;;;11430:18:1;;;11423:48;11488:19;;35810:80:0;11099:414:1;35810:80:0;35933:4;-1:-1:-1;;;;;35911:26:0;:13;:18;;;-1:-1:-1;;;;;35911:26:0;;35903:77;;;;-1:-1:-1;;;35903:77:0;;9762:2:1;35903:77:0;;;9744:21:1;9801:2;9781:18;;;9774:30;9840:34;9820:18;;;9813:62;-1:-1:-1;;;9891:18:1;;;9884:36;9937:19;;35903:77:0;9560:402:1;35903:77:0;-1:-1:-1;;;;;35999:16:0;;35991:66;;;;-1:-1:-1;;;35991:66:0;;7733:2:1;35991:66:0;;;7715:21:1;7772:2;7752:18;;;7745:30;7811:34;7791:18;;;7784:62;-1:-1:-1;;;7862:18:1;;;7855:35;7907:19;;35991:66:0;7531:401:1;35991:66:0;36178:49;36195:1;36199:7;36208:13;:18;;;36178:8;:49::i;:::-;-1:-1:-1;;;;;36515:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;36515:31:0;;;-1:-1:-1;;;;;36515:31:0;;;-1:-1:-1;;36515:31:0;;;;;;;36557:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36557:29:0;;;;;;;;;;;;;36599:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36640:61:0;;;;-1:-1:-1;;;36685:15:0;36640:61;;;;;;36963:11;;;36989:24;;;;;:29;36963:11;;36989:29;36985:275;;37053:20;37061:11;32767:4;32801:12;-1:-1:-1;32791:22:0;32710:111;37053:20;37049:200;;;37126:18;;;37094:24;;;:11;:24;;;;;;;;:50;;37205:28;;;;37163:70;;-1:-1:-1;;;37163:70:0;-1:-1:-1;;;;;;37163:70:0;;;-1:-1:-1;;;;;37094:50:0;;;37163:70;;;;;;;37049:200;36494:773;37303:7;37299:2;-1:-1:-1;;;;;37284:27:0;37293:4;-1:-1:-1;;;;;37284:27:0;;;;;;;;;;;37322:42;35542:1830;;35438:1934;;;:::o;10835:317::-;10950:6;10925:21;:31;;10917:73;;;;-1:-1:-1;;;10917:73:0;;8566:2:1;10917:73:0;;;8548:21:1;8605:2;8585:18;;;8578:30;8644:31;8624:18;;;8617:59;8693:18;;10917:73:0;8364:353:1;10917:73:0;11004:12;11022:9;-1:-1:-1;;;;;11022:14:0;11044:6;11022:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11003:52;;;11074:7;11066:78;;;;-1:-1:-1;;;11066:78:0;;8139:2:1;11066:78:0;;;8121:21:1;8178:2;8158:18;;;8151:30;8217:34;8197:18;;;8190:62;8288:28;8268:18;;;8261:56;8334:19;;11066:78:0;7937:422:1;32829:104:0;32898:27;32908:2;32912:8;32898:27;;;;;;;;;;;;:9;:27::i;28423:505::-;-1:-1:-1;;;;;;;;;;;;;;;;;28526:16:0;28534:7;32767:4;32801:12;-1:-1:-1;32791:22:0;32710:111;28526:16;28518:71;;;;-1:-1:-1;;;28518:71:0;;6973:2:1;28518:71:0;;;6955:21:1;7012:2;6992:18;;;6985:30;7051:34;7031:18;;;7024:62;-1:-1:-1;;;7102:18:1;;;7095:40;7152:19;;28518:71:0;6771:406:1;28518:71:0;28639:7;28619:225;28682:31;28716:17;;;:11;:17;;;;;;;;;28682:51;;;;;;;;;-1:-1:-1;;;;;28682:51:0;;;;;-1:-1:-1;;;28682:51:0;;;;;;;;;;;;28752:28;28748:85;;28808:9;28423:505;-1:-1:-1;;;28423:505:0:o;28748:85::-;-1:-1:-1;;;28659:6:0;28619:225;;8143:191;8236:6;;;-1:-1:-1;;;;;8253:17:0;;;-1:-1:-1;;;;;;8253:17:0;;;;;;;8286:40;;8236:6;;;8253:17;8236:6;;8286:40;;8217:16;;8286:40;8206:128;8143:191;:::o;41498:120::-;-1:-1:-1;;;;;41577:24:0;;;;;;:16;:24;;;;;:33;;41605:5;;41577:24;:33;;41605:5;;41577:33;:::i;:::-;;;;-1:-1:-1;;;;41498:120:0:o;38251:804::-;38406:4;-1:-1:-1;;;;;38427:13:0;;9869:19;:23;38423:625;;38463:72;;-1:-1:-1;;;38463:72:0;;-1:-1:-1;;;;;38463:36:0;;;;;:72;;5677:10;;38514:4;;38520:7;;38529:5;;38463:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38463:72:0;;;;;;;;-1:-1:-1;;38463:72:0;;;;;;;;;;;;:::i;:::-;;;38459:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38709:13:0;;38705:273;;38752:61;;-1:-1:-1;;;38752:61:0;;;;;;;:::i;38705:273::-;38928:6;38922:13;38913:6;38909:2;38905:15;38898:38;38459:534;-1:-1:-1;;;;;;38586:55:0;-1:-1:-1;;;38586:55:0;;-1:-1:-1;38579:62:0;;38423:625;-1:-1:-1;39032:4:0;38423:625;38251:804;;;;;;:::o;41772:109::-;41832:13;41865:8;41858:15;;;;;:::i;3159:723::-;3215:13;3436:10;3432:53;;-1:-1:-1;;3463:10:0;;;;;;;;;;;;-1:-1:-1;;;3463:10:0;;;;;3159:723::o;3432:53::-;3510:5;3495:12;3551:78;3558:9;;3551:78;;3584:8;;;;:::i;:::-;;-1:-1:-1;3607:10:0;;-1:-1:-1;3615:2:0;3607:10;;:::i;:::-;;;3551:78;;;3639:19;3671:6;3661:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3661:17:0;;3639:39;;3689:154;3696:10;;3689:154;;3723:11;3733:1;3723:11;;:::i;:::-;;-1:-1:-1;3792:10:0;3800:2;3792:5;:10;:::i;:::-;3779:24;;:2;:24;:::i;:::-;3766:39;;3749:6;3756;3749:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3749:56:0;;;;;;;;-1:-1:-1;3820:11:0;3829:2;3820:11;;:::i;:::-;;;3689:154;;33296:163;33419:32;33425:2;33429:8;33439:5;33446:4;33857:20;33880:12;-1:-1:-1;;;;;33911:16:0;;33903:62;;;;-1:-1:-1;;;33903:62:0;;13936:2:1;33903:62:0;;;13918:21:1;13975:2;13955:18;;;13948:30;14014:34;13994:18;;;13987:62;-1:-1:-1;;;14065:18:1;;;14058:31;14106:19;;33903:62:0;13734:397:1;33903:62:0;33984:13;33976:66;;;;-1:-1:-1;;;33976:66:0;;14338:2:1;33976:66:0;;;14320:21:1;14377:2;14357:18;;;14350:30;14416:34;14396:18;;;14389:62;-1:-1:-1;;;14467:18:1;;;14460:38;14515:19;;33976:66:0;14136:404:1;33976:66:0;-1:-1:-1;;;;;34386:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;34386:45:0;;-1:-1:-1;;;;;34386:45:0;;;;;;;;;;34442:50;;;;;;;;;;;;;;34505:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;34551:66:0;;;;-1:-1:-1;;;34601:15:0;34551:66;;;;;;;34505:25;;34678:379;34698:8;34694:1;:12;34678:379;;;34733:38;;34758:12;;-1:-1:-1;;;;;34733:38:0;;;34750:1;;34733:38;;34750:1;;34733:38;34790:4;34786:229;;;34845:59;34876:1;34880:2;34884:12;34898:5;34845:22;:59::i;:::-;34815:184;;;;-1:-1:-1;;;34815:184:0;;;;;;;:::i;:::-;35031:14;;;;;34708:3;34678:379;;;-1:-1:-1;35069:12:0;:27;35116:60;32100:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5455:488::-;-1:-1:-1;;;;;5724:15:1;;;5706:34;;5776:15;;5771:2;5756:18;;5749:43;5823:2;5808:18;;5801:34;;;5871:3;5866:2;5851:18;;5844:31;;;5649:4;;5892:45;;5917:19;;5909:6;5892:45;:::i;:::-;5884:53;5455:488;-1:-1:-1;;;;;;5455:488:1:o;6140:219::-;6289:2;6278:9;6271:21;6252:4;6309:44;6349:2;6338:9;6334:18;6326:6;6309:44;:::i;9967:356::-;10169:2;10151:21;;;10188:18;;;10181:30;10247:34;10242:2;10227:18;;10220:62;10314:2;10299:18;;9967:356::o;13314:415::-;13516:2;13498:21;;;13555:2;13535:18;;;13528:30;13594:34;13589:2;13574:18;;13567:62;-1:-1:-1;;;13660:2:1;13645:18;;13638:49;13719:3;13704:19;;13314:415::o;16265:128::-;16305:3;16336:1;16332:6;16329:1;16326:13;16323:39;;;16342:18;;:::i;:::-;-1:-1:-1;16378:9:1;;16265:128::o;16398:120::-;16438:1;16464;16454:35;;16469:18;;:::i;:::-;-1:-1:-1;16503:9:1;;16398:120::o;16523:168::-;16563:7;16629:1;16625;16621:6;16617:14;16614:1;16611:21;16606:1;16599:9;16592:17;16588:45;16585:71;;;16636:18;;:::i;:::-;-1:-1:-1;16676:9:1;;16523:168::o;16696:125::-;16736:4;16764:1;16761;16758:8;16755:34;;;16769:18;;:::i;:::-;-1:-1:-1;16806:9:1;;16696:125::o;16826:258::-;16898:1;16908:113;16922:6;16919:1;16916:13;16908:113;;;16998:11;;;16992:18;16979:11;;;16972:39;16944:2;16937:10;16908:113;;;17039:6;17036:1;17033:13;17030:48;;;-1:-1:-1;;17074:1:1;17056:16;;17049:27;16826:258::o;17089:380::-;17168:1;17164:12;;;;17211;;;17232:61;;17286:4;17278:6;17274:17;17264:27;;17232:61;17339:2;17331:6;17328:14;17308:18;17305:38;17302:161;;;17385:10;17380:3;17376:20;17373:1;17366:31;17420:4;17417:1;17410:15;17448:4;17445:1;17438:15;17302:161;;17089:380;;;:::o;17474:135::-;17513:3;-1:-1:-1;;17534:17:1;;17531:43;;;17554:18;;:::i;:::-;-1:-1:-1;17601:1:1;17590:13;;17474:135::o;17614:112::-;17646:1;17672;17662:35;;17677:18;;:::i;:::-;-1:-1:-1;17711:9:1;;17614:112::o;17731:127::-;17792:10;17787:3;17783:20;17780:1;17773:31;17823:4;17820:1;17813:15;17847:4;17844:1;17837:15;17863:127;17924:10;17919:3;17915:20;17912:1;17905:31;17955:4;17952:1;17945:15;17979:4;17976:1;17969:15;17995:127;18056:10;18051:3;18047:20;18044:1;18037:31;18087:4;18084:1;18077:15;18111:4;18108:1;18101:15;18127:127;18188:10;18183:3;18179:20;18176:1;18169:31;18219:4;18216:1;18209:15;18243:4;18240:1;18233:15;18259:131;-1:-1:-1;;;;;;18333:32:1;;18323:43;;18313:71;;18380:1;18377;18370:12

Swarm Source

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