ETH Price: $2,591.51 (-2.64%)

Token

Executives of Club 33 (CEOS)
 

Overview

Max Total Supply

333 CEOS

Holders

87

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CEOS
0x1ADafF23dfb09435c2a9b147d6741FF8a7030610
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:
MegaYachtCultNFT

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 2023-10-19
*/

// MYC Website: https://mycult.io/
// Twitter / X : https://x.com/MYC_TOKEN?t=L9TgxVuxJwleLjfBKyo3QQ&s=09
// Telegram: https://t.me/MYCTOKEN

// M       M    Y   Y    CCCCC
// MM     MM     Y Y     C
// M M   M M      Y      C
// M  M M  M      Y      C
// M   M   M      Y      CCCCC


//    /\
//   /  \
//  / 👁 \
// /______\


// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf)
        internal
        pure
        returns (bytes32)
    {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b)
        private
        pure
        returns (bytes32 value)
    {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol

// Creator: AppleCrypto

pragma solidity ^0.8.4;

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

pragma solidity ^0.8.7;

contract MegaYachtCultNFT is ERC721A, Ownable {
    using Strings for uint256;
    using SafeMath for uint256;

    uint256 public _nftPrice = 0.02 ether; // NFT price in ETH
    uint256 public _maxSupply = 333;
    uint256 public _maxMintPerTx = 20;
    uint256 public _maxPerWallet = 20;
    
    string private _base_uri;
    string private _unreveal_uri;

    bool public _paused = true;

    constructor() ERC721A("Executives of Club 33", "CEOS") {}

    function numberMinted(address account_) external view returns (uint256) {
        return _numberMinted(account_);
    }

    /**
     * @dev Mint nfts
     */
    function mint(uint256 mintAmount_) external payable {
        if (_msgSender() != owner()) {
            uint256 ownerTokenCount = balanceOf(_msgSender());

            require(!_paused, "Paused to mint");
            require(mintAmount_ > 0, "Invalid amount");
            require(
                _maxMintPerTx == 0 || mintAmount_ <= _maxMintPerTx,
                "Exceed tx amount limit"
            );
            require(
                _maxPerWallet == 0 ||
                    ownerTokenCount.add(mintAmount_) <= _maxPerWallet,
                "Exceed wallet limit"
            );
            require(
                totalSupply().add(mintAmount_) <= _maxSupply,
                "Exceed max supply"
            );
            require(
                msg.value >= _nftPrice.mul(mintAmount_),
                "Insufficient funds to mint"
            );
        }

        _mintLoop(_msgSender(), mintAmount_);
    }

    /**
     * @notice Do airdrop nfts to the accounts
     */
    function airdrop(address[] memory accounts_, uint256 mintAmount_)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < accounts_.length; i++) {
            address to = accounts_[i];
            _mintLoop(to, mintAmount_);
        }
    }

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

    /**
     * @notice Get token uri for token id
     */
    function tokenURI(uint256 _id) public view override returns (string memory) {
    require(_exists(_id), "ERC721Metadata: URI query for nonexistent token");

    // Concatenating the base URI, token ID, and ".json" extension.
    return string(abi.encodePacked(_baseURI(), Strings.toString(_id), ".json"));
    }



    /**
     * @notice Set NFT price
     */
    function setNftPrice(uint256 newPrice_) external onlyOwner {
        _nftPrice = newPrice_;
    }

    /**
     * @notice Set mint limit per tx
     */
    function setMaxMintAmountPerTransaction(uint16 amount_) external onlyOwner {
        _maxMintPerTx = amount_;
    }

    /**
     * @notice Set wallet limit
     */
    function setMaxMintAmountPerWallet(uint16 amount_) external onlyOwner {
        _maxPerWallet = amount_;
    }

    /**
     * @notice Set max supply
     */
    function setMaxSupply(uint256 maxSupply_) external onlyOwner {
        _maxSupply = maxSupply_;
    }

    /**
     * @notice Set base URI
     */
    function setBaseURI(string memory uri_) external onlyOwner {
        _base_uri = uri_;
    }

    /**
     * @notice Set unreveal URI
     */
    function setUnrevealURI(string memory uri_) external onlyOwner {
        _unreveal_uri = uri_;
    }

    function togglePause() external onlyOwner {
        _paused = !_paused;
    }

    function _mintLoop(address receiver_, uint256 mintAmount_) internal {
        _safeMint(receiver_, mintAmount_);
    }

    /**
     * @notice Get holded nft token ids of account
     */
    function getHoldList(address account_)
        external
        view
        returns (uint256[] memory)
    {
        uint256 holdCount = balanceOf(account_);
        if (holdCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory holdedTokenIds = new uint256[](holdCount);
            uint256 index;
            uint256 indexResult = 0;
            uint256 totalNftCount = totalSupply();
            for (index = 0; index < totalNftCount; index++) {
                if (ownerOf(index) == account_) {
                    holdedTokenIds[indexResult] = index;
                    indexResult = indexResult.add(1);
                }
            }
            return holdedTokenIds;
        }
    }

    /**
     * @notice Get ownership data of token
     */
    function getOwnershipData(uint256 tokenId_)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId_);
    }

    /**
     * @dev withdraw collected ETH
     */
    function withdraw() external onlyOwner {
        uint256 etherBalance = address(this).balance;
        require(etherBalance > 0, "Insufficient ether balance");
        payable(_msgSender()).transfer(etherBalance);
    }

    //to recieve ETH from users
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_nftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts_","type":"address[]"},{"internalType":"uint256","name":"mintAmount_","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"}],"name":"getHoldList","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount_","type":"uint16"}],"name":"setMaxMintAmountPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount_","type":"uint16"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice_","type":"uint256"}],"name":"setNftPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setUnrevealURI","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":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405266470de4df82000060095561014d600a556014600b819055600c55600f805460ff191660011790553480156200003957600080fd5b50604080518082018252601581527f45786563757469766573206f6620436c7562203333000000000000000000000060208083019182528351808501909452600484526343454f5360e01b9084015281519192916200009b916002916200012a565b508051620000b19060039060208401906200012a565b505050620000ce620000c8620000d460201b60201c565b620000d8565b6200020d565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013890620001d0565b90600052602060002090601f0160209004810192826200015c5760008555620001a7565b82601f106200017757805160ff1916838001178555620001a7565b82800160010185558215620001a7579182015b82811115620001a75782518255916020019190600101906200018a565b50620001b5929150620001b9565b5090565b5b80821115620001b55760008155600101620001ba565b600181811c90821680620001e557607f821691505b602082108114156200020757634e487b7160e01b600052602260045260246000fd5b50919050565b612104806200021d6000396000f3fe6080604052600436106102085760003560e01c80637fa8e5e411610118578063c4ae3168116100a0578063dc33e6811161006f578063dc33e681146105f0578063de314a5914610610578063e4a961a714610626578063e985e9c514610646578063f2fde38b1461066657600080fd5b8063c4ae31681461056e578063c87b56dd14610583578063cef11729146105a3578063d5dc45fe146105c357600080fd5b806397bc411c116100e757806397bc411c146104db578063a0712d68146104fb578063a22cb4651461050e578063b88d4fde1461052e578063c204642c1461054e57600080fd5b80637fa8e5e41461043c5780638da5cb5b146104525780639231ab2a1461047057806395d89b41146104c657600080fd5b806323b872dd1161019b5780636352211e1161016a5780636352211e146103a75780636f8b44b0146103c757806370a08231146103e7578063715018a6146104075780637d9a7a4c1461041c57600080fd5b806323b872dd146103325780633ccfd60b1461035257806342842e0e1461036757806355f804b31461038757600080fd5b80631029e38b116101d75780631029e38b146102c557806316c61ccc146102e957806318160ddd1461030357806322f4596f1461031c57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a357600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061023461022f366004611d4b565b610686565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106d8565b6040516102409190611ef6565b34801561027757600080fd5b5061028b610286366004611df1565b61076a565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611c68565b6107ae565b005b3480156102d157600080fd5b506102db60095481565b604051908152602001610240565b3480156102f557600080fd5b50600f546102349060ff1681565b34801561030f57600080fd5b50600154600054036102db565b34801561032857600080fd5b506102db600a5481565b34801561033e57600080fd5b506102c361034d366004611b75565b61083c565b34801561035e57600080fd5b506102c3610847565b34801561037357600080fd5b506102c3610382366004611b75565b6108f9565b34801561039357600080fd5b506102c36103a2366004611d85565b610914565b3480156103b357600080fd5b5061028b6103c2366004611df1565b610951565b3480156103d357600080fd5b506102c36103e2366004611df1565b610963565b3480156103f357600080fd5b506102db610402366004611b27565b610992565b34801561041357600080fd5b506102c36109e0565b34801561042857600080fd5b506102c3610437366004611df1565b610a16565b34801561044857600080fd5b506102db600c5481565b34801561045e57600080fd5b506008546001600160a01b031661028b565b34801561047c57600080fd5b5061049061048b366004611df1565b610a45565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610240565b3480156104d257600080fd5b5061025e610a6b565b3480156104e757600080fd5b506102c36104f6366004611d85565b610a7a565b6102c3610509366004611df1565b610ab7565b34801561051a57600080fd5b506102c3610529366004611c2c565b610cd5565b34801561053a57600080fd5b506102c3610549366004611bb1565b610d6b565b34801561055a57600080fd5b506102c3610569366004611c92565b610da5565b34801561057a57600080fd5b506102c3610e16565b34801561058f57600080fd5b5061025e61059e366004611df1565b610e54565b3480156105af57600080fd5b506102c36105be366004611dcd565b610efb565b3480156105cf57600080fd5b506105e36105de366004611b27565b610f2e565b6040516102409190611eb2565b3480156105fc57600080fd5b506102db61060b366004611b27565b61102f565b34801561061c57600080fd5b506102db600b5481565b34801561063257600080fd5b506102c3610641366004611dcd565b61103a565b34801561065257600080fd5b50610234610661366004611b42565b61106d565b34801561067257600080fd5b506102c3610681366004611b27565b61109b565b60006001600160e01b031982166380ac58cd60e01b14806106b757506001600160e01b03198216635b5e139f60e01b145b806106d257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106e790611ffc565b80601f016020809104026020016040519081016040528092919081815260200182805461071390611ffc565b80156107605780601f1061073557610100808354040283529160200191610760565b820191906000526020600020905b81548152906001019060200180831161074357829003601f168201915b5050505050905090565b600061077582611133565b610792576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107b982610951565b9050806001600160a01b0316836001600160a01b031614156107ee5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061080e575061080c813361106d565b155b1561082c576040516367d9dca160e11b815260040160405180910390fd5b61083783838361115e565b505050565b6108378383836111ba565b6008546001600160a01b0316331461087a5760405162461bcd60e51b815260040161087190611f09565b60405180910390fd5b47806108c85760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742065746865722062616c616e63650000000000006044820152606401610871565b604051339082156108fc029083906000818181858888f193505050501580156108f5573d6000803e3d6000fd5b5050565b61083783838360405180602001604052806000815250610d6b565b6008546001600160a01b0316331461093e5760405162461bcd60e51b815260040161087190611f09565b80516108f590600d906020840190611a1b565b600061095c826113ce565b5192915050565b6008546001600160a01b0316331461098d5760405162461bcd60e51b815260040161087190611f09565b600a55565b60006001600160a01b0382166109bb576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610a0a5760405162461bcd60e51b815260040161087190611f09565b610a1460006114e7565b565b6008546001600160a01b03163314610a405760405162461bcd60e51b815260040161087190611f09565b600955565b60408051606081018252600080825260208201819052918101919091526106d2826113ce565b6060600380546106e790611ffc565b6008546001600160a01b03163314610aa45760405162461bcd60e51b815260040161087190611f09565b80516108f590600e906020840190611a1b565b6008546001600160a01b03163314610cc8576000610ad433610992565b600f5490915060ff1615610b1b5760405162461bcd60e51b815260206004820152600e60248201526d14185d5cd959081d1bc81b5a5b9d60921b6044820152606401610871565b60008211610b5c5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610871565b600b541580610b6d5750600b548211155b610bb25760405162461bcd60e51b8152602060048201526016602482015275115e18d95959081d1e08185b5bdd5b9d081b1a5b5a5d60521b6044820152606401610871565b600c541580610bcc5750600c54610bc98284611539565b11155b610c0e5760405162461bcd60e51b8152602060048201526013602482015272115e18d95959081dd85b1b195d081b1a5b5a5d606a1b6044820152606401610871565b600a54610c2883610c226001546000540390565b90611539565b1115610c6a5760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b6044820152606401610871565b600954610c77908361159f565b341015610cc65760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742066756e647320746f206d696e740000000000006044820152606401610871565b505b610cd2338261161e565b50565b6001600160a01b038216331415610cff5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d768484846111ba565b610d8284848484611628565b610d9f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610dcf5760405162461bcd60e51b815260040161087190611f09565b60005b8251811015610837576000838281518110610def57610def61208c565b60200260200101519050610e03818461161e565b5080610e0e81612031565b915050610dd2565b6008546001600160a01b03163314610e405760405162461bcd60e51b815260040161087190611f09565b600f805460ff19811660ff90911615179055565b6060610e5f82611133565b610ec35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610871565b610ecb611737565b610ed483611746565b604051602001610ee5929190611e36565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610f255760405162461bcd60e51b815260040161087190611f09565b61ffff16600c55565b60606000610f3b83610992565b905080610f58575050604080516000815260208101909152919050565b6000816001600160401b03811115610f7257610f726120a2565b604051908082528060200260200182016040528015610f9b578160200160208202803683370190505b50905060008080610faf6001546000540390565b9050600092505b8083101561101e57866001600160a01b0316610fd184610951565b6001600160a01b0316141561100c5782848381518110610ff357610ff361208c565b6020908102919091010152611009826001611539565b91505b8261101681612031565b935050610fb6565b509195945050505050565b50919050565b60006106d282611843565b6008546001600160a01b031633146110645760405162461bcd60e51b815260040161087190611f09565b61ffff16600b55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146110c55760405162461bcd60e51b815260040161087190611f09565b6001600160a01b03811661112a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610871565b610cd2816114e7565b60008054821080156106d2575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111c5826113ce565b80519091506000906001600160a01b0316336001600160a01b031614806111f3575081516111f3903361106d565b8061120e5750336112038461076a565b6001600160a01b0316145b90508061122e57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146112635760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661128a57604051633a954ecd60e21b815260040160405180910390fd5b61129a600084846000015161115e565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166113845760005481101561138457825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482908110156114ce57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114cc5780516001600160a01b031615611463579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156114c7579392505050565b611463565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000806115468385611f6e565b9050838110156115985760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610871565b9392505050565b6000826115ae575060006106d2565b60006115ba8385611f9a565b9050826115c78583611f86565b146115985760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610871565b6108f58282611898565b60006001600160a01b0384163b1561172b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061166c903390899088908890600401611e75565b602060405180830381600087803b15801561168657600080fd5b505af19250505080156116b6575060408051601f3d908101601f191682019092526116b391810190611d68565b60015b611711573d8080156116e4576040519150601f19603f3d011682016040523d82523d6000602084013e6116e9565b606091505b508051611709576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061172f565b5060015b949350505050565b6060600d80546106e790611ffc565b60608161176a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611794578061177e81612031565b915061178d9050600a83611f86565b915061176e565b6000816001600160401b038111156117ae576117ae6120a2565b6040519080825280601f01601f1916602001820160405280156117d8576020820181803683370190505b5090505b841561172f576117ed600183611fb9565b91506117fa600a8661204c565b611805906030611f6e565b60f81b81838151811061181a5761181a61208c565b60200101906001600160f81b031916908160001a90535061183c600a86611f86565b94506117dc565b60006001600160a01b03821661186c576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b6108f582826040518060200160405280600081525061083783838360016000546001600160a01b0385166118de57604051622e076360e81b815260040160405180910390fd5b836118fc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611a125760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156119e857506119e66000888488611628565b155b15611a06576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611991565b506000556113c7565b828054611a2790611ffc565b90600052602060002090601f016020900481019282611a495760008555611a8f565b82601f10611a6257805160ff1916838001178555611a8f565b82800160010185558215611a8f579182015b82811115611a8f578251825591602001919060010190611a74565b50611a9b929150611a9f565b5090565b5b80821115611a9b5760008155600101611aa0565b60006001600160401b03831115611acd57611acd6120a2565b611ae0601f8401601f1916602001611f3e565b9050828152838383011115611af457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611b2257600080fd5b919050565b600060208284031215611b3957600080fd5b61159882611b0b565b60008060408385031215611b5557600080fd5b611b5e83611b0b565b9150611b6c60208401611b0b565b90509250929050565b600080600060608486031215611b8a57600080fd5b611b9384611b0b565b9250611ba160208501611b0b565b9150604084013590509250925092565b60008060008060808587031215611bc757600080fd5b611bd085611b0b565b9350611bde60208601611b0b565b92506040850135915060608501356001600160401b03811115611c0057600080fd5b8501601f81018713611c1157600080fd5b611c2087823560208401611ab4565b91505092959194509250565b60008060408385031215611c3f57600080fd5b611c4883611b0b565b915060208301358015158114611c5d57600080fd5b809150509250929050565b60008060408385031215611c7b57600080fd5b611c8483611b0b565b946020939093013593505050565b60008060408385031215611ca557600080fd5b82356001600160401b0380821115611cbc57600080fd5b818501915085601f830112611cd057600080fd5b8135602082821115611ce457611ce46120a2565b8160051b9250611cf5818401611f3e565b8281528181019085830185870184018b1015611d1057600080fd5b600096505b84871015611d3a57611d2681611b0b565b835260019690960195918301918301611d15565b509997909101359750505050505050565b600060208284031215611d5d57600080fd5b8135611598816120b8565b600060208284031215611d7a57600080fd5b8151611598816120b8565b600060208284031215611d9757600080fd5b81356001600160401b03811115611dad57600080fd5b8201601f81018413611dbe57600080fd5b61172f84823560208401611ab4565b600060208284031215611ddf57600080fd5b813561ffff8116811461159857600080fd5b600060208284031215611e0357600080fd5b5035919050565b60008151808452611e22816020860160208601611fd0565b601f01601f19169290920160200192915050565b60008351611e48818460208801611fd0565b835190830190611e5c818360208801611fd0565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ea890830184611e0a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611eea57835183529284019291840191600101611ece565b50909695505050505050565b6020815260006115986020830184611e0a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715611f6657611f666120a2565b604052919050565b60008219821115611f8157611f81612060565b500190565b600082611f9557611f95612076565b500490565b6000816000190483118215151615611fb457611fb4612060565b500290565b600082821015611fcb57611fcb612060565b500390565b60005b83811015611feb578181015183820152602001611fd3565b83811115610d9f5750506000910152565b600181811c9082168061201057607f821691505b6020821081141561102957634e487b7160e01b600052602260045260246000fd5b600060001982141561204557612045612060565b5060010190565b60008261205b5761205b612076565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cd257600080fdfea2646970667358221220a443a9dd62aa40d8b69a7c3568aa272be584af87a9e505e579cc0ed260cf830364736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102085760003560e01c80637fa8e5e411610118578063c4ae3168116100a0578063dc33e6811161006f578063dc33e681146105f0578063de314a5914610610578063e4a961a714610626578063e985e9c514610646578063f2fde38b1461066657600080fd5b8063c4ae31681461056e578063c87b56dd14610583578063cef11729146105a3578063d5dc45fe146105c357600080fd5b806397bc411c116100e757806397bc411c146104db578063a0712d68146104fb578063a22cb4651461050e578063b88d4fde1461052e578063c204642c1461054e57600080fd5b80637fa8e5e41461043c5780638da5cb5b146104525780639231ab2a1461047057806395d89b41146104c657600080fd5b806323b872dd1161019b5780636352211e1161016a5780636352211e146103a75780636f8b44b0146103c757806370a08231146103e7578063715018a6146104075780637d9a7a4c1461041c57600080fd5b806323b872dd146103325780633ccfd60b1461035257806342842e0e1461036757806355f804b31461038757600080fd5b80631029e38b116101d75780631029e38b146102c557806316c61ccc146102e957806318160ddd1461030357806322f4596f1461031c57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a357600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061023461022f366004611d4b565b610686565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106d8565b6040516102409190611ef6565b34801561027757600080fd5b5061028b610286366004611df1565b61076a565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611c68565b6107ae565b005b3480156102d157600080fd5b506102db60095481565b604051908152602001610240565b3480156102f557600080fd5b50600f546102349060ff1681565b34801561030f57600080fd5b50600154600054036102db565b34801561032857600080fd5b506102db600a5481565b34801561033e57600080fd5b506102c361034d366004611b75565b61083c565b34801561035e57600080fd5b506102c3610847565b34801561037357600080fd5b506102c3610382366004611b75565b6108f9565b34801561039357600080fd5b506102c36103a2366004611d85565b610914565b3480156103b357600080fd5b5061028b6103c2366004611df1565b610951565b3480156103d357600080fd5b506102c36103e2366004611df1565b610963565b3480156103f357600080fd5b506102db610402366004611b27565b610992565b34801561041357600080fd5b506102c36109e0565b34801561042857600080fd5b506102c3610437366004611df1565b610a16565b34801561044857600080fd5b506102db600c5481565b34801561045e57600080fd5b506008546001600160a01b031661028b565b34801561047c57600080fd5b5061049061048b366004611df1565b610a45565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610240565b3480156104d257600080fd5b5061025e610a6b565b3480156104e757600080fd5b506102c36104f6366004611d85565b610a7a565b6102c3610509366004611df1565b610ab7565b34801561051a57600080fd5b506102c3610529366004611c2c565b610cd5565b34801561053a57600080fd5b506102c3610549366004611bb1565b610d6b565b34801561055a57600080fd5b506102c3610569366004611c92565b610da5565b34801561057a57600080fd5b506102c3610e16565b34801561058f57600080fd5b5061025e61059e366004611df1565b610e54565b3480156105af57600080fd5b506102c36105be366004611dcd565b610efb565b3480156105cf57600080fd5b506105e36105de366004611b27565b610f2e565b6040516102409190611eb2565b3480156105fc57600080fd5b506102db61060b366004611b27565b61102f565b34801561061c57600080fd5b506102db600b5481565b34801561063257600080fd5b506102c3610641366004611dcd565b61103a565b34801561065257600080fd5b50610234610661366004611b42565b61106d565b34801561067257600080fd5b506102c3610681366004611b27565b61109b565b60006001600160e01b031982166380ac58cd60e01b14806106b757506001600160e01b03198216635b5e139f60e01b145b806106d257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106e790611ffc565b80601f016020809104026020016040519081016040528092919081815260200182805461071390611ffc565b80156107605780601f1061073557610100808354040283529160200191610760565b820191906000526020600020905b81548152906001019060200180831161074357829003601f168201915b5050505050905090565b600061077582611133565b610792576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107b982610951565b9050806001600160a01b0316836001600160a01b031614156107ee5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061080e575061080c813361106d565b155b1561082c576040516367d9dca160e11b815260040160405180910390fd5b61083783838361115e565b505050565b6108378383836111ba565b6008546001600160a01b0316331461087a5760405162461bcd60e51b815260040161087190611f09565b60405180910390fd5b47806108c85760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742065746865722062616c616e63650000000000006044820152606401610871565b604051339082156108fc029083906000818181858888f193505050501580156108f5573d6000803e3d6000fd5b5050565b61083783838360405180602001604052806000815250610d6b565b6008546001600160a01b0316331461093e5760405162461bcd60e51b815260040161087190611f09565b80516108f590600d906020840190611a1b565b600061095c826113ce565b5192915050565b6008546001600160a01b0316331461098d5760405162461bcd60e51b815260040161087190611f09565b600a55565b60006001600160a01b0382166109bb576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610a0a5760405162461bcd60e51b815260040161087190611f09565b610a1460006114e7565b565b6008546001600160a01b03163314610a405760405162461bcd60e51b815260040161087190611f09565b600955565b60408051606081018252600080825260208201819052918101919091526106d2826113ce565b6060600380546106e790611ffc565b6008546001600160a01b03163314610aa45760405162461bcd60e51b815260040161087190611f09565b80516108f590600e906020840190611a1b565b6008546001600160a01b03163314610cc8576000610ad433610992565b600f5490915060ff1615610b1b5760405162461bcd60e51b815260206004820152600e60248201526d14185d5cd959081d1bc81b5a5b9d60921b6044820152606401610871565b60008211610b5c5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610871565b600b541580610b6d5750600b548211155b610bb25760405162461bcd60e51b8152602060048201526016602482015275115e18d95959081d1e08185b5bdd5b9d081b1a5b5a5d60521b6044820152606401610871565b600c541580610bcc5750600c54610bc98284611539565b11155b610c0e5760405162461bcd60e51b8152602060048201526013602482015272115e18d95959081dd85b1b195d081b1a5b5a5d606a1b6044820152606401610871565b600a54610c2883610c226001546000540390565b90611539565b1115610c6a5760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b6044820152606401610871565b600954610c77908361159f565b341015610cc65760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742066756e647320746f206d696e740000000000006044820152606401610871565b505b610cd2338261161e565b50565b6001600160a01b038216331415610cff5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d768484846111ba565b610d8284848484611628565b610d9f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610dcf5760405162461bcd60e51b815260040161087190611f09565b60005b8251811015610837576000838281518110610def57610def61208c565b60200260200101519050610e03818461161e565b5080610e0e81612031565b915050610dd2565b6008546001600160a01b03163314610e405760405162461bcd60e51b815260040161087190611f09565b600f805460ff19811660ff90911615179055565b6060610e5f82611133565b610ec35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610871565b610ecb611737565b610ed483611746565b604051602001610ee5929190611e36565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610f255760405162461bcd60e51b815260040161087190611f09565b61ffff16600c55565b60606000610f3b83610992565b905080610f58575050604080516000815260208101909152919050565b6000816001600160401b03811115610f7257610f726120a2565b604051908082528060200260200182016040528015610f9b578160200160208202803683370190505b50905060008080610faf6001546000540390565b9050600092505b8083101561101e57866001600160a01b0316610fd184610951565b6001600160a01b0316141561100c5782848381518110610ff357610ff361208c565b6020908102919091010152611009826001611539565b91505b8261101681612031565b935050610fb6565b509195945050505050565b50919050565b60006106d282611843565b6008546001600160a01b031633146110645760405162461bcd60e51b815260040161087190611f09565b61ffff16600b55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146110c55760405162461bcd60e51b815260040161087190611f09565b6001600160a01b03811661112a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610871565b610cd2816114e7565b60008054821080156106d2575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111c5826113ce565b80519091506000906001600160a01b0316336001600160a01b031614806111f3575081516111f3903361106d565b8061120e5750336112038461076a565b6001600160a01b0316145b90508061122e57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146112635760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661128a57604051633a954ecd60e21b815260040160405180910390fd5b61129a600084846000015161115e565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166113845760005481101561138457825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482908110156114ce57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114cc5780516001600160a01b031615611463579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156114c7579392505050565b611463565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000806115468385611f6e565b9050838110156115985760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610871565b9392505050565b6000826115ae575060006106d2565b60006115ba8385611f9a565b9050826115c78583611f86565b146115985760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610871565b6108f58282611898565b60006001600160a01b0384163b1561172b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061166c903390899088908890600401611e75565b602060405180830381600087803b15801561168657600080fd5b505af19250505080156116b6575060408051601f3d908101601f191682019092526116b391810190611d68565b60015b611711573d8080156116e4576040519150601f19603f3d011682016040523d82523d6000602084013e6116e9565b606091505b508051611709576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061172f565b5060015b949350505050565b6060600d80546106e790611ffc565b60608161176a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611794578061177e81612031565b915061178d9050600a83611f86565b915061176e565b6000816001600160401b038111156117ae576117ae6120a2565b6040519080825280601f01601f1916602001820160405280156117d8576020820181803683370190505b5090505b841561172f576117ed600183611fb9565b91506117fa600a8661204c565b611805906030611f6e565b60f81b81838151811061181a5761181a61208c565b60200101906001600160f81b031916908160001a90535061183c600a86611f86565b94506117dc565b60006001600160a01b03821661186c576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b6108f582826040518060200160405280600081525061083783838360016000546001600160a01b0385166118de57604051622e076360e81b815260040160405180910390fd5b836118fc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611a125760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156119e857506119e66000888488611628565b155b15611a06576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611991565b506000556113c7565b828054611a2790611ffc565b90600052602060002090601f016020900481019282611a495760008555611a8f565b82601f10611a6257805160ff1916838001178555611a8f565b82800160010185558215611a8f579182015b82811115611a8f578251825591602001919060010190611a74565b50611a9b929150611a9f565b5090565b5b80821115611a9b5760008155600101611aa0565b60006001600160401b03831115611acd57611acd6120a2565b611ae0601f8401601f1916602001611f3e565b9050828152838383011115611af457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611b2257600080fd5b919050565b600060208284031215611b3957600080fd5b61159882611b0b565b60008060408385031215611b5557600080fd5b611b5e83611b0b565b9150611b6c60208401611b0b565b90509250929050565b600080600060608486031215611b8a57600080fd5b611b9384611b0b565b9250611ba160208501611b0b565b9150604084013590509250925092565b60008060008060808587031215611bc757600080fd5b611bd085611b0b565b9350611bde60208601611b0b565b92506040850135915060608501356001600160401b03811115611c0057600080fd5b8501601f81018713611c1157600080fd5b611c2087823560208401611ab4565b91505092959194509250565b60008060408385031215611c3f57600080fd5b611c4883611b0b565b915060208301358015158114611c5d57600080fd5b809150509250929050565b60008060408385031215611c7b57600080fd5b611c8483611b0b565b946020939093013593505050565b60008060408385031215611ca557600080fd5b82356001600160401b0380821115611cbc57600080fd5b818501915085601f830112611cd057600080fd5b8135602082821115611ce457611ce46120a2565b8160051b9250611cf5818401611f3e565b8281528181019085830185870184018b1015611d1057600080fd5b600096505b84871015611d3a57611d2681611b0b565b835260019690960195918301918301611d15565b509997909101359750505050505050565b600060208284031215611d5d57600080fd5b8135611598816120b8565b600060208284031215611d7a57600080fd5b8151611598816120b8565b600060208284031215611d9757600080fd5b81356001600160401b03811115611dad57600080fd5b8201601f81018413611dbe57600080fd5b61172f84823560208401611ab4565b600060208284031215611ddf57600080fd5b813561ffff8116811461159857600080fd5b600060208284031215611e0357600080fd5b5035919050565b60008151808452611e22816020860160208601611fd0565b601f01601f19169290920160200192915050565b60008351611e48818460208801611fd0565b835190830190611e5c818360208801611fd0565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ea890830184611e0a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611eea57835183529284019291840191600101611ece565b50909695505050505050565b6020815260006115986020830184611e0a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715611f6657611f666120a2565b604052919050565b60008219821115611f8157611f81612060565b500190565b600082611f9557611f95612076565b500490565b6000816000190483118215151615611fb457611fb4612060565b500290565b600082821015611fcb57611fcb612060565b500390565b60005b83811015611feb578181015183820152602001611fd3565b83811115610d9f5750506000910152565b600181811c9082168061201057607f821691505b6020821081141561102957634e487b7160e01b600052602260045260246000fd5b600060001982141561204557612045612060565b5060010190565b60008261205b5761205b612076565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cd257600080fdfea2646970667358221220a443a9dd62aa40d8b69a7c3568aa272be584af87a9e505e579cc0ed260cf830364736f6c63430008070033

