ETH Price: $3,352.59 (+0.52%)
 

Overview

Max Total Supply

1,532 BVB Box

Holders

43

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 BVB Box
0xe907189838a98d0702b0c75d529666f66a6d9f63
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:
BvbBox

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-05
*/

// Dependency file: @openzeppelin/contracts/utils/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;
    }
}


// Dependency file: @openzeppelin/contracts/access/Ownable.sol

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

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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


// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol

// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

// pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

// pragma solidity ^0.8.0;

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `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);

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


// Dependency file: @openzeppelin/contracts/utils/Address.sol

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

// pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// Dependency file: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// import "@openzeppelin/contracts/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));
        }
    }

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


// Dependency file: @openzeppelin/contracts/utils/introspection/IERC165.sol

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

// pragma solidity ^0.8.0;

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


// Dependency file: @openzeppelin/contracts/token/ERC721/IERC721.sol

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

// pragma solidity ^0.8.0;

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

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

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

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

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

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

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


// Dependency file: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

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

// pragma solidity ^0.8.0;

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


// Dependency file: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

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

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC721/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);
}


// Dependency file: @openzeppelin/contracts/utils/Strings.sol

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

// pragma solidity ^0.8.0;

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

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

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

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

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


// Dependency file: @openzeppelin/contracts/utils/introspection/ERC165.sol

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

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/introspection/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;
    }
}


// Dependency file: @openzeppelin/contracts/token/ERC721/ERC721.sol

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

// pragma solidity ^0.8.0;

// 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 ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

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

    /**
     * @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 = _owners[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 = ERC721.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 {
        _setApprovalForAll(_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 _owners[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 = ERC721.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, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @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,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _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, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

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

        _balances[to] += 1;
        _owners[tokenId] = to;

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

        _afterTokenTransfer(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 = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

        _afterTokenTransfer(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(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        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;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(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(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


// Dependency file: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol

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

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

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

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

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


// Dependency file: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol

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

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
// import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


// Dependency file: @openzeppelin/contracts/utils/cryptography/ECDSA.sol

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

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/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) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        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.
            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 if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } 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));
    }
}


// Dependency file: @openzeppelin/contracts/utils/Counters.sol

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

// pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}


// Dependency file: contracts/interfaces/IERC721Minter.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

interface IERC721Minter is IERC721Enumerable {
    function tokenIds() external returns (uint256);

    function ownerOf(uint256 tokenId) external view returns (address owner);

    function mint(address to, uint256 tokenId) external;

    function burn(uint256 tokenId) external;
}


// Root file: contracts/BvbBox.sol

pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
// import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
// import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
// import "@openzeppelin/contracts/utils/Counters.sol";

// import "contracts/interfaces/IERC721Minter.sol";

contract BvbBox is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIds;

    string private _baseTokenURI;

    IERC721Minter public minter;

    uint256 public price;
    uint256 public startTime;
    uint256 public period;

    // Channel => Stock
    // 0 => Whitelist; 1 => Public; 2 => UMEMeta; 3 => VMM; 4 => Marketplace
    mapping(uint8 => uint256) public stockOf;
    // Whitelist has mint
    mapping(address => bool) public whiteListMintOf;
    // Open countdown
    mapping(uint256 => uint256) public countdownOf;
    // Channel => signer
    mapping(uint256 => address) public signers;

    event MintBox(address user, uint8 channel, uint256 tokenId);
    event OpenBox(
        address user,
        uint256 tokenId,
        address nftAddr,
        uint256 nftTokenId
    );

    constructor(
        IERC721Minter _minter,
        uint256 _price,
        uint256 _startTime
    ) ERC721("Borussia Dortmund Box", "BVB Box") {
        _baseTokenURI = "https://mint.f.cc/api/token/box/";

        price = _price;
        startTime = _startTime;

        minter = _minter;
        period = 7 days;

        signers[0] = 0xFfffF1B5D514c577Be108E2a3678B8F98E246C73;
        signers[2] = signers[0];
    }

    function mintByChannel(uint8 channel, uint256 num) external payable {
        require(signers[channel] == address(0), "mint: channel error");

        require(msg.value >= price.mul(num), "mint: insufficient funds");
        require(block.timestamp >= startTime, "mint: not open");
        require(num > 0, "num error");
        require(stockOf[channel] >= num, "mint: mint ended");

        stockOf[channel] = stockOf[channel].sub(num);

        for (uint i = 0; i < num; i++) {
            _mintBox(channel, msg.sender);
        }
    }

    function mintByWhitelist(uint8 channel, bytes memory signature)
        external
        payable
    {
        require(signers[channel] != address(0), "mint: channel error");

        require(msg.value >= price, "mint: insufficient funds");
        require(stockOf[channel] > 0, "mint: mint ended");
        require(!whiteListMintOf[msg.sender], "mint: minted");

        bytes32 x = keccak256(abi.encodePacked(msg.sender));
        require(
            ECDSA.recover(x, signature) == signers[channel],
            "mint: signature error"
        );

        whiteListMintOf[msg.sender] = true;
        stockOf[channel] = stockOf[channel].sub(1);

        _mintBox(channel, msg.sender);
    }

    function batchMint(
        uint8 channel,
        address to,
        uint256 num
    ) external onlyOwner {
        for (uint i = 0; i < num; i++) {
            _mintBox(channel, to);
        }
    }

    function openBox(uint256 tokenId) external {
        require(ownerOf(tokenId) == msg.sender, "open: not owner");
        require(block.timestamp >= countdownOf[tokenId], "open: not time");

        _burn(tokenId);

        uint256 newTokenId = minter.tokenIds() + 1;
        minter.mint(msg.sender, newTokenId);

        emit OpenBox(msg.sender, tokenId, address(minter), newTokenId);
    }

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

    function tokenIds() public view returns (uint256) {
        return _tokenIds.current();
    }

    function setBaseURI(string memory _newBaseUri) public onlyOwner {
        _baseTokenURI = _newBaseUri;
    }

    function addStock(uint8 channel, uint256 _value) public onlyOwner {
        stockOf[channel] = stockOf[channel].add(_value);
    }

    function reduceStock(uint8 channel, uint256 _value) public onlyOwner {
        stockOf[channel] = stockOf[channel].sub(_value);
    }

    function setStartTime(uint256 _value) public onlyOwner {
        startTime = _value;
    }

    function setPeriod(uint256 _value) public onlyOwner {
        period = _value;
    }

    function setSigners(uint8 channel, address _signer) public onlyOwner {
        signers[channel] = _signer;
    }

    function safeExtract(address to, uint256 amount) public onlyOwner {
        payable(to).transfer(amount);
    }

    function _mintBox(uint8 channel, address to) internal {
        uint256 tokenId = _tokenIds.current() + 1;
        _tokenIds.increment();

        _mint(to, tokenId);

        if (block.timestamp < startTime) {
            countdownOf[tokenId] = startTime + period;
        } else {
            countdownOf[tokenId] = block.timestamp + period;
        }

        emit MintBox(to, channel, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC721Minter","name":"_minter","type":"address"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_startTime","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":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint8","name":"channel","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"MintBox","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"nftAddr","type":"address"},{"indexed":false,"internalType":"uint256","name":"nftTokenId","type":"uint256"}],"name":"OpenBox","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"channel","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"addStock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"channel","type":"uint8"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"countdownOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"channel","type":"uint8"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mintByChannel","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"channel","type":"uint8"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintByWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"contract IERC721Minter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"openBox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"period","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"channel","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"reduceStock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"safeExtract","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":"_newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"channel","type":"uint8"},{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"signers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"stockOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListMintOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620031aa380380620031aa83398101604081905262000034916200020b565b6040518060400160405280601581526020017f426f72757373696120446f72746d756e6420426f78000000000000000000000081525060405180604001604052806007815260200166084ac844084def60cb1b81525081600090816200009b9190620002f5565b506001620000aa8282620002f5565b505050620000c7620000c1620001b560201b60201c565b620001b9565b6040518060400160405280602081526020017f68747470733a2f2f6d696e742e662e63632f6170692f746f6b656e2f626f782f815250600c90816200010d9190620002f5565b50600e91909155600f55600d80546001600160a01b039092166001600160a01b031992831617905562093a8060105560146020527f4f26c3876aa9f4b92579780beea1161a61f87ebf1ec6ee865b299e447ecba99c8054821673fffff1b5d514c577be108e2a3678b8f98e246c7390811790915560026000527fa1930aa930426c54c34daad2b9ada7c5d0ef0c96078a3c5bb79f6fa6602c4a7a8054909216179055620003c1565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000806000606084860312156200022157600080fd5b83516001600160a01b03811681146200023957600080fd5b602085015160409095015190969495509392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200027b57607f821691505b6020821081036200029c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002f057600081815260208120601f850160051c81016020861015620002cb5750805b601f850160051c820191505b81811015620002ec57828155600101620002d7565b5050505b505050565b81516001600160401b0381111562000311576200031162000250565b620003298162000322845462000266565b84620002a2565b602080601f831160018114620003615760008415620003485750858301515b600019600386901b1c1916600185901b178555620002ec565b600085815260208120601f198616915b82811015620003925788860151825594840194600190910190840162000371565b5085821015620003b15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612dd980620003d16000396000f3fe6080604052600436106102305760003560e01c806370a082311161012e578063ae472d9d116100ab578063d8f8175b1161006f578063d8f8175b14610684578063de6c5337146106b4578063e985e9c5146106d4578063ef78d4fd1461071d578063f2fde38b1461073357600080fd5b8063ae472d9d146105d7578063b1e5e2b714610604578063b88d4fde14610624578063c7b3570814610644578063c87b56dd1461066457600080fd5b806390e6813b116100f257806390e6813b1461054c578063943d6d091461056c57806395d89b411461058c578063a035b1fe146105a1578063a22cb465146105b757600080fd5b806370a08231146104ce578063714cff56146104ee578063715018a61461050357806378e97925146105185780638da5cb5b1461052e57600080fd5b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce71461042e57806355f804b31461044e578063574db8671461046e57806360db05ec1461049b5780636352211e146104ae57600080fd5b80632f745c591461039b5780633e0a322d146103bb57806342842e0e146103db57806349b5741b146103fb5780634d740f3d1461041b57600080fd5b8063095ea7b311610203578063095ea7b3146102e45780630f3a9f651461030657806318160ddd146103265780632079fb9a1461034557806323b872dd1461037b57600080fd5b806301ffc9a71461023557806306fdde031461026a578063075461721461028c578063081812fc146102c4575b600080fd5b34801561024157600080fd5b5061025561025036600461261b565b610753565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610764565b6040516102619190612688565b34801561029857600080fd5b50600d546102ac906001600160a01b031681565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102ac6102df36600461269b565b6107f6565b3480156102f057600080fd5b506103046102ff3660046126d0565b610890565b005b34801561031257600080fd5b5061030461032136600461269b565b6109a5565b34801561033257600080fd5b506008545b604051908152602001610261565b34801561035157600080fd5b506102ac61036036600461269b565b6014602052600090815260409020546001600160a01b031681565b34801561038757600080fd5b506103046103963660046126fa565b6109d4565b3480156103a757600080fd5b506103376103b63660046126d0565b610a05565b3480156103c757600080fd5b506103046103d636600461269b565b610a9b565b3480156103e757600080fd5b506103046103f63660046126fa565b610aca565b34801561040757600080fd5b50610304610416366004612747565b610ae5565b610304610429366004612811565b610b3c565b34801561043a57600080fd5b5061033761044936600461269b565b610d8b565b34801561045a57600080fd5b5061030461046936600461285f565b610e1e565b34801561047a57600080fd5b506103376104893660046128a8565b60116020526000908152604090205481565b6103046104a93660046128c3565b610e58565b3480156104ba57600080fd5b506102ac6104c936600461269b565b61103a565b3480156104da57600080fd5b506103376104e93660046128df565b6110b1565b3480156104fa57600080fd5b50610337611138565b34801561050f57600080fd5b50610304611148565b34801561052457600080fd5b50610337600f5481565b34801561053a57600080fd5b50600a546001600160a01b03166102ac565b34801561055857600080fd5b506103046105673660046128c3565b61117e565b34801561057857600080fd5b506103046105873660046126d0565b6111df565b34801561059857600080fd5b5061027f61123f565b3480156105ad57600080fd5b50610337600e5481565b3480156105c357600080fd5b506103046105d23660046128fa565b61124e565b3480156105e357600080fd5b506103376105f236600461269b565b60136020526000908152604090205481565b34801561061057600080fd5b5061030461061f36600461269b565b611259565b34801561063057600080fd5b5061030461063f366004612936565b611439565b34801561065057600080fd5b5061030461065f36600461299e565b61146b565b34801561067057600080fd5b5061027f61067f36600461269b565b6114c8565b34801561069057600080fd5b5061025561069f3660046128df565b60126020526000908152604090205460ff1681565b3480156106c057600080fd5b506103046106cf3660046128c3565b6115a3565b3480156106e057600080fd5b506102556106ef3660046129d1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561072957600080fd5b5061033760105481565b34801561073f57600080fd5b5061030461074e3660046128df565b6115ea565b600061075e82611685565b92915050565b606060008054610773906129ed565b80601f016020809104026020016040519081016040528092919081815260200182805461079f906129ed565b80156107ec5780601f106107c1576101008083540402835291602001916107ec565b820191906000526020600020905b8154815290600101906020018083116107cf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108745760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061089b8261103a565b9050806001600160a01b0316836001600160a01b0316036109085760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161086b565b336001600160a01b0382161480610924575061092481336106ef565b6109965760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161086b565b6109a083836116aa565b505050565b600a546001600160a01b031633146109cf5760405162461bcd60e51b815260040161086b90612a27565b601055565b6109de3382611718565b6109fa5760405162461bcd60e51b815260040161086b90612a5c565b6109a083838361180f565b6000610a10836110b1565b8210610a725760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161086b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ac55760405162461bcd60e51b815260040161086b90612a27565b600f55565b6109a083838360405180602001604052806000815250611439565b600a546001600160a01b03163314610b0f5760405162461bcd60e51b815260040161086b90612a27565b60005b81811015610b3657610b2484846119b6565b80610b2e81612ac3565b915050610b12565b50505050565b60ff82166000908152601460205260409020546001600160a01b0316610b9a5760405162461bcd60e51b815260206004820152601360248201527236b4b73a1d1031b430b73732b61032b93937b960691b604482015260640161086b565b600e54341015610be75760405162461bcd60e51b81526020600482015260186024820152776d696e743a20696e73756666696369656e742066756e647360401b604482015260640161086b565b60ff8216600090815260116020526040902054610c395760405162461bcd60e51b815260206004820152601060248201526f1b5a5b9d0e881b5a5b9d08195b99195960821b604482015260640161086b565b3360009081526012602052604090205460ff1615610c885760405162461bcd60e51b815260206004820152600c60248201526b1b5a5b9d0e881b5a5b9d195960a21b604482015260640161086b565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160408051601f19818403018152918152815160209283012060ff8616600090815260149093529120549091506001600160a01b0316610ce88284611a82565b6001600160a01b031614610d365760405162461bcd60e51b815260206004820152601560248201527436b4b73a1d1039b4b3b730ba3ab9329032b93937b960591b604482015260640161086b565b336000908152601260209081526040808320805460ff1916600190811790915560ff87168452601190925290912054610d6e91611aa6565b60ff84166000908152601160205260409020556109a083336119b6565b6000610d9660085490565b8210610df95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161086b565b60088281548110610e0c57610e0c612adc565b90600052602060002001549050919050565b600a546001600160a01b03163314610e485760405162461bcd60e51b815260040161086b90612a27565b600c610e548282612b40565b5050565b60ff82166000908152601460205260409020546001600160a01b031615610eb75760405162461bcd60e51b815260206004820152601360248201527236b4b73a1d1031b430b73732b61032b93937b960691b604482015260640161086b565b600e54610ec49082611ab2565b341015610f0e5760405162461bcd60e51b81526020600482015260186024820152776d696e743a20696e73756666696369656e742066756e647360401b604482015260640161086b565b600f54421015610f515760405162461bcd60e51b815260206004820152600e60248201526d36b4b73a1d103737ba1037b832b760911b604482015260640161086b565b60008111610f8d5760405162461bcd60e51b8152602060048201526009602482015268373ab69032b93937b960b91b604482015260640161086b565b60ff8216600090815260116020526040902054811115610fe25760405162461bcd60e51b815260206004820152601060248201526f1b5a5b9d0e881b5a5b9d08195b99195960821b604482015260640161086b565b60ff8216600090815260116020526040902054610fff9082611aa6565b60ff83166000908152601160205260408120919091555b818110156109a05761102883336119b6565b8061103281612ac3565b915050611016565b6000818152600260205260408120546001600160a01b03168061075e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161086b565b60006001600160a01b03821661111c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161086b565b506001600160a01b031660009081526003602052604090205490565b6000611143600b5490565b905090565b600a546001600160a01b031633146111725760405162461bcd60e51b815260040161086b90612a27565b61117c6000611abe565b565b600a546001600160a01b031633146111a85760405162461bcd60e51b815260040161086b90612a27565b60ff82166000908152601160205260409020546111c59082611aa6565b60ff90921660009081526011602052604090209190915550565b600a546001600160a01b031633146112095760405162461bcd60e51b815260040161086b90612a27565b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156109a0573d6000803e3d6000fd5b606060018054610773906129ed565b610e54338383611b10565b336112638261103a565b6001600160a01b0316146112ab5760405162461bcd60e51b815260206004820152600f60248201526e37b832b71d103737ba1037bbb732b960891b604482015260640161086b565b6000818152601360205260409020544210156112fa5760405162461bcd60e51b815260206004820152600e60248201526d6f70656e3a206e6f742074696d6560901b604482015260640161086b565b61130381611bde565b600d54604080516338a67fab60e11b815290516000926001600160a01b03169163714cff56916004808301926020929190829003018187875af115801561134e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113729190612c00565b61137d906001612c19565b600d546040516340c10f1960e01b8152336004820152602481018390529192506001600160a01b0316906340c10f1990604401600060405180830381600087803b1580156113ca57600080fd5b505af11580156113de573d6000803e3d6000fd5b5050600d5460408051338152602081018790526001600160a01b039092168282015260608201859052517faf02ad398f3ac91e00bd2a3267825f1e943b4470b46d72dba13eb12c355012be9350908190036080019150a15050565b6114433383611718565b61145f5760405162461bcd60e51b815260040161086b90612a5c565b610b3684848484611c85565b600a546001600160a01b031633146114955760405162461bcd60e51b815260040161086b90612a27565b60ff91909116600090815260146020526040902080546001600160a01b0319166001600160a01b03909216919091179055565b6000818152600260205260409020546060906001600160a01b03166115475760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161086b565b6000611551611cb8565b90506000815111611571576040518060200160405280600081525061159c565b8061157b84611cc7565b60405160200161158c929190612c2c565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115cd5760405162461bcd60e51b815260040161086b90612a27565b60ff82166000908152601160205260409020546111c59082611dc8565b600a546001600160a01b031633146116145760405162461bcd60e51b815260040161086b90612a27565b6001600160a01b0381166116795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086b565b61168281611abe565b50565b60006001600160e01b0319821663780e9d6360e01b148061075e575061075e82611dd4565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116df8261103a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117915760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161086b565b600061179c8361103a565b9050806001600160a01b0316846001600160a01b031614806117d75750836001600160a01b03166117cc846107f6565b6001600160a01b0316145b8061180757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166118228261103a565b6001600160a01b0316146118865760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161086b565b6001600160a01b0382166118e85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161086b565b6118f3838383611e24565b6118fe6000826116aa565b6001600160a01b0383166000908152600360205260408120805460019290611927908490612c5b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611955908490612c19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006119c1600b5490565b6119cc906001612c19565b90506119dc600b80546001019055565b6119e68282611edc565b600f54421015611a1457601054600f54611a009190612c19565b600082815260136020526040902055611a31565b601054611a219042612c19565b6000828152601360205260409020555b604080516001600160a01b038416815260ff851660208201529081018290527ff6c982e8c36f59d98675cc7663ec750e78a8ff82993d92dd23a2cd1e0b6cb59c9060600160405180910390a1505050565b6000806000611a91858561202a565b91509150611a9e81612098565b509392505050565b600061159c8284612c5b565b600061159c8284612c6e565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611b715760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161086b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000611be98261103a565b9050611bf781600084611e24565b611c026000836116aa565b6001600160a01b0381166000908152600360205260408120805460019290611c2b908490612c5b565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611c9084848461180f565b611c9c8484848461224e565b610b365760405162461bcd60e51b815260040161086b90612c8d565b6060600c8054610773906129ed565b606081600003611cee5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d185780611d0281612ac3565b9150611d119050600a83612cf5565b9150611cf2565b60008167ffffffffffffffff811115611d3357611d33612765565b6040519080825280601f01601f191660200182016040528015611d5d576020820181803683370190505b5090505b841561180757611d72600183612c5b565b9150611d7f600a86612d09565b611d8a906030612c19565b60f81b818381518110611d9f57611d9f612adc565b60200101906001600160f81b031916908160001a905350611dc1600a86612cf5565b9450611d61565b600061159c8284612c19565b60006001600160e01b031982166380ac58cd60e01b1480611e0557506001600160e01b03198216635b5e139f60e01b145b8061075e57506301ffc9a760e01b6001600160e01b031983161461075e565b6001600160a01b038316611e7f57611e7a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ea2565b816001600160a01b0316836001600160a01b031614611ea257611ea2838261234f565b6001600160a01b038216611eb9576109a0816123ec565b826001600160a01b0316826001600160a01b0316146109a0576109a0828261249b565b6001600160a01b038216611f325760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161086b565b6000818152600260205260409020546001600160a01b031615611f975760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161086b565b611fa360008383611e24565b6001600160a01b0382166000908152600360205260408120805460019290611fcc908490612c19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008082516041036120605760208301516040840151606085015160001a612054878285856124df565b94509450505050612091565b8251604003612089576020830151604084015161207e8683836125cc565b935093505050612091565b506000905060025b9250929050565b60008160048111156120ac576120ac612d1d565b036120b45750565b60018160048111156120c8576120c8612d1d565b036121155760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161086b565b600281600481111561212957612129612d1d565b036121765760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161086b565b600381600481111561218a5761218a612d1d565b036121e25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161086b565b60048160048111156121f6576121f6612d1d565b036116825760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161086b565b60006001600160a01b0384163b1561234457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612292903390899088908890600401612d33565b6020604051808303816000875af19250505080156122cd575060408051601f3d908101601f191682019092526122ca91810190612d70565b60015b61232a573d8080156122fb576040519150601f19603f3d011682016040523d82523d6000602084013e612300565b606091505b5080516000036123225760405162461bcd60e51b815260040161086b90612c8d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611807565b506001949350505050565b6000600161235c846110b1565b6123669190612c5b565b6000838152600760205260409020549091508082146123b9576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906123fe90600190612c5b565b6000838152600960205260408120546008805493945090928490811061242657612426612adc565b90600052602060002001549050806008838154811061244757612447612adc565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061247f5761247f612d8d565b6001900381819060005260206000200160009055905550505050565b60006124a6836110b1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561251657506000905060036125c3565b8460ff16601b1415801561252e57508460ff16601c14155b1561253f57506000905060046125c3565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612593573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166125bc576000600192509250506125c3565b9150600090505b94509492505050565b6000806001600160ff1b038316816125e960ff86901c601b612c19565b90506125f7878288856124df565b935093505050935093915050565b6001600160e01b03198116811461168257600080fd5b60006020828403121561262d57600080fd5b813561159c81612605565b60005b8381101561265357818101518382015260200161263b565b50506000910152565b60008151808452612674816020860160208601612638565b601f01601f19169290920160200192915050565b60208152600061159c602083018461265c565b6000602082840312156126ad57600080fd5b5035919050565b80356001600160a01b03811681146126cb57600080fd5b919050565b600080604083850312156126e357600080fd5b6126ec836126b4565b946020939093013593505050565b60008060006060848603121561270f57600080fd5b612718846126b4565b9250612726602085016126b4565b9150604084013590509250925092565b803560ff811681146126cb57600080fd5b60008060006060848603121561275c57600080fd5b61271884612736565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561279657612796612765565b604051601f8501601f19908116603f011681019082821181831017156127be576127be612765565b816040528093508581528686860111156127d757600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261280257600080fd5b61159c8383356020850161277b565b6000806040838503121561282457600080fd5b61282d83612736565b9150602083013567ffffffffffffffff81111561284957600080fd5b612855858286016127f1565b9150509250929050565b60006020828403121561287157600080fd5b813567ffffffffffffffff81111561288857600080fd5b8201601f8101841361289957600080fd5b6118078482356020840161277b565b6000602082840312156128ba57600080fd5b61159c82612736565b600080604083850312156128d657600080fd5b6126ec83612736565b6000602082840312156128f157600080fd5b61159c826126b4565b6000806040838503121561290d57600080fd5b612916836126b4565b91506020830135801515811461292b57600080fd5b809150509250929050565b6000806000806080858703121561294c57600080fd5b612955856126b4565b9350612963602086016126b4565b925060408501359150606085013567ffffffffffffffff81111561298657600080fd5b612992878288016127f1565b91505092959194509250565b600080604083850312156129b157600080fd5b6129ba83612736565b91506129c8602084016126b4565b90509250929050565b600080604083850312156129e457600080fd5b6129ba836126b4565b600181811c90821680612a0157607f821691505b602082108103612a2157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600060018201612ad557612ad5612aad565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f8211156109a057600081815260208120601f850160051c81016020861015612b195750805b601f850160051c820191505b81811015612b3857828155600101612b25565b505050505050565b815167ffffffffffffffff811115612b5a57612b5a612765565b612b6e81612b6884546129ed565b84612af2565b602080601f831160018114612ba35760008415612b8b5750858301515b600019600386901b1c1916600185901b178555612b38565b600085815260208120601f198616915b82811015612bd257888601518255948401946001909101908401612bb3565b5085821015612bf05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215612c1257600080fd5b5051919050565b8082018082111561075e5761075e612aad565b60008351612c3e818460208801612638565b835190830190612c52818360208801612638565b01949350505050565b8181038181111561075e5761075e612aad565b6000816000190483118215151615612c8857612c88612aad565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612d0457612d04612cdf565b500490565b600082612d1857612d18612cdf565b500690565b634e487b7160e01b600052602160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d669083018461265c565b9695505050505050565b600060208284031215612d8257600080fd5b815161159c81612605565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220d9ea48468718b77a4e949760f91516a39b2ddb2ef817a4055b5297cbebd9b23364736f6c63430008100033000000000000000000000000fcc16c7c5b7eb6c92cb1bbc794ada4e119f06c790000000000000000000000000000000000000000000000000214e8348c4f000000000000000000000000000000000000000000000000000000000000636a7d00

Deployed Bytecode

0x6080604052600436106102305760003560e01c806370a082311161012e578063ae472d9d116100ab578063d8f8175b1161006f578063d8f8175b14610684578063de6c5337146106b4578063e985e9c5146106d4578063ef78d4fd1461071d578063f2fde38b1461073357600080fd5b8063ae472d9d146105d7578063b1e5e2b714610604578063b88d4fde14610624578063c7b3570814610644578063c87b56dd1461066457600080fd5b806390e6813b116100f257806390e6813b1461054c578063943d6d091461056c57806395d89b411461058c578063a035b1fe146105a1578063a22cb465146105b757600080fd5b806370a08231146104ce578063714cff56146104ee578063715018a61461050357806378e97925146105185780638da5cb5b1461052e57600080fd5b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce71461042e57806355f804b31461044e578063574db8671461046e57806360db05ec1461049b5780636352211e146104ae57600080fd5b80632f745c591461039b5780633e0a322d146103bb57806342842e0e146103db57806349b5741b146103fb5780634d740f3d1461041b57600080fd5b8063095ea7b311610203578063095ea7b3146102e45780630f3a9f651461030657806318160ddd146103265780632079fb9a1461034557806323b872dd1461037b57600080fd5b806301ffc9a71461023557806306fdde031461026a578063075461721461028c578063081812fc146102c4575b600080fd5b34801561024157600080fd5b5061025561025036600461261b565b610753565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610764565b6040516102619190612688565b34801561029857600080fd5b50600d546102ac906001600160a01b031681565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102ac6102df36600461269b565b6107f6565b3480156102f057600080fd5b506103046102ff3660046126d0565b610890565b005b34801561031257600080fd5b5061030461032136600461269b565b6109a5565b34801561033257600080fd5b506008545b604051908152602001610261565b34801561035157600080fd5b506102ac61036036600461269b565b6014602052600090815260409020546001600160a01b031681565b34801561038757600080fd5b506103046103963660046126fa565b6109d4565b3480156103a757600080fd5b506103376103b63660046126d0565b610a05565b3480156103c757600080fd5b506103046103d636600461269b565b610a9b565b3480156103e757600080fd5b506103046103f63660046126fa565b610aca565b34801561040757600080fd5b50610304610416366004612747565b610ae5565b610304610429366004612811565b610b3c565b34801561043a57600080fd5b5061033761044936600461269b565b610d8b565b34801561045a57600080fd5b5061030461046936600461285f565b610e1e565b34801561047a57600080fd5b506103376104893660046128a8565b60116020526000908152604090205481565b6103046104a93660046128c3565b610e58565b3480156104ba57600080fd5b506102ac6104c936600461269b565b61103a565b3480156104da57600080fd5b506103376104e93660046128df565b6110b1565b3480156104fa57600080fd5b50610337611138565b34801561050f57600080fd5b50610304611148565b34801561052457600080fd5b50610337600f5481565b34801561053a57600080fd5b50600a546001600160a01b03166102ac565b34801561055857600080fd5b506103046105673660046128c3565b61117e565b34801561057857600080fd5b506103046105873660046126d0565b6111df565b34801561059857600080fd5b5061027f61123f565b3480156105ad57600080fd5b50610337600e5481565b3480156105c357600080fd5b506103046105d23660046128fa565b61124e565b3480156105e357600080fd5b506103376105f236600461269b565b60136020526000908152604090205481565b34801561061057600080fd5b5061030461061f36600461269b565b611259565b34801561063057600080fd5b5061030461063f366004612936565b611439565b34801561065057600080fd5b5061030461065f36600461299e565b61146b565b34801561067057600080fd5b5061027f61067f36600461269b565b6114c8565b34801561069057600080fd5b5061025561069f3660046128df565b60126020526000908152604090205460ff1681565b3480156106c057600080fd5b506103046106cf3660046128c3565b6115a3565b3480156106e057600080fd5b506102556106ef3660046129d1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561072957600080fd5b5061033760105481565b34801561073f57600080fd5b5061030461074e3660046128df565b6115ea565b600061075e82611685565b92915050565b606060008054610773906129ed565b80601f016020809104026020016040519081016040528092919081815260200182805461079f906129ed565b80156107ec5780601f106107c1576101008083540402835291602001916107ec565b820191906000526020600020905b8154815290600101906020018083116107cf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108745760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061089b8261103a565b9050806001600160a01b0316836001600160a01b0316036109085760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161086b565b336001600160a01b0382161480610924575061092481336106ef565b6109965760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161086b565b6109a083836116aa565b505050565b600a546001600160a01b031633146109cf5760405162461bcd60e51b815260040161086b90612a27565b601055565b6109de3382611718565b6109fa5760405162461bcd60e51b815260040161086b90612a5c565b6109a083838361180f565b6000610a10836110b1565b8210610a725760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161086b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ac55760405162461bcd60e51b815260040161086b90612a27565b600f55565b6109a083838360405180602001604052806000815250611439565b600a546001600160a01b03163314610b0f5760405162461bcd60e51b815260040161086b90612a27565b60005b81811015610b3657610b2484846119b6565b80610b2e81612ac3565b915050610b12565b50505050565b60ff82166000908152601460205260409020546001600160a01b0316610b9a5760405162461bcd60e51b815260206004820152601360248201527236b4b73a1d1031b430b73732b61032b93937b960691b604482015260640161086b565b600e54341015610be75760405162461bcd60e51b81526020600482015260186024820152776d696e743a20696e73756666696369656e742066756e647360401b604482015260640161086b565b60ff8216600090815260116020526040902054610c395760405162461bcd60e51b815260206004820152601060248201526f1b5a5b9d0e881b5a5b9d08195b99195960821b604482015260640161086b565b3360009081526012602052604090205460ff1615610c885760405162461bcd60e51b815260206004820152600c60248201526b1b5a5b9d0e881b5a5b9d195960a21b604482015260640161086b565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160408051601f19818403018152918152815160209283012060ff8616600090815260149093529120549091506001600160a01b0316610ce88284611a82565b6001600160a01b031614610d365760405162461bcd60e51b815260206004820152601560248201527436b4b73a1d1039b4b3b730ba3ab9329032b93937b960591b604482015260640161086b565b336000908152601260209081526040808320805460ff1916600190811790915560ff87168452601190925290912054610d6e91611aa6565b60ff84166000908152601160205260409020556109a083336119b6565b6000610d9660085490565b8210610df95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161086b565b60088281548110610e0c57610e0c612adc565b90600052602060002001549050919050565b600a546001600160a01b03163314610e485760405162461bcd60e51b815260040161086b90612a27565b600c610e548282612b40565b5050565b60ff82166000908152601460205260409020546001600160a01b031615610eb75760405162461bcd60e51b815260206004820152601360248201527236b4b73a1d1031b430b73732b61032b93937b960691b604482015260640161086b565b600e54610ec49082611ab2565b341015610f0e5760405162461bcd60e51b81526020600482015260186024820152776d696e743a20696e73756666696369656e742066756e647360401b604482015260640161086b565b600f54421015610f515760405162461bcd60e51b815260206004820152600e60248201526d36b4b73a1d103737ba1037b832b760911b604482015260640161086b565b60008111610f8d5760405162461bcd60e51b8152602060048201526009602482015268373ab69032b93937b960b91b604482015260640161086b565b60ff8216600090815260116020526040902054811115610fe25760405162461bcd60e51b815260206004820152601060248201526f1b5a5b9d0e881b5a5b9d08195b99195960821b604482015260640161086b565b60ff8216600090815260116020526040902054610fff9082611aa6565b60ff83166000908152601160205260408120919091555b818110156109a05761102883336119b6565b8061103281612ac3565b915050611016565b6000818152600260205260408120546001600160a01b03168061075e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161086b565b60006001600160a01b03821661111c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161086b565b506001600160a01b031660009081526003602052604090205490565b6000611143600b5490565b905090565b600a546001600160a01b031633146111725760405162461bcd60e51b815260040161086b90612a27565b61117c6000611abe565b565b600a546001600160a01b031633146111a85760405162461bcd60e51b815260040161086b90612a27565b60ff82166000908152601160205260409020546111c59082611aa6565b60ff90921660009081526011602052604090209190915550565b600a546001600160a01b031633146112095760405162461bcd60e51b815260040161086b90612a27565b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156109a0573d6000803e3d6000fd5b606060018054610773906129ed565b610e54338383611b10565b336112638261103a565b6001600160a01b0316146112ab5760405162461bcd60e51b815260206004820152600f60248201526e37b832b71d103737ba1037bbb732b960891b604482015260640161086b565b6000818152601360205260409020544210156112fa5760405162461bcd60e51b815260206004820152600e60248201526d6f70656e3a206e6f742074696d6560901b604482015260640161086b565b61130381611bde565b600d54604080516338a67fab60e11b815290516000926001600160a01b03169163714cff56916004808301926020929190829003018187875af115801561134e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113729190612c00565b61137d906001612c19565b600d546040516340c10f1960e01b8152336004820152602481018390529192506001600160a01b0316906340c10f1990604401600060405180830381600087803b1580156113ca57600080fd5b505af11580156113de573d6000803e3d6000fd5b5050600d5460408051338152602081018790526001600160a01b039092168282015260608201859052517faf02ad398f3ac91e00bd2a3267825f1e943b4470b46d72dba13eb12c355012be9350908190036080019150a15050565b6114433383611718565b61145f5760405162461bcd60e51b815260040161086b90612a5c565b610b3684848484611c85565b600a546001600160a01b031633146114955760405162461bcd60e51b815260040161086b90612a27565b60ff91909116600090815260146020526040902080546001600160a01b0319166001600160a01b03909216919091179055565b6000818152600260205260409020546060906001600160a01b03166115475760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161086b565b6000611551611cb8565b90506000815111611571576040518060200160405280600081525061159c565b8061157b84611cc7565b60405160200161158c929190612c2c565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115cd5760405162461bcd60e51b815260040161086b90612a27565b60ff82166000908152601160205260409020546111c59082611dc8565b600a546001600160a01b031633146116145760405162461bcd60e51b815260040161086b90612a27565b6001600160a01b0381166116795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086b565b61168281611abe565b50565b60006001600160e01b0319821663780e9d6360e01b148061075e575061075e82611dd4565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116df8261103a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117915760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161086b565b600061179c8361103a565b9050806001600160a01b0316846001600160a01b031614806117d75750836001600160a01b03166117cc846107f6565b6001600160a01b0316145b8061180757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166118228261103a565b6001600160a01b0316146118865760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161086b565b6001600160a01b0382166118e85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161086b565b6118f3838383611e24565b6118fe6000826116aa565b6001600160a01b0383166000908152600360205260408120805460019290611927908490612c5b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611955908490612c19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006119c1600b5490565b6119cc906001612c19565b90506119dc600b80546001019055565b6119e68282611edc565b600f54421015611a1457601054600f54611a009190612c19565b600082815260136020526040902055611a31565b601054611a219042612c19565b6000828152601360205260409020555b604080516001600160a01b038416815260ff851660208201529081018290527ff6c982e8c36f59d98675cc7663ec750e78a8ff82993d92dd23a2cd1e0b6cb59c9060600160405180910390a1505050565b6000806000611a91858561202a565b91509150611a9e81612098565b509392505050565b600061159c8284612c5b565b600061159c8284612c6e565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611b715760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161086b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000611be98261103a565b9050611bf781600084611e24565b611c026000836116aa565b6001600160a01b0381166000908152600360205260408120805460019290611c2b908490612c5b565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611c9084848461180f565b611c9c8484848461224e565b610b365760405162461bcd60e51b815260040161086b90612c8d565b6060600c8054610773906129ed565b606081600003611cee5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d185780611d0281612ac3565b9150611d119050600a83612cf5565b9150611cf2565b60008167ffffffffffffffff811115611d3357611d33612765565b6040519080825280601f01601f191660200182016040528015611d5d576020820181803683370190505b5090505b841561180757611d72600183612c5b565b9150611d7f600a86612d09565b611d8a906030612c19565b60f81b818381518110611d9f57611d9f612adc565b60200101906001600160f81b031916908160001a905350611dc1600a86612cf5565b9450611d61565b600061159c8284612c19565b60006001600160e01b031982166380ac58cd60e01b1480611e0557506001600160e01b03198216635b5e139f60e01b145b8061075e57506301ffc9a760e01b6001600160e01b031983161461075e565b6001600160a01b038316611e7f57611e7a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ea2565b816001600160a01b0316836001600160a01b031614611ea257611ea2838261234f565b6001600160a01b038216611eb9576109a0816123ec565b826001600160a01b0316826001600160a01b0316146109a0576109a0828261249b565b6001600160a01b038216611f325760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161086b565b6000818152600260205260409020546001600160a01b031615611f975760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161086b565b611fa360008383611e24565b6001600160a01b0382166000908152600360205260408120805460019290611fcc908490612c19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008082516041036120605760208301516040840151606085015160001a612054878285856124df565b94509450505050612091565b8251604003612089576020830151604084015161207e8683836125cc565b935093505050612091565b506000905060025b9250929050565b60008160048111156120ac576120ac612d1d565b036120b45750565b60018160048111156120c8576120c8612d1d565b036121155760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161086b565b600281600481111561212957612129612d1d565b036121765760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161086b565b600381600481111561218a5761218a612d1d565b036121e25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161086b565b60048160048111156121f6576121f6612d1d565b036116825760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161086b565b60006001600160a01b0384163b1561234457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612292903390899088908890600401612d33565b6020604051808303816000875af19250505080156122cd575060408051601f3d908101601f191682019092526122ca91810190612d70565b60015b61232a573d8080156122fb576040519150601f19603f3d011682016040523d82523d6000602084013e612300565b606091505b5080516000036123225760405162461bcd60e51b815260040161086b90612c8d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611807565b506001949350505050565b6000600161235c846110b1565b6123669190612c5b565b6000838152600760205260409020549091508082146123b9576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906123fe90600190612c5b565b6000838152600960205260408120546008805493945090928490811061242657612426612adc565b90600052602060002001549050806008838154811061244757612447612adc565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061247f5761247f612d8d565b6001900381819060005260206000200160009055905550505050565b60006124a6836110b1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561251657506000905060036125c3565b8460ff16601b1415801561252e57508460ff16601c14155b1561253f57506000905060046125c3565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612593573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166125bc576000600192509250506125c3565b9150600090505b94509492505050565b6000806001600160ff1b038316816125e960ff86901c601b612c19565b90506125f7878288856124df565b935093505050935093915050565b6001600160e01b03198116811461168257600080fd5b60006020828403121561262d57600080fd5b813561159c81612605565b60005b8381101561265357818101518382015260200161263b565b50506000910152565b60008151808452612674816020860160208601612638565b601f01601f19169290920160200192915050565b60208152600061159c602083018461265c565b6000602082840312156126ad57600080fd5b5035919050565b80356001600160a01b03811681146126cb57600080fd5b919050565b600080604083850312156126e357600080fd5b6126ec836126b4565b946020939093013593505050565b60008060006060848603121561270f57600080fd5b612718846126b4565b9250612726602085016126b4565b9150604084013590509250925092565b803560ff811681146126cb57600080fd5b60008060006060848603121561275c57600080fd5b61271884612736565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561279657612796612765565b604051601f8501601f19908116603f011681019082821181831017156127be576127be612765565b816040528093508581528686860111156127d757600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261280257600080fd5b61159c8383356020850161277b565b6000806040838503121561282457600080fd5b61282d83612736565b9150602083013567ffffffffffffffff81111561284957600080fd5b612855858286016127f1565b9150509250929050565b60006020828403121561287157600080fd5b813567ffffffffffffffff81111561288857600080fd5b8201601f8101841361289957600080fd5b6118078482356020840161277b565b6000602082840312156128ba57600080fd5b61159c82612736565b600080604083850312156128d657600080fd5b6126ec83612736565b6000602082840312156128f157600080fd5b61159c826126b4565b6000806040838503121561290d57600080fd5b612916836126b4565b91506020830135801515811461292b57600080fd5b809150509250929050565b6000806000806080858703121561294c57600080fd5b612955856126b4565b9350612963602086016126b4565b925060408501359150606085013567ffffffffffffffff81111561298657600080fd5b612992878288016127f1565b91505092959194509250565b600080604083850312156129b157600080fd5b6129ba83612736565b91506129c8602084016126b4565b90509250929050565b600080604083850312156129e457600080fd5b6129ba836126b4565b600181811c90821680612a0157607f821691505b602082108103612a2157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600060018201612ad557612ad5612aad565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f8211156109a057600081815260208120601f850160051c81016020861015612b195750805b601f850160051c820191505b81811015612b3857828155600101612b25565b505050505050565b815167ffffffffffffffff811115612b5a57612b5a612765565b612b6e81612b6884546129ed565b84612af2565b602080601f831160018114612ba35760008415612b8b5750858301515b600019600386901b1c1916600185901b178555612b38565b600085815260208120601f198616915b82811015612bd257888601518255948401946001909101908401612bb3565b5085821015612bf05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215612c1257600080fd5b5051919050565b8082018082111561075e5761075e612aad565b60008351612c3e818460208801612638565b835190830190612c52818360208801612638565b01949350505050565b8181038181111561075e5761075e612aad565b6000816000190483118215151615612c8857612c88612aad565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612d0457612d04612cdf565b500490565b600082612d1857612d18612cdf565b500690565b634e487b7160e01b600052602160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d669083018461265c565b9695505050505050565b600060208284031215612d8257600080fd5b815161159c81612605565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220d9ea48468718b77a4e949760f91516a39b2ddb2ef817a4055b5297cbebd9b23364736f6c63430008100033

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

000000000000000000000000fcc16c7c5b7eb6c92cb1bbc794ada4e119f06c790000000000000000000000000000000000000000000000000214e8348c4f000000000000000000000000000000000000000000000000000000000000636a7d00

-----Decoded View---------------
Arg [0] : _minter (address): 0xFCc16c7C5b7eB6c92CB1BBC794Ada4e119f06C79
Arg [1] : _price (uint256): 150000000000000000
Arg [2] : _startTime (uint256): 1667923200

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000fcc16c7c5b7eb6c92cb1bbc794ada4e119f06c79
Arg [1] : 0000000000000000000000000000000000000000000000000214e8348c4f0000
Arg [2] : 00000000000000000000000000000000000000000000000000000000636a7d00


Deployed Bytecode Sourcemap

72764:5007:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77547:221;;;;;;;;;;-1:-1:-1;77547:221:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;77547:221:0;;;;;;;;39981:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;73006:27::-;;;;;;;;;;-1:-1:-1;73006:27:0;;;;-1:-1:-1;;;;;73006:27:0;;;;;;-1:-1:-1;;;;;1534:32:1;;;1516:51;;1504:2;1489:18;73006:27:0;1348:225:1;41540:221:0;;;;;;;;;;-1:-1:-1;41540:221:0;;;;;:::i;:::-;;:::i;41063:411::-;;;;;;;;;;-1:-1:-1;41063:411:0;;;;;:::i;:::-;;:::i;:::-;;76785:86;;;;;;;;;;-1:-1:-1;76785:86:0;;;;;:::i;:::-;;:::i;55116:113::-;;;;;;;;;;-1:-1:-1;55204:10:0;:17;55116:113;;;2554:25:1;;;2542:2;2527:18;55116:113:0;2408:177:1;73463:42:0;;;;;;;;;;-1:-1:-1;73463:42:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;73463:42:0;;;42290:339;;;;;;;;;;-1:-1:-1;42290:339:0;;;;;:::i;:::-;;:::i;54784:256::-;;;;;;;;;;-1:-1:-1;54784:256:0;;;;;:::i;:::-;;:::i;76685:92::-;;;;;;;;;;-1:-1:-1;76685:92:0;;;;;:::i;:::-;;:::i;42700:185::-;;;;;;;;;;-1:-1:-1;42700:185:0;;;;;:::i;:::-;;:::i;75434:209::-;;;;;;;;;;-1:-1:-1;75434:209:0;;;;;:::i;:::-;;:::i;74714:712::-;;;;;;:::i;:::-;;:::i;55306:233::-;;;;;;;;;;-1:-1:-1;55306:233:0;;;;;:::i;:::-;;:::i;76284:110::-;;;;;;;;;;-1:-1:-1;76284:110:0;;;;;:::i;:::-;;:::i;73233:40::-;;;;;;;;;;-1:-1:-1;73233:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;74155:551;;;;;;:::i;:::-;;:::i;39675:239::-;;;;;;;;;;-1:-1:-1;39675:239:0;;;;;:::i;:::-;;:::i;39405:208::-;;;;;;;;;;-1:-1:-1;39405:208:0;;;;;:::i;:::-;;:::i;76181:95::-;;;;;;;;;;;;;:::i;2721:103::-;;;;;;;;;;;;;:::i;73069:24::-;;;;;;;;;;;;;;;;2070:87;;;;;;;;;;-1:-1:-1;2143:6:0;;-1:-1:-1;;;;;2143:6:0;2070:87;;76542:135;;;;;;;;;;-1:-1:-1;76542:135:0;;;;;:::i;:::-;;:::i;77001:113::-;;;;;;;;;;-1:-1:-1;77001:113:0;;;;;:::i;:::-;;:::i;40150:104::-;;;;;;;;;;;;;:::i;73042:20::-;;;;;;;;;;;;;;;;41833:155;;;;;;;;;;-1:-1:-1;41833:155:0;;;;;:::i;:::-;;:::i;73384:46::-;;;;;;;;;;-1:-1:-1;73384:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;75651:400;;;;;;;;;;-1:-1:-1;75651:400:0;;;;;:::i;:::-;;:::i;42956:328::-;;;;;;;;;;-1:-1:-1;42956:328:0;;;;;:::i;:::-;;:::i;76879:114::-;;;;;;;;;;-1:-1:-1;76879:114:0;;;;;:::i;:::-;;:::i;40325:334::-;;;;;;;;;;-1:-1:-1;40325:334:0;;;;;:::i;:::-;;:::i;73307:47::-;;;;;;;;;;-1:-1:-1;73307:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;76402:132;;;;;;;;;;-1:-1:-1;76402:132:0;;;;;:::i;:::-;;:::i;42059:164::-;;;;;;;;;;-1:-1:-1;42059:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;42180:25:0;;;42156:4;42180:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42059:164;73100:21;;;;;;;;;;;;;;;;2979:201;;;;;;;;;;-1:-1:-1;2979:201:0;;;;;:::i;:::-;;:::i;77547:221::-;77695:4;77724:36;77748:11;77724:23;:36::i;:::-;77717:43;77547:221;-1:-1:-1;;77547:221:0:o;39981:100::-;40035:13;40068:5;40061:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39981:100;:::o;41540:221::-;41616:7;44883:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44883:16:0;41636:73;;;;-1:-1:-1;;;41636:73:0;;7896:2:1;41636:73:0;;;7878:21:1;7935:2;7915:18;;;7908:30;7974:34;7954:18;;;7947:62;-1:-1:-1;;;8025:18:1;;;8018:42;8077:19;;41636:73:0;;;;;;;;;-1:-1:-1;41729:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41729:24:0;;41540:221::o;41063:411::-;41144:13;41160:23;41175:7;41160:14;:23::i;:::-;41144:39;;41208:5;-1:-1:-1;;;;;41202:11:0;:2;-1:-1:-1;;;;;41202:11:0;;41194:57;;;;-1:-1:-1;;;41194:57:0;;8309:2:1;41194:57:0;;;8291:21:1;8348:2;8328:18;;;8321:30;8387:34;8367:18;;;8360:62;-1:-1:-1;;;8438:18:1;;;8431:31;8479:19;;41194:57:0;8107:397:1;41194:57:0;804:10;-1:-1:-1;;;;;41286:21:0;;;;:62;;-1:-1:-1;41311:37:0;41328:5;804:10;42059:164;:::i;41311:37::-;41264:168;;;;-1:-1:-1;;;41264:168:0;;8711:2:1;41264:168:0;;;8693:21:1;8750:2;8730:18;;;8723:30;8789:34;8769:18;;;8762:62;8860:26;8840:18;;;8833:54;8904:19;;41264:168:0;8509:420:1;41264:168:0;41445:21;41454:2;41458:7;41445:8;:21::i;:::-;41133:341;41063:411;;:::o;76785:86::-;2143:6;;-1:-1:-1;;;;;2143:6:0;804:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;;;;;;:::i;:::-;76848:6:::1;:15:::0;76785:86::o;42290:339::-;42485:41;804:10;42518:7;42485:18;:41::i;:::-;42477:103;;;;-1:-1:-1;;;42477:103:0;;;;;;;:::i;:::-;42593:28;42603:4;42609:2;42613:7;42593:9;:28::i;54784:256::-;54881:7;54917:23;54934:5;54917:16;:23::i;:::-;54909:5;:31;54901:87;;;;-1:-1:-1;;;54901:87:0;;9915:2:1;54901:87:0;;;9897:21:1;9954:2;9934:18;;;9927:30;9993:34;9973:18;;;9966:62;-1:-1:-1;;;10044:18:1;;;10037:41;10095:19;;54901:87:0;9713:407:1;54901:87:0;-1:-1:-1;;;;;;55006:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;54784:256::o;76685:92::-;2143:6;;-1:-1:-1;;;;;2143:6:0;804:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;;;;;;:::i;:::-;76751:9:::1;:18:::0;76685:92::o;42700:185::-;42838:39;42855:4;42861:2;42865:7;42838:39;;;;;;;;;;;;:16;:39::i;75434:209::-;2143:6;;-1:-1:-1;;;;;2143:6:0;804:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;;;;;;:::i;:::-;75562:6:::1;75557:79;75578:3;75574:1;:7;75557:79;;;75603:21;75612:7;75621:2;75603:8;:21::i;:::-;75583:3:::0;::::1;::::0;::::1;:::i;:::-;;;;75557:79;;;;75434:209:::0;;;:::o;74714:712::-;74837:16;;;74865:1;74837:16;;;:7;:16;;;;;;-1:-1:-1;;;;;74837:16:0;74829:62;;;;-1:-1:-1;;;74829:62:0;;10599:2:1;74829:62:0;;;10581:21:1;10638:2;10618:18;;;10611:30;-1:-1:-1;;;10657:18:1;;;10650:49;10716:18;;74829:62:0;10397:343:1;74829:62:0;74925:5;;74912:9;:18;;74904:55;;;;-1:-1:-1;;;74904:55:0;;10947:2:1;74904:55:0;;;10929:21:1;10986:2;10966:18;;;10959:30;-1:-1:-1;;;11005:18:1;;;10998:54;11069:18;;74904:55:0;10745:348:1;74904:55:0;74978:16;;;74997:1;74978:16;;;:7;:16;;;;;;74970:49;;;;-1:-1:-1;;;74970:49:0;;11300:2:1;74970:49:0;;;11282:21:1;11339:2;11319:18;;;11312:30;-1:-1:-1;;;11358:18:1;;;11351:46;11414:18;;74970:49:0;11098:340:1;74970:49:0;75055:10;75039:27;;;;:15;:27;;;;;;;;75038:28;75030:53;;;;-1:-1:-1;;;75030:53:0;;11645:2:1;75030:53:0;;;11627:21:1;11684:2;11664:18;;;11657:30;-1:-1:-1;;;11703:18:1;;;11696:42;11755:18;;75030:53:0;11443:336:1;75030:53:0;75118:28;;-1:-1:-1;;75135:10:0;11933:2:1;11929:15;11925:53;75118:28:0;;;11913:66:1;75096:9:0;;11995:12:1;;75118:28:0;;;-1:-1:-1;;75118:28:0;;;;;;;;;75108:39;;75118:28;75108:39;;;;75211:16;;;;;;;:7;:16;;;;;;75108:39;;-1:-1:-1;;;;;;75211:16:0;75180:27;75108:39;75197:9;75180:13;:27::i;:::-;-1:-1:-1;;;;;75180:47:0;;75158:118;;;;-1:-1:-1;;;75158:118:0;;12220:2:1;75158:118:0;;;12202:21:1;12259:2;12239:18;;;12232:30;-1:-1:-1;;;12278:18:1;;;12271:51;12339:18;;75158:118:0;12018:345:1;75158:118:0;75305:10;75289:27;;;;:15;:27;;;;;;;;:34;;-1:-1:-1;;75289:34:0;75319:4;75289:34;;;;;;;75353:16;;;;:7;:16;;;;;;;:23;;:20;:23::i;:::-;75334:16;;;;;;;:7;:16;;;;;:42;75389:29;75342:7;75407:10;75389:8;:29::i;55306:233::-;55381:7;55417:30;55204:10;:17;;55116:113;55417:30;55409:5;:38;55401:95;;;;-1:-1:-1;;;55401:95:0;;12570:2:1;55401:95:0;;;12552:21:1;12609:2;12589:18;;;12582:30;12648:34;12628:18;;;12621:62;-1:-1:-1;;;12699:18:1;;;12692:42;12751:19;;55401:95:0;12368:408:1;55401:95:0;55514:10;55525:5;55514:17;;;;;;;;:::i;:::-;;;;;;;;;55507:24;;55306:233;;;:::o;76284:110::-;2143:6;;-1:-1:-1;;;;;2143:6:0;804:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;;;;;;:::i;:::-;76359:13:::1;:27;76375:11:::0;76359:13;:27:::1;:::i;:::-;;76284:110:::0;:::o;74155:551::-;74242:16;;;74270:1;74242:16;;;:7;:16;;;;;;-1:-1:-1;;;;;74242:16:0;:30;74234:62;;;;-1:-1:-1;;;74234:62:0;;10599:2:1;74234:62:0;;;10581:21:1;10638:2;10618:18;;;10611:30;-1:-1:-1;;;10657:18:1;;;10650:49;10716:18;;74234:62:0;10397:343:1;74234:62:0;74330:5;;:14;;74340:3;74330:9;:14::i;:::-;74317:9;:27;;74309:64;;;;-1:-1:-1;;;74309:64:0;;10947:2:1;74309:64:0;;;10929:21:1;10986:2;10966:18;;;10959:30;-1:-1:-1;;;11005:18:1;;;10998:54;11069:18;;74309:64:0;10745:348:1;74309:64:0;74411:9;;74392:15;:28;;74384:55;;;;-1:-1:-1;;;74384:55:0;;15319:2:1;74384:55:0;;;15301:21:1;15358:2;15338:18;;;15331:30;-1:-1:-1;;;15377:18:1;;;15370:44;15431:18;;74384:55:0;15117:338:1;74384:55:0;74464:1;74458:3;:7;74450:29;;;;-1:-1:-1;;;74450:29:0;;15662:2:1;74450:29:0;;;15644:21:1;15701:1;15681:18;;;15674:29;-1:-1:-1;;;15719:18:1;;;15712:39;15768:18;;74450:29:0;15460:332:1;74450:29:0;74498:16;;;;;;;:7;:16;;;;;;:23;-1:-1:-1;74498:23:0;74490:52;;;;-1:-1:-1;;;74490:52:0;;11300:2:1;74490:52:0;;;11282:21:1;11339:2;11319:18;;;11312:30;-1:-1:-1;;;11358:18:1;;;11351:46;11414:18;;74490:52:0;11098:340:1;74490:52:0;74574:16;;;;;;;:7;:16;;;;;;:25;;74595:3;74574:20;:25::i;:::-;74555:16;;;;;;;:7;:16;;;;;:44;;;;74612:87;74633:3;74629:1;:7;74612:87;;;74658:29;74667:7;74676:10;74658:8;:29::i;:::-;74638:3;;;;:::i;:::-;;;;74612:87;;39675:239;39747:7;39783:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39783:16:0;;39810:73;;;;-1:-1:-1;;;39810:73:0;;15999:2:1;39810:73:0;;;15981:21:1;16038:2;16018:18;;;16011:30;16077:34;16057:18;;;16050:62;-1:-1:-1;;;16128:18:1;;;16121:39;16177:19;;39810:73:0;15797:405:1;39405:208:0;39477:7;-1:-1:-1;;;;;39505:19:0;;39497:74;;;;-1:-1:-1;;;39497:74:0;;16409:2:1;39497:74:0;;;16391:21:1;16448:2;16428:18;;;16421:30;16487:34;16467:18;;;16460:62;-1:-1:-1;;;16538:18:1;;;16531:40;16588:19;;39497:74:0;16207:406:1;39497:74:0;-1:-1:-1;;;;;;39589:16:0;;;;;:9;:16;;;;;;;39405:208::o;76181:95::-;76222:7;76249:19;:9;71206:14;;71114:114;76249:19;76242:26;;76181:95;:::o;2721:103::-;2143:6;;-1:-1:-1;;;;;2143:6:0;804:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;;;;;;:::i;:::-;2786:30:::1;2813:1;2786:18;:30::i;:::-;2721:103::o:0;76542:135::-;2143:6;;-1:-1:-1;;;;;2143:6:0;804:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;;;;;;:::i;:::-;76641:16:::1;::::0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;:28:::1;::::0;76662:6;76641:20:::1;:28::i;:::-;76622:16;::::0;;::::1;;::::0;;;:7:::1;:16;::::0;;;;:47;;;;-1:-1:-1;76542:135:0:o;77001:113::-;2143:6;;-1:-1:-1;;;;;2143:6:0;804:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;;;;;;:::i;:::-;77078:28:::1;::::0;-1:-1:-1;;;;;77078:20:0;::::1;::::0;:28;::::1;;;::::0;77099:6;;77078:28:::1;::::0;;;77099:6;77078:20;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;40150:104:::0;40206:13;40239:7;40232:14;;;;;:::i;41833:155::-;41928:52;804:10;41961:8;41971;41928:18;:52::i;75651:400::-;75733:10;75713:16;75721:7;75713;:16::i;:::-;-1:-1:-1;;;;;75713:30:0;;75705:58;;;;-1:-1:-1;;;75705:58:0;;16820:2:1;75705:58:0;;;16802:21:1;16859:2;16839:18;;;16832:30;-1:-1:-1;;;16878:18:1;;;16871:45;16933:18;;75705:58:0;16618:339:1;75705:58:0;75801:20;;;;:11;:20;;;;;;75782:15;:39;;75774:66;;;;-1:-1:-1;;;75774:66:0;;17164:2:1;75774:66:0;;;17146:21:1;17203:2;17183:18;;;17176:30;-1:-1:-1;;;17222:18:1;;;17215:44;17276:18;;75774:66:0;16962:338:1;75774:66:0;75853:14;75859:7;75853:5;:14::i;:::-;75901:6;;:17;;;-1:-1:-1;;;75901:17:0;;;;75880:18;;-1:-1:-1;;;;;75901:6:0;;:15;;:17;;;;;;;;;;;;;;75880:18;75901:6;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:21;;75921:1;75901:21;:::i;:::-;75933:6;;:35;;-1:-1:-1;;;75933:35:0;;75945:10;75933:35;;;17798:51:1;17865:18;;;17858:34;;;75880:42:0;;-1:-1:-1;;;;;;75933:6:0;;:11;;17771:18:1;;75933:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;76023:6:0;;75986:57;;;75994:10;18172:34:1;;18237:2;18222:18;;18215:34;;;-1:-1:-1;;;;;76023:6:0;;;18265:18:1;;;18258:43;18332:2;18317:18;;18310:34;;;75986:57:0;;;-1:-1:-1;75986:57:0;;;;18121:3:1;75986:57:0;;-1:-1:-1;75986:57:0;75694:357;75651:400;:::o;42956:328::-;43131:41;804:10;43164:7;43131:18;:41::i;:::-;43123:103;;;;-1:-1:-1;;;43123:103:0;;;;;;;:::i;:::-;43237:39;43251:4;43257:2;43261:7;43270:5;43237:13;:39::i;76879:114::-;2143:6;;-1:-1:-1;;;;;2143:6:0;804:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;;;;;;:::i;:::-;76959:16:::1;::::0;;;::::1;;::::0;;;:7:::1;:16;::::0;;;;:26;;-1:-1:-1;;;;;;76959:26:0::1;-1:-1:-1::0;;;;;76959:26:0;;::::1;::::0;;;::::1;::::0;;76879:114::o;40325:334::-;44859:4;44883:16;;;:7;:16;;;;;;40398:13;;-1:-1:-1;;;;;44883:16:0;40424:76;;;;-1:-1:-1;;;40424:76:0;;18557:2:1;40424:76:0;;;18539:21:1;18596:2;18576:18;;;18569:30;18635:34;18615:18;;;18608:62;-1:-1:-1;;;18686:18:1;;;18679:45;18741:19;;40424:76:0;18355:411:1;40424:76:0;40513:21;40537:10;:8;:10::i;:::-;40513:34;;40589:1;40571:7;40565:21;:25;:86;;;;;;;;;;;;;;;;;40617:7;40626:18;:7;:16;:18::i;:::-;40600:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40565:86;40558:93;40325:334;-1:-1:-1;;;40325:334:0:o;76402:132::-;2143:6;;-1:-1:-1;;;;;2143:6:0;804:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;;;;;;:::i;:::-;76498:16:::1;::::0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;:28:::1;::::0;76519:6;76498:20:::1;:28::i;2979:201::-:0;2143:6;;-1:-1:-1;;;;;2143:6:0;804:10;2290:23;2282:68;;;;-1:-1:-1;;;2282:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3068:22:0;::::1;3060:73;;;::::0;-1:-1:-1;;;3060:73:0;;19474:2:1;3060:73:0::1;::::0;::::1;19456:21:1::0;19513:2;19493:18;;;19486:30;19552:34;19532:18;;;19525:62;-1:-1:-1;;;19603:18:1;;;19596:36;19649:19;;3060:73:0::1;19272:402:1::0;3060:73:0::1;3144:28;3163:8;3144:18;:28::i;:::-;2979:201:::0;:::o;54476:224::-;54578:4;-1:-1:-1;;;;;;54602:50:0;;-1:-1:-1;;;54602:50:0;;:90;;;54656:36;54680:11;54656:23;:36::i;48940:174::-;49015:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;49015:29:0;-1:-1:-1;;;;;49015:29:0;;;;;;;;:24;;49069:23;49015:24;49069:14;:23::i;:::-;-1:-1:-1;;;;;49060:46:0;;;;;;;;;;;48940:174;;:::o;45088:348::-;45181:4;44883:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44883:16:0;45198:73;;;;-1:-1:-1;;;45198:73:0;;19881:2:1;45198:73:0;;;19863:21:1;19920:2;19900:18;;;19893:30;19959:34;19939:18;;;19932:62;-1:-1:-1;;;20010:18:1;;;20003:42;20062:19;;45198:73:0;19679:408:1;45198:73:0;45282:13;45298:23;45313:7;45298:14;:23::i;:::-;45282:39;;45351:5;-1:-1:-1;;;;;45340:16:0;:7;-1:-1:-1;;;;;45340:16:0;;:51;;;;45384:7;-1:-1:-1;;;;;45360:31:0;:20;45372:7;45360:11;:20::i;:::-;-1:-1:-1;;;;;45360:31:0;;45340:51;:87;;;-1:-1:-1;;;;;;42180:25:0;;;42156:4;42180:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;45395:32;45332:96;45088:348;-1:-1:-1;;;;45088:348:0:o;48197:625::-;48356:4;-1:-1:-1;;;;;48329:31:0;:23;48344:7;48329:14;:23::i;:::-;-1:-1:-1;;;;;48329:31:0;;48321:81;;;;-1:-1:-1;;;48321:81:0;;20294:2:1;48321:81:0;;;20276:21:1;20333:2;20313:18;;;20306:30;20372:34;20352:18;;;20345:62;-1:-1:-1;;;20423:18:1;;;20416:35;20468:19;;48321:81:0;20092:401:1;48321:81:0;-1:-1:-1;;;;;48421:16:0;;48413:65;;;;-1:-1:-1;;;48413:65:0;;20700:2:1;48413:65:0;;;20682:21:1;20739:2;20719:18;;;20712:30;20778:34;20758:18;;;20751:62;-1:-1:-1;;;20829:18:1;;;20822:34;20873:19;;48413:65:0;20498:400:1;48413:65:0;48491:39;48512:4;48518:2;48522:7;48491:20;:39::i;:::-;48595:29;48612:1;48616:7;48595:8;:29::i;:::-;-1:-1:-1;;;;;48637:15:0;;;;;;:9;:15;;;;;:20;;48656:1;;48637:15;:20;;48656:1;;48637:20;:::i;:::-;;;;-1:-1:-1;;;;;;;48668:13:0;;;;;;:9;:13;;;;;:18;;48685:1;;48668:13;:18;;48685:1;;48668:18;:::i;:::-;;;;-1:-1:-1;;48697:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;48697:21:0;-1:-1:-1;;;;;48697:21:0;;;;;;;;;48736:27;;48697:16;;48736:27;;;;;;;41133:341;41063:411;;:::o;77122:417::-;77187:15;77205:19;:9;71206:14;;71114:114;77205:19;:23;;77227:1;77205:23;:::i;:::-;77187:41;;77239:21;:9;71325:19;;71343:1;71325:19;;;71236:127;77239:21;77273:18;77279:2;77283:7;77273:5;:18::i;:::-;77326:9;;77308:15;:27;77304:181;;;77387:6;;77375:9;;:18;;;;:::i;:::-;77352:20;;;;:11;:20;;;;;:41;77304:181;;;77467:6;;77449:24;;:15;:24;:::i;:::-;77426:20;;;;:11;:20;;;;;:47;77304:181;77502:29;;;-1:-1:-1;;;;;21252:32:1;;21234:51;;21333:4;21321:17;;21316:2;21301:18;;21294:45;21355:18;;;21348:34;;;77502:29:0;;21222:2:1;21207:18;77502:29:0;;;;;;;77176:363;77122:417;;:::o;65111:231::-;65189:7;65210:17;65229:18;65251:27;65262:4;65268:9;65251:10;:27::i;:::-;65209:69;;;;65289:18;65301:5;65289:11;:18::i;:::-;-1:-1:-1;65325:9:0;65111:231;-1:-1:-1;;;65111:231:0:o;6795:98::-;6853:7;6880:5;6884:1;6880;:5;:::i;7152:98::-;7210:7;7237:5;7241:1;7237;:5;:::i;3340:191::-;3433:6;;;-1:-1:-1;;;;;3450:17:0;;;-1:-1:-1;;;;;;3450:17:0;;;;;;;3483:40;;3433:6;;;3450:17;3433:6;;3483:40;;3414:16;;3483:40;3403:128;3340:191;:::o;49256:315::-;49411:8;-1:-1:-1;;;;;49402:17:0;:5;-1:-1:-1;;;;;49402:17:0;;49394:55;;;;-1:-1:-1;;;49394:55:0;;21768:2:1;49394:55:0;;;21750:21:1;21807:2;21787:18;;;21780:30;21846:27;21826:18;;;21819:55;21891:18;;49394:55:0;21566:349:1;49394:55:0;-1:-1:-1;;;;;49460:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;49460:46:0;;;;;;;;;;49522:41;;540::1;;;49522::0;;513:18:1;49522:41:0;;;;;;;49256:315;;;:::o;47440:420::-;47500:13;47516:23;47531:7;47516:14;:23::i;:::-;47500:39;;47552:48;47573:5;47588:1;47592:7;47552:20;:48::i;:::-;47641:29;47658:1;47662:7;47641:8;:29::i;:::-;-1:-1:-1;;;;;47683:16:0;;;;;;:9;:16;;;;;:21;;47703:1;;47683:16;:21;;47703:1;;47683:21;:::i;:::-;;;;-1:-1:-1;;47722:16:0;;;;:7;:16;;;;;;47715:23;;-1:-1:-1;;;;;;47715:23:0;;;47756:36;47730:7;;47722:16;-1:-1:-1;;;;;47756:36:0;;;;;47722:16;;47756:36;76359:27:::1;76284:110:::0;:::o;44166:315::-;44323:28;44333:4;44339:2;44343:7;44323:9;:28::i;:::-;44370:48;44393:4;44399:2;44403:7;44412:5;44370:22;:48::i;:::-;44362:111;;;;-1:-1:-1;;;44362:111:0;;;;;;;:::i;76059:114::-;76119:13;76152;76145:20;;;;;:::i;34302:723::-;34358:13;34579:5;34588:1;34579:10;34575:53;;-1:-1:-1;;34606:10:0;;;;;;;;;;;;-1:-1:-1;;;34606:10:0;;;;;34302:723::o;34575:53::-;34653:5;34638:12;34694:78;34701:9;;34694:78;;34727:8;;;;:::i;:::-;;-1:-1:-1;34750:10:0;;-1:-1:-1;34758:2:0;34750:10;;:::i;:::-;;;34694:78;;;34782:19;34814:6;34804:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34804:17:0;;34782:39;;34832:154;34839:10;;34832:154;;34866:11;34876:1;34866:11;;:::i;:::-;;-1:-1:-1;34935:10:0;34943:2;34935:5;:10;:::i;:::-;34922:24;;:2;:24;:::i;:::-;34909:39;;34892:6;34899;34892:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;34892:56:0;;;;;;;;-1:-1:-1;34963:11:0;34972:2;34963:11;;:::i;:::-;;;34832:154;;6414:98;6472:7;6499:5;6503:1;6499;:5;:::i;39036:305::-;39138:4;-1:-1:-1;;;;;;39175:40:0;;-1:-1:-1;;;39175:40:0;;:105;;-1:-1:-1;;;;;;;39232:48:0;;-1:-1:-1;;;39232:48:0;39175:105;:158;;;-1:-1:-1;;;;;;;;;;37119:40:0;;;39297:36;37010:157;56152:589;-1:-1:-1;;;;;56358:18:0;;56354:187;;56393:40;56425:7;57568:10;:17;;57541:24;;;;:15;:24;;;;;:44;;;57596:24;;;;;;;;;;;;57464:164;56393:40;56354:187;;;56463:2;-1:-1:-1;;;;;56455:10:0;:4;-1:-1:-1;;;;;56455:10:0;;56451:90;;56482:47;56515:4;56521:7;56482:32;:47::i;:::-;-1:-1:-1;;;;;56555:16:0;;56551:183;;56588:45;56625:7;56588:36;:45::i;56551:183::-;56661:4;-1:-1:-1;;;;;56655:10:0;:2;-1:-1:-1;;;;;56655:10:0;;56651:83;;56682:40;56710:2;56714:7;56682:27;:40::i;46772:439::-;-1:-1:-1;;;;;46852:16:0;;46844:61;;;;-1:-1:-1;;;46844:61:0;;22915:2:1;46844:61:0;;;22897:21:1;;;22934:18;;;22927:30;22993:34;22973:18;;;22966:62;23045:18;;46844:61:0;22713:356:1;46844:61:0;44859:4;44883:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44883:16:0;:30;46916:58;;;;-1:-1:-1;;;46916:58:0;;23276:2:1;46916:58:0;;;23258:21:1;23315:2;23295:18;;;23288:30;23354;23334:18;;;23327:58;23402:18;;46916:58:0;23074:352:1;46916:58:0;46987:45;47016:1;47020:2;47024:7;46987:20;:45::i;:::-;-1:-1:-1;;;;;47045:13:0;;;;;;:9;:13;;;;;:18;;47062:1;;47045:13;:18;;47062:1;;47045:18;:::i;:::-;;;;-1:-1:-1;;47074:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;47074:21:0;-1:-1:-1;;;;;47074:21:0;;;;;;;;47113:33;;47074:16;;;47113:33;;47074:16;;47113:33;76359:27:::1;76284:110:::0;:::o;63001:1308::-;63082:7;63091:12;63316:9;:16;63336:2;63316:22;63312:990;;63612:4;63597:20;;63591:27;63662:4;63647:20;;63641:27;63720:4;63705:20;;63699:27;63355:9;63691:36;63763:25;63774:4;63691:36;63591:27;63641;63763:10;:25::i;:::-;63756:32;;;;;;;;;63312:990;63810:9;:16;63830:2;63810:22;63806:496;;64085:4;64070:20;;64064:27;64136:4;64121:20;;64115:27;64178:23;64189:4;64064:27;64115;64178:10;:23::i;:::-;64171:30;;;;;;;;63806:496;-1:-1:-1;64250:1:0;;-1:-1:-1;64254:35:0;63806:496;63001:1308;;;;;:::o;61272:643::-;61350:20;61341:5;:29;;;;;;;;:::i;:::-;;61337:571;;61272:643;:::o;61337:571::-;61448:29;61439:5;:38;;;;;;;;:::i;:::-;;61435:473;;61494:34;;-1:-1:-1;;;61494:34:0;;23765:2:1;61494:34:0;;;23747:21:1;23804:2;23784:18;;;23777:30;23843:26;23823:18;;;23816:54;23887:18;;61494:34:0;23563:348:1;61435:473:0;61559:35;61550:5;:44;;;;;;;;:::i;:::-;;61546:362;;61611:41;;-1:-1:-1;;;61611:41:0;;24118:2:1;61611:41:0;;;24100:21:1;24157:2;24137:18;;;24130:30;24196:33;24176:18;;;24169:61;24247:18;;61611:41:0;23916:355:1;61546:362:0;61683:30;61674:5;:39;;;;;;;;:::i;:::-;;61670:238;;61730:44;;-1:-1:-1;;;61730:44:0;;24478:2:1;61730:44:0;;;24460:21:1;24517:2;24497:18;;;24490:30;24556:34;24536:18;;;24529:62;-1:-1:-1;;;24607:18:1;;;24600:32;24649:19;;61730:44:0;24276:398:1;61670:238:0;61805:30;61796:5;:39;;;;;;;;:::i;:::-;;61792:116;;61852:44;;-1:-1:-1;;;61852:44:0;;24881:2:1;61852:44:0;;;24863:21:1;24920:2;24900:18;;;24893:30;24959:34;24939:18;;;24932:62;-1:-1:-1;;;25010:18:1;;;25003:32;25052:19;;61852:44:0;24679:398:1;50136:799:0;50291:4;-1:-1:-1;;;;;50312:13:0;;15014:19;:23;50308:620;;50348:72;;-1:-1:-1;;;50348:72:0;;-1:-1:-1;;;;;50348:36:0;;;;;:72;;804:10;;50399:4;;50405:7;;50414:5;;50348:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50348:72:0;;;;;;;;-1:-1:-1;;50348:72:0;;;;;;;;;;;;:::i;:::-;;;50344:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50590:6;:13;50607:1;50590:18;50586:272;;50633:60;;-1:-1:-1;;;50633:60:0;;;;;;;:::i;50586:272::-;50808:6;50802:13;50793:6;50789:2;50785:15;50778:38;50344:529;-1:-1:-1;;;;;;50471:51:0;-1:-1:-1;;;50471:51:0;;-1:-1:-1;50464:58:0;;50308:620;-1:-1:-1;50912:4:0;50136:799;;;;;;:::o;58255:988::-;58521:22;58571:1;58546:22;58563:4;58546:16;:22::i;:::-;:26;;;;:::i;:::-;58583:18;58604:26;;;:17;:26;;;;;;58521:51;;-1:-1:-1;58737:28:0;;;58733:328;;-1:-1:-1;;;;;58804:18:0;;58782:19;58804:18;;;:12;:18;;;;;;;;:34;;;;;;;;;58855:30;;;;;;:44;;;58972:30;;:17;:30;;;;;:43;;;58733:328;-1:-1:-1;59157:26:0;;;;:17;:26;;;;;;;;59150:33;;;-1:-1:-1;;;;;59201:18:0;;;;;:12;:18;;;;;:34;;;;;;;59194:41;58255:988::o;59538:1079::-;59816:10;:17;59791:22;;59816:21;;59836:1;;59816:21;:::i;:::-;59848:18;59869:24;;;:15;:24;;;;;;60242:10;:26;;59791:46;;-1:-1:-1;59869:24:0;;59791:46;;60242:26;;;;;;:::i;:::-;;;;;;;;;60220:48;;60306:11;60281:10;60292;60281:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;60386:28;;;:15;:28;;;;;;;:41;;;60558:24;;;;;60551:31;60593:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;59609:1008;;;59538:1079;:::o;57042:221::-;57127:14;57144:20;57161:2;57144:16;:20::i;:::-;-1:-1:-1;;;;;57175:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;57220:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;57042:221:0:o;66563:1632::-;66694:7;;67628:66;67615:79;;67611:163;;;-1:-1:-1;67727:1:0;;-1:-1:-1;67731:30:0;67711:51;;67611:163;67788:1;:7;;67793:2;67788:7;;:18;;;;;67799:1;:7;;67804:2;67799:7;;67788:18;67784:102;;;-1:-1:-1;67839:1:0;;-1:-1:-1;67843:30:0;67823:51;;67784:102;68000:24;;;67983:14;68000:24;;;;;;;;;26189:25:1;;;26262:4;26250:17;;26230:18;;;26223:45;;;;26284:18;;;26277:34;;;26327:18;;;26320:34;;;68000:24:0;;26161:19:1;;68000:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;68000:24:0;;-1:-1:-1;;68000:24:0;;;-1:-1:-1;;;;;;;68039:20:0;;68035:103;;68092:1;68096:29;68076:50;;;;;;;68035:103;68158:6;-1:-1:-1;68166:20:0;;-1:-1:-1;66563:1632:0;;;;;;;;:::o;65605:344::-;65719:7;;-1:-1:-1;;;;;65765:80:0;;65719:7;65872:25;65888:3;65873:18;;;65895:2;65872:25;:::i;:::-;65856:42;;65916:25;65927:4;65933:1;65936;65939;65916:10;:25::i;:::-;65909:32;;;;;;65605:344;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1578:180::-;1637:6;1690:2;1678:9;1669:7;1665:23;1661:32;1658:52;;;1706:1;1703;1696:12;1658:52;-1:-1:-1;1729:23:1;;1578:180;-1:-1:-1;1578:180:1:o;1971:173::-;2039:20;;-1:-1:-1;;;;;2088:31:1;;2078:42;;2068:70;;2134:1;2131;2124:12;2068:70;1971:173;;;:::o;2149:254::-;2217:6;2225;2278:2;2266:9;2257:7;2253:23;2249:32;2246:52;;;2294:1;2291;2284:12;2246:52;2317:29;2336:9;2317:29;:::i;:::-;2307:39;2393:2;2378:18;;;;2365:32;;-1:-1:-1;;;2149:254:1:o;2590:328::-;2667:6;2675;2683;2736:2;2724:9;2715:7;2711:23;2707:32;2704:52;;;2752:1;2749;2742:12;2704:52;2775:29;2794:9;2775:29;:::i;:::-;2765:39;;2823:38;2857:2;2846:9;2842:18;2823:38;:::i;:::-;2813:48;;2908:2;2897:9;2893:18;2880:32;2870:42;;2590:328;;;;;:::o;2923:156::-;2989:20;;3049:4;3038:16;;3028:27;;3018:55;;3069:1;3066;3059:12;3084:324;3159:6;3167;3175;3228:2;3216:9;3207:7;3203:23;3199:32;3196:52;;;3244:1;3241;3234:12;3196:52;3267:27;3284:9;3267:27;:::i;3413:127::-;3474:10;3469:3;3465:20;3462:1;3455:31;3505:4;3502:1;3495:15;3529:4;3526:1;3519:15;3545:631;3609:5;3639:18;3680:2;3672:6;3669:14;3666:40;;;3686:18;;:::i;:::-;3761:2;3755:9;3729:2;3815:15;;-1:-1:-1;;3811:24:1;;;3837:2;3807:33;3803:42;3791:55;;;3861:18;;;3881:22;;;3858:46;3855:72;;;3907:18;;:::i;:::-;3947:10;3943:2;3936:22;3976:6;3967:15;;4006:6;3998;3991:22;4046:3;4037:6;4032:3;4028:16;4025:25;4022:45;;;4063:1;4060;4053:12;4022:45;4113:6;4108:3;4101:4;4093:6;4089:17;4076:44;4168:1;4161:4;4152:6;4144;4140:19;4136:30;4129:41;;;;3545:631;;;;;:::o;4181:220::-;4223:5;4276:3;4269:4;4261:6;4257:17;4253:27;4243:55;;4294:1;4291;4284:12;4243:55;4316:79;4391:3;4382:6;4369:20;4362:4;4354:6;4350:17;4316:79;:::i;4406:390::-;4481:6;4489;4542:2;4530:9;4521:7;4517:23;4513:32;4510:52;;;4558:1;4555;4548:12;4510:52;4581:27;4598:9;4581:27;:::i;:::-;4571:37;;4659:2;4648:9;4644:18;4631:32;4686:18;4678:6;4675:30;4672:50;;;4718:1;4715;4708:12;4672:50;4741:49;4782:7;4773:6;4762:9;4758:22;4741:49;:::i;:::-;4731:59;;;4406:390;;;;;:::o;4801:450::-;4870:6;4923:2;4911:9;4902:7;4898:23;4894:32;4891:52;;;4939:1;4936;4929:12;4891:52;4979:9;4966:23;5012:18;5004:6;5001:30;4998:50;;;5044:1;5041;5034:12;4998:50;5067:22;;5120:4;5112:13;;5108:27;-1:-1:-1;5098:55:1;;5149:1;5146;5139:12;5098:55;5172:73;5237:7;5232:2;5219:16;5214:2;5210;5206:11;5172:73;:::i;5256:182::-;5313:6;5366:2;5354:9;5345:7;5341:23;5337:32;5334:52;;;5382:1;5379;5372:12;5334:52;5405:27;5422:9;5405:27;:::i;5443:250::-;5509:6;5517;5570:2;5558:9;5549:7;5545:23;5541:32;5538:52;;;5586:1;5583;5576:12;5538:52;5609:27;5626:9;5609:27;:::i;5698:186::-;5757:6;5810:2;5798:9;5789:7;5785:23;5781:32;5778:52;;;5826:1;5823;5816:12;5778:52;5849:29;5868:9;5849:29;:::i;5889:347::-;5954:6;5962;6015:2;6003:9;5994:7;5990:23;5986:32;5983:52;;;6031:1;6028;6021:12;5983:52;6054:29;6073:9;6054:29;:::i;:::-;6044:39;;6133:2;6122:9;6118:18;6105:32;6180:5;6173:13;6166:21;6159:5;6156:32;6146:60;;6202:1;6199;6192:12;6146:60;6225:5;6215:15;;;5889:347;;;;;:::o;6241:537::-;6336:6;6344;6352;6360;6413:3;6401:9;6392:7;6388:23;6384:33;6381:53;;;6430:1;6427;6420:12;6381:53;6453:29;6472:9;6453:29;:::i;:::-;6443:39;;6501:38;6535:2;6524:9;6520:18;6501:38;:::i;:::-;6491:48;;6586:2;6575:9;6571:18;6558:32;6548:42;;6641:2;6630:9;6626:18;6613:32;6668:18;6660:6;6657:30;6654:50;;;6700:1;6697;6690:12;6654:50;6723:49;6764:7;6755:6;6744:9;6740:22;6723:49;:::i;:::-;6713:59;;;6241:537;;;;;;;:::o;6783:256::-;6849:6;6857;6910:2;6898:9;6889:7;6885:23;6881:32;6878:52;;;6926:1;6923;6916:12;6878:52;6949:27;6966:9;6949:27;:::i;:::-;6939:37;;6995:38;7029:2;7018:9;7014:18;6995:38;:::i;:::-;6985:48;;6783:256;;;;;:::o;7044:260::-;7112:6;7120;7173:2;7161:9;7152:7;7148:23;7144:32;7141:52;;;7189:1;7186;7179:12;7141:52;7212:29;7231:9;7212:29;:::i;7309:380::-;7388:1;7384:12;;;;7431;;;7452:61;;7506:4;7498:6;7494:17;7484:27;;7452:61;7559:2;7551:6;7548:14;7528:18;7525:38;7522:161;;7605:10;7600:3;7596:20;7593:1;7586:31;7640:4;7637:1;7630:15;7668:4;7665:1;7658:15;7522:161;;7309:380;;;:::o;8934:356::-;9136:2;9118:21;;;9155:18;;;9148:30;9214:34;9209:2;9194:18;;9187:62;9281:2;9266:18;;8934:356::o;9295:413::-;9497:2;9479:21;;;9536:2;9516:18;;;9509:30;9575:34;9570:2;9555:18;;9548:62;-1:-1:-1;;;9641:2:1;9626:18;;9619:47;9698:3;9683:19;;9295:413::o;10125:127::-;10186:10;10181:3;10177:20;10174:1;10167:31;10217:4;10214:1;10207:15;10241:4;10238:1;10231:15;10257:135;10296:3;10317:17;;;10314:43;;10337:18;;:::i;:::-;-1:-1:-1;10384:1:1;10373:13;;10257:135::o;12781:127::-;12842:10;12837:3;12833:20;12830:1;12823:31;12873:4;12870:1;12863:15;12897:4;12894:1;12887:15;13039:545;13141:2;13136:3;13133:11;13130:448;;;13177:1;13202:5;13198:2;13191:17;13247:4;13243:2;13233:19;13317:2;13305:10;13301:19;13298:1;13294:27;13288:4;13284:38;13353:4;13341:10;13338:20;13335:47;;;-1:-1:-1;13376:4:1;13335:47;13431:2;13426:3;13422:12;13419:1;13415:20;13409:4;13405:31;13395:41;;13486:82;13504:2;13497:5;13494:13;13486:82;;;13549:17;;;13530:1;13519:13;13486:82;;;13490:3;;;13039:545;;;:::o;13760:1352::-;13886:3;13880:10;13913:18;13905:6;13902:30;13899:56;;;13935:18;;:::i;:::-;13964:97;14054:6;14014:38;14046:4;14040:11;14014:38;:::i;:::-;14008:4;13964:97;:::i;:::-;14116:4;;14180:2;14169:14;;14197:1;14192:663;;;;14899:1;14916:6;14913:89;;;-1:-1:-1;14968:19:1;;;14962:26;14913:89;-1:-1:-1;;13717:1:1;13713:11;;;13709:24;13705:29;13695:40;13741:1;13737:11;;;13692:57;15015:81;;14162:944;;14192:663;12986:1;12979:14;;;13023:4;13010:18;;-1:-1:-1;;14228:20:1;;;14346:236;14360:7;14357:1;14354:14;14346:236;;;14449:19;;;14443:26;14428:42;;14541:27;;;;14509:1;14497:14;;;;14376:19;;14346:236;;;14350:3;14610:6;14601:7;14598:19;14595:201;;;14671:19;;;14665:26;-1:-1:-1;;14754:1:1;14750:14;;;14766:3;14746:24;14742:37;14738:42;14723:58;14708:74;;14595:201;-1:-1:-1;;;;;14842:1:1;14826:14;;;14822:22;14809:36;;-1:-1:-1;13760:1352:1:o;17305:184::-;17375:6;17428:2;17416:9;17407:7;17403:23;17399:32;17396:52;;;17444:1;17441;17434:12;17396:52;-1:-1:-1;17467:16:1;;17305:184;-1:-1:-1;17305:184:1:o;17494:125::-;17559:9;;;17580:10;;;17577:36;;;17593:18;;:::i;18771:496::-;18950:3;18988:6;18982:13;19004:66;19063:6;19058:3;19051:4;19043:6;19039:17;19004:66;:::i;:::-;19133:13;;19092:16;;;;19155:70;19133:13;19092:16;19202:4;19190:17;;19155:70;:::i;:::-;19241:20;;18771:496;-1:-1:-1;;;;18771:496:1:o;20903:128::-;20970:9;;;20991:11;;;20988:37;;;21005:18;;:::i;21393:168::-;21433:7;21499:1;21495;21491:6;21487:14;21484:1;21481:21;21476:1;21469:9;21462:17;21458:45;21455:71;;;21506:18;;:::i;:::-;-1:-1:-1;21546:9:1;;21393:168::o;21920:414::-;22122:2;22104:21;;;22161:2;22141:18;;;22134:30;22200:34;22195:2;22180:18;;22173:62;-1:-1:-1;;;22266:2:1;22251:18;;22244:48;22324:3;22309:19;;21920:414::o;22339:127::-;22400:10;22395:3;22391:20;22388:1;22381:31;22431:4;22428:1;22421:15;22455:4;22452:1;22445:15;22471:120;22511:1;22537;22527:35;;22542:18;;:::i;:::-;-1:-1:-1;22576:9:1;;22471:120::o;22596:112::-;22628:1;22654;22644:35;;22659:18;;:::i;:::-;-1:-1:-1;22693:9:1;;22596:112::o;23431:127::-;23492:10;23487:3;23483:20;23480:1;23473:31;23523:4;23520:1;23513:15;23547:4;23544:1;23537:15;25082:489;-1:-1:-1;;;;;25351:15:1;;;25333:34;;25403:15;;25398:2;25383:18;;25376:43;25450:2;25435:18;;25428:34;;;25498:3;25493:2;25478:18;;25471:31;;;25276:4;;25519:46;;25545:19;;25537:6;25519:46;:::i;:::-;25511:54;25082:489;-1:-1:-1;;;;;;25082:489:1:o;25576:249::-;25645:6;25698:2;25686:9;25677:7;25673:23;25669:32;25666:52;;;25714:1;25711;25704:12;25666:52;25746:9;25740:16;25765:30;25789:5;25765:30;:::i;25830:127::-;25891:10;25886:3;25882:20;25879:1;25872:31;25922:4;25919:1;25912:15;25946:4;25943:1;25936:15

Swarm Source

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