ETH Price: $3,160.32 (+1.40%)
Gas: 1 Gwei

Token

Mini Melties (MINIMELTIES)
 

Overview

Max Total Supply

2,000 MINIMELTIES

Holders

166

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MINIMELTIES
0x7ca70ecd758b752452b94f4067c1fcf90d6b2e02
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:
NervousNFT

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 19 : ScopedWalletMintLimit.sol
// SPDX-License-Identifier: MIT
pragma solidity >0.7.0;

abstract contract ScopedWalletMintLimit {
    struct ScopedLimit {
        uint256 limit;
        mapping(address => uint256) walletMints;
    }

    mapping(string => ScopedLimit) internal _scopedWalletMintLimits;

    function _setWalletMintLimit(string memory scope, uint256 _limit) internal {
        _scopedWalletMintLimits[scope].limit = _limit;
    }

    function _limitScopedWalletMints(
        string memory scope,
        address wallet,
        uint256 count
    ) internal {
        uint256 newCount = _scopedWalletMintLimits[scope].walletMints[wallet] +
            count;
        require(
            newCount <= _scopedWalletMintLimits[scope].limit,
            string.concat("Exceeds limit for ", scope)
        );
        _scopedWalletMintLimits[scope].walletMints[wallet] = newCount;
    }

    modifier limitScopedWalletMints(
        string memory scope,
        address wallet,
        uint256 count
    ) {
        _limitScopedWalletMints(scope, wallet, count);
        _;
    }
}

