ETH Price: $2,409.45 (+3.00%)

Token

Time Machines by Project Dark Eye (DEYEMACHINE)
 

Overview

Max Total Supply

1,422 DEYEMACHINE

Holders

420

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 DEYEMACHINE
0xf350394239024622df4bc5aa199639d0b3926007
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:
Machines

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-04-17
*/

// 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/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// Author: Mas C. (Project Dark Eye)

pragma solidity ^0.8.4;








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

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // If the address is allowed in presale one.
        bool presaleOneAllowed;
        // If the address is allowed in presale two.
        bool presaleTwoAllowed;
    }

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Returns if the address is allowed to mint at each stage.
     */
    function _getMintAllowance(address owner) internal view returns (bool, bool) {
        return (_addressData[owner].presaleOneAllowed, _addressData[owner].presaleTwoAllowed);
    }

    /**
     * Sets if the address is allowed to mint at each stage.
     */
    function _setMintAllowance(address owner, bool presaleOneAllowed, bool presaleTwoAllowed) internal {
        _addressData[owner].presaleOneAllowed = presaleOneAllowed;
        _addressData[owner].presaleTwoAllowed = presaleTwoAllowed;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

            _ownerships[startTokenId].addr = to;

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.burned = true;

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

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

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

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

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

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

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


// Author: Mas C. (Project Dark Eye)

pragma solidity ^0.8.0;




contract Machines is Ownable, ERC721DEYE, ReentrancyGuard {
    enum ContractStatus {
        Paused,
        PresaleOne,
        PresaleTwo,
        Public
    }
    ContractStatus public contractStatus = ContractStatus.Paused;

    string  public baseURI;
    uint256 public price = 0.03 ether;
    uint256 public totalMintSupply = 4000;
    uint256 public publicMintTransactionLimit = 5;
    uint256 public presaleOneAllowedCount = 1;
    uint256 public presaleTwoAllowedCount = 3;

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    constructor(string memory contractBaseURI)
    ERC721DEYE ("Time Machines by Project Dark Eye", "DEYEMACHINE") {
        baseURI = contractBaseURI;
    }

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

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

    function mintPublic(uint64 quantity) public payable callerIsUser {
        require(contractStatus == ContractStatus.Public, "Public minting not available"); 
        require(msg.value >= price * quantity, "Not enough ETH sent");
        require(_totalMinted() + quantity <= totalMintSupply, "Not enough supply");
        require(quantity <= publicMintTransactionLimit, "Exceeds allowed transaction limit");

        _safeMint(msg.sender, quantity);
    }

    function mintPresaleOne(uint64 quantity) public payable callerIsUser {
        require(contractStatus == ContractStatus.PresaleOne, "Presale #1 not available");
        require(msg.value >= price * quantity, "Not enough ETH sent");
        require(_numberMinted(msg.sender) + quantity <= mintAllowedQuantityForAddress(msg.sender, ContractStatus.PresaleOne), "Exceeds allowed wallet quantity");

        _safeMint(msg.sender, quantity);
    }

    function mintPresaleTwo(uint64 quantity) public payable callerIsUser {
        require(contractStatus == ContractStatus.PresaleTwo, "Presale #2 not available");
        require(msg.value >= price * quantity, "Not enough ETH sent");
        require(_numberMinted(msg.sender) + quantity <= mintAllowedQuantityForAddress(msg.sender, ContractStatus.PresaleTwo), "Exceeds allowed wallet quantity");

        _safeMint(msg.sender, quantity);
    }

    function mintAllowedQuantityForAddress(address account, ContractStatus stage) public view returns (uint256) {
        if (stage == ContractStatus.Public) {
            return publicMintTransactionLimit;
        }
        (bool presaleOneAllowed, bool presaleTwoAllowed) = _getMintAllowance(account);
        uint256 presaleOneAllowedNum = 0;
        uint256 presaleTwoAllowedNum = 0;
        if (presaleOneAllowed) {
            presaleOneAllowedNum += presaleOneAllowedCount;
            presaleTwoAllowedNum += presaleOneAllowedCount;
        }
        if (presaleTwoAllowed) {
            presaleTwoAllowedNum += presaleTwoAllowedCount;
        }
        if (stage == ContractStatus.PresaleOne) {
            return presaleOneAllowedNum;
        }
        if (stage == ContractStatus.PresaleTwo) {
            return presaleTwoAllowedNum;
        }
        return 0;
    }
    

    // Owner Only

    function setContractStatus(ContractStatus status) public onlyOwner {
        contractStatus = status;
    }

    function setTotalMintSupply(uint256 supply) public onlyOwner {
        totalMintSupply = supply;
    }

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

    function setAllowlist(address[] memory addresses, bool[] memory presaleOneAllowed, bool[] memory presaleTwoAllowed) external onlyOwner {
        require(addresses.length == presaleOneAllowed.length && addresses.length == presaleTwoAllowed.length, "addresses does not match allowance length");
        for (uint256 i = 0; i < addresses.length; i++) {
            _setMintAllowance(addresses[i], presaleOneAllowed[i], presaleTwoAllowed[i]);
        }
    }

    function teamMint(address[] memory addresses, uint64[] memory quantities) external onlyOwner {
        require(addresses.length == quantities.length, "addresses does not match quatities length");
        uint64 totalQuantity = 0;
        for (uint i = 0; i < quantities.length; i++) {
            totalQuantity += quantities[i];
        }
        require(_totalMinted() + totalQuantity <= totalMintSupply, "Not enough supply");
        for (uint i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], quantities[i]);
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"contractBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractStatus","outputs":[{"internalType":"enum Machines.ContractStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"enum Machines.ContractStatus","name":"stage","type":"uint8"}],"name":"mintAllowedQuantityForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"quantity","type":"uint64"}],"name":"mintPresaleOne","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint64","name":"quantity","type":"uint64"}],"name":"mintPresaleTwo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint64","name":"quantity","type":"uint64"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOneAllowedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleTwoAllowedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintTransactionLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"addresses","type":"address[]"},{"internalType":"bool[]","name":"presaleOneAllowed","type":"bool[]"},{"internalType":"bool[]","name":"presaleTwoAllowed","type":"bool[]"}],"name":"setAllowlist","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Machines.ContractStatus","name":"status","type":"uint8"}],"name":"setContractStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setTotalMintSupply","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":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint64[]","name":"quantities","type":"uint64[]"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

