ETH Price: $3,066.60 (+2.52%)
Gas: 4 Gwei

Token

Deep Blue Sea Club (DBSC)
 

Overview

Max Total Supply

602 DBSC

Holders

131

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 DBSC
0xfe8d8575de8a99f9a36a4428d9e01e42dbdc39ee
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:
DeepBlueSeaClub

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-13
*/

// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;

/**
  * Deep Blue Sea Club ERC721 Implementation
 */

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

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

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

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

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

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

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor() internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 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"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value)
        private
        view
        returns (bool)
    {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index)
        private
        view
        returns (bytes32)
    {
        require(
            set._values.length > index,
            "EnumerableSet: index out of bounds"
        );
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index)
        internal
        view
        returns (bytes32)
    {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index)
        internal
        view
        returns (address)
    {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index)
        internal
        view
        returns (uint256)
    {
        return uint256(_at(set._inner, index));
    }
}

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;
        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(
        Map storage map,
        bytes32 key,
        bytes32 value
    ) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) {
            // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({_key: key, _value: value}));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) {
            // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key)
        private
        view
        returns (bool)
    {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

    /**
     * @dev Returns the key-value pair stored at position `index` in the map. O(1).
     *
     * Note that there are no guarantees on the ordering of entries inside the
     * array, and it may change when more entries are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Map storage map, uint256 index)
        private
        view
        returns (bytes32, bytes32)
    {
        require(
            map._entries.length > index,
            "EnumerableMap: index out of bounds"
        );

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key)
        private
        view
        returns (bool, bytes32)
    {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(
        Map storage map,
        bytes32 key,
        string memory errorMessage
    ) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(
        UintToAddressMap storage map,
        uint256 key,
        address value
    ) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key)
        internal
        returns (bool)
    {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (bool)
    {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map)
        internal
        view
        returns (uint256)
    {
        return _length(map._inner);
    }

    /**
     * @dev Returns the element stored at position `index` in the set. O(1).
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintToAddressMap storage map, uint256 index)
        internal
        view
        returns (uint256, address)
    {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (bool, address)
    {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (address)
    {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(
        UintToAddressMap storage map,
        uint256 key,
        string memory errorMessage
    ) internal view returns (address) {
        return
            address(
                uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))
            );
    }
}

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + (temp % 10)));
            temp /= 10;
        }
        return string(buffer);
    }
}

/*
 * @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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @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 payable private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() internal {
        address payable msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address payable) {
        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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract DeepBlueSeaClub is
    Ownable,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using SafeMath for uint256;
    using Strings for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;

    event Mint(address indexed to, uint256 tokenId, bytes32 hash);

    uint256 HARD_CAP = 10000;
    uint256 SALE_PIRCE = 80000000000000000; // 0.08 ETH
    uint256 THREE_SALE_PRCE = (SALE_PIRCE * 3 * 90) / 100; // 10% discount
    uint256 TEN_SALE_PRCE = (SALE_PIRCE * 10 * 80) / 100; // 20% discount
    uint256 _reservedTokens = 100; // used for giveaways and markeing purposes

    bool private _paused = true;
    mapping(uint256 => bytes32) private _tokenIdHash;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping(address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        string memory uri_,
        uint256 hardCap_
    ) public {
        _name = name_;
        _symbol = symbol_;
        _baseURI = uri_;
        HARD_CAP = hardCap_;
        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    function _mintOne(address _to, uint256 _tokenId) internal {
        bytes32 hash = keccak256(
            abi.encodePacked(_tokenId, block.number, msg.sender)
        );
        _tokenIdHash[_tokenId] = hash;

        _safeMint(_to, _tokenId);

        emit Mint(_to, _tokenId, hash);
    }

    function mintOne(address _to) public payable {
        require(!_paused, "minting is paused");
        require(_to != address(0), "mint to the zero address");
        uint256 _totalSupply = totalSupply();
        require(_totalSupply < HARD_CAP, "mint would exceed totalSupply");
        require(SALE_PIRCE <= msg.value, "wrong amount sent");
        uint256 _tokenId = _totalSupply + 1;

        _mintOne(_to, _tokenId);
    }

    function mintThree(address _to) public payable {
        require(!_paused, "minting is paused");
        require(THREE_SALE_PRCE <= msg.value, "wrong amount sent");
        _mintMany(_to, 3);
    }

    function mintTen(address _to) public payable {
        require(!_paused, "minting is paused");
        require(TEN_SALE_PRCE <= msg.value, "wrong amount sent");
        _mintMany(_to, 10);
    }

    function _mintMany(address _to, uint256 _amount) internal {
        require(_to != address(0), "mint to the zero address");
        uint256 _totalSupply = totalSupply();
        require(
            (_totalSupply + _amount) <= HARD_CAP,
            "mint would exceed totalSupply"
        );
        for (uint256 i = 0; i < _amount; i++) {
            uint256 _tokenId = _totalSupply + 1 + i;
            _mintOne(_to, _tokenId);
        }
    }

    function withdraw(uint256 value) public onlyOwner {
        address payable _owner = owner();
        _owner.transfer(value);
    }

    function setPaused(bool _isPaused) public onlyOwner {
        _paused = _isPaused;
    }

    function mintReserved(address _to, uint256 _amount) public onlyOwner {
        require(
            _amount <= _reservedTokens,
            "reserved token mint exceeds limit"
        );
        uint256 _totalSupply = totalSupply();
        require(
            (_totalSupply + _amount) <= HARD_CAP,
            "mint exceeds totalSupply"
        );
        _mintMany(_to, _amount);
        _reservedTokens = _reservedTokens - _amount;
    }

    function getInfo(uint256 _tokenId)
        public
        view
        returns (
            uint256,
            address,
            bytes32
        )
    {
        _exists(_tokenId);
        bytes32 hash = _tokenIdHash[_tokenId];
        address owner = DeepBlueSeaClub.ownerOf(_tokenId);
        return (_tokenId, owner, hash);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _tokenOwners.get(tokenId, "owner query for nonexistent token");
    }

    /**
     * @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), "URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    /**
     * @dev Returns the base URI set via {_setBaseURI}. This will be
     * automatically added as a prefix in {tokenURI} to each token's URI, or
     * to the token ID if no specific URI is set for that token ID.
     */
    function baseURI() public view returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = DeepBlueSeaClub.ownerOf(tokenId);
        require(to != owner, "approval to current owner");
        address sender = _msgSender();
        require(
            sender == owner || DeepBlueSeaClub.isApprovedForAll(owner, sender),
            "approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        address sender = _msgSender();

        require(
            _isApprovedOrOwner(sender, tokenId),
            "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),
            "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 _tokenOwners.contains(tokenId);
    }

    /**
     * @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), "operator query for nonexistent token");
        address owner = DeepBlueSeaClub.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            DeepBlueSeaClub.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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 {
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "transfer to non ERC721Receiver implementer"
        );
        _mint(to, tokenId);
    }

    /**
     * @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(!_exists(tokenId), "token already minted");
        _holderTokens[to].add(tokenId);
        _tokenOwners.set(tokenId, to);
        emit Transfer(address(0), to, 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(
            DeepBlueSeaClub.ownerOf(tokenId) == from,
            "transfer of token that is not own"
        ); // internal owner
        require(to != address(0), "transfer to the zero address");

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function setTokenURI(uint256 tokenId, string memory _tokenURI)
        public
        onlyOwner
    {
        require(_exists(tokenId), "URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function setBaseURI(string memory baseURI_) public onlyOwner {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(
            abi.encodeWithSelector(
                IERC721Receiver(to).onERC721Received.selector,
                _msgSender(),
                from,
                tokenId,
                _data
            ),
            "transfer to non ERC721Receiver implementer"
        );
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"uri_","type":"string"},{"internalType":"uint256","name":"hardCap_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"hash","type":"bytes32"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getInfo","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"},{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintOne","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTen","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintThree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPaused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","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 payable","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261271060025567011c37937e0800006003556064605a600380540202816200002857fe5b0460045560646050600a6003540202816200003f57fe5b0460055560646006556001600760006101000a81548160ff0219169083151502179055503480156200007057600080fd5b506040516200456b3803806200456b833981810160405260808110156200009657600080fd5b8101908080516040519392919084640100000000821115620000b757600080fd5b83820191506020820185811115620000ce57600080fd5b8251866001820283011164010000000082111715620000ec57600080fd5b8083526020830192505050908051906020019080838360005b838110156200012257808201518184015260208101905062000105565b50505050905090810190601f168015620001505780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200017457600080fd5b838201915060208201858111156200018b57600080fd5b8251866001820283011164010000000082111715620001a957600080fd5b8083526020830192505050908051906020019080838360005b83811015620001df578082015181840152602081019050620001c2565b50505050905090810190601f1680156200020d5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200023157600080fd5b838201915060208201858111156200024857600080fd5b82518660018202830111640100000000821117156200026657600080fd5b8083526020830192505050908051906020019080838360005b838110156200029c5780820151818401526020810190506200027f565b50505050905090810190601f168015620002ca5780820380516001836020036101000a031916815260200191505b50604052602001805190602001909291905050506000620002f06200044a60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620003a66301ffc9a760e01b6200045260201b60201c565b83600e9080519060200190620003be9291906200055b565b5082600f9080519060200190620003d79291906200055b565b508160119080519060200190620003f09291906200055b565b5080600281905550620004106380ac58cd60e01b6200045260201b60201c565b62000428635b5e139f60e01b6200045260201b60201c565b6200044063780e9d6360e01b6200045260201b60201c565b5050505062000611565b600033905090565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620004ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620005935760008555620005df565b82601f10620005ae57805160ff1916838001178555620005df565b82800160010185558215620005df579182015b82811115620005de578251825591602001919060010190620005c1565b5b509050620005ee9190620005f2565b5090565b5b808211156200060d576000816000905550600101620005f3565b5090565b613f4a80620006216000396000f3fe6080604052600436106101c25760003560e01c80636352211e116100f7578063a22cb46511610095578063ef9c0bec11610064578063ef9c0bec14610d32578063f2fde38b14610d76578063f3f47f1214610dc7578063fa695a9714610e0b576101c2565b8063a22cb46514610a88578063b88d4fde14610ae5578063c87b56dd14610bf7578063e985e9c514610cab576101c2565b8063715018a6116100d1578063715018a6146109455780637de55fe11461095c5780638da5cb5b146109b757806395d89b41146109f8576101c2565b80636352211e146107eb5780636c0360eb1461085057806370a08231146108e0576101c2565b80631a3cd59a116101645780632f745c591161013e5780632f745c59146105ea57806342842e0e146106595780634f6ccce7146106d457806355f804b314610723576101c2565b80631a3cd59a146104c157806323b872dd146105345780632e1a7d4d146105af576101c2565b8063095ea7b3116101a0578063095ea7b31461032c578063162094c41461038757806316c38b3c1461045957806318160ddd14610496576101c2565b806301ffc9a7146101c757806306fdde0314610237578063081812fc146102c7575b600080fd5b3480156101d357600080fd5b5061021f600480360360208110156101ea57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610e4f565b60405180821515815260200191505060405180910390f35b34801561024357600080fd5b5061024c610eb7565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028c578082015181840152602081019050610271565b50505050905090810190601f1680156102b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d357600080fd5b50610300600480360360208110156102ea57600080fd5b8101908080359060200190929190505050610f59565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561033857600080fd5b506103856004803603604081101561034f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ff4565b005b34801561039357600080fd5b50610457600480360360408110156103aa57600080fd5b8101908080359060200190929190803590602001906401000000008111156103d157600080fd5b8201836020820111156103e357600080fd5b8035906020019184600183028401116401000000008311171561040557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611154565b005b34801561046557600080fd5b506104946004803603602081101561047c57600080fd5b810190808035151590602001909291905050506112aa565b005b3480156104a257600080fd5b506104ab611376565b6040518082815260200191505060405180910390f35b3480156104cd57600080fd5b506104fa600480360360208110156104e457600080fd5b8101908080359060200190929190505050611387565b604051808481526020018373ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390f35b34801561054057600080fd5b506105ad6004803603606081101561055757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113cd565b005b3480156105bb57600080fd5b506105e8600480360360208110156105d257600080fd5b8101908080359060200190929190505050611449565b005b3480156105f657600080fd5b506106436004803603604081101561060d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061154f565b6040518082815260200191505060405180910390f35b34801561066557600080fd5b506106d26004803603606081101561067c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115aa565b005b3480156106e057600080fd5b5061070d600480360360208110156106f757600080fd5b81019080803590602001909291905050506115ca565b6040518082815260200191505060405180910390f35b34801561072f57600080fd5b506107e96004803603602081101561074657600080fd5b810190808035906020019064010000000081111561076357600080fd5b82018360208201111561077557600080fd5b8035906020019184600183028401116401000000008311171561079757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506115ed565b005b3480156107f757600080fd5b506108246004803603602081101561080e57600080fd5b81019080803590602001909291905050506116b6565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561085c57600080fd5b506108656116ed565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108a557808201518184015260208101905061088a565b50505050905090810190601f1680156108d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156108ec57600080fd5b5061092f6004803603602081101561090357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061178f565b6040518082815260200191505060405180910390f35b34801561095157600080fd5b5061095a611864565b005b34801561096857600080fd5b506109b56004803603604081101561097f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119d1565b005b3480156109c357600080fd5b506109cc611b7b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a0457600080fd5b50610a0d611ba4565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a4d578082015181840152602081019050610a32565b50505050905090810190601f168015610a7a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a9457600080fd5b50610ae360048036036040811015610aab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611c46565b005b348015610af157600080fd5b50610bf560048036036080811015610b0857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610b6f57600080fd5b820183602082011115610b8157600080fd5b80359060200191846001830284011164010000000083111715610ba357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611df4565b005b348015610c0357600080fd5b50610c3060048036036020811015610c1a57600080fd5b8101908080359060200190929190505050611e72565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c70578082015181840152602081019050610c55565b50505050905090810190601f168015610c9d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610cb757600080fd5b50610d1a60048036036040811015610cce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612160565b60405180821515815260200191505060405180910390f35b610d7460048036036020811015610d4857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121f4565b005b348015610d8257600080fd5b50610dc560048036036020811015610d9957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122fd565b005b610e0960048036036020811015610ddd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124ef565b005b610e4d60048036036020811015610e2157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125f8565b005b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f4f5780601f10610f2457610100808354040283529160200191610f4f565b820191906000526020600020905b815481529060010190602001808311610f3257829003601f168201915b5050505050905090565b6000610f6482612830565b610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613d876024913960400191505060405180910390fd5b600c600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610fff826116b6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f617070726f76616c20746f2063757272656e74206f776e65720000000000000081525060200191505060405180910390fd5b60006110ad61284d565b90508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614806110ef57506110ee8282612160565b5b611144576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613d576030913960400191505060405180910390fd5b61114e8484612855565b50505050565b61115c61284d565b73ffffffffffffffffffffffffffffffffffffffff1661117a611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61120c82612830565b61127e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f55524920736574206f66206e6f6e6578697374656e7420746f6b656e0000000081525060200191505060405180910390fd5b806010600084815260200190815260200160002090805190602001906112a5929190613c89565b505050565b6112b261284d565b73ffffffffffffffffffffffffffffffffffffffff166112d0611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611359576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600760006101000a81548160ff02191690831515021790555050565b6000611382600a61290e565b905090565b600080600061139584612830565b5060006008600086815260200190815260200160002054905060006113b9866116b6565b905085818394509450945050509193909250565b60006113d761284d565b90506113e38183612923565b611438576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613e856029913960400191505060405180910390fd5b611443848484612a17565b50505050565b61145161284d565b73ffffffffffffffffffffffffffffffffffffffff1661146f611b7b565b73ffffffffffffffffffffffffffffffffffffffff16146114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611502611b7b565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561154a573d6000803e3d6000fd5b505050565b60006115a282600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c6c90919063ffffffff16565b905092915050565b6115c583838360405180602001604052806000815250611df4565b505050565b6000806115e183600a612c8690919063ffffffff16565b50905080915050919050565b6115f561284d565b73ffffffffffffffffffffffffffffffffffffffff16611613611b7b565b73ffffffffffffffffffffffffffffffffffffffff161461169c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601190805190602001906116b2929190613c89565b5050565b60006116e682604051806060016040528060218152602001613ed060219139600a612cb29092919063ffffffff16565b9050919050565b606060118054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117855780601f1061175a57610100808354040283529160200191611785565b820191906000526020600020905b81548152906001019060200180831161176857829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611816576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613dd16022913960400191505060405180910390fd5b61185d600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612cd1565b9050919050565b61186c61284d565b73ffffffffffffffffffffffffffffffffffffffff1661188a611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611913576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6119d961284d565b73ffffffffffffffffffffffffffffffffffffffff166119f7611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611a80576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600654811115611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613e146021913960400191505060405180910390fd5b6000611ae5611376565b90506002548282011115611b61576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6d696e74206578636565647320746f74616c537570706c79000000000000000081525060200191505060405180910390fd5b611b6b8383612ce6565b8160065403600681905550505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600f8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c3c5780601f10611c1157610100808354040283529160200191611c3c565b820191906000526020600020905b815481529060010190602001808311611c1f57829003601f168201915b5050505050905090565b6000611c5061284d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cf4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f617070726f766520746f2063616c6c657200000000000000000000000000000081525060200191505060405180910390fd5b81600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318460405180821515815260200191505060405180910390a3505050565b6000611dfe61284d565b9050611e0a8184612923565b611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613e856029913960400191505060405180910390fd5b611e6b85858585612e42565b5050505050565b6060611e7d82612830565b611eef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0081525060200191505060405180910390fd5b6000601060008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f985780601f10611f6d57610100808354040283529160200191611f98565b820191906000526020600020905b815481529060010190602001808311611f7b57829003601f168201915b505050505090506000611fa96116ed565b9050600081511415611fbf57819250505061215b565b6000825111156120905780826040516020018083805190602001908083835b602083106120015780518252602082019150602081019050602083039250611fde565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310612052578051825260208201915060208101905060208303925061202f565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529250505061215b565b8061209a85612eb4565b6040516020018083805190602001908083835b602083106120d057805182526020820191506020810190506020830392506120ad565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b6020831061212157805182526020820191506020810190506020830392506120fe565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600760009054906101000a900460ff1615612277576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f6d696e74696e672069732070617573656400000000000000000000000000000081525060200191505060405180910390fd5b3460055411156122ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f77726f6e6720616d6f756e742073656e7400000000000000000000000000000081525060200191505060405180910390fd5b6122fa81600a612ce6565b50565b61230561284d565b73ffffffffffffffffffffffffffffffffffffffff16612323611b7b565b73ffffffffffffffffffffffffffffffffffffffff16146123ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612432576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613dab6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900460ff1615612572576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f6d696e74696e672069732070617573656400000000000000000000000000000081525060200191505060405180910390fd5b3460045411156125ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f77726f6e6720616d6f756e742073656e7400000000000000000000000000000081525060200191505060405180910390fd5b6125f5816003612ce6565b50565b600760009054906101000a900460ff161561267b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f6d696e74696e672069732070617573656400000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561271e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6d696e7420746f20746865207a65726f2061646472657373000000000000000081525060200191505060405180910390fd5b6000612728611376565b905060025481106127a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f6d696e7420776f756c642065786365656420746f74616c537570706c7900000081525060200191505060405180910390fd5b346003541115612819576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f77726f6e6720616d6f756e742073656e7400000000000000000000000000000081525060200191505060405180910390fd5b600060018201905061282b8382612ffb565b505050565b600061284682600a6130cc90919063ffffffff16565b9050919050565b600033905090565b81600c600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128c8836116b6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061291c826000016130e6565b9050919050565b600061292e82612830565b612983576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613ef16024913960400191505060405180910390fd5b600061298e836116b6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129fd57508373ffffffffffffffffffffffffffffffffffffffff166129e584610f59565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a0e5750612a0d8185612160565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a37826116b6565b73ffffffffffffffffffffffffffffffffffffffff1614612aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613df36021913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f7472616e7366657220746f20746865207a65726f20616464726573730000000081525060200191505060405180910390fd5b612b51600082612855565b612ba281600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206130f790919063ffffffff16565b50612bf481600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061311190919063ffffffff16565b50612c0b8183600a61312b9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612c7b8360000183613160565b60001c905092915050565b600080600080612c9986600001866131e3565b915091508160001c8160001c9350935050509250929050565b6000612cc5846000018460001b8461327c565b60001c90509392505050565b6000612cdf82600001613372565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6d696e7420746f20746865207a65726f2061646472657373000000000000000081525060200191505060405180910390fd5b6000612d93611376565b90506002548282011115612e0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f6d696e7420776f756c642065786365656420746f74616c537570706c7900000081525060200191505060405180910390fd5b60005b82811015612e3c5760008160018401019050612e2e8582612ffb565b508080600101915050612e12565b50505050565b612e4d848484612a17565b612e5984848484613383565b612eae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613e5b602a913960400191505060405180910390fd5b50505050565b60606000821415612efc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ff6565b600082905060005b60008214612f26578080600101915050600a8281612f1e57fe5b049150612f04565b60008167ffffffffffffffff81118015612f3f57600080fd5b506040519080825280601f01601f191660200182016040528015612f725781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612fee57600a8481612f9357fe5b0660300160f81b82828060019003935081518110612fad57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612fe657fe5b049350612f81565b819450505050505b919050565b6000814333604051602001808481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1660601b81526014019350505050604051602081830303815290604052805190602001209050806008600084815260200190815260200160002081905550613071838361359c565b8273ffffffffffffffffffffffffffffffffffffffff167f3dec94b8abc8f801eaade1616d3aadd3114b556a284267905e0a053b2df398928383604051808381526020018281526020019250505060405180910390a2505050565b60006130de836000018360001b6135ba565b905092915050565b600081600001805490509050919050565b6000613109836000018360001b6135dd565b905092915050565b6000613123836000018360001b6136c5565b905092915050565b6000613157846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613735565b90509392505050565b6000818360000180549050116131c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613d356022913960400191505060405180910390fd5b8260000182815481106131d057fe5b9060005260206000200154905092915050565b60008082846000018054905011613245576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613eae6022913960400191505060405180910390fd5b600084600001848154811061325657fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390613343576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156133085780820151818401526020810190506132ed565b50505050905090810190601f1680156133355780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061335657fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006133a48473ffffffffffffffffffffffffffffffffffffffff16613811565b6133b15760019050613594565b600061351b63150b7a0260e01b6133c661284d565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561344a57808201518184015260208101905061342f565b50505050905090810190601f1680156134775780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280602a8152602001613e5b602a91398773ffffffffffffffffffffffffffffffffffffffff166138249092919063ffffffff16565b9050600081806020019051602081101561353457600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b6135b682826040518060200160405280600081525061383c565b5050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020549050600081146136b9576000600182039050600060018660000180549050039050600086600001828154811061362857fe5b906000526020600020015490508087600001848154811061364557fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061367d57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506136bf565b60009150505b92915050565b60006136d183836138ad565b61372a57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061372f565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156137dc5784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061380a565b828560000160018303815481106137ef57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b606061383384846000856138d0565b90509392505050565b6138496000848484613383565b61389e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613e5b602a913960400191505060405180910390fd5b6138a88383613a78565b505050565b600080836001016000848152602001908152602001600020541415905092915050565b60608247101561392b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613e356026913960400191505060405180910390fd5b61393485613811565b6139a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106139f557805182526020820191506020810190506020830392506139d2565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613a57576040519150601f19603f3d011682016040523d82523d6000602084013e613a5c565b606091505b5091509150613a6c828286613bbd565b92505050949350505050565b613a8181612830565b15613af4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f746f6b656e20616c7265616479206d696e74656400000000000000000000000081525060200191505060405180910390fd5b613b4581600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061311190919063ffffffff16565b50613b5c8183600a61312b9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60608315613bcd57829050613c82565b600083511115613be05782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613c47578082015181840152602081019050613c2c565b50505050905090810190601f168015613c745780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613cbf5760008555613d06565b82601f10613cd857805160ff1916838001178555613d06565b82800160010185558215613d06579182015b82811115613d05578251825591602001919060010190613cea565b5b509050613d139190613d17565b5090565b5b80821115613d30576000816000905550600101613d18565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737362616c616e636520717565727920666f7220746865207a65726f20616464726573737472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e726573657276656420746f6b656e206d696e742065786365656473206c696d6974416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c7472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465727472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64736f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e6f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212205228fb26ff9a10bb2d3003c55a55c4e480c9643b65a3b14a83fb2512c5fad85564736f6c63430007060033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000124465657020426c75652053656120436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044442534300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f6170692e64656570626c75657365612e636c75622f617474726962757465732f000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636352211e116100f7578063a22cb46511610095578063ef9c0bec11610064578063ef9c0bec14610d32578063f2fde38b14610d76578063f3f47f1214610dc7578063fa695a9714610e0b576101c2565b8063a22cb46514610a88578063b88d4fde14610ae5578063c87b56dd14610bf7578063e985e9c514610cab576101c2565b8063715018a6116100d1578063715018a6146109455780637de55fe11461095c5780638da5cb5b146109b757806395d89b41146109f8576101c2565b80636352211e146107eb5780636c0360eb1461085057806370a08231146108e0576101c2565b80631a3cd59a116101645780632f745c591161013e5780632f745c59146105ea57806342842e0e146106595780634f6ccce7146106d457806355f804b314610723576101c2565b80631a3cd59a146104c157806323b872dd146105345780632e1a7d4d146105af576101c2565b8063095ea7b3116101a0578063095ea7b31461032c578063162094c41461038757806316c38b3c1461045957806318160ddd14610496576101c2565b806301ffc9a7146101c757806306fdde0314610237578063081812fc146102c7575b600080fd5b3480156101d357600080fd5b5061021f600480360360208110156101ea57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610e4f565b60405180821515815260200191505060405180910390f35b34801561024357600080fd5b5061024c610eb7565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028c578082015181840152602081019050610271565b50505050905090810190601f1680156102b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d357600080fd5b50610300600480360360208110156102ea57600080fd5b8101908080359060200190929190505050610f59565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561033857600080fd5b506103856004803603604081101561034f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ff4565b005b34801561039357600080fd5b50610457600480360360408110156103aa57600080fd5b8101908080359060200190929190803590602001906401000000008111156103d157600080fd5b8201836020820111156103e357600080fd5b8035906020019184600183028401116401000000008311171561040557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611154565b005b34801561046557600080fd5b506104946004803603602081101561047c57600080fd5b810190808035151590602001909291905050506112aa565b005b3480156104a257600080fd5b506104ab611376565b6040518082815260200191505060405180910390f35b3480156104cd57600080fd5b506104fa600480360360208110156104e457600080fd5b8101908080359060200190929190505050611387565b604051808481526020018373ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390f35b34801561054057600080fd5b506105ad6004803603606081101561055757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113cd565b005b3480156105bb57600080fd5b506105e8600480360360208110156105d257600080fd5b8101908080359060200190929190505050611449565b005b3480156105f657600080fd5b506106436004803603604081101561060d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061154f565b6040518082815260200191505060405180910390f35b34801561066557600080fd5b506106d26004803603606081101561067c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115aa565b005b3480156106e057600080fd5b5061070d600480360360208110156106f757600080fd5b81019080803590602001909291905050506115ca565b6040518082815260200191505060405180910390f35b34801561072f57600080fd5b506107e96004803603602081101561074657600080fd5b810190808035906020019064010000000081111561076357600080fd5b82018360208201111561077557600080fd5b8035906020019184600183028401116401000000008311171561079757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506115ed565b005b3480156107f757600080fd5b506108246004803603602081101561080e57600080fd5b81019080803590602001909291905050506116b6565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561085c57600080fd5b506108656116ed565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108a557808201518184015260208101905061088a565b50505050905090810190601f1680156108d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156108ec57600080fd5b5061092f6004803603602081101561090357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061178f565b6040518082815260200191505060405180910390f35b34801561095157600080fd5b5061095a611864565b005b34801561096857600080fd5b506109b56004803603604081101561097f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119d1565b005b3480156109c357600080fd5b506109cc611b7b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a0457600080fd5b50610a0d611ba4565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a4d578082015181840152602081019050610a32565b50505050905090810190601f168015610a7a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a9457600080fd5b50610ae360048036036040811015610aab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611c46565b005b348015610af157600080fd5b50610bf560048036036080811015610b0857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610b6f57600080fd5b820183602082011115610b8157600080fd5b80359060200191846001830284011164010000000083111715610ba357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611df4565b005b348015610c0357600080fd5b50610c3060048036036020811015610c1a57600080fd5b8101908080359060200190929190505050611e72565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c70578082015181840152602081019050610c55565b50505050905090810190601f168015610c9d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610cb757600080fd5b50610d1a60048036036040811015610cce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612160565b60405180821515815260200191505060405180910390f35b610d7460048036036020811015610d4857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121f4565b005b348015610d8257600080fd5b50610dc560048036036020811015610d9957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122fd565b005b610e0960048036036020811015610ddd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124ef565b005b610e4d60048036036020811015610e2157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125f8565b005b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f4f5780601f10610f2457610100808354040283529160200191610f4f565b820191906000526020600020905b815481529060010190602001808311610f3257829003601f168201915b5050505050905090565b6000610f6482612830565b610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613d876024913960400191505060405180910390fd5b600c600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610fff826116b6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f617070726f76616c20746f2063757272656e74206f776e65720000000000000081525060200191505060405180910390fd5b60006110ad61284d565b90508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614806110ef57506110ee8282612160565b5b611144576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613d576030913960400191505060405180910390fd5b61114e8484612855565b50505050565b61115c61284d565b73ffffffffffffffffffffffffffffffffffffffff1661117a611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61120c82612830565b61127e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f55524920736574206f66206e6f6e6578697374656e7420746f6b656e0000000081525060200191505060405180910390fd5b806010600084815260200190815260200160002090805190602001906112a5929190613c89565b505050565b6112b261284d565b73ffffffffffffffffffffffffffffffffffffffff166112d0611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611359576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600760006101000a81548160ff02191690831515021790555050565b6000611382600a61290e565b905090565b600080600061139584612830565b5060006008600086815260200190815260200160002054905060006113b9866116b6565b905085818394509450945050509193909250565b60006113d761284d565b90506113e38183612923565b611438576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613e856029913960400191505060405180910390fd5b611443848484612a17565b50505050565b61145161284d565b73ffffffffffffffffffffffffffffffffffffffff1661146f611b7b565b73ffffffffffffffffffffffffffffffffffffffff16146114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611502611b7b565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561154a573d6000803e3d6000fd5b505050565b60006115a282600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c6c90919063ffffffff16565b905092915050565b6115c583838360405180602001604052806000815250611df4565b505050565b6000806115e183600a612c8690919063ffffffff16565b50905080915050919050565b6115f561284d565b73ffffffffffffffffffffffffffffffffffffffff16611613611b7b565b73ffffffffffffffffffffffffffffffffffffffff161461169c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601190805190602001906116b2929190613c89565b5050565b60006116e682604051806060016040528060218152602001613ed060219139600a612cb29092919063ffffffff16565b9050919050565b606060118054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117855780601f1061175a57610100808354040283529160200191611785565b820191906000526020600020905b81548152906001019060200180831161176857829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611816576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613dd16022913960400191505060405180910390fd5b61185d600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612cd1565b9050919050565b61186c61284d565b73ffffffffffffffffffffffffffffffffffffffff1661188a611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611913576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6119d961284d565b73ffffffffffffffffffffffffffffffffffffffff166119f7611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611a80576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600654811115611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613e146021913960400191505060405180910390fd5b6000611ae5611376565b90506002548282011115611b61576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6d696e74206578636565647320746f74616c537570706c79000000000000000081525060200191505060405180910390fd5b611b6b8383612ce6565b8160065403600681905550505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600f8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c3c5780601f10611c1157610100808354040283529160200191611c3c565b820191906000526020600020905b815481529060010190602001808311611c1f57829003601f168201915b5050505050905090565b6000611c5061284d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cf4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f617070726f766520746f2063616c6c657200000000000000000000000000000081525060200191505060405180910390fd5b81600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318460405180821515815260200191505060405180910390a3505050565b6000611dfe61284d565b9050611e0a8184612923565b611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613e856029913960400191505060405180910390fd5b611e6b85858585612e42565b5050505050565b6060611e7d82612830565b611eef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0081525060200191505060405180910390fd5b6000601060008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f985780601f10611f6d57610100808354040283529160200191611f98565b820191906000526020600020905b815481529060010190602001808311611f7b57829003601f168201915b505050505090506000611fa96116ed565b9050600081511415611fbf57819250505061215b565b6000825111156120905780826040516020018083805190602001908083835b602083106120015780518252602082019150602081019050602083039250611fde565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310612052578051825260208201915060208101905060208303925061202f565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529250505061215b565b8061209a85612eb4565b6040516020018083805190602001908083835b602083106120d057805182526020820191506020810190506020830392506120ad565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b6020831061212157805182526020820191506020810190506020830392506120fe565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600760009054906101000a900460ff1615612277576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f6d696e74696e672069732070617573656400000000000000000000000000000081525060200191505060405180910390fd5b3460055411156122ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f77726f6e6720616d6f756e742073656e7400000000000000000000000000000081525060200191505060405180910390fd5b6122fa81600a612ce6565b50565b61230561284d565b73ffffffffffffffffffffffffffffffffffffffff16612323611b7b565b73ffffffffffffffffffffffffffffffffffffffff16146123ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612432576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613dab6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900460ff1615612572576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f6d696e74696e672069732070617573656400000000000000000000000000000081525060200191505060405180910390fd5b3460045411156125ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f77726f6e6720616d6f756e742073656e7400000000000000000000000000000081525060200191505060405180910390fd5b6125f5816003612ce6565b50565b600760009054906101000a900460ff161561267b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f6d696e74696e672069732070617573656400000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561271e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6d696e7420746f20746865207a65726f2061646472657373000000000000000081525060200191505060405180910390fd5b6000612728611376565b905060025481106127a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f6d696e7420776f756c642065786365656420746f74616c537570706c7900000081525060200191505060405180910390fd5b346003541115612819576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f77726f6e6720616d6f756e742073656e7400000000000000000000000000000081525060200191505060405180910390fd5b600060018201905061282b8382612ffb565b505050565b600061284682600a6130cc90919063ffffffff16565b9050919050565b600033905090565b81600c600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128c8836116b6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061291c826000016130e6565b9050919050565b600061292e82612830565b612983576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613ef16024913960400191505060405180910390fd5b600061298e836116b6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129fd57508373ffffffffffffffffffffffffffffffffffffffff166129e584610f59565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a0e5750612a0d8185612160565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a37826116b6565b73ffffffffffffffffffffffffffffffffffffffff1614612aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613df36021913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f7472616e7366657220746f20746865207a65726f20616464726573730000000081525060200191505060405180910390fd5b612b51600082612855565b612ba281600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206130f790919063ffffffff16565b50612bf481600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061311190919063ffffffff16565b50612c0b8183600a61312b9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612c7b8360000183613160565b60001c905092915050565b600080600080612c9986600001866131e3565b915091508160001c8160001c9350935050509250929050565b6000612cc5846000018460001b8461327c565b60001c90509392505050565b6000612cdf82600001613372565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6d696e7420746f20746865207a65726f2061646472657373000000000000000081525060200191505060405180910390fd5b6000612d93611376565b90506002548282011115612e0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f6d696e7420776f756c642065786365656420746f74616c537570706c7900000081525060200191505060405180910390fd5b60005b82811015612e3c5760008160018401019050612e2e8582612ffb565b508080600101915050612e12565b50505050565b612e4d848484612a17565b612e5984848484613383565b612eae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613e5b602a913960400191505060405180910390fd5b50505050565b60606000821415612efc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ff6565b600082905060005b60008214612f26578080600101915050600a8281612f1e57fe5b049150612f04565b60008167ffffffffffffffff81118015612f3f57600080fd5b506040519080825280601f01601f191660200182016040528015612f725781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612fee57600a8481612f9357fe5b0660300160f81b82828060019003935081518110612fad57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612fe657fe5b049350612f81565b819450505050505b919050565b6000814333604051602001808481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1660601b81526014019350505050604051602081830303815290604052805190602001209050806008600084815260200190815260200160002081905550613071838361359c565b8273ffffffffffffffffffffffffffffffffffffffff167f3dec94b8abc8f801eaade1616d3aadd3114b556a284267905e0a053b2df398928383604051808381526020018281526020019250505060405180910390a2505050565b60006130de836000018360001b6135ba565b905092915050565b600081600001805490509050919050565b6000613109836000018360001b6135dd565b905092915050565b6000613123836000018360001b6136c5565b905092915050565b6000613157846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613735565b90509392505050565b6000818360000180549050116131c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613d356022913960400191505060405180910390fd5b8260000182815481106131d057fe5b9060005260206000200154905092915050565b60008082846000018054905011613245576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613eae6022913960400191505060405180910390fd5b600084600001848154811061325657fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390613343576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156133085780820151818401526020810190506132ed565b50505050905090810190601f1680156133355780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061335657fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006133a48473ffffffffffffffffffffffffffffffffffffffff16613811565b6133b15760019050613594565b600061351b63150b7a0260e01b6133c661284d565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561344a57808201518184015260208101905061342f565b50505050905090810190601f1680156134775780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280602a8152602001613e5b602a91398773ffffffffffffffffffffffffffffffffffffffff166138249092919063ffffffff16565b9050600081806020019051602081101561353457600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b6135b682826040518060200160405280600081525061383c565b5050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020549050600081146136b9576000600182039050600060018660000180549050039050600086600001828154811061362857fe5b906000526020600020015490508087600001848154811061364557fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061367d57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506136bf565b60009150505b92915050565b60006136d183836138ad565b61372a57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061372f565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156137dc5784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061380a565b828560000160018303815481106137ef57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b606061383384846000856138d0565b90509392505050565b6138496000848484613383565b61389e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613e5b602a913960400191505060405180910390fd5b6138a88383613a78565b505050565b600080836001016000848152602001908152602001600020541415905092915050565b60608247101561392b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613e356026913960400191505060405180910390fd5b61393485613811565b6139a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106139f557805182526020820191506020810190506020830392506139d2565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613a57576040519150601f19603f3d011682016040523d82523d6000602084013e613a5c565b606091505b5091509150613a6c828286613bbd565b92505050949350505050565b613a8181612830565b15613af4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f746f6b656e20616c7265616479206d696e74656400000000000000000000000081525060200191505060405180910390fd5b613b4581600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061311190919063ffffffff16565b50613b5c8183600a61312b9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60608315613bcd57829050613c82565b600083511115613be05782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613c47578082015181840152602081019050613c2c565b50505050905090810190601f168015613c745780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613cbf5760008555613d06565b82601f10613cd857805160ff1916838001178555613d06565b82800160010185558215613d06579182015b82811115613d05578251825591602001919060010190613cea565b5b509050613d139190613d17565b5090565b5b80821115613d30576000816000905550600101613d18565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737362616c616e636520717565727920666f7220746865207a65726f20616464726573737472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e726573657276656420746f6b656e206d696e742065786365656473206c696d6974416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c7472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465727472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64736f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e6f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212205228fb26ff9a10bb2d3003c55a55c4e480c9643b65a3b14a83fb2512c5fad85564736f6c63430007060033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000124465657020426c75652053656120436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044442534300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f6170692e64656570626c75657365612e636c75622f617474726962757465732f000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Deep Blue Sea Club
Arg [1] : symbol_ (string): DBSC
Arg [2] : uri_ (string): https://api.deepbluesea.club/attributes/
Arg [3] : hardCap_ (uint256): 10000

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [5] : 4465657020426c75652053656120436c75620000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4442534300000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [9] : 68747470733a2f2f6170692e64656570626c75657365612e636c75622f617474
Arg [10] : 726962757465732f000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50779:19448:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8867:200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;58128:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61070:246;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;60566:438;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;68103:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56660:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;60002:203;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;57219:350;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62047:394;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56518:134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59714:212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;62512:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;60282:222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;68554:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57900:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;59541:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57633:205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;50019:148;;;;;;;;;;;;;:::i;:::-;;56758:453;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49360:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;58297:104;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61388:324;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;62760:385;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58472:826;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61783:197;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;55848:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;50322:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55639:201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55195:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8867:200;8997:4;9026:20;:33;9047:11;9026:33;;;;;;;;;;;;;;;;;;;;;;;;;;;9019:40;;8867:200;;;:::o;58128:100::-;58182:13;58215:5;58208:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58128:100;:::o;61070:246::-;61174:7;61207:16;61215:7;61207;:16::i;:::-;61199:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61284:15;:24;61300:7;61284:24;;;;;;;;;;;;;;;;;;;;;61277:31;;61070:246;;;:::o;60566:438::-;60639:13;60655:32;60679:7;60655:23;:32::i;:::-;60639:48;;60712:5;60706:11;;:2;:11;;;;60698:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60758:14;60775:12;:10;:12::i;:::-;60758:29;;60830:5;60820:15;;:6;:15;;;:66;;;;60839:47;60872:5;60879:6;60839:32;:47::i;:::-;60820:66;60798:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60975:21;60984:2;60988:7;60975:8;:21::i;:::-;60566:438;;;;:::o;68103:221::-;49599:12;:10;:12::i;:::-;49588:23;;:7;:5;:7::i;:::-;:23;;;49580:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68225:16:::1;68233:7;68225;:16::i;:::-;68217:57;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;68307:9;68285:10;:19;68296:7;68285:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;68103:221:::0;;:::o;56660:90::-;49599:12;:10;:12::i;:::-;49588:23;;:7;:5;:7::i;:::-;:23;;;49580:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56733:9:::1;56723:7;;:19;;;;;;;;;;;;;;;;;;56660:90:::0;:::o;60002:203::-;60055:7;60176:21;:12;:19;:21::i;:::-;60169:28;;60002:203;:::o;57219:350::-;57316:7;57338;57360;57395:17;57403:8;57395:7;:17::i;:::-;;57423:12;57438;:22;57451:8;57438:22;;;;;;;;;;;;57423:37;;57471:13;57487:33;57511:8;57487:23;:33::i;:::-;57471:49;;57539:8;57549:5;57556:4;57531:30;;;;;;;;57219:350;;;;;:::o;62047:394::-;62226:14;62243:12;:10;:12::i;:::-;62226:29;;62288:35;62307:6;62315:7;62288:18;:35::i;:::-;62266:126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62405:28;62415:4;62421:2;62425:7;62405:9;:28::i;:::-;62047:394;;;;:::o;56518:134::-;49599:12;:10;:12::i;:::-;49588:23;;:7;:5;:7::i;:::-;:23;;;49580:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56579:22:::1;56604:7;:5;:7::i;:::-;56579:32;;56622:6;:15;;:22;56638:5;56622:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;49659:1;56518:134:::0;:::o;59714:212::-;59856:7;59888:30;59912:5;59888:13;:20;59902:5;59888:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;59881:37;;59714:212;;;;:::o;62512:177::-;62642:39;62659:4;62665:2;62669:7;62642:39;;;;;;;;;;;;:16;:39::i;:::-;62512:177;;;:::o;60282:222::-;60402:7;60428:15;60449:22;60465:5;60449:12;:15;;:22;;;;:::i;:::-;60427:44;;;60489:7;60482:14;;;60282:222;;;:::o;68554:99::-;49599:12;:10;:12::i;:::-;49588:23;;:7;:5;:7::i;:::-;:23;;;49580:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68637:8:::1;68626;:19;;;;;;;;;;;;:::i;:::-;;68554:99:::0;:::o;57900:161::-;57964:7;57991:62;58008:7;57991:62;;;;;;;;;;;;;;;;;:12;:16;;:62;;;;;:::i;:::-;57984:69;;57900:161;;;:::o;59541:89::-;59581:13;59614:8;59607:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59541:89;:::o;57633:205::-;57697:7;57742:1;57725:19;;:5;:19;;;;57717:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57801:29;:13;:20;57815:5;57801:20;;;;;;;;;;;;;;;:27;:29::i;:::-;57794:36;;57633:205;;;:::o;50019:148::-;49599:12;:10;:12::i;:::-;49588:23;;:7;:5;:7::i;:::-;:23;;;49580:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50126:1:::1;50089:40;;50110:6;::::0;::::1;;;;;;;;50089:40;;;;;;;;;;;;50157:1;50140:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;50019:148::o:0;56758:453::-;49599:12;:10;:12::i;:::-;49588:23;;:7;:5;:7::i;:::-;:23;;;49580:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56871:15:::1;;56860:7;:26;;56838:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56958:20;56981:13;:11;:13::i;:::-;56958:36;;57055:8;;57043:7;57028:12;:22;57027:36;;57005:110;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;57126:23;57136:3;57141:7;57126:9;:23::i;:::-;57196:7;57178:15;;:25;57160:15;:43;;;;49659:1;56758:453:::0;;:::o;49360:95::-;49406:15;49441:6;;;;;;;;;;;49434:13;;49360:95;:::o;58297:104::-;58353:13;58386:7;58379:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58297:104;:::o;61388:324::-;61498:14;61515:12;:10;:12::i;:::-;61498:29;;61558:6;61546:18;;:8;:18;;;;61538:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61638:8;61599:18;:26;61618:6;61599:26;;;;;;;;;;;;;;;:36;61626:8;61599:36;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;61685:8;61662:42;;61677:6;61662:42;;;61695:8;61662:42;;;;;;;;;;;;;;;;;;;;61388:324;;;:::o;62760:385::-;62919:14;62936:12;:10;:12::i;:::-;62919:29;;62983:35;63002:6;63010:7;62983:18;:35::i;:::-;62961:126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63098:39;63112:4;63118:2;63122:7;63131:5;63098:13;:39::i;:::-;62760:385;;;;;:::o;58472:826::-;58590:13;58629:16;58637:7;58629;:16::i;:::-;58621:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58694:23;58720:10;:19;58731:7;58720:19;;;;;;;;;;;58694:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58750:18;58771:9;:7;:9::i;:::-;58750:30;;58878:1;58862:4;58856:18;:23;58852:72;;;58903:9;58896:16;;;;;;58852:72;59054:1;59034:9;59028:23;:27;59024:108;;;59103:4;59109:9;59086:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59072:48;;;;;;59024:108;59264:4;59270:18;:7;:16;:18::i;:::-;59247:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59233:57;;;;58472:826;;;;:::o;61783:197::-;61908:4;61937:18;:25;61956:5;61937:25;;;;;;;;;;;;;;;:35;61963:8;61937:35;;;;;;;;;;;;;;;;;;;;;;;;;61930:42;;61783:197;;;;:::o;55848:198::-;55913:7;;;;;;;;;;;55912:8;55904:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55978:9;55961:13;;:26;;55953:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56020:18;56030:3;56035:2;56020:9;:18::i;:::-;55848:198;:::o;50322:321::-;49599:12;:10;:12::i;:::-;49588:23;;:7;:5;:7::i;:::-;:23;;;49580:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50485:1:::1;50465:22;;:8;:22;;;;50443:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50598:8;50569:38;;50590:6;::::0;::::1;;;;;;;;50569:38;;;;;;;;;;;;50627:8;50618:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;50322:321:::0;:::o;55639:201::-;55706:7;;;;;;;;;;;55705:8;55697:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55773:9;55754:15;;:28;;55746:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55815:17;55825:3;55830:1;55815:9;:17::i;:::-;55639:201;:::o;55195:436::-;55260:7;;;;;;;;;;;55259:8;55251:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55323:1;55308:17;;:3;:17;;;;55300:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55365:20;55388:13;:11;:13::i;:::-;55365:36;;55435:8;;55420:12;:23;55412:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55510:9;55496:10;;:23;;55488:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55552:16;55586:1;55571:12;:16;55552:35;;55600:23;55609:3;55614:8;55600;:23::i;:::-;55195:436;;;:::o;64684:127::-;64749:4;64773:30;64795:7;64773:12;:21;;:30;;;;:::i;:::-;64766:37;;64684:127;;;:::o;47949:106::-;48002:15;48037:10;48030:17;;47949:106;:::o;70023:201::-;70125:2;70098:15;:24;70114:7;70098:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;70190:7;70186:2;70143:55;;70152:32;70176:7;70152:23;:32::i;:::-;70143:55;;;;;;;;;;;;70023:201;;:::o;44316:155::-;44412:7;44444:19;44452:3;:10;;44444:7;:19::i;:::-;44437:26;;44316:155;;;:::o;64978:432::-;65107:4;65137:16;65145:7;65137;:16::i;:::-;65129:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65205:13;65221:32;65245:7;65221:23;:32::i;:::-;65205:48;;65283:5;65272:16;;:7;:16;;;:64;;;;65329:7;65305:31;;:20;65317:7;65305:11;:20::i;:::-;:31;;;65272:64;:129;;;;65353:48;65386:5;65393:7;65353:32;:48::i;:::-;65272:129;65264:138;;;64978:432;;;;:::o;67336:611::-;67518:4;67482:40;;:32;67506:7;67482:23;:32::i;:::-;:40;;;67460:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67634:1;67620:16;;:2;:16;;;;67612:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67734:29;67751:1;67755:7;67734:8;:29::i;:::-;67776:35;67803:7;67776:13;:19;67790:4;67776:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;67822:30;67844:7;67822:13;:17;67836:2;67822:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;67865:29;67882:7;67891:2;67865:12;:16;;:29;;;;;:::i;:::-;;67931:7;67927:2;67912:27;;67921:4;67912:27;;;;;;;;;;;;67336:611;;;:::o;35853:169::-;35951:7;35991:22;35995:3;:10;;36007:5;35991:3;:22::i;:::-;35983:31;;35976:38;;35853:169;;;;:::o;44819:268::-;44926:7;44935;44961:11;44974:13;44991:22;44995:3;:10;;45007:5;44991:3;:22::i;:::-;44960:53;;;;45040:3;45032:12;;45070:5;45062:14;;45024:55;;;;;;44819:268;;;;;:::o;46201:292::-;46342:7;46424:44;46429:3;:10;;46449:3;46441:12;;46455;46424:4;:44::i;:::-;46416:53;;46362:123;;46201:292;;;;;:::o;35385:114::-;35445:7;35472:19;35480:3;:10;;35472:7;:19::i;:::-;35465:26;;35385:114;;;:::o;56054:456::-;56146:1;56131:17;;:3;:17;;;;56123:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56188:20;56211:13;:11;:13::i;:::-;56188:36;;56285:8;;56273:7;56258:12;:22;56257:36;;56235:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56366:9;56361:142;56385:7;56381:1;:11;56361:142;;;56414:16;56452:1;56448;56433:12;:16;:20;56414:39;;56468:23;56477:3;56482:8;56468;:23::i;:::-;56361:142;56394:3;;;;;;;56361:142;;;;56054:456;;;:::o;64027:344::-;64184:28;64194:4;64200:2;64204:7;64184:9;:28::i;:::-;64245:48;64268:4;64274:2;64278:7;64287:5;64245:22;:48::i;:::-;64223:140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64027:344;;;;:::o;46651:748::-;46707:13;46937:1;46928:5;:10;46924:53;;;46955:10;;;;;;;;;;;;;;;;;;;;;46924:53;46987:12;47002:5;46987:20;;47018:14;47043:78;47058:1;47050:4;:9;47043:78;;47076:8;;;;;;;47107:2;47099:10;;;;;;;;;47043:78;;;47131:19;47163:6;47153:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47131:39;;47181:13;47206:1;47197:6;:10;47181:26;;47225:5;47218:12;;47241:119;47256:1;47248:4;:9;47241:119;;47318:2;47311:4;:9;;;;;;47305:2;:16;47292:31;;47274:6;47281:7;;;;;;;47274:15;;;;;;;;;;;:49;;;;;;;;;;;47346:2;47338:10;;;;;;;;;47241:119;;;47384:6;47370:21;;;;;;46651:748;;;;:::o;54888:299::-;54957:12;55013:8;55023:12;55037:10;54996:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54972:87;;;;;;54957:102;;55095:4;55070:12;:22;55083:8;55070:22;;;;;;;;;;;:29;;;;55112:24;55122:3;55127:8;55112:9;:24::i;:::-;55159:3;55154:25;;;55164:8;55174:4;55154:25;;;;;;;;;;;;;;;;;;;;;;;;54888:299;;;:::o;44045:183::-;44156:4;44185:35;44195:3;:10;;44215:3;44207:12;;44185:9;:35::i;:::-;44178:42;;44045:183;;;;:::o;40661:110::-;40717:7;40744:3;:12;;:19;;;;40737:26;;40661:110;;;:::o;34875:160::-;34963:4;34992:35;35000:3;:10;;35020:5;35012:14;;34992:7;:35::i;:::-;34985:42;;34875:160;;;;:::o;34568:131::-;34635:4;34659:32;34664:3;:10;;34684:5;34676:14;;34659:4;:32::i;:::-;34652:39;;34568:131;;;;:::o;43411:219::-;43534:4;43558:64;43563:3;:10;;43583:3;43575:12;;43613:5;43597:23;;43589:32;;43558:4;:64::i;:::-;43551:71;;43411:219;;;;;:::o;30519:273::-;30613:7;30681:5;30660:3;:11;;:18;;;;:26;30638:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30766:3;:11;;30778:5;30766:18;;;;;;;;;;;;;;;;30759:25;;30519:273;;;;:::o;41136:348::-;41230:7;41239;41308:5;41286:3;:12;;:19;;;;:27;41264:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41388:22;41413:3;:12;;41426:5;41413:19;;;;;;;;;;;;;;;;;;41388:44;;41451:5;:10;;;41463:5;:12;;;41443:33;;;;;41136:348;;;;;:::o;42734:353::-;42862:7;42882:16;42901:3;:12;;:17;42914:3;42901:17;;;;;;;;;;;;42882:36;;42949:1;42937:8;:13;;42952:12;42929:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43019:3;:12;;43043:1;43032:8;:12;43019:26;;;;;;;;;;;;;;;;;;:33;;;43012:40;;;42734:353;;;;;:::o;30056:109::-;30112:7;30139:3;:11;;:18;;;;30132:25;;30056:109;;;:::o;69218:686::-;69373:4;69395:15;:2;:13;;;:15::i;:::-;69390:60;;69434:4;69427:11;;;;69390:60;69460:23;69486:305;69557:45;;;69621:12;:10;:12::i;:::-;69652:4;69675:7;69701:5;69516:205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69486:305;;;;;;;;;;;;;;;;;:2;:15;;;;:305;;;;;:::i;:::-;69460:331;;69802:13;69829:10;69818:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69802:48;;51812:10;69879:16;;69869:26;;;:6;:26;;;;69861:35;;;;69218:686;;;;;;;:::o;65753:110::-;65829:26;65839:2;65843:7;65829:26;;;;;;;;;;;;:9;:26::i;:::-;65753:110;;:::o;40409:157::-;40507:4;40557:1;40536:3;:12;;:17;40549:3;40536:17;;;;;;;;;;;;:22;;40529:29;;40409:157;;;;:::o;28166:1557::-;28232:4;28350:18;28371:3;:12;;:19;28384:5;28371:19;;;;;;;;;;;;28350:40;;28421:1;28407:10;:15;28403:1313;;28782:21;28819:1;28806:10;:14;28782:38;;28835:17;28876:1;28855:3;:11;;:18;;;;:22;28835:42;;29122:17;29142:3;:11;;29154:9;29142:22;;;;;;;;;;;;;;;;29122:42;;29288:9;29259:3;:11;;29271:13;29259:26;;;;;;;;;;;;;;;:38;;;;29407:1;29391:13;:17;29365:3;:12;;:23;29378:9;29365:23;;;;;;;;;;;:43;;;;29517:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;29612:3;:12;;:19;29625:5;29612:19;;;;;;;;;;;29605:26;;;29655:4;29648:11;;;;;;;;28403:1313;29699:5;29692:12;;;28166:1557;;;;;:::o;27576:414::-;27639:4;27661:21;27671:3;27676:5;27661:9;:21::i;:::-;27656:327;;27699:3;:11;;27716:5;27699:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27882:3;:11;;:18;;;;27860:3;:12;;:19;27873:5;27860:19;;;;;;;;;;;:40;;;;27922:4;27915:11;;;;27656:327;27966:5;27959:12;;27576:414;;;;;:::o;37851:737::-;37961:4;38077:16;38096:3;:12;;:17;38109:3;38096:17;;;;;;;;;;;;38077:36;;38142:1;38130:8;:13;38126:455;;;38210:3;:12;;38228:36;;;;;;;;38244:3;38228:36;;;;38257:5;38228:36;;;38210:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38423:3;:12;;:19;;;;38403:3;:12;;:17;38416:3;38403:17;;;;;;;;;;;:39;;;;38464:4;38457:11;;;;;38126:455;38537:5;38501:3;:12;;38525:1;38514:8;:12;38501:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38564:5;38557:12;;;37851:737;;;;;;:::o;17996:444::-;18056:4;18264:12;18388:7;18376:20;18368:28;;18431:1;18424:4;:8;18417:15;;;17996:444;;;:::o;21033:229::-;21170:12;21202:52;21224:6;21232:4;21238:1;21241:12;21202:21;:52::i;:::-;21195:59;;21033:229;;;;;:::o;66090:313::-;66242:54;66273:1;66277:2;66281:7;66290:5;66242:22;:54::i;:::-;66220:146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66377:18;66383:2;66387:7;66377:5;:18::i;:::-;66090:313;;;:::o;29809:161::-;29909:4;29961:1;29938:3;:12;;:19;29951:5;29938:19;;;;;;;;;;;;:24;;29931:31;;29809:161;;;;:::o;22249:632::-;22419:12;22491:5;22466:21;:30;;22444:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22581:18;22592:6;22581:10;:18::i;:::-;22573:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22707:12;22721:23;22748:6;:11;;22767:5;22788:4;22748:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22706:97;;;;22821:52;22839:7;22848:10;22860:12;22821:17;:52::i;:::-;22814:59;;;;22249:632;;;;;;:::o;66739:260::-;66820:16;66828:7;66820;:16::i;:::-;66819:17;66811:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66872:30;66894:7;66872:13;:17;66886:2;66872:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;66913:29;66930:7;66939:2;66913:12;:16;;:29;;;;;:::i;:::-;;66983:7;66979:2;66958:33;;66975:1;66958:33;;;;;;;;;;;;66739:260;;:::o;25172:777::-;25322:12;25351:7;25347:595;;;25382:10;25375:17;;;;25347:595;25516:1;25496:10;:17;:21;25492:439;;;25759:10;25753:17;25820:15;25807:10;25803:2;25799:19;25792:44;25707:148;25902:12;25895:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25172:777;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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