File 2 of 19 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 3 of 19 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/utils/SafeERC20.sol";
import "../utils/Address.sol";
import "../utils/Context.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned. The distribution of shares is set at the
 * time of contract deployment and can't be updated thereafter.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Getter for the amount of payee's releasable Ether.
     */
    function releasable(address account) public view returns (uint256) {
        uint256 totalReceived = address(this).balance + totalReleased();
        return _pendingPayment(account, totalReceived, released(account));
    }

    /**
     * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an
     * IERC20 contract.
     */
    function releasable(IERC20 token, address account) public view returns (uint256) {
        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        return _pendingPayment(account, totalReceived, released(token, account));
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(token, account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 4 of 19 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 5 of 19 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 6 of 19 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 7 of 19 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 8 of 19 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 19 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 10 of 19 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @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 11 of 19 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 12 of 19 : Context.sol
// SPDX-License-Identifier: MIT
// 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 13 of 19 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 14 of 19 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 15 of 19 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle 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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 16 of 19 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 17 of 19 : IERC165.sol
// SPDX-License-Identifier: MIT
// 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 18 of 19 : ERC721S.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721Sequential is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Total number of tokens burned
    uint256 internal _burnCount;

    // Array of all tokens storing the owner's address
    address[] internal _tokens = [address(0x0)];

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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);
    }

    function totalMinted() public view returns (uint256) {
        return _tokens.length - 1;
    }

    function totalSupply() public view returns (uint256) {
        return totalMinted() - _burnCount;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This is implementation is O(n) and should not be
     * called by other contracts.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        returns (uint256)
    {
        uint256 currentIndex = 0;
        for (uint256 i = 0; i < _tokens.length; i++) {
            if (_tokens[i] == owner) {
                if (currentIndex == index) {
                    return i;
                }
                currentIndex += 1;
            }
        }
        revert("ERC721Enumerable: owner index out of bounds");
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _tokens[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _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 {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721Sequential.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to) internal virtual {
        _safeMint(to, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, bytes memory _data) internal virtual {
        _mint(to);
        require(
            _checkOnERC721Received(address(0), to, _tokens.length - 1, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");

        uint256 tokenId = _tokens.length;
        _beforeTokenTransfer(address(0), to, tokenId);
        _balances[to] += 1;
        _tokens.push(to);

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721Sequential.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);
        _burnCount++;
        _balances[owner] -= 1;
        _tokens[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(
            ERC721Sequential.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _balances[from] -= 1;
        _balances[to] += 1;
        _tokens[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721Sequential.ownerOf(tokenId), 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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 19 of 19 : NervousNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

/******************************************************************************

  ███╗   ██╗███████╗██████╗ ██╗   ██╗ ██████╗ ██╗   ██╗███████╗
  ████╗  ██║██╔════╝██╔══██╗██║   ██║██╔═══██╗██║   ██║██╔════╝
  ██╔██╗ ██║█████╗  ██████╔╝██║   ██║██║   ██║██║   ██║███████╗
  ██║╚██╗██║██╔══╝  ██╔══██╗╚██╗ ██╔╝██║   ██║██║   ██║╚════██║
  ██║ ╚████║███████╗██║  ██║ ╚████╔╝ ╚██████╔╝╚██████╔╝███████║
  ╚═╝  ╚═══╝╚══════╝╚═╝  ╚═╝  ╚═══╝   ╚═════╝  ╚═════╝ ╚══════╝
  work with us: nervous.net // [email protected] // [email protected]
  ██╗  ██╗
  ╚██╗██╔╝
   ╚███╔╝
   ██╔██╗
  ██╔╝ ██╗
  ╚═╝  ╚═╝


                           .;odo;.       .''.         .:dxo,                    .lkko,      .;cc,.
                          ;kXWMWNk;    .oOKX0x,      ,kNWMWXo.      ,lddo:.    ,OWMMWXd.   :ONWWXk;
                         cXMMMMMMMX:  ,0WMMMMMK;    ,KMMMMMMWo.   .dNMMMMW0:  .kMMMMMMWd. :XMMMMMMX:
                        .kMMMMMMMMMO.'OMMMMMMMMO.   oWMMMMMMMk;.  lNMMMMMMMX; ,KMMMMMMM0' dWMMMMMMMx.
                        ,KMMMMMMMMMXcdWMMMMMMMMN:  .dMMMMMMMMx'. .xMMMMMMMMMk.'0MMMMMMM0' oWMMMMMMMx.
                        :XMMMMMMMMMNOKMMMMMMMMMWo   oWMMMMMMX:   .dMMMMMMMMMNc'kMMMMMMM0' cNMMMMMMWo
                        cNMMMMMMMMMMWWMMMMMMMMMMx.  :XMMMMMM0,    oWMMMMMMMMM0lOMMMMMMMk. cNMMMMMMX;
                        lWMMMMMMMMMMMMMMMMMMMMMMO.  '0MMMMMM0'    cNMMMMMMMMMWXNMMMMMMWd  cNMMMMMM0'
                        oWMMMMMMMMMMMMMMMMMMMMMMX;  .kMMMMMMK,    :NMMMMMMMMMMMMMMMMMMN:  cNMMMMMMk.
                       .xMMMMMMWWMMMMMMMWNWMMMMMWx.  oWMMMMMX;    cNMMMMMMMMMMMMMMMMMMK,  :NMMMMMMO.
                       '0MMMMMMKKMMMMMMMKONMMMMMMX:  cNMMMMMNc    oWMMMMMMXXMMMMMMMMMMO.  cNMMMMMMK,
                       :NMMMMMNloNMMMMMMkl0MMMMMMMx. cNMMMMMWl.  .xMMMMMMMkoXMMMMMMMMMO.  lWMMMMMMNc
                       oWMMMMMO.'OMMMMMNc.xMMMMMMMO. lWMMMMMWo.  .OMMMMMMWd.oNMMMMMMMMk.  oWMMMMMMWl
                       lWMMMMX:  ;OWMWXl. :XMMMMMMO. lWMMMMMNc   .kMMMMMMX: .dNMMMMMMMk.  lWMMMMMMX:
                       ,OWMWKc    .,:;.   .lXMMMMXc  'OWMMMWx.    :KWMMWKc   .lXWMMMMNl   .xNMMMMXo.
                        .;c;.               'lxxl'    .cdxo;.      .:cc;.      .:dkkx:.    .,looc'


     .:ll:.      .,;'            ..,;;,.      ...                   ..',;,'.   ....            ..''..
    cXWMMWKc   .lKWWNk,    .,:lox0XWWWWKl. .cOKXKkc.     ..,;;::codk0XNWWWNKocxKXX0d'   .:oodxOKNNNX0o.     .:oxkO0Okd:.
   '0MMMMMMX;  oNMMMMM0'  :0WMMMMMMMMMMM0' cNMMMMMWo.  ;xKNWWWMMMMMMMMMMMMMMMWMMMMMMO' ;KWMMMMMMMMMMMNl  .:kXWMMMMMMMMWXo.
   ,KMMMMMMWx.'0MMMMMMNc .OMMMMMMMMMMMMXo..dMMMMMMMK, cXMMMMMMMMMMMMMMMMMMMWWMMMMMMMN:.dWMMMMMMMMMMMWO, ,OWMMMMMMMMMMMMMNc
   ,KMMMMMMMO':XMMMMMMNl '0MMMMMMWX0kdl'  .xMMMMMMMK,.dWMMMMMMMMMMMMMMMWN0odXMMMMMMMX; oWMMMMMN0kxdl;. '0MMMMMMWWMMMMMMMNc
   ,KMMMMMMMXcoWMMMMMMNl .kMMMMMWx'...     dWMMMMMM0, .oOKKKKKKXMMMMM0l:'. '0MMMMMMMk. :XMMMMM0,       oWMMMMM0:,cd0NWNKl.
   ;XMMMMMMMWkOWMMMMMMWo  lWMMMMW0xkO00x,  oWMMMMMM0'    .....'dWMMMWd.    .xMMMMMMWo  '0MMMMMXkxkxo, .dMMMMMMKl,'',;;,.
   cNMMMMMMMMNNMMMMMMMMk. cNMMMMMMMMMMMXc  lWMMMMMMO.        .'dMMMMMk.     cNMMMMMWo  .OMMMMMMMMMMMO. :KMMMMMMWWNNXKko'
  .dWMMMMMMMMMMMMMMMMMMK, ;XMMMMMNX0kdl,   lWMMMMMMx.        .:kMMMMMK,     ,KMMMMMMx. .kMMMMMWXKOko'   ,kXWMMMMMMMMMMMXl.
  '0MMMMMMMMMMMMMWMMMMMNl ;XMMMMXc..       oWMMMMMNl. ..     'l0MMMMMNc     .OMMMMMMk. .kMMMMWx'.         .:loooooxXMMMMX:
  lNMMMMMNWMMMMMN0XMMMMMx.;XMMMMXl:oxO0Ox;.xMMMMMMW0k0K0Ol.  ,xKMMMMMWd     .kMMMMMM0' .kMMMMWd.';:cc,. .;odoc,. .:KMMMMNc
  OMMMMMWkOMMMMMOcOMMMMM0';XMMMMMWMMMMMMMNkKMMMMMMMMMMMMMWd. ;kKMMMMMMd.    .OMMMMMMK, .OMMMMMNXNWMMMW0ldNMMMMWK00NMMMMWk.
  NMMMMMX:;KMMMXc.dWMMMMX:;XMMMMMMMMMMMMMX0XMMMMMMMMMMMMMWd. ,dKMMMMMWl     .OMMMMMMO. .xMMMMMMMMMMMMMM0kXMMMMMMMMMMMMNx.
  NMMMMWx. 'col,  :XMMMMX:.xWMMMMMMWWNXOd,'kWMMMMMWNNXXX0o.  .'dWMMMWO'     .oNMMMMXc   ,0MMMMMMMMWWNKx,.;d0NWMMMMWNKx;
  c0XNKo.          c0NN0l. .lO0Odl:;,..    .:odol:,'.....      .lkOkl.        ,lddc'     .lxkdlc::;,'.     .':clcc;'.
   .,;.             .;;.     ...                                  .


                                                                           ..  ...
                                                          .....'''''';clldkxdddxddoc:c,
                                                  .';cldkO0KXXXNNNNNX0xool;...'. .,;;ckxol;.
                                             .;ldOKXNX0OxolccdkKWOc;,.                .''cOkc'
                                         .:dOXNX0xl:'..    'dOKKx.     ':cccllll:;:c,     .:x0l
                                      'lkXWXko;..         ;KWOl,  ,cllkOd:;,. ..,,,:xxoll;. .OK,
                                   .ckXNKd:.              :KWNKOxOXKxol'    ..'''....',;dKOloKO'
                                 ,dKNKd;.    .             .:okOKOl.   .,ldxxxxddddxdl;..;dOXWKc.
                               ;kNNOc.     ''.                  .    ,okko;..     ..,cdxl.  ,kWWk;
                             ,xNNk;.     .l:           ..          ,xko'    ..'''''....'okc. .cKWXd.
                           .oXNk;        :k:.,::'    ';..        .oOl.    .,;;;:ldxxxo:..;Ox.  .dNW0;
                          ,OWKc.         .cddl;ck:  ;o.         .xk,    .,;;;lkKWMMWWWXkc.;Ox.   :KWXl.
                         cXWk'                 .OO,;Od.        .kO,    .,;;ckNMMMXd::oKWXo'lKl    'OWNo.
                       .lNNo.                  .cO00x'       .'d0;    .,;;l0WMMMX:    ,KMXl,kO.    .kWNo.
                       lNNo. ..        ...       ...   ..    ;k0d.   .,;;:OWMMMMx.    .kMWk,l0:.  . .kWXc
                      :XNo..,.  .     .'.             ..     oNK;    ';;;oXMMMMMx.    '0MM0;:Oc...'. ,0M0'
                     '0Wk..;..,::l;   ;;              ;.    .dW0,   .,;;;dNMMMMMNd.  'xNMM0;:Oc ,'':. cXWd
                     oWK;.:, :l. lx.  cl.             :,     oW0,   .,;;;oXMMMMMMWX0Oxc:OWk,cO: ;;.l: .kM0'
                    '0Wx.,l..d; .dk. ,xl     .,.      :c     cK0:   .,;;;lKMMMMMMMMMNc  oKo'oO, ::.oo  cNNc
                    :XNc :d;lk' ;0l.cOc      .:'     ;d;     .lko    .;;;;dNMMMMMMMMWk:l0x;,kx..dc.kd  '0Wo
                    cNK; .cdo, .kO' :0c       .;:'  :k:       .lk,   .';;;:xXMMMMMMMMMWNx:.cO: .OOk0;  .kMd.
                  .;OWK,       cXo  .d0,        :x, ;Oc        .xx.   .',;;;lxKNWMMMMWKd;.,kd.  ,lo,   .kMx.
                .o0WMMX;      .dNc   ;Kx.       :Kl .Ox.        'xx'    .';;;;:ldxkkxo:,..dx.          .OM0:.
              .lKW0oxNWl       oNd.  :Xx.       ,K0lxKc  .;:'    .oOc.    ..',,,,,,,'...'xx.  ,c'      ,KMWNKd;
             .xWXo. 'OMk.      'kXkldKO, .....   ,oxd;  '0WWO'     ;xx:.       ....   .lkl.  .OWo      lNXl;o0Xk,
            .dWXc    lNNo,:cloookNMNOl;cxkxxddoc.       .ckk:.       ,oxo:'.      .':odl'     ;c.     .kWk.  .oXXl.
            ;XNl     :XMWWNXKK000KXN0k00l'.   .;c'   ,c:.   .,:;.      .;looollcllllc,.    ;:.  :c.   cNNc     :XXc
            lWK,  .;xXXOo:,........,cxKKc.       .  '0MK;   cXMWd.          .....      .. '0K; .OK;  .kMNx:.   .dWk.
           .dWK; .xNKo'      .;cc:,   .lOd.          ,c,    .;c:.   'c.              .,d:  ,,.  .'    ,ldOXKx,  dWO.
        .;d0XXNklOXo.        ,:,.,c:.   'xc                        .loccc;;,''',;;:ccdklc,                .l0KolKM0:.
       ;ONXd,.lKW0:                ..    'c.                      .;' .od;::cx0KOl;'.cx' ..                 .oXWXO0XO:
     .oNNx'    dK:                        .                       .    ld.  .oocdc..,xo.                     .oKc .c0No.
    .oNXc     .dd.                                                     .:oloo:. 'clll;.         ..            ,x;   ;KNl
    :XXc      .l:                                                         ..                    ,:.           'l.   .dWO.
   .xWx.       ;,                                  ..;'  .;,.                               .  ;k;    .'      ..     lWO'
   .ONl        ..     ..                             ,xcckdlc'...                         .';coOk.    .:.           .xWk.
   .kWo               :,                              ,dx:                                   .:c'    .c;            :XX:
    lNK;              ll                                                                            ,kc            :KNl.
    .dNKc.            ;k:          ..                       ';;,..              .                   cKc         .:kX0:
     .cKNOc'          'kXd'         ,:'..;cc:.    .:cll;.  c0l..             .''.    .             'ONk:,'',;cok00x:.
       .lOXXOdlc:::ldkKWN00ko:'.    .cOXNXOoldo. .dl''lK0dxX0,             'ckOl'.   .',;cl,    'cdOkookKNX0O0NXl.
          ':ok0KNWWXk0W0:..:oOKKOkkOO00O0Kx:''xx.:x,.:xXX0XWXxdl:,'...';ldkxlok0K0kdollox0NX: .lxl:,.. 'kMNo.;KO.
               .cKWOlO0;     cXOc:c::,'..:d0KKXK;;0KKKOl,.'cdO0KXXXKKK0Oxl;....';codxkxxdolOd..xl.......xWWXk00;
                 'dKWNl     ,00;............;l0X;.dKo'..........',;;;,'.................. .kd. od......,0NxkWO'
                   cXO.    .xNx::;....;lol;..'kK, 'kd....'......',;,...':cc,....',;'...,:cd0l  :Oo;,;ccl0Wd:OO.
                   cXo     cXNNKOO0kk0KOk0KOdkXk.  oKxxkOOOkxxkkOkkOOkO0KKXKOddkO0K0OkOKXXN0,  ;KNXXNWX00x, lKl
                   oXc    .O0lkXxodolodc''lOKNWd. .dXOl:,:dkkOOd,..';coxddlclooc;:odkOkd::0O.  oNNNKkK0;.   .oOx:...
                  .dX:    :Xx.,OKOl'..':lcc:;dNKl:dXO;,:::;..;cc:;,',cl:;cl,.....,lddl;...dKxcdKWMK,'0O'      .okddxo'
                 .lKO'    ;0Kc..,xXx'..;odl:'.:xOOkdoodc'.......:oooo:....;cc:::cc;,;ccc,.:xkOKXNXl.oKc .;.        'kO'
                'kKo.      .dKx:.'OXo:c:;'',::..'::::::l:.....';c:',c:.....'colo:......:ooocoKX0o, '0k.  ,:.        dK:
               'OXc         'dkKKxxXXx'......;ccl:'....':lc::cl:'....;::;,:c:'.,cc'..';clc:oKWx.   '0x.   ...  .,;;oKx.
               lNo.            ,0Xl;kXo.....':llc:'....'clclo;........,lool,.....:lloo:,...,OWo     l0:        ;0Oxd;.
               dX:             .xNl ,K0;.;cll:'..':;'':l:...cool:'...:lc:lddl;...,lodxl,...;0Nc     ;0l     .  :0c
               ;0d.        .;;:dKk' .dNK0KKK0Oxl,,ck0KKKkdodOXNKOkkk000000O0XX0xxO00000OkdxKXd.    ;Od..,. ,,  .dO'
               ,0d... ..  .dKxdo;.   .:xkko:;ckKXNX0d:,;ldxdONXo..;ldkXXl...'cdOO0N0:..':clc,    .lOc.'c'.cl.   lK:
              ,Ok',; .:.  .o0:.                .oNO.        cXXl     .OX;        ,0k.            ,0d.:d'.ox.   .k0,
             .kX:'o, 'o,   .lOk;                cNk.        lXXl     '0K;        '0k.            .dOxKd.,0o   'xXo
             :XO':k' .xl     .kK;               lNx.        lXXl     ,0K,        '0k.              .;dOdkXKdld00c.
             cN0,l0;  l0c    .dX:             .;kNo         lNWO:. .;dN0'        ;KXd'                .;:;;:lc;.
             'ONOOXo. .l0kolokOl.             oNWNOlccccllodOKXNNxckNMMNxllllooodkKXWKollc;.
              .oOXNXo.  cXNkl:.               :X0xxkkkkkxkO00KKKKKKKXNWWNKkxxxxxO0000000KXXKOl.
                 .'l0KOk0Xd.                  lXkoooooook0KOkddoooooodk0XNXkddO0Oxdooooooodk0XKo.
                    .,cc:'                   .kKdooooodO0kdooooooooooolodkXWKOkdoooooooooooood0Nk'
                                            .oKkooooooxkooooooooooooooooookXWOooooooooooooooood0Nx.
                                         .,;dKOooooooooooooooooooooooooooooONXxooooooooooooooooxXX:
                                        ;KXKNXxooooooooooooooooooooooooooooxXNOooooooooooooooooo0Nd.
                                        oWKxkKKkdooooooooooooooooooooooooooxXMNKxooooooooooooood0WN0c.
                                        'ONKkxk000OkdooooooooooooooooooodxkKNKXWXxoooooooooddxk0XK0NK,
                                         .l0XXOkxkOOOOOOOOOOOOOOOOOO0000000OxkKWN0OOOO000000000OxdONO'
                                           .,oOKXK0OkxxxkkkkOOOOkkkxxxxxxxkOKNNKOkkkkkxxxddddxxO0KKx'
                                               .;ldO0KXXKK000OOOOOOO00KXXXK0KXXKK000000KKKKKK00kd:.
                                                    ..,:cloddddxxdddolc:,.....',;::cccccc:;,'..

*/

import "./ERC721S.sol";
import "@nervous-net/contract-kit/src/ScopedWalletMintLimit.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

// @title  NervousNFT Mini-Melties ERC-721
// @dev    An ERC-721 contract for creating mini-melties.
// @author Nervous - https://nervous.net + Mini-Melties - https://minimelties.com
contract NervousNFT is
    ERC721Sequential,
    ReentrancyGuard,
    PaymentSplitter,
    Ownable,
    ScopedWalletMintLimit
{
    using Strings for uint256;
    using ECDSA for bytes32;

    string public constant R =
        "We are Nervous. Are you? Let us help you with your next NFT Project -> [email protected]";

    string private constant PRESALE_PREFIX = "NERVOUS";
    string public baseURI;
    uint256 public mintPrice;

    string public vipPresaleName;
    string public generalPresaleName;
    string public crossmintPresaleName;
    bytes32 public crossmintMerkleRoot;

    address public vipPresaleSigner;
    address public generalPresaleSigner;
    address public crossmintAddr;

    uint64 public startPublicMintDate;
    uint64 public endMintDate;
    uint64 public presaleDate;
    bool public mintingEnabled;
    uint16 public immutable maxSupply;
    uint8 public maxPublicMint;

    constructor(
        string memory name,
        string memory symbol,
        string memory initBaseURI,
        uint16 _maxSupply,
        address[] memory payees,
        uint256[] memory shares
    ) ERC721Sequential(name, symbol) PaymentSplitter(payees, shares) {
        baseURI = initBaseURI;
        maxSupply = _maxSupply;
        mintPrice = 0.2 ether;
        startPublicMintDate = type(uint64).max;
        endMintDate = type(uint64).max;
        presaleDate = type(uint64).max;
        mintingEnabled = true;
        maxPublicMint = 10;
    }

    ///////
    /// Minting
    ///////

    /// @notice Main minting. Requires either valid pass or public sale
    function mint(uint256 numTokens, bytes calldata pass)
        external
        payable
        requireValidMint(numTokens, msg.sender)
        requireValidMintPass(numTokens, msg.sender, pass)
    {
        _mintTo(numTokens, msg.sender);
    }

    /// @notice Crossmint public minting.
    function crossmintTo(uint256 numTokens, address to) external payable {
        crossmintWithProof(numTokens, to, new bytes32[](0));
    }

    /// @notice Crossmint presale or public minting. Requires proof of presale
    function crossmintWithProof(
        uint256 numTokens,
        address to,
        bytes32[] memory merkleProof
    )
        public
        payable
        requireValidMint(numTokens, to)
        requireValidCrossmintMerkleProof(numTokens, to, merkleProof)
    {
        _mintTo(numTokens, to);
    }

    /// @notice internal method for minting a number of tokens to an address
    function _mintTo(uint256 numTokens, address to) internal nonReentrant {
        for (uint256 i = 0; i < numTokens; i++) {
            _safeMint(to);
        }
    }

    ///////
    /// Magic
    ///////

    /// @notice owner-only minting tokens to the owner wallet
    function magicMint(uint256 numTokens) external onlyOwner {
        require(
            totalMinted() + numTokens <= maxSupply,
            "Exceeds maximum token supply."
        );

        require(
            numTokens > 0 && numTokens <= 100,
            "Machine can dispense a minimum of 1, maximum of 100 tokens"
        );

        _mintTo(numTokens, msg.sender);
    }

    /// @notice owner-only minting tokens to receiver wallets
    function magicGift(address[] calldata receivers) external onlyOwner {
        uint256 numTokens = receivers.length;
        require(
            totalMinted() + numTokens <= maxSupply,
            "Exceeds maximum token supply."
        );

        for (uint256 i = 0; i < numTokens; i++) {
            _safeMint(receivers[i]);
        }
    }

    /// @notice owner-only minting tokens of varying counts to
    /// receiver wallets
    function magicBatchGift(
        address[] calldata receivers,
        uint256[] calldata mintCounts
    ) external onlyOwner {
        require(receivers.length == mintCounts.length, "Length mismatch");

        for (uint256 i = 0; i < receivers.length; i++) {
            address to = receivers[i];
            uint256 numTokens = mintCounts[i];
            require(
                totalMinted() + numTokens <= maxSupply,
                "Exceeds maximum token supply."
            );
            _mintTo(numTokens, to);
        }
    }

    /// Mint limits

    function crossmintPresaleLimit() external view returns (uint256) {
        return _scopedWalletMintLimits[crossmintPresaleName].limit;
    }

    function vipPresaleLimit() external view returns (uint256) {
        return _scopedWalletMintLimits[vipPresaleName].limit;
    }

    function generalPresaleLimit() external view returns (uint256) {
        return _scopedWalletMintLimits[generalPresaleName].limit;
    }

    ///////
    /// Utility
    ///////

    /* URL Utility */

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

    function setBaseURI(string memory _baseTokenURI) external onlyOwner {
        baseURI = _baseTokenURI;
    }

    /* eth handlers */

    function withdraw(address payable account) external virtual {
        release(account);
    }

    function withdrawERC20(IERC20 token, address to) external onlyOwner {
        token.transfer(to, token.balanceOf(address(this)));
    }

    /* Crossmint */

    function setCrossmintConfig(
        string memory name,
        address addr,
        uint256 limit,
        bytes32 merkleRoot
    ) external onlyOwner {
        crossmintPresaleName = name;
        crossmintAddr = addr;
        _setWalletMintLimit(name, limit);
        crossmintMerkleRoot = merkleRoot;
    }

    /* Sale & Minting Control */

    function setPublicSaleStart(uint256 timestamp) external onlyOwner {
        startPublicMintDate = uint64(timestamp);
    }

    function setEndMintDate(uint256 timestamp) external onlyOwner {
        endMintDate = uint64(timestamp);
    }

    function setPresaleDate(uint256 timestamp) external onlyOwner {
        presaleDate = uint64(timestamp);
    }

    function setVipPresaleConfig(
        string memory name,
        address signer,
        uint256 limit
    ) external onlyOwner {
        vipPresaleName = name;
        vipPresaleSigner = signer;
        _setWalletMintLimit(name, limit);
    }

    function setGeneralPresaleConfig(
        string memory name,
        address signer,
        uint256 limit
    ) external onlyOwner {
        generalPresaleName = name;
        generalPresaleSigner = signer;
        _setWalletMintLimit(name, limit);
    }

    function toggleMinting() external onlyOwner {
        mintingEnabled = !mintingEnabled;
    }

    function setMintPrice(uint256 price) external onlyOwner {
        mintPrice = price;
    }

    function setMaxPublicMint(uint256 _maxPublicMint) external onlyOwner {
        maxPublicMint = uint8(_maxPublicMint);
    }

    ///////
    /// Modifiers
    ///////

    modifier requireValidMint(uint256 numTokens, address to) {
        require(block.timestamp < endMintDate, "Minting has ended");
        require(mintingEnabled, "Minting isn't enabled");
        require(totalMinted() + numTokens <= maxSupply, "Sold Out");
        require(numTokens > 0, "Minimum of 1");
        require(numTokens <= maxPublicMint, "Maximum exceeded");
        require(
            msg.value >= numTokens * mintPrice,
            "Insufficient Payment: Amount of Ether sent is not correct."
        );
        _;
    }

    modifier requireValidMintPass(
        uint256 numTokens,
        address to,
        bytes memory pass
    ) {
        if (block.timestamp < startPublicMintDate) {
            if (pass.length == 0) {
                revert("Public sale has not started");
            }
            address signer = keccak256(abi.encodePacked(PRESALE_PREFIX, to))
                .toEthSignedMessageHash()
                .recover(pass);

            if (block.timestamp < presaleDate) {
                revert("Presale has not started");
            }

            if (signer == vipPresaleSigner) {
                _limitScopedWalletMints(vipPresaleName, to, numTokens);
            } else if (signer == generalPresaleSigner) {
                _limitScopedWalletMints(generalPresaleName, to, numTokens);
            } else {
                revert("Invalid presale pass");
            }
        }

        _;
    }

    modifier requireValidCrossmintMerkleProof(
        uint256 numTokens,
        address to,
        bytes32[] memory merkleProof
    ) {
        if (msg.sender != crossmintAddr) {
            revert("Crossmint required");
        }
        if (block.timestamp < startPublicMintDate) {
            if (merkleProof.length == 0) {
                revert("Public sale has not started");
            }
            if (block.timestamp < presaleDate) {
                revert("Crossmint presale has not started");
            }
            if (
                !MerkleProof.verify(
                    merkleProof,
                    crossmintMerkleRoot,
                    keccak256(abi.encodePacked(to))
                )
            ) {
                revert("Invalid access list proof");
            }
            _limitScopedWalletMints(crossmintPresaleName, to, numTokens);
        }
        _;
    }
}

// # OWNERSHIP LICENSE
//
// This Ownership License sets forth the terms of the agreement between you, on
// the one hand, and Buff Monster (the "Artist") and Maraschino Distribution LLC,
// a company ("Company"), on the other hand, with respect to your ownership and
// use of the Mini Melties, a collection of 2000 digital characters by the Artist
// (the "Artwork") to which this Ownership License applies.
//
// References to "you" herein mean the legal owner of the digital non-fungible
// token ("NFT") minted as the Artwork, as recorded on the applicable blockchain.
// References to "us" herein means the Company and the Artist, jointly and
// severally. References to the "Artwork" herein means the NFT, the creative and
// audiovisual design implemented, secured, and authenticated by the NFT, and the
// associated code and data that collectively constitute the above-referenced
// digital work of art.
//
// Your acquisition of the Artwork constitutes your acceptance of, and agreement
// to, the terms of this Ownership License.
//
// ## Ownership of the Artwork.
//
// References herein to your ownership of the Artwork mean your exclusive
// ownership of the authenticated NFT that constitutes the digital original of the
// Artwork, as such ownership is recorded on the applicable blockchain. Only a
// person or entity with the legal right to access and control the cryptocurrency
// address or account to which the Artwork is assigned on the blockchain will
// qualify as an owner of the Artwork hereunder.
//
// ## Your Ownership Rights.
//
// For so long as you remain the owner of the Artwork you will be entitled to
// exercise the following rights with respect to the Artwork (the "Ownership
// Rights"):
//
// - To store the Artwork in any account (i.e., cryptocurrency address) and
// to freely transfer the Artwork between accounts.
//
// - To privately view and display the Artwork for your personal purposes on
// any device.
//
// - To sell the Artwork to any third party, to exchange it in a swap with
// any third party, to list and offer it for sale or swap on any marketplace
// and/or through any platform or outlet that supports such sale or swap, to
// donate or gift the Artwork to any third party, and to transfer ownership of the
// Artwork to the applicable purchaser or other intended recipient.
//
// - To reproduce the visual imagery (and any audio, if applicable) produced
// by the Artwork (the "Imagery") in both digital media (e.g., online) and
// physical media (e.g., print) for your reasonable, private, noncommercial
// purposes, such as displaying the Imagery on your personal website and/or in
// your personal social media, or including the Imagery as an informational
// illustration in a book, magazine article or other publication dealing with your
// personal art collection.
//
// - To use the Imagery as your personal profile image or avatar, or as a
// similar personal graphic that serves to personally identify you in your
// personal social media and in comparable personal noncommercial contexts.
//
// - To include and exhibit theArtwork, as a digital work of fine art by the
// Artist, in any public or private art exhibition (or any comparable context),
// whether organized by you or by any third party such as a museum or gallery, by
// means of a Qualifying Display Device installed on site if the exhibition is
// presented in a physical space, or, if the exhibition is presented solely online
// or by other purely digital means, display and exhibition in a reasonably
// comparable manner. As used herein, a "Qualifying Display Device" means a video
// monitor, projector, or other physical display device sufficient to display the
// Artwork in a resolution and manner that does not distort, degrade, or otherwise
// materially alter the original Artwork.
//
// The foregoing rights are exclusive to you, subject to the rights retained by
// the Artist below.
//
// The Ownership Rights also include the limited, nonexclusive right to make use
// of the Artist's name and the Artist's IP Rights (as defined below) to the
// extent required to enable you to exercise the aforementioned usage rights.
//
// ## Faithful Display & Reproduction.
//
// The Artwork may not be materially altered or changed, and must be faithfully
// displayed and reproduced in the form originally minted. The Ownership Rights
// only apply to the Artwork in this original form, and do not apply to, and may
// not be exercised in connection with, any version of the Artwork that has been
// materially altered or changed.
//
// ## Excluded Uses.
//
// You may not reproduce, display, use, or exploit the Artwork in any manner other
// than as expressly permitted by the Ownership Rights, as set forth above. In
// particular, without limitation, the Ownership Rights do not include any right
// to reproduce, display, use, or exploit the Artwork for any of the following
// purposes or usages:
//
// - To create any derivative work based on the Artwork.
//
// - To reproduce the Artwork for merchandising purposes (e.g., to produce
// goods offered for sale or given away as premiums or for promotional purposes).
//
// - To make use of the Artwork as a logo, trademark, service mark, or in any
// similar manner (other than personal use as your personally identifying profile
// image, avatar, or graphic, as expressly permitted above).
//
// - Use of the Artwork to promote or advertise any brand, product, product
// line, or service.
//
// - Use for any political purpose or to promote any political or other cause.
//
// - Any other use of the Artwork for your commercial benefit or the
// commercial benefit of any third party (other than resale of the Artwork, as
// expressly permitted above).
//
// - Use of the Artist's IP Rights for any purpose other than as reasonably
// required for exercise of the Ownership Rights, such as, without limitation, use
// of the Artist's name for endorsement, advertising, trademark, or other
// commercial purposes.
//
// ## Artist's Intellectual Property Rights.
//
// Subject to your Ownership Rights (and excluding any intellectual property owned
// by Company), the Artist is and will at all times be and remain the sole owner
// of the copyrights, patent rights, trademark rights, and all other
// intellectual-property rights in and relating to the Artwork (collectively, the
// "Artist's IP Rights"), including, without limitation: (i) the Imagery; (ii) the
// programming, algorithms, and code used to generate the Imagery, and the
// on-chain software code, script, and data constituting the applicable NFT (but
// excluding, for the avoidance of doubt, programming, script, algorithms, data,
// and/or code provided by Company and/or used in connection with the operation of
// the Company platform and marketplace) (collectively, the "Code"); (iii) any
// data incorporated in and/or used by the Artwork, whether stored on or off the
// blockchain; (iv) the title of the Artwork; and (v) the Artist's name,
// signature, likeness, and other personally identifying indicia. The Artist's IP
// Rights are, and at all times will remain, the sole property of the Artist, and
// all rights therein not expressly granted herein are reserved to the Artist. The
// Artist also retains all moral rights afforded in each applicable jurisdiction
// with respect to the Artwork. You hereby irrevocably assign to the Artist any
// and all rights or ownership you may have, or claim to have, in any item falling
// within the definition of the Artist's IP Rights, including, without limitation,
// the copyrights in the Imagery and in the Code. We, the Artist and Company, will
// be free to reproduce the Imagery and the Artwork for the Artist's and Company's
// customary artistic and professional purposes (including, without limitation,
// use in books, publications, materials, websites, social media, and exhibitions
// dealing with the Artist's creative work, and licensing for merchandising,
// advertising, endorsement, and/or other commercial purposes), and to re-use
// and/or adapt the Code for any other purpose or project (including, without
// limitation, the creation and sale of other NFTs), and to register any or all of
// the Artist's IP Rights (including, without limitation, the copyrights in
// theImagery and the Code) solely in the name of the Artist or his designee.
//
// ## Transfer of Artwork.
//
// The Ownership Rights are granted to you only for so long as you remain the
// legal owner of the Artwork. If and when you sell, swap, donate, gift, give
// away, "burn," or otherwise cease to own the Artwork for any reason, your rights
// to exercise any of the Ownership Rights will immediately and automatically
// terminate. When the Artwork is legally transferred to a new owner, as recorded
// on the applicable blockchain, the new owner will thereafter be entitled to
// exercise the Ownership Rights, and references to "you" herein will thereafter
// be deemed to refer to the new owner.
//
// ## Resale Royalty.
//
// With respect to any resale of the Artwork, the Artist will be entitled to
// receive an amount equal to 7.5% of the amount paid by such purchaser (the
// "Resale Royalty"). For example, for any sale of the Artwork, following the
// original sale, to a subsequent purchaser for 1.0 ETH, the Resale Royalty due
// will be 0.075 ETH to the Artist. The Resale Royalty is intended to be deducted
// and paid pursuant to the smart contract implemented in the Code whenever the
// Artwork is resold after the initial sale. However, if for any reason the full
// amount due as the Resale Royalty is not deducted and paid (for example, if some
// or all of the applicable purchase price is paid outside the blockchain), in
// addition to any other available remedies the Artist and Company will be
// entitled (i) to recover the full unpaid amount of the Resale Royalty along with
// any attorneys' fees and other costs reasonably incurred to enable such
// recovery; (ii) to terminate and suspend the Ownership Rights until full payment
// is received; and (iii) to obtain injunctive or other equitable relief in any
// applicable jurisdiction.
//
// ## Illegal Acquisition.
//
// If the Artwork is acquired by unauthorized means, such as an unauthorized or
// unintended transfer to a new cryptocurrency address as the result of hacking,
// fraud, phishing, conversion, or other unauthorized action, the following terms
// will apply until such time as the Artwork is returned to its rightful owner:
// (i) the Ownership Rights will immediately terminate and be deemed suspended;
// (ii) the Artist will be entitled to withhold recognition of the Artwork as
// constituting an authentic work of fine art by him; and (iii) the Artist and/or
// Company will be entitled to take any and all steps necessary to prevent the
// Artwork from being sold or traded, including, without limitation, causing the
// Artwork to be removed from the Company platform and/or any marketplace or
// platform where it is listed for sale. Notwithstanding the foregoing, nothing
// herein will obligate the Artist or Company to take any action with respect to
// any unauthorized acquisition or disposition of the Artwork, and neither we nor
// they will have any liability in this regard.
//
// ## Limited Guarantee.
//
// We guarantee that the Artwork will constitute an authentic original digital
// work of fine art by the Artist. In all other respects, the Artwork and the NFT
// are provided strictly "as is." Neither the Artist nor Company makes any other
// representation, provides any other warranty, or assumes any liability of any
// kind whatsoever in connection with the Artwork, including, without limitation,
// any representations, warranties, or conditions, express or implied, as to
// merchantability, fitness for a particular purpose, functionality, technical
// quality or performance, freedom from malware or errors, or value, each of which
// representations, warranties, and conditions is expressly disclaimed. No
// statement made by the Artist or Company (or by any listing platform or
// marketplace), whether oral or in writing, will be deemed to constitute any such
// representation, warranty, or condition. EXCEPT AS EXPRESSLY PROVIDED ABOVE, THE
// ARTWORK AND THE NFT ARE PROVIDED ENTIRELY ON AN "AS IS" AND "AS AVAILABLE"
// BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
//
// ## Your Knowledge & Experience.
//
// You represent and warrant that you are knowledgeable, experienced, and
// sophisticated in using blockchain and cryptocurrency technology and that you
// understand and accept the risks associated with technological and cryptographic
// systems such as blockchains, NFTs, cryptocurrencies, smart contracts, consensus
// algorithms, decentralized or peer-to-peer networks and systems, and similar
// systems and technologies, which risks may include malfunctions, bugs, timing
// errors, transfer errors, hacking and theft, changes to the protocol rules of
// the blockchain (e.g., forks), hardware, software and/or Internet connectivity
// failures, unauthorized third-party data access, and other technological risks,
// any of which can adversely affect the Artwork and expose you to a risk of loss,
// forfeiture of your digital currency or NFTs, or lost opportunities to buy or
// sell digital assets.
//
// ## Acknowledgement of Inherent Risks. You acknowledge and accept that:
//
// - The prices of blockchain assets, including NFTs, are extremely volatile
// and unpredictable as the result of technological, social, market, subjective,
// and other factors and forces that are not within our, the Artist's, or
// Company's control.
//
// - Digital assets such as the Artwork may have little or no inherent or
// intrinsic value.
//
// - Fluctuations in the pricing or markets of digital assets such as the
// Artwork could materially and adversely affect the value of the Artwork, which
// may be subject to significant price volatility.
//
// - Providing information and conducting business over the Internet and via
// related technological means with respect to cryptocurrencies and digital assets
// such as the NFT entails substantial inherent security risks that are or may be
// unavoidable.
//
// - Due to the aforementioned risk factors and other factors that cannot be
// predicted or controlled, there is no assurance whatsoever that the Artwork will
// retain its value at the original purchase price or that it will attain any
// future value thereafter.
//
// ## Limitation of Liability.
//
// Our and Company's maximum total liability to you for any claim arising or
// asserted hereunder or otherwise in connection with the Artwork will be limited
// to the amount paid by the original purchaser for the original primary-market
// purchase of the Artwork. Under no circumstances will the Artist or Company be
// liable for any other loss or damage arising in connection with the Artwork,
// including, without limitation, loss or damage resulting from or arising in
// connection with:
//
// - Unauthorized third-party activities and actions, such as hacking,
// exploits, introduction of viruses or other malicious code, phishing, Sybil
// attacks, 51% attacks, brute forcing, mining attacks, cybersecurity attacks, or
// other means of attack that affect the Artwork in any way.
//
// - Weaknesses in security, blockchain malfunctions, or other technical
// errors.
//
// - Telecommunications or Internet failures.
//
// - Any protocol change or hard fork in the blockchain on which the Artwork
// is recorded.
//
// - Errors by you (such as forgotten passwords, lost private keys, or
// mistyped addresses).
//
// - Errors by us (such as incorrectly constructed transactions or
// incorrectly programmed NFTs).
//
// - Unfavorable regulatory determinations or actions, or newly implemented
// laws or regulations, in any jurisdiction.
//
// - Taxation of NFTs or cryptocurrencies, the uncertainty of the tax
// treatment of NFT or cryptocurrency transactions, and any changes in applicable
// tax laws, in any jurisdiction.
//
// - Your inability to access, transfer, sell, or use the Artwork for any
// reason.
//
// - Personal information disclosures or breaches.
//
// - Total or partial loss of value of the Artwork due to the inherent price
// volatility of digital blockchain-based and cryptocurrency assets and markets.
//
// **UNDER NO CIRCUMSTANCES WILL WE BE LIABLE FOR ANY INDIRECT, SPECIAL,
// INCIDENTAL, CONSEQUENTIAL, OR EXEMPLARY DAMAGES OF ANY KIND, EVEN IF WE HAVE
// BEEN ADVISED OR OTHERWISE WERE AWARE OF THE POSSIBILITY OF SUCH DAMAGES.**
//
// The foregoing limitations on our liability apply to all claims, whether based
// in contract, tort, or any other legal or equitable theory.
//
// Notwithstanding the foregoing, nothing herein will be deemed to exclude or
// limit in any way the Artist's or Company's liability if it would be unlawful to
// do so, such as any liability that cannot legally be excluded or limited under
// applicable law. It is acknowledged that the laws of some jurisdictions do not
// allow some or all of the disclaimers, limitations or exclusions set forth
// herein. If these laws apply in your case, some or all of the foregoing
// disclaimers, limitations or exclusions may not apply to you, and you may have
// additional rights.
//
// ## Indemnification & Release.
//
// To the fullest extent permitted under applicable law, you agree to indemnify,
// defend and hold harmless the Artist and Company and their respective
// affiliates, and, as applicable, their respective officers, employees, agents,
// affiliates, legal representatives, heirs, successors, licensees, and assigns
// (jointly and severally, the "Indemnified Parties") from and against any and all
// claims, causes of action, costs, proceedings, demands, obligations, losses,
// liabilities, penalties, damages, awards, judgments, interest, fees, and
// expenses (including reasonable attorneys' fees and legal, court, settlement,
// and other related costs) of any kind or nature, in law or equity, whether in
// tort, contract or otherwise, arising out of or relating to, any actual or
// alleged breach by you of the terms of this Ownership License or your use or
// misuse of the NFT or Artwork.
//
// You hereby release, acquit, and forever discharge each of the Indemnified
// Parties from any damages, suits, or controversies or causes of action resulting
// from your acquisition, transfer, sale, disposition, or use of the NFT or
// Artwork in violation of the terms of this Ownership License, and you hereby
// waive the provision of California Civil Code Section 1542 (if and as
// applicable), which says: "A general release does not extend to claims that the
// creditor or releasing party does not know or suspect to exist in his or her
// favor at the time of executing the release and that, if known by him or her,
// would have materially affected his or her settlement with the debtor or
// released party." If any comparable legal provision applies in any other
// jurisdiction, you hereby also waive such provision to the maximum extent
// permitted by law.
//
// ## Applicable Law.
//
// This Ownership License is governed by the laws of New York State applicable to
// contracts to be wholly performed therein, without reference to
// conflicts-of-laws provisions.
//
// ## Arbitration.
//
// Any and all disputes or claims arising out of or relating to this Ownership
// License will be resolved by binding arbitration in New York State, and not by
// court action except with respect to prejudgment remedies such as injunctive
// relief. Each party will bear such party's own costs in connection with the
// arbitration. Judgment upon any arbitral award may be entered and enforced in
// any court of competent jurisdiction.
//
// ## Waiver of Jury Trial.
//
// YOU AND WE WAIVE ANY AND ALL CONSTITUTIONAL AND STATUTORY RIGHTS TO SUE IN
// COURT AND TO HAVE A TRIAL IN FRONT OF A JUDGE OR A JURY. You and we have
// instead agreed that all claims and disputes arising hereunder will be resolved
// by arbitration, as provided above.
//
// ## Waiver of Class Action.
//
// ALL CLAIMS AND DISPUTES FALLING WITHIN THE SCOPE OF ARBITRATION HEREUNDER MUST
// BE ARBITRATED ON AN INDIVIDUAL BASIS, AND NOT ON A CLASS-ACTION,
// COLLECTIVE-CLASS, OR NON-INDIVIDUALIZED BASIS. YOUR CLAIMS CANNOT BE ARBITRATED
// OR CONSOLIDATED WITH THOSE OF ANY OTHER OWNER OF AN NFT OR OTHER WORK BY THE
// ARTIST. If applicable law precludes enforcement of this limitation as to a
// given claim for relief, the claim must be severed from the arbitration and
// brought in the applicable court located in New York State. All other claims
// must be arbitrated, as provided above.
//
// ## Artist's Successor.
//
// After the Artist's lifetime, the rights granted to the Artist herein will be
// exercised by the successor owner of the Artist's IP Rights, which owner will be
// deemed the Artist's successor for all purposes hereunder.
//
// ## Modifications & Waivers.
//
// The terms of this Ownership License cannot be amended or waived except in a
// written document signed by an authorized person on behalf of the Artist and
// Company. Our failure in any instance to exercise or enforce any right or
// provision of this Ownership License will not constitute a waiver of such right
// or provision.
//
// ## Severability.
//
// If any term, clause, or provision of this Ownership License is held to be
// invalid or unenforceable, it will be deemed severed from the remaining terms
// hereof and will not be deemed to affect the validity or enforceability of such
// terms.
//
// ## Conflicting Terms.
//
// In the event of any conflict between the terms of this Ownership License and
// any terms imposed by or in connection with any platform, marketplace, or
// similar service or application on which the Artwork is offered, listed, sold,
// traded, swapped, gifted, transferred, or included the terms of this Ownership
// License will control.
//
// ## Entire Agreement.
//
// This Ownership License sets forth the entire agreement between the parties with
// respect to the Artwork, superseding all previous agreements, understandings,
// statements, discussions, and arrangements in this regard.
//
// ## Contact.
//
// Inquiries regarding this Ownership License may be sent to:
// [email protected].
//
//

Settings
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"uint16","name":"_maxSupply","type":"uint16"},{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":"R","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crossmintAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crossmintMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crossmintPresaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crossmintPresaleName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"crossmintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"crossmintWithProof","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"endMintDate","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"generalPresaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"generalPresaleName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"generalPresaleSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"mintCounts","type":"uint256[]"}],"name":"magicBatchGift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"magicGift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"magicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxPublicMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"bytes","name":"pass","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleDate","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"limit","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setCrossmintConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setEndMintDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"address","name":"signer","type":"address"},{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setGeneralPresaleConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPublicMint","type":"uint256"}],"name":"setMaxPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setPresaleDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setPublicSaleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"address","name":"signer","type":"address"},{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setVipPresaleConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startPublicMintDate","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","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":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vipPresaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vipPresaleName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vipPresaleSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600060a09081526200001b90600390600162000487565b503480156200002957600080fd5b5060405162004d6438038062004d648339810160408190526200004c916200078d565b81818787816000908051906020019062000068929190620004f1565b5080516200007e906001906020840190620004f1565b50506001600755508051825114620000f85760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b60008251116200014b5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f207061796565730000000000006044820152606401620000ef565b60005b8251811015620001b757620001a28382815181106200017157620001716200087f565b60200260200101518383815181106200018e576200018e6200087f565b60200260200101516200024360201b60201c565b80620001ae81620008ab565b9150506200014e565b505050620001d4620001ce6200043160201b60201c565b62000435565b8351620001e9906011906020870190620004f1565b50505061ffff1660805250506702c68af0bb1400006012555060198054600160a01b600160e01b031916600160a01b600160e01b03179055601a8054600161050160811b036001600160901b03199091161790556200091e565b6001600160a01b038216620002b05760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b6064820152608401620000ef565b60008111620003025760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a207368617265732061726520300000006044820152606401620000ef565b6001600160a01b0382166000908152600a6020526040902054156200037e5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b6064820152608401620000ef565b600c8054600181019091557fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b0384169081179091556000908152600a60205260409020819055600854620003e8908290620008c7565b600855604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b3390565b600f80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054828255906000526020600020908101928215620004df579160200282015b82811115620004df57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620004a8565b50620004ed9291506200056e565b5090565b828054620004ff90620008e2565b90600052602060002090601f016020900481019282620005235760008555620004df565b82601f106200053e57805160ff1916838001178555620004df565b82800160010185558215620004df579182015b82811115620004df57825182559160200191906001019062000551565b5b80821115620004ed57600081556001016200056f565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620005c657620005c662000585565b604052919050565b600082601f830112620005e057600080fd5b81516001600160401b03811115620005fc57620005fc62000585565b602062000612601f8301601f191682016200059b565b82815285828487010111156200062757600080fd5b60005b83811015620006475785810183015182820184015282016200062a565b83811115620006595760008385840101525b5095945050505050565b805161ffff811681146200067657600080fd5b919050565b60006001600160401b0382111562000697576200069762000585565b5060051b60200190565b600082601f830112620006b357600080fd5b81516020620006cc620006c6836200067b565b6200059b565b82815260059290921b84018101918181019086841115620006ec57600080fd5b8286015b84811015620007205780516001600160a01b0381168114620007125760008081fd5b8352918301918301620006f0565b509695505050505050565b600082601f8301126200073d57600080fd5b8151602062000750620006c6836200067b565b82815260059290921b840181019181810190868411156200077057600080fd5b8286015b8481101562000720578051835291830191830162000774565b60008060008060008060c08789031215620007a757600080fd5b86516001600160401b0380821115620007bf57600080fd5b620007cd8a838b01620005ce565b97506020890151915080821115620007e457600080fd5b620007f28a838b01620005ce565b965060408901519150808211156200080957600080fd5b620008178a838b01620005ce565b95506200082760608a0162000663565b945060808901519150808211156200083e57600080fd5b6200084c8a838b01620006a1565b935060a08901519150808211156200086357600080fd5b506200087289828a016200072b565b9150509295509295509295565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201620008c057620008c062000895565b5060010190565b60008219821115620008dd57620008dd62000895565b500190565b600181811c90821680620008f757607f821691505b6020821081036200091857634e487b7160e01b600052602260045260246000fd5b50919050565b6080516144076200095d60003960008181610b61015281816112340152818161156b01528181611cb801528181612124015261224301526144076000f3fe6080604052600436106103e85760003560e01c80638b83209b11610208578063cabadaa011610118578063db7fd408116100ab578063f4a0a5281161007a578063f4a0a52814610c5d578063f4d7fb0414610c7d578063fc5bdbc114610c9d578063fe937fa414610cb0578063fff17c4f14610cd057600080fd5b8063db7fd40814610bcc578063e33b7de314610bdf578063e985e9c514610bf4578063f2fde38b14610c3d57600080fd5b8063d21c2596116100e7578063d21c259614610b08578063d40391f214610b28578063d5abeb0114610b4f578063d79779b214610b9657600080fd5b8063cabadaa014610a5f578063cc61ece214610a92578063ce7c2ac214610ab2578063d02cf7e014610ae857600080fd5b8063a22cb4651161019b578063b88d4fde1161016a578063b88d4fde146109c5578063c45ac050146109e5578063c87b56dd14610a05578063c889004b14610a25578063c8e982b514610a4c57600080fd5b8063a22cb4651461095b578063a2309ff81461097b578063a3f8eace14610990578063b4f49cd9146109b057600080fd5b80639852595c116101d75780639852595c146108ac5780639b4de6d9146108e25780639fd6db1214610902578063a17ee50c1461092357600080fd5b80638b83209b146108395780638da5cb5b146108595780639456fbcc1461087757806395d89b411461089757600080fd5b8063406072a9116103035780636352211e11610296578063715018a611610265578063715018a6146107ba578063732f1dac146107cf5780637d55094d146107e457806382b23e88146107f9578063888848811461081957600080fd5b80636352211e1461074f5780636817c76c1461076f5780636c0360eb1461078557806370a082311461079a57600080fd5b80635180bdd6116102d25780635180bdd6146106da57806351cff8d9146106ef57806355f804b31461070f5780636103cf521461072f57600080fd5b8063406072a91461063f57806342842e0e1461068557806348b75044146106a55780634980e1be146106c557600080fd5b806323b872dd1161037b57806330c5c02e1161034a57806330c5c02e146105e0578063375cb7f3146106005780633a98ef39146106155780633e188c781461062a57600080fd5b806323b872dd1461056a578063270ab52c1461058a5780632d892af1146105aa5780632f745c59146105c057600080fd5b80630ca282f7116103b75780630ca282f7146104e757806318160ddd14610507578063191655871461052a5780631f52a1c31461054a57600080fd5b806301ffc9a71461043657806306fdde031461046b578063081812fc1461048d578063095ea7b3146104c557600080fd5b36610431577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561044257600080fd5b5061045661045136600461388b565b610ce5565b60405190151581526020015b60405180910390f35b34801561047757600080fd5b50610480610d37565b6040516104629190613900565b34801561049957600080fd5b506104ad6104a8366004613913565b610dc9565b6040516001600160a01b039091168152602001610462565b3480156104d157600080fd5b506104e56104e0366004613941565b610e56565b005b3480156104f357600080fd5b506104e5610502366004613913565b610f6b565b34801561051357600080fd5b5061051c610fa0565b604051908152602001610462565b34801561053657600080fd5b506104e561054536600461396d565b610fbc565b34801561055657600080fd5b506104e5610565366004613a47565b6110b5565b34801561057657600080fd5b506104e5610585366004613aa5565b6110fe565b34801561059657600080fd5b506104e56105a5366004613913565b61112f565b3480156105b657600080fd5b5061051c60165481565b3480156105cc57600080fd5b5061051c6105db366004613941565b611157565b3480156105ec57600080fd5b506104e56105fb366004613913565b61122a565b34801561060c57600080fd5b5061051c611318565b34801561062157600080fd5b5060085461051c565b34801561063657600080fd5b50610480611340565b34801561064b57600080fd5b5061051c61065a366004613ae6565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b34801561069157600080fd5b506104e56106a0366004613aa5565b6113ce565b3480156106b157600080fd5b506104e56106c0366004613ae6565b6113e9565b3480156106d157600080fd5b5061048061150c565b3480156106e657600080fd5b50610480611528565b3480156106fb57600080fd5b506104e561070a36600461396d565b611535565b34801561071b57600080fd5b506104e561072a366004613b1f565b61153e565b34801561073b57600080fd5b506104e561074a366004613b97565b61155d565b34801561075b57600080fd5b506104ad61076a366004613913565b61160e565b34801561077b57600080fd5b5061051c60125481565b34801561079157600080fd5b5061048061169a565b3480156107a657600080fd5b5061051c6107b536600461396d565b6116a7565b3480156107c657600080fd5b506104e561172e565b3480156107db57600080fd5b50610480611742565b3480156107f057600080fd5b506104e561174f565b34801561080557600080fd5b506104e5610814366004613913565b611778565b34801561082557600080fd5b506019546104ad906001600160a01b031681565b34801561084557600080fd5b506104ad610854366004613913565b6117b2565b34801561086557600080fd5b50600f546001600160a01b03166104ad565b34801561088357600080fd5b506104e5610892366004613ae6565b6117e2565b3480156108a357600080fd5b506104806118cb565b3480156108b857600080fd5b5061051c6108c736600461396d565b6001600160a01b03166000908152600b602052604090205490565b3480156108ee57600080fd5b506104e56108fd366004613bd8565b6118da565b34801561090e57600080fd5b50601a5461045690600160801b900460ff1681565b34801561092f57600080fd5b50601a54610943906001600160401b031681565b6040516001600160401b039091168152602001610462565b34801561096757600080fd5b506104e5610976366004613c2e565b61191b565b34801561098757600080fd5b5061051c6119df565b34801561099c57600080fd5b5061051c6109ab36600461396d565b6119f1565b3480156109bc57600080fd5b5061051c611a39565b3480156109d157600080fd5b506104e56109e0366004613c5c565b611a4c565b3480156109f157600080fd5b5061051c610a00366004613ae6565b611a7e565b348015610a1157600080fd5b50610480610a20366004613913565b611b49565b348015610a3157600080fd5b50601a5461094390600160401b90046001600160401b031681565b6104e5610a5a366004613cdb565b611c13565b348015610a6b57600080fd5b50601a54610a8090600160881b900460ff1681565b60405160ff9091168152602001610462565b348015610a9e57600080fd5b506104e5610aad366004613bd8565b612045565b348015610abe57600080fd5b5061051c610acd36600461396d565b6001600160a01b03166000908152600a602052604090205490565b348015610af457600080fd5b506017546104ad906001600160a01b031681565b348015610b1457600080fd5b506104e5610b23366004613d9e565b612086565b348015610b3457600080fd5b5060195461094390600160a01b90046001600160401b031681565b348015610b5b57600080fd5b50610b837f000000000000000000000000000000000000000000000000000000000000000081565b60405161ffff9091168152602001610462565b348015610ba257600080fd5b5061051c610bb136600461396d565b6001600160a01b03166000908152600d602052604090205490565b6104e5610bda366004613e09565b61219e565b348015610beb57600080fd5b5060095461051c565b348015610c0057600080fd5b50610456610c0f366004613ae6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610c4957600080fd5b506104e5610c5836600461396d565b612638565b348015610c6957600080fd5b506104e5610c78366004613913565b6126ae565b348015610c8957600080fd5b506018546104ad906001600160a01b031681565b6104e5610cab366004613e84565b6126bb565b348015610cbc57600080fd5b506104e5610ccb366004613913565b6126d7565b348015610cdc57600080fd5b5061051c612702565b60006001600160e01b031982166380ac58cd60e01b1480610d1657506001600160e01b03198216635b5e139f60e01b145b80610d3157506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610d4690613ea9565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7290613ea9565b8015610dbf5780601f10610d9457610100808354040283529160200191610dbf565b820191906000526020600020905b815481529060010190602001808311610da257829003601f168201915b5050505050905090565b6000610dd482612715565b610e3a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610e618261160e565b9050806001600160a01b0316836001600160a01b031603610ece5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610e31565b336001600160a01b0382161480610eea5750610eea8133610c0f565b610f5c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610e31565b610f668383612751565b505050565b610f736127bf565b601980546001600160401b03909216600160a01b0267ffffffffffffffff60a01b19909216919091179055565b6000600254610fad6119df565b610fb79190613ef9565b905090565b6001600160a01b0381166000908152600a6020526040902054610ff15760405162461bcd60e51b8152600401610e3190613f10565b6000610ffc826119f1565b90508060000361101e5760405162461bcd60e51b8152600401610e3190613f56565b6001600160a01b0382166000908152600b602052604081208054839290611046908490613fa1565b92505081905550806009600082825461105f9190613fa1565b9091555061106f90508282612819565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b6110bd6127bf565b83516110d09060159060208701906137dc565b50601980546001600160a01b0319166001600160a01b0385161790556110f68483612932565b601655505050565b6111083382612957565b6111245760405162461bcd60e51b8152600401610e3190613fb9565b610f66838383612a3d565b6111376127bf565b601a805460ff909216600160881b0260ff60881b19909216919091179055565b600080805b6003548110156111cd57846001600160a01b0316600382815481106111835761118361400a565b6000918252602090912001546001600160a01b0316036111bb578382036111ad579150610d319050565b6111b8600183613fa1565b91505b806111c581614020565b91505061115c565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610e31565b6112326127bf565b7f000000000000000000000000000000000000000000000000000000000000000061ffff16816112606119df565b61126a9190613fa1565b11156112885760405162461bcd60e51b8152600401610e3190614039565b600081118015611299575060648111155b61130b5760405162461bcd60e51b815260206004820152603a60248201527f4d616368696e652063616e2064697370656e73652061206d696e696d756d206f60448201527f6620312c206d6178696d756d206f662031303020746f6b656e730000000000006064820152608401610e31565b6113158133612bf1565b50565b60006010601460405161132b9190614070565b90815260405190819003602001902054919050565b6013805461134d90613ea9565b80601f016020809104026020016040519081016040528092919081815260200182805461137990613ea9565b80156113c65780601f1061139b576101008083540402835291602001916113c6565b820191906000526020600020905b8154815290600101906020018083116113a957829003601f168201915b505050505081565b610f6683838360405180602001604052806000815250611a4c565b6001600160a01b0381166000908152600a602052604090205461141e5760405162461bcd60e51b8152600401610e3190613f10565b600061142a8383611a7e565b90508060000361144c5760405162461bcd60e51b8152600401610e3190613f56565b6001600160a01b038084166000908152600e6020908152604080832093861683529290529081208054839290611483908490613fa1565b90915550506001600160a01b0383166000908152600d6020526040812080548392906114b0908490613fa1565b909155506114c19050838383612c78565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b60405180608001604052806058815260200161437a6058913981565b6014805461134d90613ea9565b61131581610fbc565b6115466127bf565b80516115599060119060208401906137dc565b5050565b6115656127bf565b8061ffff7f000000000000000000000000000000000000000000000000000000000000000016816115946119df565b61159e9190613fa1565b11156115bc5760405162461bcd60e51b8152600401610e3190614039565b60005b81811015611608576115f68484838181106115dc576115dc61400a565b90506020020160208101906115f1919061396d565b612cca565b8061160081614020565b9150506115bf565b50505050565b600080600383815481106116245761162461400a565b6000918252602090912001546001600160a01b0316905080610d315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610e31565b6011805461134d90613ea9565b60006001600160a01b0382166117125760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610e31565b506001600160a01b031660009081526004602052604090205490565b6117366127bf565b6117406000612ce3565b565b6015805461134d90613ea9565b6117576127bf565b601a805460ff60801b198116600160801b9182900460ff1615909102179055565b6117806127bf565b601a80546001600160401b03909216600160401b026fffffffffffffffff000000000000000019909216919091179055565b6000600c82815481106117c7576117c761400a565b6000918252602090912001546001600160a01b031692915050565b6117ea6127bf565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90839083906370a0823190602401602060405180830381865afa158015611838573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185c919061410b565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156118a7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f669190614124565b606060018054610d4690613ea9565b6118e26127bf565b82516118f59060139060208601906137dc565b50601780546001600160a01b0319166001600160a01b038416179055610f668382612932565b336001600160a01b038316036119735760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610e31565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600354600090610fb790600190613ef9565b6000806119fd60095490565b611a079047613fa1565b9050611a328382611a2d866001600160a01b03166000908152600b602052604090205490565b612d35565b9392505050565b60006010601360405161132b9190614070565b611a563383612957565b611a725760405162461bcd60e51b8152600401610e3190613fb9565b61160884848484612d73565b6001600160a01b0382166000908152600d602052604081205481906040516370a0823160e01b81523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa158015611add573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b01919061410b565b611b0b9190613fa1565b6001600160a01b038086166000908152600e6020908152604080832093881683529290522054909150611b419084908390612d35565b949350505050565b6060611b5482612715565b611bb85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610e31565b6000611bc2612da6565b90506000815111611be25760405180602001604052806000815250611a32565b80611bec84612db5565b604051602001611bfd929190614141565b6040516020818303038152906040529392505050565b601a54839083906001600160401b03164210611c655760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a185cc8195b991959607a1b6044820152606401610e31565b601a54600160801b900460ff16611cb65760405162461bcd60e51b8152602060048201526015602482015274135a5b9d1a5b99c81a5cdb89dd08195b98589b1959605a1b6044820152606401610e31565b7f000000000000000000000000000000000000000000000000000000000000000061ffff1682611ce46119df565b611cee9190613fa1565b1115611d275760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610e31565b60008211611d665760405162461bcd60e51b815260206004820152600c60248201526b4d696e696d756d206f66203160a01b6044820152606401610e31565b601a54600160881b900460ff16821115611db55760405162461bcd60e51b815260206004820152601060248201526f13585e1a5b5d5b48195e18d95959195960821b6044820152606401610e31565b601254611dc29083614170565b341015611de15760405162461bcd60e51b8152600401610e319061418f565b6019548590859085906001600160a01b03163314611e365760405162461bcd60e51b815260206004820152601260248201527110dc9bdcdcdb5a5b9d081c995c5d5a5c995960721b6044820152606401610e31565b601954600160a01b90046001600160401b0316421015612031578051600003611ea15760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c6520686173206e6f74207374617274656400000000006044820152606401610e31565b601a54600160401b90046001600160401b0316421015611f0d5760405162461bcd60e51b815260206004820152602160248201527f43726f73736d696e742070726573616c6520686173206e6f74207374617274656044820152601960fa1b6064820152608401610e31565b6016546040516bffffffffffffffffffffffff19606085901b166020820152611f5091839160340160405160208183030381529060405280519060200120612eb5565b611f9c5760405162461bcd60e51b815260206004820152601960248201527f496e76616c696420616363657373206c6973742070726f6f66000000000000006044820152606401610e31565b61203160158054611fac90613ea9565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd890613ea9565b80156120255780601f10611ffa57610100808354040283529160200191612025565b820191906000526020600020905b81548152906001019060200180831161200857829003601f168201915b50505050508385612ecb565b61203b8888612bf1565b5050505050505050565b61204d6127bf565b82516120609060149060208601906137dc565b50601880546001600160a01b0319166001600160a01b038416179055610f668382612932565b61208e6127bf565b8281146120cf5760405162461bcd60e51b815260206004820152600f60248201526e098cadccee8d040dad2e6dac2e8c6d608b1b6044820152606401610e31565b60005b838110156121975760008585838181106120ee576120ee61400a565b9050602002016020810190612103919061396d565b905060008484848181106121195761211961400a565b9050602002013590507f000000000000000000000000000000000000000000000000000000000000000061ffff16816121506119df565b61215a9190613fa1565b11156121785760405162461bcd60e51b8152600401610e3190614039565b6121828183612bf1565b5050808061218f90614020565b9150506120d2565b5050505050565b601a54839033906001600160401b031642106121f05760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a185cc8195b991959607a1b6044820152606401610e31565b601a54600160801b900460ff166122415760405162461bcd60e51b8152602060048201526015602482015274135a5b9d1a5b99c81a5cdb89dd08195b98589b1959605a1b6044820152606401610e31565b7f000000000000000000000000000000000000000000000000000000000000000061ffff168261226f6119df565b6122799190613fa1565b11156122b25760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610e31565b600082116122f15760405162461bcd60e51b815260206004820152600c60248201526b4d696e696d756d206f66203160a01b6044820152606401610e31565b601a54600160881b900460ff168211156123405760405162461bcd60e51b815260206004820152601060248201526f13585e1a5b5d5b48195e18d95959195960821b6044820152606401610e31565b60125461234d9083614170565b34101561236c5760405162461bcd60e51b8152600401610e319061418f565b843385858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050601954600160a01b90046001600160401b0316421015915061262e90505780516000036124115760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c6520686173206e6f74207374617274656400000000006044820152606401610e31565b60006124b2826124ac604051806040016040528060078152602001664e4552564f555360c81b8152508660405160200161244c9291906141ec565b60408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b90612fcd565b601a54909150600160401b90046001600160401b03164210156125175760405162461bcd60e51b815260206004820152601760248201527f50726573616c6520686173206e6f7420737461727465640000000000000000006044820152606401610e31565b6017546001600160a01b03908116908216036125c7576125c26013805461253d90613ea9565b80601f016020809104026020016040519081016040528092919081815260200182805461256990613ea9565b80156125b65780601f1061258b576101008083540402835291602001916125b6565b820191906000526020600020905b81548152906001019060200180831161259957829003601f168201915b50505050508486612ecb565b61262c565b6018546001600160a01b03908116908216036125ed576125c26014805461253d90613ea9565b60405162461bcd60e51b8152602060048201526014602482015273496e76616c69642070726573616c65207061737360601b6044820152606401610e31565b505b61203b8833612bf1565b6126406127bf565b6001600160a01b0381166126a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e31565b61131581612ce3565b6126b66127bf565b601255565b6040805160008152602081019091526115599083908390611c13565b6126df6127bf565b601a805467ffffffffffffffff19166001600160401b0392909216919091179055565b60006010601560405161132b9190614070565b6000806001600160a01b0316600383815481106127345761273461400a565b6000918252602090912001546001600160a01b0316141592915050565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906127868261160e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600f546001600160a01b031633146117405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e31565b804710156128695760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610e31565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146128b6576040519150601f19603f3d011682016040523d82523d6000602084013e6128bb565b606091505b5050905080610f665760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610e31565b806010836040516129439190614223565b908152604051908190036020019020555050565b600061296282612715565b6129c35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610e31565b60006129ce8361160e565b9050806001600160a01b0316846001600160a01b03161480612a095750836001600160a01b03166129fe84610dc9565b6001600160a01b0316145b80611b4157506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff16611b41565b826001600160a01b0316612a508261160e565b6001600160a01b031614612ab85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610e31565b6001600160a01b038216612b1a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610e31565b612b25600082612751565b6001600160a01b0383166000908152600460205260408120805460019290612b4e908490613ef9565b90915550506001600160a01b0382166000908152600460205260408120805460019290612b7c908490613fa1565b925050819055508160038281548110612b9757612b9761400a565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600260075403612c435760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610e31565b600260075560005b82811015612c6e57612c5c82612cca565b80612c6681614020565b915050612c4b565b5050600160075550565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610f66908490612ff1565b61131581604051806020016040528060008152506130c3565b600f80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b0384166000908152600a602052604081205490918391612d5f9086614170565b612d699190614255565b611b419190613ef9565b612d7e848484612a3d565b612d8a84848484613106565b6116085760405162461bcd60e51b8152600401610e3190614269565b606060118054610d4690613ea9565b606081600003612ddc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612e065780612df081614020565b9150612dff9050600a83614255565b9150612de0565b6000816001600160401b03811115612e2057612e2061398a565b6040519080825280601f01601f191660200182016040528015612e4a576020820181803683370190505b5090505b8415611b4157612e5f600183613ef9565b9150612e6c600a866142bb565b612e77906030613fa1565b60f81b818381518110612e8c57612e8c61400a565b60200101906001600160f81b031916908160001a905350612eae600a86614255565b9450612e4e565b600082612ec28584613207565b14949350505050565b600081601085604051612ede9190614223565b90815260200160405180910390206001016000856001600160a01b03166001600160a01b0316815260200190815260200160002054612f1d9190613fa1565b9050601084604051612f2f9190614223565b908152604051602091819003820181205483111591612f50918791016142cf565b60405160208183030381529060405290612f7d5760405162461bcd60e51b8152600401610e319190613900565b5080601085604051612f8f9190614223565b90815260200160405180910390206001016000856001600160a01b03166001600160a01b031681526020019081526020016000208190555050505050565b6000806000612fdc858561324c565b91509150612fe981613291565b509392505050565b6000613046826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166134479092919063ffffffff16565b805190915015610f6657808060200190518101906130649190614124565b610f665760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610e31565b6130cc82613456565b6130ea60008360016003805490506130e49190613ef9565b84613106565b6115595760405162461bcd60e51b8152600401610e3190614269565b60006001600160a01b0384163b156131fc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061314a903390899088908890600401614309565b6020604051808303816000875af1925050508015613185575060408051601f3d908101601f1916820190925261318291810190614346565b60015b6131e2573d8080156131b3576040519150601f19603f3d011682016040523d82523d6000602084013e6131b8565b606091505b5080516000036131da5760405162461bcd60e51b8152600401610e3190614269565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b41565b506001949350505050565b600081815b8451811015612fe9576132388286838151811061322b5761322b61400a565b6020026020010151613559565b91508061324481614020565b91505061320c565b60008082516041036132825760208301516040840151606085015160001a61327687828585613585565b9450945050505061328a565b506000905060025b9250929050565b60008160048111156132a5576132a5614363565b036132ad5750565b60018160048111156132c1576132c1614363565b0361330e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610e31565b600281600481111561332257613322614363565b0361336f5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610e31565b600381600481111561338357613383614363565b036133db5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610e31565b60048160048111156133ef576133ef614363565b036113155760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610e31565b6060611b418484600085613672565b6001600160a01b0381166134ac5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610e31565b6003546001600160a01b03821660009081526004602052604081208054600192906134d8908490613fa1565b90915550506003805460018101825560009182527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818310613575576000828152602084905260409020611a32565b5060009182526020526040902090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156135bc5750600090506003613669565b8460ff16601b141580156135d457508460ff16601c14155b156135e55750600090506004613669565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613639573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661366257600060019250925050613669565b9150600090505b94509492505050565b6060824710156136d35760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610e31565b6001600160a01b0385163b61372a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610e31565b600080866001600160a01b031685876040516137469190614223565b60006040518083038185875af1925050503d8060008114613783576040519150601f19603f3d011682016040523d82523d6000602084013e613788565b606091505b50915091506137988282866137a3565b979650505050505050565b606083156137b2575081611a32565b8251156137c25782518084602001fd5b8160405162461bcd60e51b8152600401610e319190613900565b8280546137e890613ea9565b90600052602060002090601f01602090048101928261380a5760008555613850565b82601f1061382357805160ff1916838001178555613850565b82800160010185558215613850579182015b82811115613850578251825591602001919060010190613835565b5061385c929150613860565b5090565b5b8082111561385c5760008155600101613861565b6001600160e01b03198116811461131557600080fd5b60006020828403121561389d57600080fd5b8135611a3281613875565b60005b838110156138c35781810151838201526020016138ab565b838111156116085750506000910152565b600081518084526138ec8160208601602086016138a8565b601f01601f19169290920160200192915050565b602081526000611a3260208301846138d4565b60006020828403121561392557600080fd5b5035919050565b6001600160a01b038116811461131557600080fd5b6000806040838503121561395457600080fd5b823561395f8161392c565b946020939093013593505050565b60006020828403121561397f57600080fd5b8135611a328161392c565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156139c8576139c861398a565b604052919050565b60006001600160401b038311156139e9576139e961398a565b6139fc601f8401601f19166020016139a0565b9050828152838383011115613a1057600080fd5b828260208301376000602084830101529392505050565b600082601f830112613a3857600080fd5b611a32838335602085016139d0565b60008060008060808587031215613a5d57600080fd5b84356001600160401b03811115613a7357600080fd5b613a7f87828801613a27565b9450506020850135613a908161392c565b93969395505050506040820135916060013590565b600080600060608486031215613aba57600080fd5b8335613ac58161392c565b92506020840135613ad58161392c565b929592945050506040919091013590565b60008060408385031215613af957600080fd5b8235613b048161392c565b91506020830135613b148161392c565b809150509250929050565b600060208284031215613b3157600080fd5b81356001600160401b03811115613b4757600080fd5b611b4184828501613a27565b60008083601f840112613b6557600080fd5b5081356001600160401b03811115613b7c57600080fd5b6020830191508360208260051b850101111561328a57600080fd5b60008060208385031215613baa57600080fd5b82356001600160401b03811115613bc057600080fd5b613bcc85828601613b53565b90969095509350505050565b600080600060608486031215613bed57600080fd5b83356001600160401b03811115613c0357600080fd5b613c0f86828701613a27565b9350506020840135613ad58161392c565b801515811461131557600080fd5b60008060408385031215613c4157600080fd5b8235613c4c8161392c565b91506020830135613b1481613c20565b60008060008060808587031215613c7257600080fd5b8435613c7d8161392c565b93506020850135613c8d8161392c565b92506040850135915060608501356001600160401b03811115613caf57600080fd5b8501601f81018713613cc057600080fd5b613ccf878235602084016139d0565b91505092959194509250565b600080600060608486031215613cf057600080fd5b83359250602080850135613d038161392c565b925060408501356001600160401b0380821115613d1f57600080fd5b818701915087601f830112613d3357600080fd5b813581811115613d4557613d4561398a565b8060051b9150613d568483016139a0565b818152918301840191848101908a841115613d7057600080fd5b938501935b83851015613d8e57843582529385019390850190613d75565b8096505050505050509250925092565b60008060008060408587031215613db457600080fd5b84356001600160401b0380821115613dcb57600080fd5b613dd788838901613b53565b90965094506020870135915080821115613df057600080fd5b50613dfd87828801613b53565b95989497509550505050565b600080600060408486031215613e1e57600080fd5b8335925060208401356001600160401b0380821115613e3c57600080fd5b818601915086601f830112613e5057600080fd5b813581811115613e5f57600080fd5b876020828501011115613e7157600080fd5b6020830194508093505050509250925092565b60008060408385031215613e9757600080fd5b823591506020830135613b148161392c565b600181811c90821680613ebd57607f821691505b602082108103613edd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015613f0b57613f0b613ee3565b500390565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60008219821115613fb457613fb4613ee3565b500190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006001820161403257614032613ee3565b5060010190565b6020808252601d908201527f45786365656473206d6178696d756d20746f6b656e20737570706c792e000000604082015260600190565b600080835481600182811c91508083168061408c57607f831692505b602080841082036140ab57634e487b7160e01b86526022600452602486fd5b8180156140bf57600181146140d0576140fd565b60ff198616895284890196506140fd565b60008a81526020902060005b868110156140f55781548b8201529085019083016140dc565b505084890196505b509498975050505050505050565b60006020828403121561411d57600080fd5b5051919050565b60006020828403121561413657600080fd5b8151611a3281613c20565b600083516141538184602088016138a8565b8351908301906141678183602088016138a8565b01949350505050565b600081600019048311821515161561418a5761418a613ee3565b500290565b6020808252603a908201527f496e73756666696369656e74205061796d656e743a20416d6f756e74206f662060408201527f45746865722073656e74206973206e6f7420636f72726563742e000000000000606082015260800190565b600083516141fe8184602088016138a8565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600082516142358184602087016138a8565b9190910192915050565b634e487b7160e01b600052601260045260246000fd5b6000826142645761426461423f565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826142ca576142ca61423f565b500690565b71022bc31b2b2b239903634b6b4ba103337b9160751b8152600082516142fc8160128501602087016138a8565b9190910160120192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061433c908301846138d4565b9695505050505050565b60006020828403121561435857600080fd5b8151611a3281613875565b634e487b7160e01b600052602160045260246000fdfe576520617265204e6572766f75732e2041726520796f753f204c65742075732068656c7020796f75207769746820796f7572206e657874204e46542050726f6a656374202d3e2064796c616e406e6572766f75732e6e6574a2646970667358221220828328881b6ced89f6b64c281c2d7b507c7d06b75e33a6dc3776e8b09de522d664736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000c4d696e69204d656c746965730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b4d494e494d454c544945530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63556a78446d56427a394459593869716e4657444339383873754c484669766754615246336e366f6f4d41422f000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000d6990da020c8224c53517020e554f9ef149b83db0000000000000000000000000c13865038ee12f457a6e9950449ce99da3c7c0e00000000000000000000000078bb5c6c6bf06941043c2d18cc5b10e4aa330b99000000000000000000000000b21884674afc615458f5bb8da6f40783b52b6fa800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000a

Deployed Bytecode

0x6080604052600436106103e85760003560e01c80638b83209b11610208578063cabadaa011610118578063db7fd408116100ab578063f4a0a5281161007a578063f4a0a52814610c5d578063f4d7fb0414610c7d578063fc5bdbc114610c9d578063fe937fa414610cb0578063fff17c4f14610cd057600080fd5b8063db7fd40814610bcc578063e33b7de314610bdf578063e985e9c514610bf4578063f2fde38b14610c3d57600080fd5b8063d21c2596116100e7578063d21c259614610b08578063d40391f214610b28578063d5abeb0114610b4f578063d79779b214610b9657600080fd5b8063cabadaa014610a5f578063cc61ece214610a92578063ce7c2ac214610ab2578063d02cf7e014610ae857600080fd5b8063a22cb4651161019b578063b88d4fde1161016a578063b88d4fde146109c5578063c45ac050146109e5578063c87b56dd14610a05578063c889004b14610a25578063c8e982b514610a4c57600080fd5b8063a22cb4651461095b578063a2309ff81461097b578063a3f8eace14610990578063b4f49cd9146109b057600080fd5b80639852595c116101d75780639852595c146108ac5780639b4de6d9146108e25780639fd6db1214610902578063a17ee50c1461092357600080fd5b80638b83209b146108395780638da5cb5b146108595780639456fbcc1461087757806395d89b411461089757600080fd5b8063406072a9116103035780636352211e11610296578063715018a611610265578063715018a6146107ba578063732f1dac146107cf5780637d55094d146107e457806382b23e88146107f9578063888848811461081957600080fd5b80636352211e1461074f5780636817c76c1461076f5780636c0360eb1461078557806370a082311461079a57600080fd5b80635180bdd6116102d25780635180bdd6146106da57806351cff8d9146106ef57806355f804b31461070f5780636103cf521461072f57600080fd5b8063406072a91461063f57806342842e0e1461068557806348b75044146106a55780634980e1be146106c557600080fd5b806323b872dd1161037b57806330c5c02e1161034a57806330c5c02e146105e0578063375cb7f3146106005780633a98ef39146106155780633e188c781461062a57600080fd5b806323b872dd1461056a578063270ab52c1461058a5780632d892af1146105aa5780632f745c59146105c057600080fd5b80630ca282f7116103b75780630ca282f7146104e757806318160ddd14610507578063191655871461052a5780631f52a1c31461054a57600080fd5b806301ffc9a71461043657806306fdde031461046b578063081812fc1461048d578063095ea7b3146104c557600080fd5b36610431577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561044257600080fd5b5061045661045136600461388b565b610ce5565b60405190151581526020015b60405180910390f35b34801561047757600080fd5b50610480610d37565b6040516104629190613900565b34801561049957600080fd5b506104ad6104a8366004613913565b610dc9565b6040516001600160a01b039091168152602001610462565b3480156104d157600080fd5b506104e56104e0366004613941565b610e56565b005b3480156104f357600080fd5b506104e5610502366004613913565b610f6b565b34801561051357600080fd5b5061051c610fa0565b604051908152602001610462565b34801561053657600080fd5b506104e561054536600461396d565b610fbc565b34801561055657600080fd5b506104e5610565366004613a47565b6110b5565b34801561057657600080fd5b506104e5610585366004613aa5565b6110fe565b34801561059657600080fd5b506104e56105a5366004613913565b61112f565b3480156105b657600080fd5b5061051c60165481565b3480156105cc57600080fd5b5061051c6105db366004613941565b611157565b3480156105ec57600080fd5b506104e56105fb366004613913565b61122a565b34801561060c57600080fd5b5061051c611318565b34801561062157600080fd5b5060085461051c565b34801561063657600080fd5b50610480611340565b34801561064b57600080fd5b5061051c61065a366004613ae6565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b34801561069157600080fd5b506104e56106a0366004613aa5565b6113ce565b3480156106b157600080fd5b506104e56106c0366004613ae6565b6113e9565b3480156106d157600080fd5b5061048061150c565b3480156106e657600080fd5b50610480611528565b3480156106fb57600080fd5b506104e561070a36600461396d565b611535565b34801561071b57600080fd5b506104e561072a366004613b1f565b61153e565b34801561073b57600080fd5b506104e561074a366004613b97565b61155d565b34801561075b57600080fd5b506104ad61076a366004613913565b61160e565b34801561077b57600080fd5b5061051c60125481565b34801561079157600080fd5b5061048061169a565b3480156107a657600080fd5b5061051c6107b536600461396d565b6116a7565b3480156107c657600080fd5b506104e561172e565b3480156107db57600080fd5b50610480611742565b3480156107f057600080fd5b506104e561174f565b34801561080557600080fd5b506104e5610814366004613913565b611778565b34801561082557600080fd5b506019546104ad906001600160a01b031681565b34801561084557600080fd5b506104ad610854366004613913565b6117b2565b34801561086557600080fd5b50600f546001600160a01b03166104ad565b34801561088357600080fd5b506104e5610892366004613ae6565b6117e2565b3480156108a357600080fd5b506104806118cb565b3480156108b857600080fd5b5061051c6108c736600461396d565b6001600160a01b03166000908152600b602052604090205490565b3480156108ee57600080fd5b506104e56108fd366004613bd8565b6118da565b34801561090e57600080fd5b50601a5461045690600160801b900460ff1681565b34801561092f57600080fd5b50601a54610943906001600160401b031681565b6040516001600160401b039091168152602001610462565b34801561096757600080fd5b506104e5610976366004613c2e565b61191b565b34801561098757600080fd5b5061051c6119df565b34801561099c57600080fd5b5061051c6109ab36600461396d565b6119f1565b3480156109bc57600080fd5b5061051c611a39565b3480156109d157600080fd5b506104e56109e0366004613c5c565b611a4c565b3480156109f157600080fd5b5061051c610a00366004613ae6565b611a7e565b348015610a1157600080fd5b50610480610a20366004613913565b611b49565b348015610a3157600080fd5b50601a5461094390600160401b90046001600160401b031681565b6104e5610a5a366004613cdb565b611c13565b348015610a6b57600080fd5b50601a54610a8090600160881b900460ff1681565b60405160ff9091168152602001610462565b348015610a9e57600080fd5b506104e5610aad366004613bd8565b612045565b348015610abe57600080fd5b5061051c610acd36600461396d565b6001600160a01b03166000908152600a602052604090205490565b348015610af457600080fd5b506017546104ad906001600160a01b031681565b348015610b1457600080fd5b506104e5610b23366004613d9e565b612086565b348015610b3457600080fd5b5060195461094390600160a01b90046001600160401b031681565b348015610b5b57600080fd5b50610b837f00000000000000000000000000000000000000000000000000000000000007d081565b60405161ffff9091168152602001610462565b348015610ba257600080fd5b5061051c610bb136600461396d565b6001600160a01b03166000908152600d602052604090205490565b6104e5610bda366004613e09565b61219e565b348015610beb57600080fd5b5060095461051c565b348015610c0057600080fd5b50610456610c0f366004613ae6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610c4957600080fd5b506104e5610c5836600461396d565b612638565b348015610c6957600080fd5b506104e5610c78366004613913565b6126ae565b348015610c8957600080fd5b506018546104ad906001600160a01b031681565b6104e5610cab366004613e84565b6126bb565b348015610cbc57600080fd5b506104e5610ccb366004613913565b6126d7565b348015610cdc57600080fd5b5061051c612702565b60006001600160e01b031982166380ac58cd60e01b1480610d1657506001600160e01b03198216635b5e139f60e01b145b80610d3157506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610d4690613ea9565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7290613ea9565b8015610dbf5780601f10610d9457610100808354040283529160200191610dbf565b820191906000526020600020905b815481529060010190602001808311610da257829003601f168201915b5050505050905090565b6000610dd482612715565b610e3a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610e618261160e565b9050806001600160a01b0316836001600160a01b031603610ece5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610e31565b336001600160a01b0382161480610eea5750610eea8133610c0f565b610f5c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610e31565b610f668383612751565b505050565b610f736127bf565b601980546001600160401b03909216600160a01b0267ffffffffffffffff60a01b19909216919091179055565b6000600254610fad6119df565b610fb79190613ef9565b905090565b6001600160a01b0381166000908152600a6020526040902054610ff15760405162461bcd60e51b8152600401610e3190613f10565b6000610ffc826119f1565b90508060000361101e5760405162461bcd60e51b8152600401610e3190613f56565b6001600160a01b0382166000908152600b602052604081208054839290611046908490613fa1565b92505081905550806009600082825461105f9190613fa1565b9091555061106f90508282612819565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b6110bd6127bf565b83516110d09060159060208701906137dc565b50601980546001600160a01b0319166001600160a01b0385161790556110f68483612932565b601655505050565b6111083382612957565b6111245760405162461bcd60e51b8152600401610e3190613fb9565b610f66838383612a3d565b6111376127bf565b601a805460ff909216600160881b0260ff60881b19909216919091179055565b600080805b6003548110156111cd57846001600160a01b0316600382815481106111835761118361400a565b6000918252602090912001546001600160a01b0316036111bb578382036111ad579150610d319050565b6111b8600183613fa1565b91505b806111c581614020565b91505061115c565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610e31565b6112326127bf565b7f00000000000000000000000000000000000000000000000000000000000007d061ffff16816112606119df565b61126a9190613fa1565b11156112885760405162461bcd60e51b8152600401610e3190614039565b600081118015611299575060648111155b61130b5760405162461bcd60e51b815260206004820152603a60248201527f4d616368696e652063616e2064697370656e73652061206d696e696d756d206f60448201527f6620312c206d6178696d756d206f662031303020746f6b656e730000000000006064820152608401610e31565b6113158133612bf1565b50565b60006010601460405161132b9190614070565b90815260405190819003602001902054919050565b6013805461134d90613ea9565b80601f016020809104026020016040519081016040528092919081815260200182805461137990613ea9565b80156113c65780601f1061139b576101008083540402835291602001916113c6565b820191906000526020600020905b8154815290600101906020018083116113a957829003601f168201915b505050505081565b610f6683838360405180602001604052806000815250611a4c565b6001600160a01b0381166000908152600a602052604090205461141e5760405162461bcd60e51b8152600401610e3190613f10565b600061142a8383611a7e565b90508060000361144c5760405162461bcd60e51b8152600401610e3190613f56565b6001600160a01b038084166000908152600e6020908152604080832093861683529290529081208054839290611483908490613fa1565b90915550506001600160a01b0383166000908152600d6020526040812080548392906114b0908490613fa1565b909155506114c19050838383612c78565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b60405180608001604052806058815260200161437a6058913981565b6014805461134d90613ea9565b61131581610fbc565b6115466127bf565b80516115599060119060208401906137dc565b5050565b6115656127bf565b8061ffff7f00000000000000000000000000000000000000000000000000000000000007d016816115946119df565b61159e9190613fa1565b11156115bc5760405162461bcd60e51b8152600401610e3190614039565b60005b81811015611608576115f68484838181106115dc576115dc61400a565b90506020020160208101906115f1919061396d565b612cca565b8061160081614020565b9150506115bf565b50505050565b600080600383815481106116245761162461400a565b6000918252602090912001546001600160a01b0316905080610d315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610e31565b6011805461134d90613ea9565b60006001600160a01b0382166117125760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610e31565b506001600160a01b031660009081526004602052604090205490565b6117366127bf565b6117406000612ce3565b565b6015805461134d90613ea9565b6117576127bf565b601a805460ff60801b198116600160801b9182900460ff1615909102179055565b6117806127bf565b601a80546001600160401b03909216600160401b026fffffffffffffffff000000000000000019909216919091179055565b6000600c82815481106117c7576117c761400a565b6000918252602090912001546001600160a01b031692915050565b6117ea6127bf565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90839083906370a0823190602401602060405180830381865afa158015611838573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185c919061410b565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156118a7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f669190614124565b606060018054610d4690613ea9565b6118e26127bf565b82516118f59060139060208601906137dc565b50601780546001600160a01b0319166001600160a01b038416179055610f668382612932565b336001600160a01b038316036119735760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610e31565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600354600090610fb790600190613ef9565b6000806119fd60095490565b611a079047613fa1565b9050611a328382611a2d866001600160a01b03166000908152600b602052604090205490565b612d35565b9392505050565b60006010601360405161132b9190614070565b611a563383612957565b611a725760405162461bcd60e51b8152600401610e3190613fb9565b61160884848484612d73565b6001600160a01b0382166000908152600d602052604081205481906040516370a0823160e01b81523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa158015611add573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b01919061410b565b611b0b9190613fa1565b6001600160a01b038086166000908152600e6020908152604080832093881683529290522054909150611b419084908390612d35565b949350505050565b6060611b5482612715565b611bb85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610e31565b6000611bc2612da6565b90506000815111611be25760405180602001604052806000815250611a32565b80611bec84612db5565b604051602001611bfd929190614141565b6040516020818303038152906040529392505050565b601a54839083906001600160401b03164210611c655760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a185cc8195b991959607a1b6044820152606401610e31565b601a54600160801b900460ff16611cb65760405162461bcd60e51b8152602060048201526015602482015274135a5b9d1a5b99c81a5cdb89dd08195b98589b1959605a1b6044820152606401610e31565b7f00000000000000000000000000000000000000000000000000000000000007d061ffff1682611ce46119df565b611cee9190613fa1565b1115611d275760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610e31565b60008211611d665760405162461bcd60e51b815260206004820152600c60248201526b4d696e696d756d206f66203160a01b6044820152606401610e31565b601a54600160881b900460ff16821115611db55760405162461bcd60e51b815260206004820152601060248201526f13585e1a5b5d5b48195e18d95959195960821b6044820152606401610e31565b601254611dc29083614170565b341015611de15760405162461bcd60e51b8152600401610e319061418f565b6019548590859085906001600160a01b03163314611e365760405162461bcd60e51b815260206004820152601260248201527110dc9bdcdcdb5a5b9d081c995c5d5a5c995960721b6044820152606401610e31565b601954600160a01b90046001600160401b0316421015612031578051600003611ea15760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c6520686173206e6f74207374617274656400000000006044820152606401610e31565b601a54600160401b90046001600160401b0316421015611f0d5760405162461bcd60e51b815260206004820152602160248201527f43726f73736d696e742070726573616c6520686173206e6f74207374617274656044820152601960fa1b6064820152608401610e31565b6016546040516bffffffffffffffffffffffff19606085901b166020820152611f5091839160340160405160208183030381529060405280519060200120612eb5565b611f9c5760405162461bcd60e51b815260206004820152601960248201527f496e76616c696420616363657373206c6973742070726f6f66000000000000006044820152606401610e31565b61203160158054611fac90613ea9565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd890613ea9565b80156120255780601f10611ffa57610100808354040283529160200191612025565b820191906000526020600020905b81548152906001019060200180831161200857829003601f168201915b50505050508385612ecb565b61203b8888612bf1565b5050505050505050565b61204d6127bf565b82516120609060149060208601906137dc565b50601880546001600160a01b0319166001600160a01b038416179055610f668382612932565b61208e6127bf565b8281146120cf5760405162461bcd60e51b815260206004820152600f60248201526e098cadccee8d040dad2e6dac2e8c6d608b1b6044820152606401610e31565b60005b838110156121975760008585838181106120ee576120ee61400a565b9050602002016020810190612103919061396d565b905060008484848181106121195761211961400a565b9050602002013590507f00000000000000000000000000000000000000000000000000000000000007d061ffff16816121506119df565b61215a9190613fa1565b11156121785760405162461bcd60e51b8152600401610e3190614039565b6121828183612bf1565b5050808061218f90614020565b9150506120d2565b5050505050565b601a54839033906001600160401b031642106121f05760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a185cc8195b991959607a1b6044820152606401610e31565b601a54600160801b900460ff166122415760405162461bcd60e51b8152602060048201526015602482015274135a5b9d1a5b99c81a5cdb89dd08195b98589b1959605a1b6044820152606401610e31565b7f00000000000000000000000000000000000000000000000000000000000007d061ffff168261226f6119df565b6122799190613fa1565b11156122b25760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610e31565b600082116122f15760405162461bcd60e51b815260206004820152600c60248201526b4d696e696d756d206f66203160a01b6044820152606401610e31565b601a54600160881b900460ff168211156123405760405162461bcd60e51b815260206004820152601060248201526f13585e1a5b5d5b48195e18d95959195960821b6044820152606401610e31565b60125461234d9083614170565b34101561236c5760405162461bcd60e51b8152600401610e319061418f565b843385858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050601954600160a01b90046001600160401b0316421015915061262e90505780516000036124115760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c6520686173206e6f74207374617274656400000000006044820152606401610e31565b60006124b2826124ac604051806040016040528060078152602001664e4552564f555360c81b8152508660405160200161244c9291906141ec565b60408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b90612fcd565b601a54909150600160401b90046001600160401b03164210156125175760405162461bcd60e51b815260206004820152601760248201527f50726573616c6520686173206e6f7420737461727465640000000000000000006044820152606401610e31565b6017546001600160a01b03908116908216036125c7576125c26013805461253d90613ea9565b80601f016020809104026020016040519081016040528092919081815260200182805461256990613ea9565b80156125b65780601f1061258b576101008083540402835291602001916125b6565b820191906000526020600020905b81548152906001019060200180831161259957829003601f168201915b50505050508486612ecb565b61262c565b6018546001600160a01b03908116908216036125ed576125c26014805461253d90613ea9565b60405162461bcd60e51b8152602060048201526014602482015273496e76616c69642070726573616c65207061737360601b6044820152606401610e31565b505b61203b8833612bf1565b6126406127bf565b6001600160a01b0381166126a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e31565b61131581612ce3565b6126b66127bf565b601255565b6040805160008152602081019091526115599083908390611c13565b6126df6127bf565b601a805467ffffffffffffffff19166001600160401b0392909216919091179055565b60006010601560405161132b9190614070565b6000806001600160a01b0316600383815481106127345761273461400a565b6000918252602090912001546001600160a01b0316141592915050565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906127868261160e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600f546001600160a01b031633146117405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e31565b804710156128695760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610e31565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146128b6576040519150601f19603f3d011682016040523d82523d6000602084013e6128bb565b606091505b5050905080610f665760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610e31565b806010836040516129439190614223565b908152604051908190036020019020555050565b600061296282612715565b6129c35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610e31565b60006129ce8361160e565b9050806001600160a01b0316846001600160a01b03161480612a095750836001600160a01b03166129fe84610dc9565b6001600160a01b0316145b80611b4157506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff16611b41565b826001600160a01b0316612a508261160e565b6001600160a01b031614612ab85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610e31565b6001600160a01b038216612b1a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610e31565b612b25600082612751565b6001600160a01b0383166000908152600460205260408120805460019290612b4e908490613ef9565b90915550506001600160a01b0382166000908152600460205260408120805460019290612b7c908490613fa1565b925050819055508160038281548110612b9757612b9761400a565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600260075403612c435760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610e31565b600260075560005b82811015612c6e57612c5c82612cca565b80612c6681614020565b915050612c4b565b5050600160075550565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610f66908490612ff1565b61131581604051806020016040528060008152506130c3565b600f80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b0384166000908152600a602052604081205490918391612d5f9086614170565b612d699190614255565b611b419190613ef9565b612d7e848484612a3d565b612d8a84848484613106565b6116085760405162461bcd60e51b8152600401610e3190614269565b606060118054610d4690613ea9565b606081600003612ddc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612e065780612df081614020565b9150612dff9050600a83614255565b9150612de0565b6000816001600160401b03811115612e2057612e2061398a565b6040519080825280601f01601f191660200182016040528015612e4a576020820181803683370190505b5090505b8415611b4157612e5f600183613ef9565b9150612e6c600a866142bb565b612e77906030613fa1565b60f81b818381518110612e8c57612e8c61400a565b60200101906001600160f81b031916908160001a905350612eae600a86614255565b9450612e4e565b600082612ec28584613207565b14949350505050565b600081601085604051612ede9190614223565b90815260200160405180910390206001016000856001600160a01b03166001600160a01b0316815260200190815260200160002054612f1d9190613fa1565b9050601084604051612f2f9190614223565b908152604051602091819003820181205483111591612f50918791016142cf565b60405160208183030381529060405290612f7d5760405162461bcd60e51b8152600401610e319190613900565b5080601085604051612f8f9190614223565b90815260200160405180910390206001016000856001600160a01b03166001600160a01b031681526020019081526020016000208190555050505050565b6000806000612fdc858561324c565b91509150612fe981613291565b509392505050565b6000613046826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166134479092919063ffffffff16565b805190915015610f6657808060200190518101906130649190614124565b610f665760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610e31565b6130cc82613456565b6130ea60008360016003805490506130e49190613ef9565b84613106565b6115595760405162461bcd60e51b8152600401610e3190614269565b60006001600160a01b0384163b156131fc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061314a903390899088908890600401614309565b6020604051808303816000875af1925050508015613185575060408051601f3d908101601f1916820190925261318291810190614346565b60015b6131e2573d8080156131b3576040519150601f19603f3d011682016040523d82523d6000602084013e6131b8565b606091505b5080516000036131da5760405162461bcd60e51b8152600401610e3190614269565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b41565b506001949350505050565b600081815b8451811015612fe9576132388286838151811061322b5761322b61400a565b6020026020010151613559565b91508061324481614020565b91505061320c565b60008082516041036132825760208301516040840151606085015160001a61327687828585613585565b9450945050505061328a565b506000905060025b9250929050565b60008160048111156132a5576132a5614363565b036132ad5750565b60018160048111156132c1576132c1614363565b0361330e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610e31565b600281600481111561332257613322614363565b0361336f5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610e31565b600381600481111561338357613383614363565b036133db5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610e31565b60048160048111156133ef576133ef614363565b036113155760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610e31565b6060611b418484600085613672565b6001600160a01b0381166134ac5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610e31565b6003546001600160a01b03821660009081526004602052604081208054600192906134d8908490613fa1565b90915550506003805460018101825560009182527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818310613575576000828152602084905260409020611a32565b5060009182526020526040902090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156135bc5750600090506003613669565b8460ff16601b141580156135d457508460ff16601c14155b156135e55750600090506004613669565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613639573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661366257600060019250925050613669565b9150600090505b94509492505050565b6060824710156136d35760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610e31565b6001600160a01b0385163b61372a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610e31565b600080866001600160a01b031685876040516137469190614223565b60006040518083038185875af1925050503d8060008114613783576040519150601f19603f3d011682016040523d82523d6000602084013e613788565b606091505b50915091506137988282866137a3565b979650505050505050565b606083156137b2575081611a32565b8251156137c25782518084602001fd5b8160405162461bcd60e51b8152600401610e319190613900565b8280546137e890613ea9565b90600052602060002090601f01602090048101928261380a5760008555613850565b82601f1061382357805160ff1916838001178555613850565b82800160010185558215613850579182015b82811115613850578251825591602001919060010190613835565b5061385c929150613860565b5090565b5b8082111561385c5760008155600101613861565b6001600160e01b03198116811461131557600080fd5b60006020828403121561389d57600080fd5b8135611a3281613875565b60005b838110156138c35781810151838201526020016138ab565b838111156116085750506000910152565b600081518084526138ec8160208601602086016138a8565b601f01601f19169290920160200192915050565b602081526000611a3260208301846138d4565b60006020828403121561392557600080fd5b5035919050565b6001600160a01b038116811461131557600080fd5b6000806040838503121561395457600080fd5b823561395f8161392c565b946020939093013593505050565b60006020828403121561397f57600080fd5b8135611a328161392c565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156139c8576139c861398a565b604052919050565b60006001600160401b038311156139e9576139e961398a565b6139fc601f8401601f19166020016139a0565b9050828152838383011115613a1057600080fd5b828260208301376000602084830101529392505050565b600082601f830112613a3857600080fd5b611a32838335602085016139d0565b60008060008060808587031215613a5d57600080fd5b84356001600160401b03811115613a7357600080fd5b613a7f87828801613a27565b9450506020850135613a908161392c565b93969395505050506040820135916060013590565b600080600060608486031215613aba57600080fd5b8335613ac58161392c565b92506020840135613ad58161392c565b929592945050506040919091013590565b60008060408385031215613af957600080fd5b8235613b048161392c565b91506020830135613b148161392c565b809150509250929050565b600060208284031215613b3157600080fd5b81356001600160401b03811115613b4757600080fd5b611b4184828501613a27565b60008083601f840112613b6557600080fd5b5081356001600160401b03811115613b7c57600080fd5b6020830191508360208260051b850101111561328a57600080fd5b60008060208385031215613baa57600080fd5b82356001600160401b03811115613bc057600080fd5b613bcc85828601613b53565b90969095509350505050565b600080600060608486031215613bed57600080fd5b83356001600160401b03811115613c0357600080fd5b613c0f86828701613a27565b9350506020840135613ad58161392c565b801515811461131557600080fd5b60008060408385031215613c4157600080fd5b8235613c4c8161392c565b91506020830135613b1481613c20565b60008060008060808587031215613c7257600080fd5b8435613c7d8161392c565b93506020850135613c8d8161392c565b92506040850135915060608501356001600160401b03811115613caf57600080fd5b8501601f81018713613cc057600080fd5b613ccf878235602084016139d0565b91505092959194509250565b600080600060608486031215613cf057600080fd5b83359250602080850135613d038161392c565b925060408501356001600160401b0380821115613d1f57600080fd5b818701915087601f830112613d3357600080fd5b813581811115613d4557613d4561398a565b8060051b9150613d568483016139a0565b818152918301840191848101908a841115613d7057600080fd5b938501935b83851015613d8e57843582529385019390850190613d75565b8096505050505050509250925092565b60008060008060408587031215613db457600080fd5b84356001600160401b0380821115613dcb57600080fd5b613dd788838901613b53565b90965094506020870135915080821115613df057600080fd5b50613dfd87828801613b53565b95989497509550505050565b600080600060408486031215613e1e57600080fd5b8335925060208401356001600160401b0380821115613e3c57600080fd5b818601915086601f830112613e5057600080fd5b813581811115613e5f57600080fd5b876020828501011115613e7157600080fd5b6020830194508093505050509250925092565b60008060408385031215613e9757600080fd5b823591506020830135613b148161392c565b600181811c90821680613ebd57607f821691505b602082108103613edd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015613f0b57613f0b613ee3565b500390565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60008219821115613fb457613fb4613ee3565b500190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006001820161403257614032613ee3565b5060010190565b6020808252601d908201527f45786365656473206d6178696d756d20746f6b656e20737570706c792e000000604082015260600190565b600080835481600182811c91508083168061408c57607f831692505b602080841082036140ab57634e487b7160e01b86526022600452602486fd5b8180156140bf57600181146140d0576140fd565b60ff198616895284890196506140fd565b60008a81526020902060005b868110156140f55781548b8201529085019083016140dc565b505084890196505b509498975050505050505050565b60006020828403121561411d57600080fd5b5051919050565b60006020828403121561413657600080fd5b8151611a3281613c20565b600083516141538184602088016138a8565b8351908301906141678183602088016138a8565b01949350505050565b600081600019048311821515161561418a5761418a613ee3565b500290565b6020808252603a908201527f496e73756666696369656e74205061796d656e743a20416d6f756e74206f662060408201527f45746865722073656e74206973206e6f7420636f72726563742e000000000000606082015260800190565b600083516141fe8184602088016138a8565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600082516142358184602087016138a8565b9190910192915050565b634e487b7160e01b600052601260045260246000fd5b6000826142645761426461423f565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826142ca576142ca61423f565b500690565b71022bc31b2b2b239903634b6b4ba103337b9160751b8152600082516142fc8160128501602087016138a8565b9190910160120192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061433c908301846138d4565b9695505050505050565b60006020828403121561435857600080fd5b8151611a3281613875565b634e487b7160e01b600052602160045260246000fdfe576520617265204e6572766f75732e2041726520796f753f204c65742075732068656c7020796f75207769746820796f7572206e657874204e46542050726f6a656374202d3e2064796c616e406e6572766f75732e6e6574a2646970667358221220828328881b6ced89f6b64c281c2d7b507c7d06b75e33a6dc3776e8b09de522d664736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000c4d696e69204d656c746965730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b4d494e494d454c544945530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63556a78446d56427a394459593869716e4657444339383873754c484669766754615246336e366f6f4d41422f000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000d6990da020c8224c53517020e554f9ef149b83db0000000000000000000000000c13865038ee12f457a6e9950449ce99da3c7c0e00000000000000000000000078bb5c6c6bf06941043c2d18cc5b10e4aa330b99000000000000000000000000b21884674afc615458f5bb8da6f40783b52b6fa800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000a

-----Decoded View---------------
Arg [0] : name (string): Mini Melties
Arg [1] : symbol (string): MINIMELTIES
Arg [2] : initBaseURI (string): ipfs://QmcUjxDmVBz9DYY8iqnFWDC988suLHFivgTaRF3n6ooMAB/
Arg [3] : _maxSupply (uint16): 2000
Arg [4] : payees (address[]): 0xd6990Da020c8224c53517020e554f9EF149b83DB,0x0C13865038EE12F457A6E9950449cE99dA3C7c0e,0x78Bb5c6c6BF06941043c2D18Cc5b10E4Aa330b99,0xb21884674AFc615458F5Bb8Da6F40783B52b6Fa8
Arg [5] : shares (uint256[]): 65,10,15,10

-----Encoded View---------------
23 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [7] : 4d696e69204d656c746965730000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [9] : 4d494e494d454c54494553000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [11] : 697066733a2f2f516d63556a78446d56427a394459593869716e465744433938
Arg [12] : 3873754c484669766754615246336e366f6f4d41422f00000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [14] : 000000000000000000000000d6990da020c8224c53517020e554f9ef149b83db
Arg [15] : 0000000000000000000000000c13865038ee12f457a6e9950449ce99da3c7c0e
Arg [16] : 00000000000000000000000078bb5c6c6bf06941043c2d18cc5b10e4aa330b99
Arg [17] : 000000000000000000000000b21884674afc615458f5bb8da6f40783b52b6fa8
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [20] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [21] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [22] : 000000000000000000000000000000000000000000000000000000000000000a


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.