Deployed Bytecode Sourcemap

57061:5058:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36544:355;;;;;;;;;;-1:-1:-1;36544:355:0;;;;;:::i;:::-;;:::i;:::-;;;7540:14:1;;7533:22;7515:41;;7503:2;7488:18;36544:355:0;;;;;;;;39984:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41584:245::-;;;;;;;;;;-1:-1:-1;41584:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6201:32:1;;;6183:51;;6171:2;6156:18;41584:245:0;6037:203:1;41147:371:0;;;;;;;;;;-1:-1:-1;41147:371:0;;;;;:::i;:::-;;:::i;:::-;;57181:37;;;;;;;;;;;;;;;;;;;12766:25:1;;;12754:2;12739:18;57181:37:0;12620:177:1;57437:26:0;;;;;;;;;;-1:-1:-1;57437:26:0;;;;;;;;36205:267;;;;;;;;;;-1:-1:-1;36441:12:0;;36249:7;36425:13;:28;36205:267;;57245:31;;;;;;;;;;;;;;;;42555:170;;;;;;;;;;-1:-1:-1;42555:170:0;;;;;:::i;:::-;;:::i;61823:223::-;;;;;;;;;;;;;:::i;42796:185::-;;;;;;;;;;-1:-1:-1;42796:185:0;;;;;:::i;:::-;;:::i;60218:94::-;;;;;;;;;;-1:-1:-1;60218:94:0;;;;;:::i;:::-;;:::i;39793:124::-;;;;;;;;;;-1:-1:-1;39793:124:0;;;;;:::i;:::-;;:::i;60060:103::-;;;;;;;;;;-1:-1:-1;60060:103:0;;;;;:::i;:::-;;:::i;36963:206::-;;;;;;;;;;-1:-1:-1;36963:206:0;;;;;:::i;:::-;;:::i;7615:103::-;;;;;;;;;;;;;:::i;59552:99::-;;;;;;;;;;-1:-1:-1;59552:99:0;;;;;:::i;:::-;;:::i;57323:33::-;;;;;;;;;;;;;;;;6964:87;;;;;;;;;;-1:-1:-1;7037:6:0;;-1:-1:-1;;;;;7037:6:0;6964:87;;61592:169;;;;;;;;;;-1:-1:-1;61592:169:0;;;;;:::i;:::-;;:::i;:::-;;;;12406:13:1;;-1:-1:-1;;;;;12402:39:1;12384:58;;12502:4;12490:17;;;12484:24;-1:-1:-1;;;;;12480:49:1;12458:20;;;12451:79;12588:17;;;12582:24;12575:32;12568:40;12546:20;;;12539:70;12372:2;12357:18;61592:169:0;12174:441:1;40153:104:0;;;;;;;;;;;;;:::i;60371:102::-;;;;;;;;;;-1:-1:-1;60371:102:0;;;;;:::i;:::-;;:::i;57707:950::-;;;;;;:::i;:::-;;:::i;41901:302::-;;;;;;;;;;-1:-1:-1;41901:302:0;;;;;:::i;:::-;;:::i;43052:342::-;;;;;;;;;;-1:-1:-1;43052:342:0;;;;;:::i;:::-;;:::i;58731:266::-;;;;;;;;;;-1:-1:-1;58731:266:0;;;;;:::i;:::-;;:::i;60481:79::-;;;;;;;;;;;;;:::i;59176:316::-;;;;;;;;;;-1:-1:-1;59176:316:0;;;;;:::i;:::-;;:::i;59891:112::-;;;;;;;;;;-1:-1:-1;59891:112:0;;;;;:::i;:::-;;:::i;60766:756::-;;;;;;;;;;-1:-1:-1;60766:756:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;57537:121::-;;;;;;;;;;-1:-1:-1;57537:121:0;;;;;:::i;:::-;;:::i;57283:33::-;;;;;;;;;;;;;;;;59715:117;;;;;;;;;;-1:-1:-1;59715:117:0;;;;;:::i;:::-;;:::i;42274:214::-;;;;;;;;;;-1:-1:-1;42274:214:0;;;;;:::i;:::-;;:::i;7873:238::-;;;;;;;;;;-1:-1:-1;7873:238:0;;;;;:::i;:::-;;:::i;36544:355::-;36691:4;-1:-1:-1;;;;;;36733:40:0;;-1:-1:-1;;;36733:40:0;;:105;;-1:-1:-1;;;;;;;36790:48:0;;-1:-1:-1;;;36790:48:0;36733:105;:158;;;-1:-1:-1;;;;;;;;;;25830:40:0;;;36855:36;36713:178;36544:355;-1:-1:-1;;36544:355:0:o;39984:100::-;40038:13;40071:5;40064:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39984:100;:::o;41584:245::-;41688:7;41718:16;41726:7;41718;:16::i;:::-;41713:64;;41743:34;;-1:-1:-1;;;41743:34:0;;;;;;;;;;;41713:64;-1:-1:-1;41797:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41797:24:0;;41584:245::o;41147:371::-;41220:13;41236:24;41252:7;41236:15;:24::i;:::-;41220:40;;41281:5;-1:-1:-1;;;;;41275:11:0;:2;-1:-1:-1;;;;;41275:11:0;;41271:48;;;41295:24;;-1:-1:-1;;;41295:24:0;;;;;;;;;;;41271:48;5747:10;-1:-1:-1;;;;;41336:21:0;;;;;;:63;;-1:-1:-1;41362:37:0;41379:5;5747:10;42274:214;:::i;41362:37::-;41361:38;41336:63;41332:138;;;41423:35;;-1:-1:-1;;;41423:35:0;;;;;;;;;;;41332:138;41482:28;41491:2;41495:7;41504:5;41482:8;:28::i;:::-;41209:309;41147:371;;:::o;42555:170::-;42689:28;42699:4;42705:2;42709:7;42689:9;:28::i;61823:223::-;7037:6;;-1:-1:-1;;;;;7037:6:0;5747:10;7184:23;7176:68;;;;-1:-1:-1;;;7176:68:0;;;;;;;:::i;:::-;;;;;;;;;61896:21:::1;61936:16:::0;61928:55:::1;;;::::0;-1:-1:-1;;;61928:55:0;;9798:2:1;61928:55:0::1;::::0;::::1;9780:21:1::0;9837:2;9817:18;;;9810:30;9876:28;9856:18;;;9849:56;9922:18;;61928:55:0::1;9596:350:1::0;61928:55:0::1;61994:44;::::0;5747:10;;61994:44;::::1;;;::::0;62025:12;;61994:44:::1;::::0;;;62025:12;5747:10;61994:44;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;61862:184;61823:223::o:0;42796:185::-;42934:39;42951:4;42957:2;42961:7;42934:39;;;;;;;;;;;;:16;:39::i;60218:94::-;7037:6;;-1:-1:-1;;;;;7037:6:0;5747:10;7184:23;7176:68;;;;-1:-1:-1;;;7176:68:0;;;;;;;:::i;:::-;60288:16;;::::1;::::0;:9:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;39793:124::-:0;39857:7;39884:20;39896:7;39884:11;:20::i;:::-;:25;;39793:124;-1:-1:-1;;39793:124:0:o;60060:103::-;7037:6;;-1:-1:-1;;;;;7037:6:0;5747:10;7184:23;7176:68;;;;-1:-1:-1;;;7176:68:0;;;;;;;:::i;:::-;60132:10:::1;:23:::0;60060:103::o;36963:206::-;37027:7;-1:-1:-1;;;;;37051:19:0;;37047:60;;37079:28;;-1:-1:-1;;;37079:28:0;;;;;;;;;;;37047:60;-1:-1:-1;;;;;;37133:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37133:27:0;;36963:206::o;7615:103::-;7037:6;;-1:-1:-1;;;;;7037:6:0;5747:10;7184:23;7176:68;;;;-1:-1:-1;;;7176:68:0;;;;;;;:::i;:::-;7680:30:::1;7707:1;7680:18;:30::i;:::-;7615:103::o:0;59552:99::-;7037:6;;-1:-1:-1;;;;;7037:6:0;5747:10;7184:23;7176:68;;;;-1:-1:-1;;;7176:68:0;;;;;;;:::i;:::-;59622:9:::1;:21:::0;59552:99::o;61592:169::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;61732:21:0;61744:8;61732:11;:21::i;40153:104::-;40209:13;40242:7;40235:14;;;;;:::i;60371:102::-;7037:6;;-1:-1:-1;;;;;7037:6:0;5747:10;7184:23;7176:68;;;;-1:-1:-1;;;7176:68:0;;;;;;;:::i;:::-;60445:20;;::::1;::::0;:13:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;57707:950::-:0;7037:6;;-1:-1:-1;;;;;7037:6:0;5747:10;57774:23;57770:831;;57814:23;57840;5747:10;36963:206;:::i;57840:23::-;57889:7;;57814:49;;-1:-1:-1;57889:7:0;;57888:8;57880:35;;;;-1:-1:-1;;;57880:35:0;;10901:2:1;57880:35:0;;;10883:21:1;10940:2;10920:18;;;10913:30;-1:-1:-1;;;10959:18:1;;;10952:44;11013:18;;57880:35:0;10699:338:1;57880:35:0;57952:1;57938:11;:15;57930:42;;;;-1:-1:-1;;;57930:42:0;;8748:2:1;57930:42:0;;;8730:21:1;8787:2;8767:18;;;8760:30;-1:-1:-1;;;8806:18:1;;;8799:44;8860:18;;57930:42:0;8546:338:1;57930:42:0;58013:13;;:18;;:50;;;58050:13;;58035:11;:28;;58013:50;57987:134;;;;-1:-1:-1;;;57987:134:0;;9447:2:1;57987:134:0;;;9429:21:1;9486:2;9466:18;;;9459:30;-1:-1:-1;;;9505:18:1;;;9498:52;9567:18;;57987:134:0;9245:346:1;57987:134:0;58162:13;;:18;;:92;;-1:-1:-1;58241:13:0;;58205:32;:15;58225:11;58205:19;:32::i;:::-;:49;;58162:92;58136:173;;;;-1:-1:-1;;;58136:173:0;;7993:2:1;58136:173:0;;;7975:21:1;8032:2;8012:18;;;8005:30;-1:-1:-1;;;8051:18:1;;;8044:49;8110:18;;58136:173:0;7791:343:1;58136:173:0;58384:10;;58350:30;58368:11;58350:13;36441:12;;36249:7;36425:13;:28;;36205:267;58350:13;:17;;:30::i;:::-;:44;;58324:123;;;;-1:-1:-1;;;58324:123:0;;10153:2:1;58324:123:0;;;10135:21:1;10192:2;10172:18;;;10165:30;-1:-1:-1;;;10211:18:1;;;10204:47;10268:18;;58324:123:0;9951:341:1;58324:123:0;58501:9;;:26;;58515:11;58501:13;:26::i;:::-;58488:9;:39;;58462:127;;;;-1:-1:-1;;;58462:127:0;;11605:2:1;58462:127:0;;;11587:21:1;11644:2;11624:18;;;11617:30;11683:28;11663:18;;;11656:56;11729:18;;58462:127:0;11403:350:1;58462:127:0;57799:802;57770:831;58613:36;5747:10;58637:11;58613:9;:36::i;:::-;57707:950;:::o;41901:302::-;-1:-1:-1;;;;;42015:24:0;;5747:10;42015:24;42011:54;;;42048:17;;-1:-1:-1;;;42048:17:0;;;;;;;;;;;42011:54;5747:10;42078:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;42078:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;42078:53:0;;;;;;;;;;42147:48;;7515:41:1;;;42078:42:0;;5747:10;42147:48;;7488:18:1;42147:48:0;;;;;;;41901:302;;:::o;43052:342::-;43219:28;43229:4;43235:2;43239:7;43219:9;:28::i;:::-;43263:48;43286:4;43292:2;43296:7;43305:5;43263:22;:48::i;:::-;43258:129;;43335:40;;-1:-1:-1;;;43335:40:0;;;;;;;;;;;43258:129;43052:342;;;;:::o;58731:266::-;7037:6;;-1:-1:-1;;;;;7037:6:0;5747:10;7184:23;7176:68;;;;-1:-1:-1;;;7176:68:0;;;;;;;:::i;:::-;58855:9:::1;58850:140;58874:9;:16;58870:1;:20;58850:140;;;58912:10;58925:9;58935:1;58925:12;;;;;;;;:::i;:::-;;;;;;;58912:25;;58952:26;58962:2;58966:11;58952:9;:26::i;:::-;-1:-1:-1::0;58892:3:0;::::1;::::0;::::1;:::i;:::-;;;;58850:140;;60481:79:::0;7037:6;;-1:-1:-1;;;;;7037:6:0;5747:10;7184:23;7176:68;;;;-1:-1:-1;;;7176:68:0;;;;;;;:::i;:::-;60545:7:::1;::::0;;-1:-1:-1;;60534:18:0;::::1;60545:7;::::0;;::::1;60544:8;60534:18;::::0;;60481:79::o;59176:316::-;59237:13;59267:12;59275:3;59267:7;:12::i;:::-;59259:72;;;;-1:-1:-1;;;59259:72:0;;11960:2:1;59259:72:0;;;11942:21:1;11999:2;11979:18;;;11972:30;12038:34;12018:18;;;12011:62;-1:-1:-1;;;12089:18:1;;;12082:45;12144:19;;59259:72:0;11758:411:1;59259:72:0;59440:10;:8;:10::i;:::-;59452:21;59469:3;59452:16;:21::i;:::-;59423:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59409:75;;59176:316;;;:::o;59891:112::-;7037:6;;-1:-1:-1;;;;;7037:6:0;5747:10;7184:23;7176:68;;;;-1:-1:-1;;;7176:68:0;;;;;;;:::i;:::-;59972:23:::1;;:13;:23:::0;59891:112::o;60766:756::-;60855:16;60889:17;60909:19;60919:8;60909:9;:19::i;:::-;60889:39;-1:-1:-1;60943:14:0;60939:576;;-1:-1:-1;;60981:16:0;;;60995:1;60981:16;;;;;;;;;60974:23;-1:-1:-1;60766:756:0:o;60939:576::-;61030:31;61078:9;-1:-1:-1;;;;;61064:24:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61064:24:0;-1:-1:-1;61030:58:0;-1:-1:-1;61103:13:0;;;61193;36441:12;;36249:7;36425:13;:28;;36205:267;61193:13;61169:37;;61234:1;61226:9;;61221:247;61245:13;61237:5;:21;61221:247;;;61310:8;-1:-1:-1;;;;;61292:26:0;:14;61300:5;61292:7;:14::i;:::-;-1:-1:-1;;;;;61292:26:0;;61288:165;;;61373:5;61343:14;61358:11;61343:27;;;;;;;;:::i;:::-;;;;;;;;;;:35;61415:18;:11;61431:1;61415:15;:18::i;:::-;61401:32;;61288:165;61260:7;;;;:::i;:::-;;;;61221:247;;;-1:-1:-1;61489:14:0;;60766:756;-1:-1:-1;;;;;60766:756:0:o;60939:576::-;60878:644;60766:756;;;:::o;57537:121::-;57600:7;57627:23;57641:8;57627:13;:23::i;59715:117::-;7037:6;;-1:-1:-1;;;;;7037:6:0;5747:10;7184:23;7176:68;;;;-1:-1:-1;;;7176:68:0;;;;;;;:::i;:::-;59801:23:::1;;:13;:23:::0;59715:117::o;42274:214::-;-1:-1:-1;;;;;42445:25:0;;;42416:4;42445:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42274:214::o;7873:238::-;7037:6;;-1:-1:-1;;;;;7037:6:0;5747:10;7184:23;7176:68;;;;-1:-1:-1;;;7176:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7976:22:0;::::1;7954:110;;;::::0;-1:-1:-1;;;7954:110:0;;8341:2:1;7954:110:0::1;::::0;::::1;8323:21:1::0;8380:2;8360:18;;;8353:30;8419:34;8399:18;;;8392:62;-1:-1:-1;;;8470:18:1;;;8463:36;8516:19;;7954:110:0::1;8139:402:1::0;7954:110:0::1;8075:28;8094:8;8075:18;:28::i;43649:144::-:0;43706:4;43740:13;;43730:7;:23;:55;;;;-1:-1:-1;;43758:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;43758:27:0;;;;43757:28;;43649:144::o;50967:196::-;51082:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;51082:29:0;-1:-1:-1;;;;;51082:29:0;;;;;;;;;51127:28;;51082:24;;51127:28;;;;;;;50967:196;;;:::o;46417:2138::-;46532:35;46570:20;46582:7;46570:11;:20::i;:::-;46645:18;;46532:58;;-1:-1:-1;46603:22:0;;-1:-1:-1;;;;;46629:34:0;5747:10;-1:-1:-1;;;;;46629:34:0;;:101;;;-1:-1:-1;46697:18:0;;46680:50;;5747:10;42274:214;:::i;46680:50::-;46629:154;;;-1:-1:-1;5747:10:0;46747:20;46759:7;46747:11;:20::i;:::-;-1:-1:-1;;;;;46747:36:0;;46629:154;46603:181;;46802:17;46797:66;;46828:35;;-1:-1:-1;;;46828:35:0;;;;;;;;;;;46797:66;46900:4;-1:-1:-1;;;;;46878:26:0;:13;:18;;;-1:-1:-1;;;;;46878:26:0;;46874:67;;46913:28;;-1:-1:-1;;;46913:28:0;;;;;;;;;;;46874:67;-1:-1:-1;;;;;46956:16:0;;46952:52;;46981:23;;-1:-1:-1;;;46981:23:0;;;;;;;;;;;46952:52;47125:49;47142:1;47146:7;47155:13;:18;;;47125:8;:49::i;:::-;-1:-1:-1;;;;;47470:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;47470:31:0;;;-1:-1:-1;;;;;47470:31:0;;;-1:-1:-1;;47470:31:0;;;;;;;47516:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;47516:29:0;;;;;;;;;;;47562:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;47607:61:0;;;;-1:-1:-1;;;47652:15:0;47607:61;;;;;;;;;;;47942:11;;;47972:24;;;;;:29;47942:11;;47972:29;47968:471;;48197:13;;48183:11;:27;48179:245;;;48267:18;;;48235:24;;;:11;:24;;;;;;;;:50;;48350:54;;;;-1:-1:-1;;;;;48308:96:0;-1:-1:-1;;;48308:96:0;-1:-1:-1;;;;;;48308:96:0;;;-1:-1:-1;;;;;48235:50:0;;;48308:96;;;;;;;48179:245;47445:1005;48486:7;48482:2;-1:-1:-1;;;;;48467:27:0;48476:4;-1:-1:-1;;;;;48467:27:0;;;;;;;;;;;48505:42;46521:2034;;46417:2138;;;:::o;38618:1113::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;38816:13:0;;38760:7;;38809:20;;38805:859;;;38850:31;38884:17;;;:11;:17;;;;;;;;;38850:51;;;;;;;;;-1:-1:-1;;;;;38850:51:0;;;;-1:-1:-1;;;38850:51:0;;-1:-1:-1;;;;;38850:51:0;;;;;;;;-1:-1:-1;;;38850:51:0;;;;;;;;;;;;;;38920:729;;38970:14;;-1:-1:-1;;;;;38970:28:0;;38966:101;;39034:9;38618:1113;-1:-1:-1;;;38618:1113:0:o;38966:101::-;-1:-1:-1;;;39409:6:0;39454:17;;;;:11;:17;;;;;;;;;39442:29;;;;;;;;;-1:-1:-1;;;;;39442:29:0;;;;;-1:-1:-1;;;39442:29:0;;-1:-1:-1;;;;;39442:29:0;;;;;;;;-1:-1:-1;;;39442:29:0;;;;;;;;;;;;;39502:28;39498:109;;39570:9;38618:1113;-1:-1:-1;;;38618:1113:0:o;39498:109::-;39369:261;;;38831:833;38805:859;39692:31;;-1:-1:-1;;;39692:31:0;;;;;;;;;;;8271:191;8364:6;;;-1:-1:-1;;;;;8381:17:0;;;-1:-1:-1;;;;;;8381:17:0;;;;;;;8414:40;;8364:6;;;8381:17;8364:6;;8414:40;;8345:16;;8414:40;8334:128;8271:191;:::o;18304:181::-;18362:7;;18394:5;18398:1;18394;:5;:::i;:::-;18382:17;;18423:1;18418;:6;;18410:46;;;;-1:-1:-1;;;18410:46:0;;9091:2:1;18410:46:0;;;9073:21:1;9130:2;9110:18;;;9103:30;9169:29;9149:18;;;9142:57;9216:18;;18410:46:0;8889:351:1;18410:46:0;18476:1;18304:181;-1:-1:-1;;;18304:181:0:o;19692:471::-;19750:7;19995:6;19991:47;;-1:-1:-1;20025:1:0;20018:8;;19991:47;20050:9;20062:5;20066:1;20062;:5;:::i;:::-;20050:17;-1:-1:-1;20095:1:0;20086:5;20090:1;20050:17;20086:5;:::i;:::-;:10;20078:56;;;;-1:-1:-1;;;20078:56:0;;10499:2:1;20078:56:0;;;10481:21:1;10538:2;10518:18;;;10511:30;10577:34;10557:18;;;10550:62;-1:-1:-1;;;10628:18:1;;;10621:31;10669:19;;20078:56:0;10297:397:1;60568:120:0;60647:33;60657:9;60668:11;60647:9;:33::i;51728:923::-;51883:4;-1:-1:-1;;;;;51904:13:0;;9995:19;:23;51900:744;;51957:175;;-1:-1:-1;;;51957:175:0;;-1:-1:-1;;;;;51957:36:0;;;;;:175;;5747:10;;52051:4;;52078:7;;52108:5;;51957:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51957:175:0;;;;;;;;-1:-1:-1;;51957:175:0;;;;;;;;;;;;:::i;:::-;;;51936:653;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52319:13:0;;52315:259;;52369:40;;-1:-1:-1;;;52369:40:0;;;;;;;;;;;52315:259;52524:6;52518:13;52509:6;52505:2;52501:15;52494:38;51936:653;-1:-1:-1;;;;;;52196:55:0;-1:-1:-1;;;52196:55:0;;-1:-1:-1;52189:62:0;;51900:744;-1:-1:-1;52628:4:0;51900:744;51728:923;;;;;;:::o;59005:102::-;59057:13;59090:9;59083:16;;;;;:::i;3199:723::-;3255:13;3476:10;3472:53;;-1:-1:-1;;3503:10:0;;;;;;;;;;;;-1:-1:-1;;;3503:10:0;;;;;3199:723::o;3472:53::-;3550:5;3535:12;3591:78;3598:9;;3591:78;;3624:8;;;;:::i;:::-;;-1:-1:-1;3647:10:0;;-1:-1:-1;3655:2:0;3647:10;;:::i;:::-;;;3591:78;;;3679:19;3711:6;-1:-1:-1;;;;;3701:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3701:17:0;;3679:39;;3729:154;3736:10;;3729:154;;3763:11;3773:1;3763:11;;:::i;:::-;;-1:-1:-1;3832:10:0;3840:2;3832:5;:10;:::i;:::-;3819:24;;:2;:24;:::i;:::-;3806:39;;3789:6;3796;3789:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3789:56:0;;;;;;;;-1:-1:-1;3860:11:0;3869:2;3860:11;;:::i;:::-;;;3729:154;;37251:207;37312:7;-1:-1:-1;;;;;37336:19:0;;37332:59;;37364:27;;-1:-1:-1;;;37364:27:0;;;;;;;;;;;37332:59;-1:-1:-1;;;;;;37417:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;37417:32:0;;-1:-1:-1;;;;;37417:32:0;;37251:207::o;43801:104::-;43870:27;43880:2;43884:8;43870:27;;;;;;;;;;;;44391:32;44397:2;44401:8;44411:5;44418:4;44829:20;44852:13;-1:-1:-1;;;;;44880:16:0;;44876:48;;44905:19;;-1:-1:-1;;;44905:19:0;;;;;;;;;;;44876:48;44939:13;44935:44;;44961:18;;-1:-1:-1;;;44961:18:0;;;;;;;;;;;44935:44;-1:-1:-1;;;;;45330:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;45389:49:0;;-1:-1:-1;;;;;45330:44:0;;;;;;;45389:49;;;-1:-1:-1;;;;;45330:44:0;;;;;;45389:49;;;;;;;;;;;;;;;;45455:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;45505:66:0;;;;-1:-1:-1;;;45555:15:0;45505:66;;;;;;;;;;;45455:25;;45640:389;45660:8;45656:1;:12;45640:389;;;45699:38;;45724:12;;-1:-1:-1;;;;;45699:38:0;;;45716:1;;45699:38;;45716:1;;45699:38;45782:4;:89;;;;;45812:59;45843:1;45847:2;45851:12;45865:5;45812:22;:59::i;:::-;45811:60;45782:89;45756:225;;;45921:40;;-1:-1:-1;;;45921:40:0;;;;;;;;;;;45756:225;45999:14;;;;;45670:3;45640:389;;;-1:-1:-1;46045:13:0;:28;46095:60;43052:342;-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:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;-1:-1:-1;;;;;1811:6:1;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:1033::-;2767:6;2775;2828:2;2816:9;2807:7;2803:23;2799:32;2796:52;;;2844:1;2841;2834:12;2796:52;2884:9;2871:23;-1:-1:-1;;;;;2954:2:1;2946:6;2943:14;2940:34;;;2970:1;2967;2960:12;2940:34;3008:6;2997:9;2993:22;2983:32;;3053:7;3046:4;3042:2;3038:13;3034:27;3024:55;;3075:1;3072;3065:12;3024:55;3111:2;3098:16;3133:4;3156:2;3152;3149:10;3146:36;;;3162:18;;:::i;:::-;3208:2;3205:1;3201:10;3191:20;;3231:28;3255:2;3251;3247:11;3231:28;:::i;:::-;3293:15;;;3324:12;;;;3356:11;;;3386;;;3382:20;;3379:33;-1:-1:-1;3376:53:1;;;3425:1;3422;3415:12;3376:53;3447:1;3438:10;;3457:169;3471:2;3468:1;3465:9;3457:169;;;3528:23;3547:3;3528:23;:::i;:::-;3516:36;;3489:1;3482:9;;;;;3572:12;;;;3604;;3457:169;;;-1:-1:-1;3645:5:1;3682:18;;;;3669:32;;-1:-1:-1;;;;;;;2674:1033:1:o;3712:245::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3878:9;3865:23;3897:30;3921:5;3897:30;:::i;3962:249::-;4031:6;4084:2;4072:9;4063:7;4059:23;4055:32;4052:52;;;4100:1;4097;4090:12;4052:52;4132:9;4126:16;4151:30;4175:5;4151:30;:::i;4216:450::-;4285:6;4338:2;4326:9;4317:7;4313:23;4309:32;4306:52;;;4354:1;4351;4344:12;4306:52;4394:9;4381:23;-1:-1:-1;;;;;4419:6:1;4416:30;4413:50;;;4459:1;4456;4449:12;4413:50;4482:22;;4535:4;4527:13;;4523:27;-1:-1:-1;4513:55:1;;4564:1;4561;4554:12;4513:55;4587:73;4652:7;4647:2;4634:16;4629:2;4625;4621:11;4587:73;:::i;4671:272::-;4729:6;4782:2;4770:9;4761:7;4757:23;4753:32;4750:52;;;4798:1;4795;4788:12;4750:52;4837:9;4824:23;4887:6;4880:5;4876:18;4869:5;4866:29;4856:57;;4909:1;4906;4899:12;4948:180;5007:6;5060:2;5048:9;5039:7;5035:23;5031:32;5028:52;;;5076:1;5073;5066:12;5028:52;-1:-1:-1;5099:23:1;;4948:180;-1:-1:-1;4948:180:1:o;5133:257::-;5174:3;5212:5;5206:12;5239:6;5234:3;5227:19;5255:63;5311:6;5304:4;5299:3;5295:14;5288:4;5281:5;5277:16;5255:63;:::i;:::-;5372:2;5351:15;-1:-1:-1;;5347:29:1;5338:39;;;;5379:4;5334:50;;5133:257;-1:-1:-1;;5133:257:1:o;5395:637::-;5675:3;5713:6;5707:13;5729:53;5775:6;5770:3;5763:4;5755:6;5751:17;5729:53;:::i;:::-;5845:13;;5804:16;;;;5867:57;5845:13;5804:16;5901:4;5889:17;;5867:57;:::i;:::-;-1:-1:-1;;;5946:20:1;;5975:22;;;6024:1;6013:13;;5395:637;-1:-1:-1;;;;5395:637:1:o;6245:488::-;-1:-1:-1;;;;;6514:15:1;;;6496:34;;6566:15;;6561:2;6546:18;;6539:43;6613:2;6598:18;;6591:34;;;6661:3;6656:2;6641:18;;6634:31;;;6439:4;;6682:45;;6707:19;;6699:6;6682:45;:::i;:::-;6674:53;6245:488;-1:-1:-1;;;;;;6245:488:1:o;6738:632::-;6909:2;6961:21;;;7031:13;;6934:18;;;7053:22;;;6880:4;;6909:2;7132:15;;;;7106:2;7091:18;;;6880:4;7175:169;7189:6;7186:1;7183:13;7175:169;;;7250:13;;7238:26;;7319:15;;;;7284:12;;;;7211:1;7204:9;7175:169;;;-1:-1:-1;7361:3:1;;6738:632;-1:-1:-1;;;;;;6738:632:1:o;7567:219::-;7716:2;7705:9;7698:21;7679:4;7736:44;7776:2;7765:9;7761:18;7753:6;7736:44;:::i;11042:356::-;11244:2;11226:21;;;11263:18;;;11256:30;11322:34;11317:2;11302:18;;11295:62;11389:2;11374:18;;11042:356::o;12802:275::-;12873:2;12867:9;12938:2;12919:13;;-1:-1:-1;;12915:27:1;12903:40;;-1:-1:-1;;;;;12958:34:1;;12994:22;;;12955:62;12952:88;;;13020:18;;:::i;:::-;13056:2;13049:22;12802:275;;-1:-1:-1;12802:275:1:o;13082:128::-;13122:3;13153:1;13149:6;13146:1;13143:13;13140:39;;;13159:18;;:::i;:::-;-1:-1:-1;13195:9:1;;13082:128::o;13215:120::-;13255:1;13281;13271:35;;13286:18;;:::i;:::-;-1:-1:-1;13320:9:1;;13215:120::o;13340:168::-;13380:7;13446:1;13442;13438:6;13434:14;13431:1;13428:21;13423:1;13416:9;13409:17;13405:45;13402:71;;;13453:18;;:::i;:::-;-1:-1:-1;13493:9:1;;13340:168::o;13513:125::-;13553:4;13581:1;13578;13575:8;13572:34;;;13586:18;;:::i;:::-;-1:-1:-1;13623:9:1;;13513:125::o;13643:258::-;13715:1;13725:113;13739:6;13736:1;13733:13;13725:113;;;13815:11;;;13809:18;13796:11;;;13789:39;13761:2;13754:10;13725:113;;;13856:6;13853:1;13850:13;13847:48;;;-1:-1:-1;;13891:1:1;13873:16;;13866:27;13643:258::o;13906:380::-;13985:1;13981:12;;;;14028;;;14049:61;;14103:4;14095:6;14091:17;14081:27;;14049:61;14156:2;14148:6;14145:14;14125:18;14122:38;14119:161;;;14202:10;14197:3;14193:20;14190:1;14183:31;14237:4;14234:1;14227:15;14265:4;14262:1;14255:15;14291:135;14330:3;-1:-1:-1;;14351:17:1;;14348:43;;;14371:18;;:::i;:::-;-1:-1:-1;14418:1:1;14407:13;;14291:135::o;14431:112::-;14463:1;14489;14479:35;;14494:18;;:::i;:::-;-1:-1:-1;14528:9:1;;14431:112::o;14548:127::-;14609:10;14604:3;14600:20;14597:1;14590:31;14640:4;14637:1;14630:15;14664:4;14661:1;14654:15;14680:127;14741:10;14736:3;14732:20;14729:1;14722:31;14772:4;14769:1;14762:15;14796:4;14793:1;14786:15;14812:127;14873:10;14868:3;14864:20;14861:1;14854:31;14904:4;14901:1;14894:15;14928:4;14925:1;14918:15;14944:127;15005:10;15000:3;14996:20;14993:1;14986:31;15036:4;15033:1;15026:15;15060:4;15057:1;15050:15;15076:131;-1:-1:-1;;;;;;15150:32:1;;15140:43;;15130:71;;15197:1;15194;15187:12

Swarm Source

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