6080604052600a805460ff19169055666a94d74f430000600c55610fa0600d556005600e556001600f5560036010553480156200003b57600080fd5b50604051620028bb380380620028bb8339810160408190526200005e91620001ee565b6040518060600160405280602181526020016200289a6021913960408051808201909152600b81526a444559454d414348494e4560a81b6020820152620000a533620000f8565b8151620000ba90600390602085019062000148565b508051620000d090600490602084019062000148565b50600180815560095550508051620000f090600b90602084019062000148565b50506200031d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200015690620002ca565b90600052602060002090601f0160209004810192826200017a5760008555620001c5565b82601f106200019557805160ff1916838001178555620001c5565b82800160010185558215620001c5579182015b82811115620001c5578251825591602001919060010190620001a8565b50620001d3929150620001d7565b5090565b5b80821115620001d35760008155600101620001d8565b600060208083850312156200020257600080fd5b82516001600160401b03808211156200021a57600080fd5b818501915085601f8301126200022f57600080fd5b81518181111562000244576200024462000307565b604051601f8201601f19908116603f011681019083821181831017156200026f576200026f62000307565b8160405282815288868487010111156200028857600080fd5b600093505b82841015620002ac57848401860151818501870152928501926200028d565b82841115620002be5760008684830101525b98975050505050505050565b600181811c90821680620002df57607f821691505b602082108114156200030157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61256d806200032d6000396000f3fe6080604052600436106101f95760003560e01c806385e0832c1161010d578063bc6ba5b8116100a0578063d60ee4bf1161006f578063d60ee4bf1461056a578063d98a815214610580578063e985e9c5146105a0578063ef792104146105e9578063f2fde38b146105ff57600080fd5b8063bc6ba5b8146104fa578063c6ee20d21461050d578063c87b56dd14610534578063d52d621b1461055457600080fd5b8063a035b1fe116100dc578063a035b1fe14610484578063a1968f6d1461049a578063a22cb465146104ba578063b88d4fde146104da57600080fd5b806385e0832c1461041b5780638da5cb5b146104315780639493e3311461044f57806395d89b411461046f57600080fd5b806323b872dd1161019057806355f804b31161015f57806355f804b3146103915780636352211e146103b15780636c0360eb146103d157806370a08231146103e6578063715018a61461040657600080fd5b806323b872dd1461031c578063280e53f61461033c5780633ccfd60b1461035c57806342842e0e1461037157600080fd5b80630d1d7ae5116101cc5780630d1d7ae5146102af57806311f706ec146102c257806312c6c495146102e257806318160ddd146102f557600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004612109565b61061f565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610671565b60405161022a919061229a565b34801561026157600080fd5b506102756102703660046121a6565b610703565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611f90565b610747565b005b6102ad6102bd3660046121bf565b6107d5565b3480156102ce57600080fd5b506102ad6102dd366004612143565b61097a565b6102ad6102f03660046121bf565b6109cb565b34801561030157600080fd5b5060025460015403600019015b60405190815260200161022a565b34801561032857600080fd5b506102ad610337366004611e85565b610b0c565b34801561034857600080fd5b506102ad6103573660046121a6565b610b17565b34801561036857600080fd5b506102ad610b46565b34801561037d57600080fd5b506102ad61038c366004611e85565b610c68565b34801561039d57600080fd5b506102ad6103ac36600461215e565b610c83565b3480156103bd57600080fd5b506102756103cc3660046121a6565b610cc4565b3480156103dd57600080fd5b50610248610cd6565b3480156103f257600080fd5b5061030e610401366004611e37565b610d64565b34801561041257600080fd5b506102ad610db2565b34801561042757600080fd5b5061030e600d5481565b34801561043d57600080fd5b506000546001600160a01b0316610275565b34801561045b57600080fd5b506102ad61046a366004612041565b610de8565b34801561047b57600080fd5b50610248610f8b565b34801561049057600080fd5b5061030e600c5481565b3480156104a657600080fd5b506102ad6104b5366004611fba565b610f9a565b3480156104c657600080fd5b506102ad6104d5366004611f3c565b6110ed565b3480156104e657600080fd5b506102ad6104f5366004611ec1565b611183565b6102ad6105083660046121bf565b6111ce565b34801561051957600080fd5b50600a546105279060ff1681565b60405161022a9190612272565b34801561054057600080fd5b5061024861054f3660046121a6565b611294565b34801561056057600080fd5b5061030e60105481565b34801561057657600080fd5b5061030e600e5481565b34801561058c57600080fd5b5061030e61059b366004611f66565b611319565b3480156105ac57600080fd5b5061021e6105bb366004611e52565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156105f557600080fd5b5061030e600f5481565b34801561060b57600080fd5b506102ad61061a366004611e37565b611401565b60006001600160e01b031982166380ac58cd60e01b148061065057506001600160e01b03198216635b5e139f60e01b145b8061066b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461068090612449565b80601f01602080910402602001604051908101604052809291908181526020018280546106ac90612449565b80156106f95780601f106106ce576101008083540402835291602001916106f9565b820191906000526020600020905b8154815290600101906020018083116106dc57829003601f168201915b5050505050905090565b600061070e82611499565b61072b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061075282610cc4565b9050806001600160a01b0316836001600160a01b031614156107875760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107a757506107a581336105bb565b155b156107c5576040516367d9dca160e11b815260040160405180910390fd5b6107d08383836114d2565b505050565b3233146107fd5760405162461bcd60e51b81526004016107f4906122ad565b60405180910390fd5b6003600a5460ff166003811115610816576108166124df565b146108635760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206e6f7420617661696c61626c650000000060448201526064016107f4565b806001600160401b0316600c5461087a91906123e7565b3410156108995760405162461bcd60e51b81526004016107f490612319565b600d54816001600160401b03166108b36001546000190190565b6108bd9190612399565b11156108ff5760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b60448201526064016107f4565b600e54816001600160401b031611156109645760405162461bcd60e51b815260206004820152602160248201527f4578636565647320616c6c6f776564207472616e73616374696f6e206c696d696044820152601d60fa1b60648201526084016107f4565b61097733826001600160401b031661152e565b50565b6000546001600160a01b031633146109a45760405162461bcd60e51b81526004016107f4906122e4565b600a805482919060ff191660018360038111156109c3576109c36124df565b021790555050565b3233146109ea5760405162461bcd60e51b81526004016107f4906122ad565b6002600a5460ff166003811115610a0357610a036124df565b14610a505760405162461bcd60e51b815260206004820152601860248201527f50726573616c65202332206e6f7420617661696c61626c65000000000000000060448201526064016107f4565b806001600160401b0316600c54610a6791906123e7565b341015610a865760405162461bcd60e51b81526004016107f490612319565b610a91336002611319565b33600090815260066020526040902054610abe906001600160401b0384811691600160401b900416612399565b11156109645760405162461bcd60e51b815260206004820152601f60248201527f4578636565647320616c6c6f7765642077616c6c6574207175616e746974790060448201526064016107f4565b6107d0838383611548565b6000546001600160a01b03163314610b415760405162461bcd60e51b81526004016107f4906122e4565b600d55565b6000546001600160a01b03163314610b705760405162461bcd60e51b81526004016107f4906122e4565b60026009541415610bc35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107f4565b6002600955604051600090339047908381818185875af1925050503d8060008114610c0a576040519150601f19603f3d011682016040523d82523d6000602084013e610c0f565b606091505b5050905080610c605760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c000000000000000060448201526064016107f4565b506001600955565b6107d083838360405180602001604052806000815250611183565b6000546001600160a01b03163314610cad5760405162461bcd60e51b81526004016107f4906122e4565b8051610cc090600b906020840190611c15565b5050565b6000610ccf82611714565b5192915050565b600b8054610ce390612449565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0f90612449565b8015610d5c5780601f10610d3157610100808354040283529160200191610d5c565b820191906000526020600020905b815481529060010190602001808311610d3f57829003601f168201915b505050505081565b60006001600160a01b038216610d8d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610ddc5760405162461bcd60e51b81526004016107f4906122e4565b610de66000611801565b565b6000546001600160a01b03163314610e125760405162461bcd60e51b81526004016107f4906122e4565b8051825114610e755760405162461bcd60e51b815260206004820152602960248201527f61646472657373657320646f6573206e6f74206d6174636820717561746974696044820152680cae640d8cadccee8d60bb1b60648201526084016107f4565b6000805b8251811015610ebb57828181518110610e9457610e946124f5565b602002602001015182610ea791906123b1565b915080610eb381612484565b915050610e79565b50600d54816001600160401b0316610ed66001546000190190565b610ee09190612399565b1115610f225760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b60448201526064016107f4565b60005b8351811015610f8557610f73848281518110610f4357610f436124f5565b6020026020010151848381518110610f5d57610f5d6124f5565b60200260200101516001600160401b031661152e565b80610f7d81612484565b915050610f25565b50505050565b60606004805461068090612449565b6000546001600160a01b03163314610fc45760405162461bcd60e51b81526004016107f4906122e4565b81518351148015610fd6575080518351145b6110345760405162461bcd60e51b815260206004820152602960248201527f61646472657373657320646f6573206e6f74206d6174636820616c6c6f77616e6044820152680c6ca40d8cadccee8d60bb1b60648201526084016107f4565b60005b8351811015610f85576110db848281518110611055576110556124f5565b602002602001015184838151811061106f5761106f6124f5565b6020026020010151848481518110611089576110896124f5565b60200260200101516001600160a01b0390921660009081526006602052604090208054921515600160c81b0260ff60c81b19921515600160c01b029290921661ffff60c01b1990931692909217179055565b806110e581612484565b915050611037565b6001600160a01b0382163314156111175760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61118e848484611548565b6001600160a01b0383163b151580156111b057506111ae84848484611851565b155b15610f85576040516368d2bf6b60e11b815260040160405180910390fd5b3233146111ed5760405162461bcd60e51b81526004016107f4906122ad565b6001600a5460ff166003811115611206576112066124df565b146112535760405162461bcd60e51b815260206004820152601860248201527f50726573616c65202331206e6f7420617661696c61626c65000000000000000060448201526064016107f4565b806001600160401b0316600c5461126a91906123e7565b3410156112895760405162461bcd60e51b81526004016107f490612319565b610a91336001611319565b606061129f82611499565b6112bc57604051630a14c4b560e41b815260040160405180910390fd5b60006112c6611949565b90508051600014156112e75760405180602001604052806000815250611312565b806112f184611958565b604051602001611302929190612206565b6040516020818303038152906040525b9392505050565b6000600382600381111561132f5761132f6124df565b141561133e5750600e5461066b565b6001600160a01b03831660009081526006602052604081205460ff600160c01b8204811692600160c81b909204169080831561139457600f546113819083612399565b9150600f54816113919190612399565b90505b82156113aa576010546113a79082612399565b90505b60018660038111156113be576113be6124df565b14156113cf5750925061066b915050565b60028660038111156113e3576113e36124df565b14156113f457935061066b92505050565b5060009695505050505050565b6000546001600160a01b0316331461142b5760405162461bcd60e51b81526004016107f4906122e4565b6001600160a01b0381166114905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f4565b61097781611801565b6000816001111580156114ad575060015482105b801561066b575050600090815260056020526040902054600160a01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610cc0828260405180602001604052806000815250611a55565b600061155382611714565b9050836001600160a01b031681600001516001600160a01b03161461158a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115a857506115a885336105bb565b806115c35750336115b884610703565b6001600160a01b0316145b9050806115e357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661160a57604051633a954ecd60e21b815260040160405180910390fd5b611616600084876114d2565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600590935281842080546001600160a01b03191690911781559187018084529220805491939091166116c85760015482146116c85780546001600160a01b0319166001600160a01b0389161781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152818060011115801561173b575060015481105b156117e8576000818152600560209081526040918290208251808401909352546001600160a01b0381168352600160a01b900460ff1615159082018190526117e65780516001600160a01b031615611794579392505050565b50600019016000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910460ff16151591830191909152156117e1579392505050565b611794565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611886903390899088908890600401612235565b602060405180830381600087803b1580156118a057600080fd5b505af19250505080156118d0575060408051601f3d908101601f191682019092526118cd91810190612126565b60015b61192b573d8080156118fe576040519150601f19603f3d011682016040523d82523d6000602084013e611903565b606091505b508051611923576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461068090612449565b60608161197c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119a6578061199081612484565b915061199f9050600a836123d3565b9150611980565b6000816001600160401b038111156119c0576119c061250b565b6040519080825280601f01601f1916602001820160405280156119ea576020820181803683370190505b5090505b8415611941576119ff600183612406565b9150611a0c600a8661249f565b611a17906030612399565b60f81b818381518110611a2c57611a2c6124f5565b60200101906001600160f81b031916908160001a905350611a4e600a866123d3565b94506119ee565b6107d0838383600180546001600160a01b038516611a8557604051622e076360e81b815260040160405180910390fd5b83611aa35760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526006602090815260408083208054600160401b6001600160401b038083168c01811667ffffffffffffffff198416811783900482168d019091169091026fffffffffffffffffffffffffffffffff19909216171790558483526005909152902080546001600160a01b031916909117905580808501838015611b3d57506001600160a01b0387163b15155b15611bc6575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b8e6000888480600101955088611851565b611bab576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611b43578260015414611bc157600080fd5b611c0c565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611bc7575b5060015561170d565b828054611c2190612449565b90600052602060002090601f016020900481019282611c435760008555611c89565b82601f10611c5c57805160ff1916838001178555611c89565b82800160010185558215611c89579182015b82811115611c89578251825591602001919060010190611c6e565b50611c95929150611c99565b5090565b5b80821115611c955760008155600101611c9a565b60006001600160401b03831115611cc757611cc761250b565b611cda601f8401601f1916602001612346565b9050828152838383011115611cee57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611d1c57600080fd5b919050565b600082601f830112611d3257600080fd5b81356020611d47611d4283612376565b612346565b80838252828201915082860187848660051b8901011115611d6757600080fd5b60005b85811015611d8d57611d7b82611d05565b84529284019290840190600101611d6a565b5090979650505050505050565b600082601f830112611dab57600080fd5b81356020611dbb611d4283612376565b80838252828201915082860187848660051b8901011115611ddb57600080fd5b60005b85811015611d8d57611def82611e01565b84529284019290840190600101611dde565b80358015158114611d1c57600080fd5b803560048110611d1c57600080fd5b80356001600160401b0381168114611d1c57600080fd5b600060208284031215611e4957600080fd5b61131282611d05565b60008060408385031215611e6557600080fd5b611e6e83611d05565b9150611e7c60208401611d05565b90509250929050565b600080600060608486031215611e9a57600080fd5b611ea384611d05565b9250611eb160208501611d05565b9150604084013590509250925092565b60008060008060808587031215611ed757600080fd5b611ee085611d05565b9350611eee60208601611d05565b92506040850135915060608501356001600160401b03811115611f1057600080fd5b8501601f81018713611f2157600080fd5b611f3087823560208401611cae565b91505092959194509250565b60008060408385031215611f4f57600080fd5b611f5883611d05565b9150611e7c60208401611e01565b60008060408385031215611f7957600080fd5b611f8283611d05565b9150611e7c60208401611e11565b60008060408385031215611fa357600080fd5b611fac83611d05565b946020939093013593505050565b600080600060608486031215611fcf57600080fd5b83356001600160401b0380821115611fe657600080fd5b611ff287838801611d21565b9450602086013591508082111561200857600080fd5b61201487838801611d9a565b9350604086013591508082111561202a57600080fd5b5061203786828701611d9a565b9150509250925092565b6000806040838503121561205457600080fd5b82356001600160401b038082111561206b57600080fd5b61207786838701611d21565b935060209150818501358181111561208e57600080fd5b85019050601f810186136120a157600080fd5b80356120af611d4282612376565b80828252848201915084840189868560051b87010111156120cf57600080fd5b600094505b838510156120f9576120e581611e20565b8352600194909401939185019185016120d4565b5080955050505050509250929050565b60006020828403121561211b57600080fd5b813561131281612521565b60006020828403121561213857600080fd5b815161131281612521565b60006020828403121561215557600080fd5b61131282611e11565b60006020828403121561217057600080fd5b81356001600160401b0381111561218657600080fd5b8201601f8101841361219757600080fd5b61194184823560208401611cae565b6000602082840312156121b857600080fd5b5035919050565b6000602082840312156121d157600080fd5b61131282611e20565b600081518084526121f281602086016020860161241d565b601f01601f19169290920160200192915050565b6000835161221881846020880161241d565b83519083019061222c81836020880161241d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612268908301846121da565b9695505050505050565b602081016004831061229457634e487b7160e01b600052602160045260246000fd5b91905290565b60208152600061131260208301846121da565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260139082015272139bdd08195b9bdd59da08115512081cd95b9d606a1b604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561236e5761236e61250b565b604052919050565b60006001600160401b0382111561238f5761238f61250b565b5060051b60200190565b600082198211156123ac576123ac6124b3565b500190565b60006001600160401b0380831681851680830382111561222c5761222c6124b3565b6000826123e2576123e26124c9565b500490565b6000816000190483118215151615612401576124016124b3565b500290565b600082821015612418576124186124b3565b500390565b60005b83811015612438578181015183820152602001612420565b83811115610f855750506000910152565b600181811c9082168061245d57607f821691505b6020821081141561247e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612498576124986124b3565b5060010190565b6000826124ae576124ae6124c9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461097757600080fdfea26469706673582212201ef39ae6d3829f1dde646c216c24cdd5f05dd94cba6189bc38d14af05e7441fd64736f6c6343000807003354696d65204d616368696e65732062792050726f6a656374204461726b2045796500000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d525a48656472386f685455355066664444433951465a4635514439703859533673554e7352777478637834622f00000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806385e0832c1161010d578063bc6ba5b8116100a0578063d60ee4bf1161006f578063d60ee4bf1461056a578063d98a815214610580578063e985e9c5146105a0578063ef792104146105e9578063f2fde38b146105ff57600080fd5b8063bc6ba5b8146104fa578063c6ee20d21461050d578063c87b56dd14610534578063d52d621b1461055457600080fd5b8063a035b1fe116100dc578063a035b1fe14610484578063a1968f6d1461049a578063a22cb465146104ba578063b88d4fde146104da57600080fd5b806385e0832c1461041b5780638da5cb5b146104315780639493e3311461044f57806395d89b411461046f57600080fd5b806323b872dd1161019057806355f804b31161015f57806355f804b3146103915780636352211e146103b15780636c0360eb146103d157806370a08231146103e6578063715018a61461040657600080fd5b806323b872dd1461031c578063280e53f61461033c5780633ccfd60b1461035c57806342842e0e1461037157600080fd5b80630d1d7ae5116101cc5780630d1d7ae5146102af57806311f706ec146102c257806312c6c495146102e257806318160ddd146102f557600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004612109565b61061f565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610671565b60405161022a919061229a565b34801561026157600080fd5b506102756102703660046121a6565b610703565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611f90565b610747565b005b6102ad6102bd3660046121bf565b6107d5565b3480156102ce57600080fd5b506102ad6102dd366004612143565b61097a565b6102ad6102f03660046121bf565b6109cb565b34801561030157600080fd5b5060025460015403600019015b60405190815260200161022a565b34801561032857600080fd5b506102ad610337366004611e85565b610b0c565b34801561034857600080fd5b506102ad6103573660046121a6565b610b17565b34801561036857600080fd5b506102ad610b46565b34801561037d57600080fd5b506102ad61038c366004611e85565b610c68565b34801561039d57600080fd5b506102ad6103ac36600461215e565b610c83565b3480156103bd57600080fd5b506102756103cc3660046121a6565b610cc4565b3480156103dd57600080fd5b50610248610cd6565b3480156103f257600080fd5b5061030e610401366004611e37565b610d64565b34801561041257600080fd5b506102ad610db2565b34801561042757600080fd5b5061030e600d5481565b34801561043d57600080fd5b506000546001600160a01b0316610275565b34801561045b57600080fd5b506102ad61046a366004612041565b610de8565b34801561047b57600080fd5b50610248610f8b565b34801561049057600080fd5b5061030e600c5481565b3480156104a657600080fd5b506102ad6104b5366004611fba565b610f9a565b3480156104c657600080fd5b506102ad6104d5366004611f3c565b6110ed565b3480156104e657600080fd5b506102ad6104f5366004611ec1565b611183565b6102ad6105083660046121bf565b6111ce565b34801561051957600080fd5b50600a546105279060ff1681565b60405161022a9190612272565b34801561054057600080fd5b5061024861054f3660046121a6565b611294565b34801561056057600080fd5b5061030e60105481565b34801561057657600080fd5b5061030e600e5481565b34801561058c57600080fd5b5061030e61059b366004611f66565b611319565b3480156105ac57600080fd5b5061021e6105bb366004611e52565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156105f557600080fd5b5061030e600f5481565b34801561060b57600080fd5b506102ad61061a366004611e37565b611401565b60006001600160e01b031982166380ac58cd60e01b148061065057506001600160e01b03198216635b5e139f60e01b145b8061066b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461068090612449565b80601f01602080910402602001604051908101604052809291908181526020018280546106ac90612449565b80156106f95780601f106106ce576101008083540402835291602001916106f9565b820191906000526020600020905b8154815290600101906020018083116106dc57829003601f168201915b5050505050905090565b600061070e82611499565b61072b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061075282610cc4565b9050806001600160a01b0316836001600160a01b031614156107875760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107a757506107a581336105bb565b155b156107c5576040516367d9dca160e11b815260040160405180910390fd5b6107d08383836114d2565b505050565b3233146107fd5760405162461bcd60e51b81526004016107f4906122ad565b60405180910390fd5b6003600a5460ff166003811115610816576108166124df565b146108635760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206e6f7420617661696c61626c650000000060448201526064016107f4565b806001600160401b0316600c5461087a91906123e7565b3410156108995760405162461bcd60e51b81526004016107f490612319565b600d54816001600160401b03166108b36001546000190190565b6108bd9190612399565b11156108ff5760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b60448201526064016107f4565b600e54816001600160401b031611156109645760405162461bcd60e51b815260206004820152602160248201527f4578636565647320616c6c6f776564207472616e73616374696f6e206c696d696044820152601d60fa1b60648201526084016107f4565b61097733826001600160401b031661152e565b50565b6000546001600160a01b031633146109a45760405162461bcd60e51b81526004016107f4906122e4565b600a805482919060ff191660018360038111156109c3576109c36124df565b021790555050565b3233146109ea5760405162461bcd60e51b81526004016107f4906122ad565b6002600a5460ff166003811115610a0357610a036124df565b14610a505760405162461bcd60e51b815260206004820152601860248201527f50726573616c65202332206e6f7420617661696c61626c65000000000000000060448201526064016107f4565b806001600160401b0316600c54610a6791906123e7565b341015610a865760405162461bcd60e51b81526004016107f490612319565b610a91336002611319565b33600090815260066020526040902054610abe906001600160401b0384811691600160401b900416612399565b11156109645760405162461bcd60e51b815260206004820152601f60248201527f4578636565647320616c6c6f7765642077616c6c6574207175616e746974790060448201526064016107f4565b6107d0838383611548565b6000546001600160a01b03163314610b415760405162461bcd60e51b81526004016107f4906122e4565b600d55565b6000546001600160a01b03163314610b705760405162461bcd60e51b81526004016107f4906122e4565b60026009541415610bc35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107f4565b6002600955604051600090339047908381818185875af1925050503d8060008114610c0a576040519150601f19603f3d011682016040523d82523d6000602084013e610c0f565b606091505b5050905080610c605760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c000000000000000060448201526064016107f4565b506001600955565b6107d083838360405180602001604052806000815250611183565b6000546001600160a01b03163314610cad5760405162461bcd60e51b81526004016107f4906122e4565b8051610cc090600b906020840190611c15565b5050565b6000610ccf82611714565b5192915050565b600b8054610ce390612449565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0f90612449565b8015610d5c5780601f10610d3157610100808354040283529160200191610d5c565b820191906000526020600020905b815481529060010190602001808311610d3f57829003601f168201915b505050505081565b60006001600160a01b038216610d8d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610ddc5760405162461bcd60e51b81526004016107f4906122e4565b610de66000611801565b565b6000546001600160a01b03163314610e125760405162461bcd60e51b81526004016107f4906122e4565b8051825114610e755760405162461bcd60e51b815260206004820152602960248201527f61646472657373657320646f6573206e6f74206d6174636820717561746974696044820152680cae640d8cadccee8d60bb1b60648201526084016107f4565b6000805b8251811015610ebb57828181518110610e9457610e946124f5565b602002602001015182610ea791906123b1565b915080610eb381612484565b915050610e79565b50600d54816001600160401b0316610ed66001546000190190565b610ee09190612399565b1115610f225760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b60448201526064016107f4565b60005b8351811015610f8557610f73848281518110610f4357610f436124f5565b6020026020010151848381518110610f5d57610f5d6124f5565b60200260200101516001600160401b031661152e565b80610f7d81612484565b915050610f25565b50505050565b60606004805461068090612449565b6000546001600160a01b03163314610fc45760405162461bcd60e51b81526004016107f4906122e4565b81518351148015610fd6575080518351145b6110345760405162461bcd60e51b815260206004820152602960248201527f61646472657373657320646f6573206e6f74206d6174636820616c6c6f77616e6044820152680c6ca40d8cadccee8d60bb1b60648201526084016107f4565b60005b8351811015610f85576110db848281518110611055576110556124f5565b602002602001015184838151811061106f5761106f6124f5565b6020026020010151848481518110611089576110896124f5565b60200260200101516001600160a01b0390921660009081526006602052604090208054921515600160c81b0260ff60c81b19921515600160c01b029290921661ffff60c01b1990931692909217179055565b806110e581612484565b915050611037565b6001600160a01b0382163314156111175760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61118e848484611548565b6001600160a01b0383163b151580156111b057506111ae84848484611851565b155b15610f85576040516368d2bf6b60e11b815260040160405180910390fd5b3233146111ed5760405162461bcd60e51b81526004016107f4906122ad565b6001600a5460ff166003811115611206576112066124df565b146112535760405162461bcd60e51b815260206004820152601860248201527f50726573616c65202331206e6f7420617661696c61626c65000000000000000060448201526064016107f4565b806001600160401b0316600c5461126a91906123e7565b3410156112895760405162461bcd60e51b81526004016107f490612319565b610a91336001611319565b606061129f82611499565b6112bc57604051630a14c4b560e41b815260040160405180910390fd5b60006112c6611949565b90508051600014156112e75760405180602001604052806000815250611312565b806112f184611958565b604051602001611302929190612206565b6040516020818303038152906040525b9392505050565b6000600382600381111561132f5761132f6124df565b141561133e5750600e5461066b565b6001600160a01b03831660009081526006602052604081205460ff600160c01b8204811692600160c81b909204169080831561139457600f546113819083612399565b9150600f54816113919190612399565b90505b82156113aa576010546113a79082612399565b90505b60018660038111156113be576113be6124df565b14156113cf5750925061066b915050565b60028660038111156113e3576113e36124df565b14156113f457935061066b92505050565b5060009695505050505050565b6000546001600160a01b0316331461142b5760405162461bcd60e51b81526004016107f4906122e4565b6001600160a01b0381166114905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f4565b61097781611801565b6000816001111580156114ad575060015482105b801561066b575050600090815260056020526040902054600160a01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610cc0828260405180602001604052806000815250611a55565b600061155382611714565b9050836001600160a01b031681600001516001600160a01b03161461158a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115a857506115a885336105bb565b806115c35750336115b884610703565b6001600160a01b0316145b9050806115e357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661160a57604051633a954ecd60e21b815260040160405180910390fd5b611616600084876114d2565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600590935281842080546001600160a01b03191690911781559187018084529220805491939091166116c85760015482146116c85780546001600160a01b0319166001600160a01b0389161781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152818060011115801561173b575060015481105b156117e8576000818152600560209081526040918290208251808401909352546001600160a01b0381168352600160a01b900460ff1615159082018190526117e65780516001600160a01b031615611794579392505050565b50600019016000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910460ff16151591830191909152156117e1579392505050565b611794565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611886903390899088908890600401612235565b602060405180830381600087803b1580156118a057600080fd5b505af19250505080156118d0575060408051601f3d908101601f191682019092526118cd91810190612126565b60015b61192b573d8080156118fe576040519150601f19603f3d011682016040523d82523d6000602084013e611903565b606091505b508051611923576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461068090612449565b60608161197c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119a6578061199081612484565b915061199f9050600a836123d3565b9150611980565b6000816001600160401b038111156119c0576119c061250b565b6040519080825280601f01601f1916602001820160405280156119ea576020820181803683370190505b5090505b8415611941576119ff600183612406565b9150611a0c600a8661249f565b611a17906030612399565b60f81b818381518110611a2c57611a2c6124f5565b60200101906001600160f81b031916908160001a905350611a4e600a866123d3565b94506119ee565b6107d0838383600180546001600160a01b038516611a8557604051622e076360e81b815260040160405180910390fd5b83611aa35760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526006602090815260408083208054600160401b6001600160401b038083168c01811667ffffffffffffffff198416811783900482168d019091169091026fffffffffffffffffffffffffffffffff19909216171790558483526005909152902080546001600160a01b031916909117905580808501838015611b3d57506001600160a01b0387163b15155b15611bc6575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b8e6000888480600101955088611851565b611bab576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611b43578260015414611bc157600080fd5b611c0c565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611bc7575b5060015561170d565b828054611c2190612449565b90600052602060002090601f016020900481019282611c435760008555611c89565b82601f10611c5c57805160ff1916838001178555611c89565b82800160010185558215611c89579182015b82811115611c89578251825591602001919060010190611c6e565b50611c95929150611c99565b5090565b5b80821115611c955760008155600101611c9a565b60006001600160401b03831115611cc757611cc761250b565b611cda601f8401601f1916602001612346565b9050828152838383011115611cee57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611d1c57600080fd5b919050565b600082601f830112611d3257600080fd5b81356020611d47611d4283612376565b612346565b80838252828201915082860187848660051b8901011115611d6757600080fd5b60005b85811015611d8d57611d7b82611d05565b84529284019290840190600101611d6a565b5090979650505050505050565b600082601f830112611dab57600080fd5b81356020611dbb611d4283612376565b80838252828201915082860187848660051b8901011115611ddb57600080fd5b60005b85811015611d8d57611def82611e01565b84529284019290840190600101611dde565b80358015158114611d1c57600080fd5b803560048110611d1c57600080fd5b80356001600160401b0381168114611d1c57600080fd5b600060208284031215611e4957600080fd5b61131282611d05565b60008060408385031215611e6557600080fd5b611e6e83611d05565b9150611e7c60208401611d05565b90509250929050565b600080600060608486031215611e9a57600080fd5b611ea384611d05565b9250611eb160208501611d05565b9150604084013590509250925092565b60008060008060808587031215611ed757600080fd5b611ee085611d05565b9350611eee60208601611d05565b92506040850135915060608501356001600160401b03811115611f1057600080fd5b8501601f81018713611f2157600080fd5b611f3087823560208401611cae565b91505092959194509250565b60008060408385031215611f4f57600080fd5b611f5883611d05565b9150611e7c60208401611e01565b60008060408385031215611f7957600080fd5b611f8283611d05565b9150611e7c60208401611e11565b60008060408385031215611fa357600080fd5b611fac83611d05565b946020939093013593505050565b600080600060608486031215611fcf57600080fd5b83356001600160401b0380821115611fe657600080fd5b611ff287838801611d21565b9450602086013591508082111561200857600080fd5b61201487838801611d9a565b9350604086013591508082111561202a57600080fd5b5061203786828701611d9a565b9150509250925092565b6000806040838503121561205457600080fd5b82356001600160401b038082111561206b57600080fd5b61207786838701611d21565b935060209150818501358181111561208e57600080fd5b85019050601f810186136120a157600080fd5b80356120af611d4282612376565b80828252848201915084840189868560051b87010111156120cf57600080fd5b600094505b838510156120f9576120e581611e20565b8352600194909401939185019185016120d4565b5080955050505050509250929050565b60006020828403121561211b57600080fd5b813561131281612521565b60006020828403121561213857600080fd5b815161131281612521565b60006020828403121561215557600080fd5b61131282611e11565b60006020828403121561217057600080fd5b81356001600160401b0381111561218657600080fd5b8201601f8101841361219757600080fd5b61194184823560208401611cae565b6000602082840312156121b857600080fd5b5035919050565b6000602082840312156121d157600080fd5b61131282611e20565b600081518084526121f281602086016020860161241d565b601f01601f19169290920160200192915050565b6000835161221881846020880161241d565b83519083019061222c81836020880161241d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612268908301846121da565b9695505050505050565b602081016004831061229457634e487b7160e01b600052602160045260246000fd5b91905290565b60208152600061131260208301846121da565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260139082015272139bdd08195b9bdd59da08115512081cd95b9d606a1b604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561236e5761236e61250b565b604052919050565b60006001600160401b0382111561238f5761238f61250b565b5060051b60200190565b600082198211156123ac576123ac6124b3565b500190565b60006001600160401b0380831681851680830382111561222c5761222c6124b3565b6000826123e2576123e26124c9565b500490565b6000816000190483118215151615612401576124016124b3565b500290565b600082821015612418576124186124b3565b500390565b60005b83811015612438578181015183820152602001612420565b83811115610f855750506000910152565b600181811c9082168061245d57607f821691505b6020821081141561247e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612498576124986124b3565b5060010190565b6000826124ae576124ae6124c9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461097757600080fdfea26469706673582212201ef39ae6d3829f1dde646c216c24cdd5f05dd94cba6189bc38d14af05e7441fd64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d525a48656472386f685455355066664444433951465a4635514439703859533673554e7352777478637834622f00000000000000000000

-----Decoded View---------------
Arg [0] : contractBaseURI (string): ipfs://QmRZHedr8ohTU5PffDDC9QFZF5QD9p8YS6sUNsRwtxcx4b/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d525a48656472386f685455355066664444433951465a46
Arg [3] : 35514439703859533673554e7352777478637834622f00000000000000000000


Deployed Bytecode Sourcemap

47252:4904:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27132:305;;;;;;;;;;-1:-1:-1;27132:305:0;;;;;:::i;:::-;;:::i;:::-;;;10080:14:1;;10073:22;10055:41;;10043:2;10028:18;27132:305:0;;;;;;;;30329:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31835:204::-;;;;;;;;;;-1:-1:-1;31835:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9378:32:1;;;9360:51;;9348:2;9333:18;31835:204:0;9214:203:1;31395:374:0;;;;;;;;;;-1:-1:-1;31395:374:0;;;;;:::i;:::-;;:::i;:::-;;48292:461;;;;;;:::i;:::-;;:::i;50602:109::-;;;;;;;;;;-1:-1:-1;50602:109:0;;;;;:::i;:::-;;:::i;49216:447::-;;;;;;:::i;:::-;;:::i;26381:303::-;;;;;;;;;;-1:-1:-1;26635:12:0;;48275:1;26619:13;:28;-1:-1:-1;;26619:46:0;26381:303;;;16008:25:1;;;15996:2;15981:18;26381:303:0;15862:177:1;32700:170:0;;;;;;;;;;-1:-1:-1;32700:170:0;;;;;:::i;:::-;;:::i;50719:104::-;;;;;;;;;;-1:-1:-1;50719:104:0;;;;;:::i;:::-;;:::i;51961:192::-;;;;;;;;;;;;;:::i;32941:185::-;;;;;;;;;;-1:-1:-1;32941:185:0;;;;;:::i;:::-;;:::i;50831:88::-;;;;;;;;;;-1:-1:-1;50831:88:0;;;;;:::i;:::-;;:::i;30137:125::-;;;;;;;;;;-1:-1:-1;30137:125:0;;;;;:::i;:::-;;:::i;47495:22::-;;;;;;;;;;;;;:::i;27501:206::-;;;;;;;;;;-1:-1:-1;27501:206:0;;;;;:::i;:::-;;:::i;46325:103::-;;;;;;;;;;;;;:::i;47564:37::-;;;;;;;;;;;;;;;;45674:87;;;;;;;;;;-1:-1:-1;45720:7:0;45747:6;-1:-1:-1;;;;;45747:6:0;45674:87;;51394:559;;;;;;;;;;-1:-1:-1;51394:559:0;;;;;:::i;:::-;;:::i;30498:104::-;;;;;;;;;;;;;:::i;47524:33::-;;;;;;;;;;;;;;;;50927:459;;;;;;;;;;-1:-1:-1;50927:459:0;;;;;:::i;:::-;;:::i;32111:287::-;;;;;;;;;;-1:-1:-1;32111:287:0;;;;;:::i;:::-;;:::i;33197:369::-;;;;;;;;;;-1:-1:-1;33197:369:0;;;;;:::i;:::-;;:::i;48761:447::-;;;;;;:::i;:::-;;:::i;47426:60::-;;;;;;;;;;-1:-1:-1;47426:60:0;;;;;;;;;;;;;;;:::i;30673:318::-;;;;;;;;;;-1:-1:-1;30673:318:0;;;;;:::i;:::-;;:::i;47708:41::-;;;;;;;;;;;;;;;;47608:45;;;;;;;;;;;;;;;;49671:896;;;;;;;;;;-1:-1:-1;49671:896:0;;;;;:::i;:::-;;:::i;32469:164::-;;;;;;;;;;-1:-1:-1;32469:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32590:25:0;;;32566:4;32590:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32469:164;47660:41;;;;;;;;;;;;;;;;46583:201;;;;;;;;;;-1:-1:-1;46583:201:0;;;;;:::i;:::-;;:::i;27132:305::-;27234:4;-1:-1:-1;;;;;;27271:40:0;;-1:-1:-1;;;27271:40:0;;:105;;-1:-1:-1;;;;;;;27328:48:0;;-1:-1:-1;;;27328:48:0;27271:105;:158;;;-1:-1:-1;;;;;;;;;;13549:40:0;;;27393:36;27251:178;27132:305;-1:-1:-1;;27132:305:0:o;30329:100::-;30383:13;30416:5;30409:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30329:100;:::o;31835:204::-;31903:7;31928:16;31936:7;31928;:16::i;:::-;31923:64;;31953:34;;-1:-1:-1;;;31953:34:0;;;;;;;;;;;31923:64;-1:-1:-1;32007:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32007:24:0;;31835:204::o;31395:374::-;31468:13;31484:27;31503:7;31484:18;:27::i;:::-;31468:43;;31532:5;-1:-1:-1;;;;;31526:11:0;:2;-1:-1:-1;;;;;31526:11:0;;31522:48;;;31546:24;;-1:-1:-1;;;31546:24:0;;;;;;;;;;;31522:48;22797:10;-1:-1:-1;;;;;31587:21:0;;;;;;:63;;-1:-1:-1;31613:37:0;31630:5;22797:10;32469:164;:::i;31613:37::-;31612:38;31587:63;31583:138;;;31674:35;;-1:-1:-1;;;31674:35:0;;;;;;;;;;;31583:138;31733:28;31742:2;31746:7;31755:5;31733:8;:28::i;:::-;31457:312;31395:374;;:::o;48292:461::-;47801:9;47814:10;47801:23;47793:66;;;;-1:-1:-1;;;47793:66:0;;;;;;;:::i;:::-;;;;;;;;;48394:21:::1;48376:14;::::0;::::1;;:39;::::0;::::1;;;;;;:::i;:::-;;48368:80;;;::::0;-1:-1:-1;;;48368:80:0;;12760:2:1;48368:80:0::1;::::0;::::1;12742:21:1::0;12799:2;12779:18;;;12772:30;12838;12818:18;;;12811:58;12886:18;;48368:80:0::1;12558:352:1::0;48368:80:0::1;48489:8;-1:-1:-1::0;;;;;48481:16:0::1;:5;;:16;;;;:::i;:::-;48468:9;:29;;48460:61;;;;-1:-1:-1::0;;;48460:61:0::1;;;;;;;:::i;:::-;48569:15;;48557:8;-1:-1:-1::0;;;;;48540:25:0::1;:14;48275:1:::0;27010:13;-1:-1:-1;;27010:31:0;;26777:283;48540:14:::1;:25;;;;:::i;:::-;:44;;48532:74;;;::::0;-1:-1:-1;;;48532:74:0;;10885:2:1;48532:74:0::1;::::0;::::1;10867:21:1::0;10924:2;10904:18;;;10897:30;-1:-1:-1;;;10943:18:1;;;10936:47;11000:18;;48532:74:0::1;10683:341:1::0;48532:74:0::1;48637:26;;48625:8;-1:-1:-1::0;;;;;48625:38:0::1;;;48617:84;;;::::0;-1:-1:-1;;;48617:84:0;;15662:2:1;48617:84:0::1;::::0;::::1;15644:21:1::0;15701:2;15681:18;;;15674:30;15740:34;15720:18;;;15713:62;-1:-1:-1;;;15791:18:1;;;15784:31;15832:19;;48617:84:0::1;15460:397:1::0;48617:84:0::1;48714:31;48724:10;48736:8;-1:-1:-1::0;;;;;48714:31:0::1;:9;:31::i;:::-;48292:461:::0;:::o;50602:109::-;45720:7;45747:6;-1:-1:-1;;;;;45747:6:0;22797:10;45894:23;45886:68;;;;-1:-1:-1;;;45886:68:0;;;;;;;:::i;:::-;50680:14:::1;:23:::0;;50697:6;;50680:14;-1:-1:-1;;50680:23:0::1;::::0;50697:6;50680:23:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;50602:109:::0;:::o;49216:447::-;47801:9;47814:10;47801:23;47793:66;;;;-1:-1:-1;;;47793:66:0;;;;;;;:::i;:::-;49322:25:::1;49304:14;::::0;::::1;;:43;::::0;::::1;;;;;;:::i;:::-;;49296:80;;;::::0;-1:-1:-1;;;49296:80:0;;14596:2:1;49296:80:0::1;::::0;::::1;14578:21:1::0;14635:2;14615:18;;;14608:30;14674:26;14654:18;;;14647:54;14718:18;;49296:80:0::1;14394:348:1::0;49296:80:0::1;49416:8;-1:-1:-1::0;;;;;49408:16:0::1;:5;;:16;;;;:::i;:::-;49395:9;:29;;49387:61;;;;-1:-1:-1::0;;;49387:61:0::1;;;;;;;:::i;:::-;49507:68;49537:10;49549:25;49507:29;:68::i;:::-;49481:10;27850:7:::0;27885:19;;;:12;:19;;;;;:32;49467:36:::1;::::0;-1:-1:-1;;;;;49467:36:0;;::::1;::::0;-1:-1:-1;;;27885:32:0;;;49467:36:::1;:::i;:::-;:108;;49459:152;;;::::0;-1:-1:-1;;;49459:152:0;;13478:2:1;49459:152:0::1;::::0;::::1;13460:21:1::0;13517:2;13497:18;;;13490:30;13556:33;13536:18;;;13529:61;13607:18;;49459:152:0::1;13276:355:1::0;32700:170:0;32834:28;32844:4;32850:2;32854:7;32834:9;:28::i;50719:104::-;45720:7;45747:6;-1:-1:-1;;;;;45747:6:0;22797:10;45894:23;45886:68;;;;-1:-1:-1;;;45886:68:0;;;;;;;:::i;:::-;50791:15:::1;:24:::0;50719:104::o;51961:192::-;45720:7;45747:6;-1:-1:-1;;;;;45747:6:0;22797:10;45894:23;45886:68;;;;-1:-1:-1;;;45886:68:0;;;;;;;:::i;:::-;21091:1:::1;21689:7;;:19;;21681:63;;;::::0;-1:-1:-1;;;21681:63:0;;15302:2:1;21681:63:0::1;::::0;::::1;15284:21:1::0;15341:2;15321:18;;;15314:30;15380:33;15360:18;;;15353:61;15431:18;;21681:63:0::1;15100:355:1::0;21681:63:0::1;21091:1;21822:7;:18:::0;52041:49:::2;::::0;52023:12:::2;::::0;52041:10:::2;::::0;52064:21:::2;::::0;52023:12;52041:49;52023:12;52041:49;52064:21;52041:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52022:68;;;52109:7;52101:44;;;::::0;-1:-1:-1;;;52101:44:0;;12048:2:1;52101:44:0::2;::::0;::::2;12030:21:1::0;12087:2;12067:18;;;12060:30;12126:26;12106:18;;;12099:54;12170:18;;52101:44:0::2;11846:348:1::0;52101:44:0::2;-1:-1:-1::0;21047:1:0::1;22001:7;:22:::0;51961:192::o;32941:185::-;33079:39;33096:4;33102:2;33106:7;33079:39;;;;;;;;;;;;:16;:39::i;50831:88::-;45720:7;45747:6;-1:-1:-1;;;;;45747:6:0;22797:10;45894:23;45886:68;;;;-1:-1:-1;;;45886:68:0;;;;;;;:::i;:::-;50898:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50831:88:::0;:::o;30137:125::-;30201:7;30228:21;30241:7;30228:12;:21::i;:::-;:26;;30137:125;-1:-1:-1;;30137:125:0:o;47495:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27501:206::-;27565:7;-1:-1:-1;;;;;27589:19:0;;27585:60;;27617:28;;-1:-1:-1;;;27617:28:0;;;;;;;;;;;27585:60;-1:-1:-1;;;;;;27671:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27671:27:0;;27501:206::o;46325:103::-;45720:7;45747:6;-1:-1:-1;;;;;45747:6:0;22797:10;45894:23;45886:68;;;;-1:-1:-1;;;45886:68:0;;;;;;;:::i;:::-;46390:30:::1;46417:1;46390:18;:30::i;:::-;46325:103::o:0;51394:559::-;45720:7;45747:6;-1:-1:-1;;;;;45747:6:0;22797:10;45894:23;45886:68;;;;-1:-1:-1;;;45886:68:0;;;;;;;:::i;:::-;51526:10:::1;:17;51506:9;:16;:37;51498:91;;;::::0;-1:-1:-1;;;51498:91:0;;11231:2:1;51498:91:0::1;::::0;::::1;11213:21:1::0;11270:2;11250:18;;;11243:30;11309:34;11289:18;;;11282:62;-1:-1:-1;;;11360:18:1;;;11353:39;11409:19;;51498:91:0::1;11029:405:1::0;51498:91:0::1;51600:20;51640:6:::0;51635:102:::1;51656:10;:17;51652:1;:21;51635:102;;;51712:10;51723:1;51712:13;;;;;;;;:::i;:::-;;;;;;;51695:30;;;;;:::i;:::-;::::0;-1:-1:-1;51675:3:0;::::1;::::0;::::1;:::i;:::-;;;;51635:102;;;;51789:15;;51772:13;-1:-1:-1::0;;;;;51755:30:0::1;:14;48275:1:::0;27010:13;-1:-1:-1;;27010:31:0;;26777:283;51755:14:::1;:30;;;;:::i;:::-;:49;;51747:79;;;::::0;-1:-1:-1;;;51747:79:0;;10885:2:1;51747:79:0::1;::::0;::::1;10867:21:1::0;10924:2;10904:18;;;10897:30;-1:-1:-1;;;10943:18:1;;;10936:47;11000:18;;51747:79:0::1;10683:341:1::0;51747:79:0::1;51842:6;51837:109;51858:9;:16;51854:1;:20;51837:109;;;51896:38;51906:9;51916:1;51906:12;;;;;;;;:::i;:::-;;;;;;;51920:10;51931:1;51920:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;51896:38:0::1;:9;:38::i;:::-;51876:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51837:109;;;;51487:466;51394:559:::0;;:::o;30498:104::-;30554:13;30587:7;30580:14;;;;;:::i;50927:459::-;45720:7;45747:6;-1:-1:-1;;;;;45747:6:0;22797:10;45894:23;45886:68;;;;-1:-1:-1;;;45886:68:0;;;;;;;:::i;:::-;51101:17:::1;:24;51081:9;:16;:44;:92;;;;;51149:17;:24;51129:9;:16;:44;51081:92;51073:146;;;::::0;-1:-1:-1;;;51073:146:0;;14186:2:1;51073:146:0::1;::::0;::::1;14168:21:1::0;14225:2;14205:18;;;14198:30;14264:34;14244:18;;;14237:62;-1:-1:-1;;;14315:18:1;;;14308:39;14364:19;;51073:146:0::1;13984:405:1::0;51073:146:0::1;51235:9;51230:149;51254:9;:16;51250:1;:20;51230:149;;;51292:75;51310:9;51320:1;51310:12;;;;;;;;:::i;:::-;;;;;;;51324:17;51342:1;51324:20;;;;;;;;:::i;:::-;;;;;;;51346:17;51364:1;51346:20;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;28631:19:0;;;;;;;:12;:19;;;;;:57;;28699;;;-1:-1:-1;;;28699:57:0;-1:-1:-1;;;;28631:57:0;;;-1:-1:-1;;;28631:57:0;28699;;;;-1:-1:-1;;;;28699:57:0;;;;;;;;;;28521:243;51292:75:::1;51272:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51230:149;;32111:287:::0;-1:-1:-1;;;;;32210:24:0;;22797:10;32210:24;32206:54;;;32243:17;;-1:-1:-1;;;32243:17:0;;;;;;;;;;;32206:54;22797:10;32273:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32273:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32273:53:0;;;;;;;;;;32342:48;;10055:41:1;;;32273:42:0;;22797:10;32342:48;;10028:18:1;32342:48:0;;;;;;;32111:287;;:::o;33197:369::-;33364:28;33374:4;33380:2;33384:7;33364:9;:28::i;:::-;-1:-1:-1;;;;;33407:13:0;;3652:19;:23;;33407:76;;;;;33427:56;33458:4;33464:2;33468:7;33477:5;33427:30;:56::i;:::-;33426:57;33407:76;33403:156;;;33507:40;;-1:-1:-1;;;33507:40:0;;;;;;;;;;;48761:447;47801:9;47814:10;47801:23;47793:66;;;;-1:-1:-1;;;47793:66:0;;;;;;;:::i;:::-;48867:25:::1;48849:14;::::0;::::1;;:43;::::0;::::1;;;;;;:::i;:::-;;48841:80;;;::::0;-1:-1:-1;;;48841:80:0;;14949:2:1;48841:80:0::1;::::0;::::1;14931:21:1::0;14988:2;14968:18;;;14961:30;15027:26;15007:18;;;15000:54;15071:18;;48841:80:0::1;14747:348:1::0;48841:80:0::1;48961:8;-1:-1:-1::0;;;;;48953:16:0::1;:5;;:16;;;;:::i;:::-;48940:9;:29;;48932:61;;;;-1:-1:-1::0;;;48932:61:0::1;;;;;;;:::i;:::-;49052:68;49082:10;49094:25;49052:29;:68::i;30673:318::-:0;30746:13;30777:16;30785:7;30777;:16::i;:::-;30772:59;;30802:29;;-1:-1:-1;;;30802:29:0;;;;;;;;;;;30772:59;30844:21;30868:10;:8;:10::i;:::-;30844:34;;30902:7;30896:21;30921:1;30896:26;;:87;;;;;;;;;;;;;;;;;30949:7;30958:18;:7;:16;:18::i;:::-;30932:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30896:87;30889:94;30673:318;-1:-1:-1;;;30673:318:0:o;49671:896::-;49770:7;49803:21;49794:5;:30;;;;;;;;:::i;:::-;;49790:96;;;-1:-1:-1;49848:26:0;;49841:33;;49790:96;-1:-1:-1;;;;;28348:19:0;;49897:22;28348:19;;;:12;:19;;;;;:37;;-1:-1:-1;;;28348:37:0;;;;;-1:-1:-1;;;28387:37:0;;;;;49897:22;50070:157;;;;50132:22;;50108:46;;;;:::i;:::-;;;50193:22;;50169:46;;;;;:::i;:::-;;;50070:157;50241:17;50237:96;;;50299:22;;50275:46;;;;:::i;:::-;;;50237:96;50356:25;50347:5;:34;;;;;;;;:::i;:::-;;50343:94;;;-1:-1:-1;50405:20:0;-1:-1:-1;50398:27:0;;-1:-1:-1;;50398:27:0;50343:94;50460:25;50451:5;:34;;;;;;;;:::i;:::-;;50447:94;;;50509:20;-1:-1:-1;50502:27:0;;-1:-1:-1;;;50502:27:0;50447:94;-1:-1:-1;50558:1:0;;49671:896;-1:-1:-1;;;;;;49671:896:0:o;46583:201::-;45720:7;45747:6;-1:-1:-1;;;;;45747:6:0;22797:10;45894:23;45886:68;;;;-1:-1:-1;;;45886:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46672:22:0;::::1;46664:73;;;::::0;-1:-1:-1;;;46664:73:0;;11641:2:1;46664:73:0::1;::::0;::::1;11623:21:1::0;11680:2;11660:18;;;11653:30;11719:34;11699:18;;;11692:62;-1:-1:-1;;;11770:18:1;;;11763:36;11816:19;;46664:73:0::1;11439:402:1::0;46664:73:0::1;46748:28;46767:8;46748:18;:28::i;33821:187::-:0;33878:4;33921:7;48275:1;33902:26;;:53;;;;;33942:13;;33932:7;:23;33902:53;:98;;;;-1:-1:-1;;33973:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33973:27:0;;;;33972:28;;33821:187::o;41628:196::-;41743:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41743:29:0;-1:-1:-1;;;;;41743:29:0;;;;;;;;;41788:28;;41743:24;;41788:28;;;;;;;41628:196;;;:::o;34016:104::-;34085:27;34095:2;34099:8;34085:27;;;;;;;;;;;;:9;:27::i;36853:1989::-;36968:35;37006:21;37019:7;37006:12;:21::i;:::-;36968:59;;37066:4;-1:-1:-1;;;;;37044:26:0;:13;:18;;;-1:-1:-1;;;;;37044:26:0;;37040:67;;37079:28;;-1:-1:-1;;;37079:28:0;;;;;;;;;;;37040:67;37120:22;22797:10;-1:-1:-1;;;;;37146:20:0;;;;:73;;-1:-1:-1;37183:36:0;37200:4;22797:10;32469:164;:::i;37183:36::-;37146:126;;;-1:-1:-1;22797:10:0;37236:20;37248:7;37236:11;:20::i;:::-;-1:-1:-1;;;;;37236:36:0;;37146:126;37120:153;;37291:17;37286:66;;37317:35;;-1:-1:-1;;;37317:35:0;;;;;;;;;;;37286:66;-1:-1:-1;;;;;37367:16:0;;37363:52;;37392:23;;-1:-1:-1;;;37392:23:0;;;;;;;;;;;37363:52;37536:35;37553:1;37557:7;37566:4;37536:8;:35::i;:::-;-1:-1:-1;;;;;37867:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37867:31:0;;;-1:-1:-1;;;;;37867:31:0;;;-1:-1:-1;;37867:31:0;;;;;;;37913:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37913:29:0;;;;;;;;;;;;;37993:20;;;:11;:20;;;;;;38028:18;;-1:-1:-1;;;;;;38028:18:0;;;;;;38320:11;;;38380:24;;;;;38423:13;;37993:20;;38380:24;;38423:13;38419:307;;38633:13;;38618:11;:28;38614:97;;38671:20;;-1:-1:-1;;;;;;38671:20:0;-1:-1:-1;;;;;38671:20:0;;;;;38614:97;37842:895;;;38773:7;38769:2;-1:-1:-1;;;;;38754:27:0;38763:4;-1:-1:-1;;;;;38754:27:0;;;;;;;;;;;38792:42;36957:1885;;36853:1989;;;:::o;28966:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;29077:7:0;;48275:1;29126:23;;:47;;;;;29160:13;;29153:4;:20;29126:47;29122:886;;;29194:31;29228:17;;;:11;:17;;;;;;;;;29194:51;;;;;;;;;-1:-1:-1;;;;;29194:51:0;;;;-1:-1:-1;;;29194:51:0;;;;;;;;;;;;29264:729;;29314:14;;-1:-1:-1;;;;;29314:28:0;;29310:101;;29378:9;28966:1109;-1:-1:-1;;;28966:1109:0:o;29310:101::-;-1:-1:-1;;;29753:6:0;29798:17;;;;:11;:17;;;;;;;;;29786:29;;;;;;;;;-1:-1:-1;;;;;29786:29:0;;;;;-1:-1:-1;;;29786:29:0;;;;;;;;;;;;;;29846:28;29842:109;;29914:9;28966:1109;-1:-1:-1;;;28966:1109:0:o;29842:109::-;29713:261;;;29175:833;29122:886;30036:31;;-1:-1:-1;;;30036:31:0;;;;;;;;;;;46944:191;47018:16;47037:6;;-1:-1:-1;;;;;47054:17:0;;;-1:-1:-1;;;;;;47054:17:0;;;;;;47087:40;;47037:6;;;;;;;47087:40;;47018:16;47087:40;47007:128;46944:191;:::o;42316:667::-;42500:72;;-1:-1:-1;;;42500:72:0;;42479:4;;-1:-1:-1;;;;;42500:36:0;;;;;:72;;22797:10;;42551:4;;42557:7;;42566:5;;42500:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42500:72:0;;;;;;;;-1:-1:-1;;42500:72:0;;;;;;;;;;;;:::i;:::-;;;42496:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42734:13:0;;42730:235;;42780:40;;-1:-1:-1;;;42780:40:0;;;;;;;;;;;42730:235;42923:6;42917:13;42908:6;42904:2;42900:15;42893:38;42496:480;-1:-1:-1;;;;;;42619:55:0;-1:-1:-1;;;42619:55:0;;-1:-1:-1;42496:480:0;42316:667;;;;;;:::o;48051:112::-;48115:13;48148:7;48141:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;-1:-1:-1;;;;;867:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;34483:163;34606:32;34612:2;34616:8;34626:5;34633:4;35067:13;;-1:-1:-1;;;;;35095:16:0;;35091:48;;35120:19;;-1:-1:-1;;;35120:19:0;;;;;;;;;;;35091:48;35154:13;35150:44;;35176:18;;-1:-1:-1;;;35176:18:0;;;;;;;;;;;35150:44;-1:-1:-1;;;;;35545:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;;;35545:44:0;;;;;;;-1:-1:-1;;35545:44:0;;;;35604:49;;;;;;;;;;;;;-1:-1:-1;;35604:49:0;;;;;;;35670:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;35670:35:0;;;;;;35682:12;35786:23;;;35830:4;:23;;;;-1:-1:-1;;;;;;35838:13:0;;3652:19;:23;;35838:15;35826:641;;;35874:314;35905:38;;35930:12;;-1:-1:-1;;;;;35905:38:0;;;35922:1;;35905:38;;35922:1;;35905:38;35971:69;36010:1;36014:2;36018:14;;;;;;36034:5;35971:30;:69::i;:::-;35966:174;;36076:40;;-1:-1:-1;;;36076:40:0;;;;;;;;;;;35966:174;36183:3;36167:12;:19;;35874:314;;36269:12;36252:13;;:29;36248:43;;36283:8;;;36248:43;35826:641;;;36332:120;36363:40;;36388:14;;;;;-1:-1:-1;;;;;36363:40:0;;;36380:1;;36363:40;;36380:1;;36363:40;36447:3;36431:12;:19;;36332:120;;35826:641;-1:-1:-1;36481:13:0;:28;36531:60;51394:559;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:679::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:169;1098:2;1095:1;1092:9;1084:169;;;1155:23;1174:3;1155:23;:::i;:::-;1143:36;;1199:12;;;;1231;;;;1116:1;1109:9;1084:169;;;-1:-1:-1;1271:5:1;;603:679;-1:-1:-1;;;;;;;603:679:1:o;1287:673::-;1338:5;1391:3;1384:4;1376:6;1372:17;1368:27;1358:55;;1409:1;1406;1399:12;1358:55;1445:6;1432:20;1471:4;1495:60;1511:43;1551:2;1511:43;:::i;1495:60::-;1577:3;1601:2;1596:3;1589:15;1629:2;1624:3;1620:12;1613:19;;1664:2;1656:6;1652:15;1716:3;1711:2;1705;1702:1;1698:10;1690:6;1686:23;1682:32;1679:41;1676:61;;;1733:1;1730;1723:12;1676:61;1755:1;1765:166;1779:2;1776:1;1773:9;1765:166;;;1836:20;1852:3;1836:20;:::i;:::-;1824:33;;1877:12;;;;1909;;;;1797:1;1790:9;1765:166;;1965:160;2030:20;;2086:13;;2079:21;2069:32;;2059:60;;2115:1;2112;2105:12;2130:155;2210:20;;2259:1;2249:12;;2239:40;;2275:1;2272;2265:12;2290:171;2357:20;;-1:-1:-1;;;;;2406:30:1;;2396:41;;2386:69;;2451:1;2448;2441:12;2466:186;2525:6;2578:2;2566:9;2557:7;2553:23;2549:32;2546:52;;;2594:1;2591;2584:12;2546:52;2617:29;2636:9;2617:29;:::i;2657:260::-;2725:6;2733;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2825:29;2844:9;2825:29;:::i;:::-;2815:39;;2873:38;2907:2;2896:9;2892:18;2873:38;:::i;:::-;2863:48;;2657:260;;;;;:::o;2922:328::-;2999:6;3007;3015;3068:2;3056:9;3047:7;3043:23;3039:32;3036:52;;;3084:1;3081;3074:12;3036:52;3107:29;3126:9;3107:29;:::i;:::-;3097:39;;3155:38;3189:2;3178:9;3174:18;3155:38;:::i;:::-;3145:48;;3240:2;3229:9;3225:18;3212:32;3202:42;;2922:328;;;;;:::o;3255:666::-;3350:6;3358;3366;3374;3427:3;3415:9;3406:7;3402:23;3398:33;3395:53;;;3444:1;3441;3434:12;3395:53;3467:29;3486:9;3467:29;:::i;:::-;3457:39;;3515:38;3549:2;3538:9;3534:18;3515:38;:::i;:::-;3505:48;;3600:2;3589:9;3585:18;3572:32;3562:42;;3655:2;3644:9;3640:18;3627:32;-1:-1:-1;;;;;3674:6:1;3671:30;3668:50;;;3714:1;3711;3704:12;3668:50;3737:22;;3790:4;3782:13;;3778:27;-1:-1:-1;3768:55:1;;3819:1;3816;3809:12;3768:55;3842:73;3907:7;3902:2;3889:16;3884:2;3880;3876:11;3842:73;:::i;:::-;3832:83;;;3255:666;;;;;;;:::o;3926:254::-;3991:6;3999;4052:2;4040:9;4031:7;4027:23;4023:32;4020:52;;;4068:1;4065;4058:12;4020:52;4091:29;4110:9;4091:29;:::i;:::-;4081:39;;4139:35;4170:2;4159:9;4155:18;4139:35;:::i;4185:291::-;4272:6;4280;4333:2;4321:9;4312:7;4308:23;4304:32;4301:52;;;4349:1;4346;4339:12;4301:52;4372:29;4391:9;4372:29;:::i;:::-;4362:39;;4420:50;4466:2;4455:9;4451:18;4420:50;:::i;4481:254::-;4549:6;4557;4610:2;4598:9;4589:7;4585:23;4581:32;4578:52;;;4626:1;4623;4616:12;4578:52;4649:29;4668:9;4649:29;:::i;:::-;4639:39;4725:2;4710:18;;;;4697:32;;-1:-1:-1;;;4481:254:1:o;4740:809::-;4886:6;4894;4902;4955:2;4943:9;4934:7;4930:23;4926:32;4923:52;;;4971:1;4968;4961:12;4923:52;5011:9;4998:23;-1:-1:-1;;;;;5081:2:1;5073:6;5070:14;5067:34;;;5097:1;5094;5087:12;5067:34;5120:61;5173:7;5164:6;5153:9;5149:22;5120:61;:::i;:::-;5110:71;;5234:2;5223:9;5219:18;5206:32;5190:48;;5263:2;5253:8;5250:16;5247:36;;;5279:1;5276;5269:12;5247:36;5302:60;5354:7;5343:8;5332:9;5328:24;5302:60;:::i;:::-;5292:70;;5415:2;5404:9;5400:18;5387:32;5371:48;;5444:2;5434:8;5431:16;5428:36;;;5460:1;5457;5450:12;5428:36;;5483:60;5535:7;5524:8;5513:9;5509:24;5483:60;:::i;:::-;5473:70;;;4740:809;;;;;:::o;5554:1153::-;5671:6;5679;5732:2;5720:9;5711:7;5707:23;5703:32;5700:52;;;5748:1;5745;5738:12;5700:52;5788:9;5775:23;-1:-1:-1;;;;;5858:2:1;5850:6;5847:14;5844:34;;;5874:1;5871;5864:12;5844:34;5897:61;5950:7;5941:6;5930:9;5926:22;5897:61;:::i;:::-;5887:71;;5977:2;5967:12;;6032:2;6021:9;6017:18;6004:32;6061:2;6051:8;6048:16;6045:36;;;6077:1;6074;6067:12;6045:36;6100:24;;;-1:-1:-1;6155:4:1;6147:13;;6143:27;-1:-1:-1;6133:55:1;;6184:1;6181;6174:12;6133:55;6220:2;6207:16;6243:60;6259:43;6299:2;6259:43;:::i;6243:60::-;6325:3;6349:2;6344:3;6337:15;6377:2;6372:3;6368:12;6361:19;;6408:2;6404;6400:11;6456:7;6451:2;6445;6442:1;6438:10;6434:2;6430:19;6426:28;6423:41;6420:61;;;6477:1;6474;6467:12;6420:61;6499:1;6490:10;;6509:168;6523:2;6520:1;6517:9;6509:168;;;6580:22;6598:3;6580:22;:::i;:::-;6568:35;;6541:1;6534:9;;;;;6623:12;;;;6655;;6509:168;;;6513:3;6696:5;6686:15;;;;;;;5554:1153;;;;;:::o;6712:245::-;6770:6;6823:2;6811:9;6802:7;6798:23;6794:32;6791:52;;;6839:1;6836;6829:12;6791:52;6878:9;6865:23;6897:30;6921:5;6897:30;:::i;6962:249::-;7031:6;7084:2;7072:9;7063:7;7059:23;7055:32;7052:52;;;7100:1;7097;7090:12;7052:52;7132:9;7126:16;7151:30;7175:5;7151:30;:::i;7216:217::-;7294:6;7347:2;7335:9;7326:7;7322:23;7318:32;7315:52;;;7363:1;7360;7353:12;7315:52;7386:41;7417:9;7386:41;:::i;7438:450::-;7507:6;7560:2;7548:9;7539:7;7535:23;7531:32;7528:52;;;7576:1;7573;7566:12;7528:52;7616:9;7603:23;-1:-1:-1;;;;;7641:6:1;7638:30;7635:50;;;7681:1;7678;7671:12;7635:50;7704:22;;7757:4;7749:13;;7745:27;-1:-1:-1;7735:55:1;;7786:1;7783;7776:12;7735:55;7809:73;7874:7;7869:2;7856:16;7851:2;7847;7843:11;7809:73;:::i;7893:180::-;7952:6;8005:2;7993:9;7984:7;7980:23;7976:32;7973:52;;;8021:1;8018;8011:12;7973:52;-1:-1:-1;8044:23:1;;7893:180;-1:-1:-1;7893:180:1:o;8078:184::-;8136:6;8189:2;8177:9;8168:7;8164:23;8160:32;8157:52;;;8205:1;8202;8195:12;8157:52;8228:28;8246:9;8228:28;:::i;8267:257::-;8308:3;8346:5;8340:12;8373:6;8368:3;8361:19;8389:63;8445:6;8438:4;8433:3;8429:14;8422:4;8415:5;8411:16;8389:63;:::i;:::-;8506:2;8485:15;-1:-1:-1;;8481:29:1;8472:39;;;;8513:4;8468:50;;8267:257;-1:-1:-1;;8267:257:1:o;8529:470::-;8708:3;8746:6;8740:13;8762:53;8808:6;8803:3;8796:4;8788:6;8784:17;8762:53;:::i;:::-;8878:13;;8837:16;;;;8900:57;8878:13;8837:16;8934:4;8922:17;;8900:57;:::i;:::-;8973:20;;8529:470;-1:-1:-1;;;;8529:470:1:o;9422:488::-;-1:-1:-1;;;;;9691:15:1;;;9673:34;;9743:15;;9738:2;9723:18;;9716:43;9790:2;9775:18;;9768:34;;;9838:3;9833:2;9818:18;;9811:31;;;9616:4;;9859:45;;9884:19;;9876:6;9859:45;:::i;:::-;9851:53;9422:488;-1:-1:-1;;;;;;9422:488:1:o;10107:347::-;10258:2;10243:18;;10291:1;10280:13;;10270:144;;10336:10;10331:3;10327:20;10324:1;10317:31;10371:4;10368:1;10361:15;10399:4;10396:1;10389:15;10270:144;10423:25;;;10107:347;:::o;10459:219::-;10608:2;10597:9;10590:21;10571:4;10628:44;10668:2;10657:9;10653:18;10645:6;10628:44;:::i;12199:354::-;12401:2;12383:21;;;12440:2;12420:18;;;12413:30;12479:32;12474:2;12459:18;;12452:60;12544:2;12529:18;;12199:354::o;12915:356::-;13117:2;13099:21;;;13136:18;;;13129:30;13195:34;13190:2;13175:18;;13168:62;13262:2;13247:18;;12915:356::o;13636:343::-;13838:2;13820:21;;;13877:2;13857:18;;;13850:30;-1:-1:-1;;;13911:2:1;13896:18;;13889:49;13970:2;13955:18;;13636:343::o;16044:275::-;16115:2;16109:9;16180:2;16161:13;;-1:-1:-1;;16157:27:1;16145:40;;-1:-1:-1;;;;;16200:34:1;;16236:22;;;16197:62;16194:88;;;16262:18;;:::i;:::-;16298:2;16291:22;16044:275;;-1:-1:-1;16044:275:1:o;16324:183::-;16384:4;-1:-1:-1;;;;;16409:6:1;16406:30;16403:56;;;16439:18;;:::i;:::-;-1:-1:-1;16484:1:1;16480:14;16496:4;16476:25;;16324:183::o;16512:128::-;16552:3;16583:1;16579:6;16576:1;16573:13;16570:39;;;16589:18;;:::i;:::-;-1:-1:-1;16625:9:1;;16512:128::o;16645:236::-;16684:3;-1:-1:-1;;;;;16757:2:1;16754:1;16750:10;16787:2;16784:1;16780:10;16818:3;16814:2;16810:12;16805:3;16802:21;16799:47;;;16826:18;;:::i;16886:120::-;16926:1;16952;16942:35;;16957:18;;:::i;:::-;-1:-1:-1;16991:9:1;;16886:120::o;17011:168::-;17051:7;17117:1;17113;17109:6;17105:14;17102:1;17099:21;17094:1;17087:9;17080:17;17076:45;17073:71;;;17124:18;;:::i;:::-;-1:-1:-1;17164:9:1;;17011:168::o;17184:125::-;17224:4;17252:1;17249;17246:8;17243:34;;;17257:18;;:::i;:::-;-1:-1:-1;17294:9:1;;17184:125::o;17314:258::-;17386:1;17396:113;17410:6;17407:1;17404:13;17396:113;;;17486:11;;;17480:18;17467:11;;;17460:39;17432:2;17425:10;17396:113;;;17527:6;17524:1;17521:13;17518:48;;;-1:-1:-1;;17562:1:1;17544:16;;17537:27;17314:258::o;17577:380::-;17656:1;17652:12;;;;17699;;;17720:61;;17774:4;17766:6;17762:17;17752:27;;17720:61;17827:2;17819:6;17816:14;17796:18;17793:38;17790:161;;;17873:10;17868:3;17864:20;17861:1;17854:31;17908:4;17905:1;17898:15;17936:4;17933:1;17926:15;17790:161;;17577:380;;;:::o;17962:135::-;18001:3;-1:-1:-1;;18022:17:1;;18019:43;;;18042:18;;:::i;:::-;-1:-1:-1;18089:1:1;18078:13;;17962:135::o;18102:112::-;18134:1;18160;18150:35;;18165:18;;:::i;:::-;-1:-1:-1;18199:9:1;;18102:112::o;18219:127::-;18280:10;18275:3;18271:20;18268:1;18261:31;18311:4;18308:1;18301:15;18335:4;18332:1;18325:15;18351:127;18412:10;18407:3;18403:20;18400:1;18393:31;18443:4;18440:1;18433:15;18467:4;18464:1;18457:15;18483:127;18544:10;18539:3;18535:20;18532:1;18525:31;18575:4;18572:1;18565:15;18599:4;18596:1;18589:15;18615:127;18676:10;18671:3;18667:20;18664:1;18657:31;18707:4;18704:1;18697:15;18731:4;18728:1;18721:15;18747:127;18808:10;18803:3;18799:20;18796:1;18789:31;18839:4;18836:1;18829:15;18863:4;18860:1;18853:15;18879:131;-1:-1:-1;;;;;;18953:32:1;;18943:43;;18933:71;;19000:1;18997;18990:12

Swarm Source

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