ETH Price: $3,241.39 (+2.10%)
Gas: 2 Gwei

Token

Crypto Wrapped 2021 (WRAPPED-2021)
 

Overview

Max Total Supply

0 WRAPPED-2021

Holders

94

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WRAPPED-2021
0x6cd5fa7a48ba7e980b62ec27eacfdbf92009ebc8
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:
CryptoWrapped

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-31
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: 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));
        }

        return super.tokenURI(tokenId);
    }

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

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

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: CryptoWrapped.sol


pragma solidity ^0.8.3;






// import "hardhat/console.sol";

/*

                         __                                                    __
  ____________  ______  / /_____     _      ___________ _____  ____  ___  ____/ /
 / ___/ ___/ / / / __ \/ __/ __ \   | | /| / / ___/ __ `/ __ \/ __ \/ _ \/ __  / 
/ /__/ /  / /_/ / /_/ / /_/ /_/ /   | |/ |/ / /  / /_/ / /_/ / /_/ /  __/ /_/ /  
\___/_/   \__, / .___/\__/\____/    |__/|__/_/   \__,_/ .___/ .___/\___/\__,_/   
         /____/_/                                    /_/   /_/                   

*/

contract CryptoWrapped is ERC721URIStorage, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using SafeMath for uint256;

    // ============ PUBLIC VARIABLES ============

    /// @notice Prices to mint premium and ultra premium tokens.
    uint256 public constant PREMIUM_PRICE = 0.02 ether;
    uint256 public constant ULTRA_PREMIUM_PRICE = 0.05 ether;

    /// @notice Maximum number of mints per address
    uint256 public constant MAXIMUM_MINT_COUNT = 2;

    /// @notice Maximum number of premium and ultra premium mints
    uint256 public constant MAXIMUM_PREMIUM_MINTS = 2000;
    uint256 public constant MAXIMUM_ULTRA_PREMIUM_MINTS = 500;

    /// @notice Total number of premium and ultra premium mints
    uint256 public totalPremiumMints;
    uint256 public totalUltraPremiumMints;

    /// @dev Mapping to keep track of mint counts per address.
    /// See MAXIMUM_NUMBER_MINTS.
    mapping(address => uint256) public mintCounts;

    /// @notice Used for quick lookup of an address' donation amount.
    /// @dev Mapping from address to donation amount.
    mapping(address => uint256) public donations;

    /// @notice Total amount received from donations.
    uint256 public totalDonations;

    /// @dev Killswitch to turn minting on/off
    bool public isMintingAllowed = true;

    // ============ PRIVATE VARIABLES ============

    /// @dev Counter used as ids to mint new tokens.
    Counters.Counter private _tokenIds;

    /// @dev Mapping to keep track of minted token URIs to prevent
    /// multiple tokens with same URI.
    mapping(string => bool) private mintedTokenURIs;

    /// @dev Used to whitelist OpenSea to allow for transfers without
    /// having to pay gas for initial approval.
    address private openSeaProxyRegistryAddress;

    // ============ EVENTS ============

    /// @dev Event emitted upon successful minting
    event MintedCryptoWrapped(
        address indexed minter,
        string tokenURI,
        uint256 tokenId,
        uint256 donationAmount,
        bool isClassicTier
    );

    /// @dev Event emitted upon successful owner withdrawal of funds
    event OwnerWithdrewFunds(uint256 amountWithdrew);

    constructor(address _openSeaProxyRegistryAddress)
        ERC721("Crypto Wrapped 2021", "WRAPPED-2021")
    {
        openSeaProxyRegistryAddress = _openSeaProxyRegistryAddress;
    }

    // ============ MODIFIERS ============

    modifier mintingIsAllowed() {
        require(
            isMintingAllowed,
            "CryptoWrapped: Minting for Crypto Wrapped has ended."
        );
        _;
    }

    modifier isValidAddr() {
        require(
            msg.sender != address(0),
            "CryptoWrapped: Expected non-zero address"
        );
        _;
    }

    modifier hasntReachedMaxMintCount() {
        require(
            mintCounts[msg.sender] < MAXIMUM_MINT_COUNT,
            "CryptoWrapped: Already minted maximum possible NFTs."
        );
        _;
        mintCounts[msg.sender] = mintCounts[msg.sender].add(1);
    }

    modifier newTokenURI(string memory _tokenURI) {
        require(
            mintedTokenURIs[_tokenURI] == false,
            "CryptoWrapped: Token URI already associated with another token"
        );
        _;
        mintedTokenURIs[_tokenURI] = true;
    }

    modifier isValidTokenURIHash(
        string memory _tokenURI,
        bytes32 _tokenURIHash
    ) {
        require(
            keccak256(abi.encode("wrapped", _tokenURI)) == _tokenURIHash,
            "CryptoWrapped: Invalid _tokenURIHash sent to mintToken"
        );
        _;
    }

    modifier canMintTier(bytes32 _tierHash) {
        if (_getIsClassicTierHash(_tierHash)) {
            _;
        } else if (_tierHash == keccak256(abi.encode("wrapped-", "premium"))) {
            require(
                totalPremiumMints < MAXIMUM_PREMIUM_MINTS,
                "CryptoWrapped: Maximum number of premium NFTs have already been minted"
            );
            require(
                msg.value >= PREMIUM_PRICE,
                "CryptoWrapped: Did not receive enough ETH to mint premium NFT"
            );
            _;
            totalPremiumMints = totalPremiumMints.add(1);
            trackDonations();
        } else if (
            _tierHash == keccak256(abi.encode("wrapped-", "ultra-premium"))
        ) {
            require(
                totalUltraPremiumMints < MAXIMUM_ULTRA_PREMIUM_MINTS,
                "CryptoWrapped: Maximum number of ultra premium NFTs have already been minted"
            );
            require(
                msg.value >= ULTRA_PREMIUM_PRICE,
                "CryptoWrapped: Did not receive enough ETH to mint ultra premium NFT"
            );
            _;
            totalUltraPremiumMints = totalUltraPremiumMints.add(1);
            trackDonations();
        } else {
            revert("CryptoWrapped: Invalid _tierHash provided to mintToken");
        }
    }

    // ============ PUBLIC FUNCTIONS ============

    /**
     * @notice Public mint function that allows for either a free mint or premium mint
     * by sending an amount >= PREMIUM_PRICE. Donations are tracked
     * for future crypto hunt projects.
     * Each address can only mint one token (i.e. cannot mint both a free and premium
     * token).
     * @param _tokenURI: The uri to the token's metadata, in the format `ipfs://<hash>`
     * @return the newly minted token id
     */
    function mintToken(
        string memory _tokenURI,
        bytes32 _tokenURIHash,
        bytes32 _tierHash
    )
        external
        payable
        nonReentrant
        mintingIsAllowed
        isValidAddr
        hasntReachedMaxMintCount
        newTokenURI(_tokenURI)
        isValidTokenURIHash(_tokenURI, _tokenURIHash)
        canMintTier(_tierHash)
        returns (uint256)
    {
        _tokenIds.increment();

        uint256 newTokenId = _tokenIds.current();
        _safeMint(msg.sender, newTokenId);
        _setTokenURI(newTokenId, _tokenURI);

        emit MintedCryptoWrapped(
            msg.sender, // minter
            _tokenURI, // tokenURI
            newTokenId, // tokenId
            msg.value, // donationAmount
            _getIsClassicTierHash(_tierHash) // isClassicTier
        );

        return newTokenId;
    }

    function contractURI() external pure returns (string memory) {
        return
            "https://ipfs.io/ipfs/QmdqRys5Jq3AGWyY4HvGQ2cUDvS61F6TEjcpGAyRDg28TA";
    }

    // ============ OWNER ONLY FUNCTIONS ============

    /**
     * @notice Used by owner to withdraw donations from this contract
     */
    function withdraw() external onlyOwner nonReentrant {
        uint256 amountToWithdraw = address(this).balance;
        (bool sent, ) = msg.sender.call{value: amountToWithdraw}("");
        require(
            sent,
            "CryptoWrapped: Owner failed to withdraw ETH from CryptoWrapped"
        );

        emit OwnerWithdrewFunds(amountToWithdraw);
    }

    /**
     * @notice Used by owner to burn `tokenId`.
     */
    function burn(uint256 tokenId) external onlyOwner nonReentrant {
        _burn(tokenId);
    }

    /**
     * @notice Used by owner to set `isMintingAllowed`
     */
    function setIsMintingAllowed(bool _isMintingAllowed)
        external
        onlyOwner
        nonReentrant
    {
        isMintingAllowed = _isMintingAllowed;
    }

    // ============ PUBLIC OVERRIDDEN FUNCTIONS ============

    /**
     * @dev Overridden to allow transfers on OpenSea without having to pay gas on
     * initial approval.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Get a reference to OpenSea's proxy registry contract by instantiating
        // the contract using the already existing address.
        ProxyRegistry proxyRegistry = ProxyRegistry(
            openSeaProxyRegistryAddress
        );
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    // ============ INTERNAL HELPER FUNCTIONS ============

    /**
     * @dev Returns whether the tier hash corresponds to the classic tier
     */
    function _getIsClassicTierHash(bytes32 _tierHash)
        internal
        pure
        returns (bool)
    {
        return _tierHash == keccak256(abi.encode("wrapped-", "classic"));
    }

    /**
     * @dev Keep track of donator and donation amount
     */
    function trackDonations() internal {
        donations[msg.sender] = donations[msg.sender].add(msg.value);
        totalDonations = totalDonations.add(msg.value);
    }
}

/// @dev These contract definitions are used to create a reference to the OpenSea
/// ProxyRegistry contract by using the registry's address (see `isApprovedForAll`).
contract OwnableDelegateProxy {

}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_openSeaProxyRegistryAddress","type":"address"}],"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":"minter","type":"address"},{"indexed":false,"internalType":"string","name":"tokenURI","type":"string"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"donationAmount","type":"uint256"},{"indexed":false,"internalType":"bool","name":"isClassicTier","type":"bool"}],"name":"MintedCryptoWrapped","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountWithdrew","type":"uint256"}],"name":"OwnerWithdrewFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAXIMUM_MINT_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_PREMIUM_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_ULTRA_PREMIUM_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PREMIUM_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ULTRA_PREMIUM_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"donations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintingAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"bytes32","name":"_tokenURIHash","type":"bytes32"},{"internalType":"bytes32","name":"_tierHash","type":"bytes32"}],"name":"mintToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"bool","name":"_isMintingAllowed","type":"bool"}],"name":"setIsMintingAllowed","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDonations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPremiumMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalUltraPremiumMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600e805460ff191660011790553480156200001e57600080fd5b5060405162002c8138038062002c81833981016040819052620000419162000204565b604080518082018252601381527f43727970746f205772617070656420323032310000000000000000000000000060208083019182528351808501909452600c84526b575241505045442d3230323160a01b908401528151919291620000aa916000916200015e565b508051620000c09060019060208401906200015e565b505050620000dd620000d76200010860201b60201c565b6200010c565b6001600855601180546001600160a01b0319166001600160a01b039290921691909117905562000271565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016c9062000234565b90600052602060002090601f016020900481019282620001905760008555620001db565b82601f10620001ab57805160ff1916838001178555620001db565b82800160010185558215620001db579182015b82811115620001db578251825591602001919060010190620001be565b50620001e9929150620001ed565b5090565b5b80821115620001e95760008155600101620001ee565b60006020828403121562000216578081fd5b81516001600160a01b03811681146200022d578182fd5b9392505050565b600181811c908216806200024957607f821691505b602082108114156200026b57634e487b7160e01b600052602260045260246000fd5b50919050565b612a0080620002816000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063c87b56dd11610095578063de2ed89311610064578063de2ed8931461054e578063e8a3d48514610564578063e985e9c514610579578063f2fde38b1461059957600080fd5b8063c87b56dd146104cb578063c9bf028b146104eb578063cc6cb19a1461050b578063db9b168f1461053857600080fd5b8063a22cb465116100d1578063a22cb4651461045b578063b88d4fde1461047b578063bd68a1611461049b578063c7a9489d146104b057600080fd5b8063715018a6146103fd5780638aaf1511146104125780638da5cb5b1461042857806395d89b411461044657600080fd5b806342842e0e1161017a5780635327787911610149578063532778791461037557806354a246b9146103a25780636352211e146103bd57806370a08231146103dd57600080fd5b806342842e0e1461030c57806342966c681461032c578063475999761461034c578063530d4bc21461036257600080fd5b8063095ea7b3116101b6578063095ea7b31461029b57806323b872dd146102bd5780632b481883146102dd5780633ccfd60b146102f757600080fd5b806301ffc9a7146101e8578063052cb4891461021d57806306fdde0314610241578063081812fc14610263575b600080fd5b3480156101f457600080fd5b5061020861020336600461244e565b6105b9565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b506102336107d081565b604051908152602001610214565b34801561024d57600080fd5b5061025661060b565b60405161021491906125cd565b34801561026f57600080fd5b5061028361027e366004612501565b61069d565b6040516001600160a01b039091168152602001610214565b3480156102a757600080fd5b506102bb6102b6366004612409565b61072a565b005b3480156102c957600080fd5b506102bb6102d8366004612318565b610840565b3480156102e957600080fd5b50600e546102089060ff1681565b34801561030357600080fd5b506102bb610871565b34801561031857600080fd5b506102bb610327366004612318565b6109bf565b34801561033857600080fd5b506102bb610347366004612501565b6109da565b34801561035857600080fd5b506102336101f481565b6102336103703660046124a2565b610a3d565b34801561038157600080fd5b506102336103903660046122c4565b600b6020526000908152604090205481565b3480156103ae57600080fd5b5061023366470de4df82000081565b3480156103c957600080fd5b506102836103d8366004612501565b6111d3565b3480156103e957600080fd5b506102336103f83660046122c4565b61124a565b34801561040957600080fd5b506102bb6112d1565b34801561041e57600080fd5b5061023360095481565b34801561043457600080fd5b506007546001600160a01b0316610283565b34801561045257600080fd5b50610256611307565b34801561046757600080fd5b506102bb6104763660046123d5565b611316565b34801561048757600080fd5b506102bb610496366004612358565b611325565b3480156104a757600080fd5b50610233600281565b3480156104bc57600080fd5b5061023366b1a2bc2ec5000081565b3480156104d757600080fd5b506102566104e6366004612501565b61135d565b3480156104f757600080fd5b506102bb610506366004612434565b6114d4565b34801561051757600080fd5b506102336105263660046122c4565b600c6020526000908152604090205481565b34801561054457600080fd5b50610233600a5481565b34801561055a57600080fd5b50610233600d5481565b34801561057057600080fd5b50610256611539565b34801561058557600080fd5b506102086105943660046122e0565b611559565b3480156105a557600080fd5b506102bb6105b43660046122c4565b611627565b60006001600160e01b031982166380ac58cd60e01b14806105ea57506001600160e01b03198216635b5e139f60e01b145b8061060557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461061a906128b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610646906128b0565b80156106935780601f1061066857610100808354040283529160200191610693565b820191906000526020600020905b81548152906001019060200180831161067657829003601f168201915b5050505050905090565b60006106a8826116c2565b61070e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610735826111d3565b9050806001600160a01b0316836001600160a01b031614156107a35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610705565b336001600160a01b03821614806107bf57506107bf8133611559565b6108315760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610705565b61083b83836116df565b505050565b61084a338261174d565b6108665760405162461bcd60e51b8152600401610705906126c9565b61083b83838361180f565b6007546001600160a01b0316331461089b5760405162461bcd60e51b815260040161070590612694565b600260085414156108be5760405162461bcd60e51b81526004016107059061271a565b60026008556040514790600090339083908381818185875af1925050503d8060008114610907576040519150601f19603f3d011682016040523d82523d6000602084013e61090c565b606091505b50509050806109835760405162461bcd60e51b815260206004820152603e60248201527f43727970746f577261707065643a204f776e6572206661696c656420746f207760448201527f69746864726177204554482066726f6d2043727970746f5772617070656400006064820152608401610705565b6040518281527ff14d4c403993bfd4afadb25c20241d719e649c56f317cff220600370492d35a29060200160405180910390a150506001600855565b61083b83838360405180602001604052806000815250611325565b6007546001600160a01b03163314610a045760405162461bcd60e51b815260040161070590612694565b60026008541415610a275760405162461bcd60e51b81526004016107059061271a565b6002600855610a35816119af565b506001600855565b600060026008541415610a625760405162461bcd60e51b81526004016107059061271a565b6002600855600e5460ff16610ad65760405162461bcd60e51b815260206004820152603460248201527f43727970746f577261707065643a204d696e74696e6720666f7220437279707460448201527337902bb930b83832b2103430b99032b73232b21760611b6064820152608401610705565b33610b345760405162461bcd60e51b815260206004820152602860248201527f43727970746f577261707065643a204578706563746564206e6f6e2d7a65726f604482015267206164647265737360c01b6064820152608401610705565b336000908152600b6020526040902054600211610bb05760405162461bcd60e51b815260206004820152603460248201527f43727970746f577261707065643a20416c7265616479206d696e746564206d616044820152733c34b6bab6903837b9b9b4b136329027232a399760611b6064820152608401610705565b83601081604051610bc19190612545565b9081526040519081900360200190205460ff1615610c475760405162461bcd60e51b815260206004820152603e60248201527f43727970746f577261707065643a20546f6b656e2055524920616c726561647960448201527f206173736f636961746564207769746820616e6f7468657220746f6b656e00006064820152608401610705565b84848082604051602001610c5b9190612663565b6040516020818303038152906040528051906020012014610cdd5760405162461bcd60e51b815260206004820152603660248201527f43727970746f577261707065643a20496e76616c6964205f746f6b656e5552496044820152752430b9b41039b2b73a103a379036b4b73a2a37b5b2b760511b6064820152608401610705565b84610ce7816119ef565b15610d6857610cfa600f80546001019055565b6000610d05600f5490565b9050610d113382611a1f565b610d1b818a611a39565b337f05d098fe34f0b5225a168457dd80d75c5b26953cca000df4dc181ce87df141318a8334610d498c6119ef565b604051610d5994939291906125e0565b60405180910390a29450611168565b604051602001610d779061279f565b60405160208183030381529060405280519060200120811415610f2e576107d060095410610e1c5760405162461bcd60e51b815260206004820152604660248201527f43727970746f577261707065643a204d6178696d756d206e756d626572206f6660448201527f207072656d69756d204e465473206861766520616c7265616479206265656e206064820152651b5a5b9d195960d21b608482015260a401610705565b66470de4df820000341015610e995760405162461bcd60e51b815260206004820152603d60248201527f43727970746f577261707065643a20446964206e6f742072656365697665206560448201527f6e6f7567682045544820746f206d696e74207072656d69756d204e46540000006064820152608401610705565b610ea7600f80546001019055565b6000610eb2600f5490565b9050610ebe3382611a1f565b610ec8818a611a39565b337f05d098fe34f0b5225a168457dd80d75c5b26953cca000df4dc181ce87df141318a8334610ef68c6119ef565b604051610f0694939291906125e0565b60405180910390a29450600954610f1e906001611ac4565b600955610f29611ad7565b611168565b604051602001610f3d906127ed565b60405160208183030381529060405280519060200120811415611101576101f4600a5410610fe85760405162461bcd60e51b815260206004820152604c60248201527f43727970746f577261707065643a204d6178696d756d206e756d626572206f6660448201527f20756c747261207072656d69756d204e465473206861766520616c726561647960648201526b081899595b881b5a5b9d195960a21b608482015260a401610705565b66b1a2bc2ec500003410156110715760405162461bcd60e51b815260206004820152604360248201527f43727970746f577261707065643a20446964206e6f742072656365697665206560448201527f6e6f7567682045544820746f206d696e7420756c747261207072656d69756d2060648201526213919560ea1b608482015260a401610705565b61107f600f80546001019055565b600061108a600f5490565b90506110963382611a1f565b6110a0818a611a39565b337f05d098fe34f0b5225a168457dd80d75c5b26953cca000df4dc181ce87df141318a83346110ce8c6119ef565b6040516110de94939291906125e0565b60405180910390a29450600a546110f6906001611ac4565b600a55610f29611ad7565b60405162461bcd60e51b815260206004820152603660248201527f43727970746f577261707065643a20496e76616c6964205f746965724861736860448201527510383937bb34b232b2103a379036b4b73a2a37b5b2b760511b6064820152608401610705565b505050600160108260405161117d9190612545565b9081526040805160209281900383019020805460ff191693151593909317909255336000908152600b90915220546111b791506001611ac4565b336000908152600b602052604090205560016008559392505050565b6000818152600260205260408120546001600160a01b0316806106055760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610705565b60006001600160a01b0382166112b55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610705565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146112fb5760405162461bcd60e51b815260040161070590612694565b6113056000611b13565b565b60606001805461061a906128b0565b611321338383611b65565b5050565b61132f338361174d565b61134b5760405162461bcd60e51b8152600401610705906126c9565b61135784848484611c34565b50505050565b6060611368826116c2565b6113ce5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610705565b600082815260066020526040812080546113e7906128b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611413906128b0565b80156114605780601f1061143557610100808354040283529160200191611460565b820191906000526020600020905b81548152906001019060200180831161144357829003601f168201915b50505050509050600061147e60408051602081019091526000815290565b9050805160001415611491575092915050565b8151156114c35780826040516020016114ab929190612561565b60405160208183030381529060405292505050919050565b6114cc84611c67565b949350505050565b6007546001600160a01b031633146114fe5760405162461bcd60e51b815260040161070590612694565b600260085414156115215760405162461bcd60e51b81526004016107059061271a565b600e805460ff19169115159190911790556001600855565b606060405180608001604052806043815260200161298860439139905090565b60115460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b1580156115a657600080fd5b505afa1580156115ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115de9190612486565b6001600160a01b031614156115f7576001915050610605565b50506001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6007546001600160a01b031633146116515760405162461bcd60e51b815260040161070590612694565b6001600160a01b0381166116b65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610705565b6116bf81611b13565b50565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611714826111d3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611758826116c2565b6117b95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610705565b60006117c4836111d3565b9050806001600160a01b0316846001600160a01b031614806117ff5750836001600160a01b03166117f48461069d565b6001600160a01b0316145b806114cc57506114cc8185611559565b826001600160a01b0316611822826111d3565b6001600160a01b03161461188a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610705565b6001600160a01b0382166118ec5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610705565b6118f76000826116df565b6001600160a01b038316600090815260036020526040812080546001929061192090849061286d565b90915550506001600160a01b038216600090815260036020526040812080546001929061194e908490612841565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6119b881611d3e565b600081815260066020526040902080546119d1906128b0565b1590506116bf5760008181526006602052604081206116bf91612166565b6000604051602001611a0090612751565b6040516020818303038152906040528051906020012082149050919050565b611321828260405180602001604052806000815250611dd9565b611a42826116c2565b611aa55760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610705565b6000828152600660209081526040909120825161083b928401906121a0565b6000611ad08284612841565b9392505050565b336000908152600c6020526040902054611af19034611ac4565b336000908152600c6020526040902055600d54611b0e9034611ac4565b600d55565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611bc75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610705565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c3f84848461180f565b611c4b84848484611e0c565b6113575760405162461bcd60e51b815260040161070590612611565b6060611c72826116c2565b611cd65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610705565b6000611ced60408051602081019091526000815290565b90506000815111611d0d5760405180602001604052806000815250611ad0565b80611d1784611f19565b604051602001611d28929190612561565b6040516020818303038152906040529392505050565b6000611d49826111d3565b9050611d566000836116df565b6001600160a01b0381166000908152600360205260408120805460019290611d7f90849061286d565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611de38383612033565b611df06000848484611e0c565b61083b5760405162461bcd60e51b815260040161070590612611565b60006001600160a01b0384163b15611f0e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e50903390899088908890600401612590565b602060405180830381600087803b158015611e6a57600080fd5b505af1925050508015611e9a575060408051601f3d908101601f19168201909252611e979181019061246a565b60015b611ef4573d808015611ec8576040519150601f19603f3d011682016040523d82523d6000602084013e611ecd565b606091505b508051611eec5760405162461bcd60e51b815260040161070590612611565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114cc565b506001949350505050565b606081611f3d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f675780611f51816128eb565b9150611f609050600a83612859565b9150611f41565b60008167ffffffffffffffff811115611f9057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fba576020820181803683370190505b5090505b84156114cc57611fcf60018361286d565b9150611fdc600a86612906565b611fe7906030612841565b60f81b81838151811061200a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061202c600a86612859565b9450611fbe565b6001600160a01b0382166120895760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610705565b612092816116c2565b156120df5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610705565b6001600160a01b0382166000908152600360205260408120805460019290612108908490612841565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b508054612172906128b0565b6000825580601f10612182575050565b601f0160209004906000526020600020908101906116bf9190612224565b8280546121ac906128b0565b90600052602060002090601f0160209004810192826121ce5760008555612214565b82601f106121e757805160ff1916838001178555612214565b82800160010185558215612214579182015b828111156122145782518255916020019190600101906121f9565b50612220929150612224565b5090565b5b808211156122205760008155600101612225565b600067ffffffffffffffff8084111561225457612254612946565b604051601f8501601f19908116603f0116810190828211818310171561227c5761227c612946565b8160405280935085815286868601111561229557600080fd5b858560208301376000602087830101525050509392505050565b803580151581146122bf57600080fd5b919050565b6000602082840312156122d5578081fd5b8135611ad08161295c565b600080604083850312156122f2578081fd5b82356122fd8161295c565b9150602083013561230d8161295c565b809150509250929050565b60008060006060848603121561232c578081fd5b83356123378161295c565b925060208401356123478161295c565b929592945050506040919091013590565b6000806000806080858703121561236d578081fd5b84356123788161295c565b935060208501356123888161295c565b925060408501359150606085013567ffffffffffffffff8111156123aa578182fd5b8501601f810187136123ba578182fd5b6123c987823560208401612239565b91505092959194509250565b600080604083850312156123e7578182fd5b82356123f28161295c565b9150612400602084016122af565b90509250929050565b6000806040838503121561241b578182fd5b82356124268161295c565b946020939093013593505050565b600060208284031215612445578081fd5b611ad0826122af565b60006020828403121561245f578081fd5b8135611ad081612971565b60006020828403121561247b578081fd5b8151611ad081612971565b600060208284031215612497578081fd5b8151611ad08161295c565b6000806000606084860312156124b6578283fd5b833567ffffffffffffffff8111156124cc578384fd5b8401601f810186136124dc578384fd5b6124eb86823560208401612239565b9660208601359650604090950135949350505050565b600060208284031215612512578081fd5b5035919050565b60008151808452612531816020860160208601612884565b601f01601f19169290920160200192915050565b60008251612557818460208701612884565b9190910192915050565b60008351612573818460208801612884565b835190830190612587818360208801612884565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125c390830184612519565b9695505050505050565b602081526000611ad06020830184612519565b6080815260006125f36080830187612519565b60208301959095525060408101929092521515606090910152919050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6040815260076040820152661ddc985c1c195960ca1b6060820152608060208201526000611ad06080830184612519565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604081526000612779604083016008815267777261707065642d60c01b602082015260400190565b8281036020938401526007815266636c617373696360c81b928101929092525060400190565b6040815260006127c7604083016008815267777261707065642d60c01b602082015260400190565b82810360209384015260078152667072656d69756d60c81b928101929092525060400190565b604081526000612815604083016008815267777261707065642d60c01b602082015260400190565b828103602093840152600d81526c756c7472612d7072656d69756d60981b928101929092525060400190565b600082198211156128545761285461291a565b500190565b60008261286857612868612930565b500490565b60008282101561287f5761287f61291a565b500390565b60005b8381101561289f578181015183820152602001612887565b838111156113575750506000910152565b600181811c908216806128c457607f821691505b602082108114156128e557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128ff576128ff61291a565b5060010190565b60008261291557612915612930565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146116bf57600080fd5b6001600160e01b0319811681146116bf57600080fdfe68747470733a2f2f697066732e696f2f697066732f516d6471527973354a7133414757795934487647513263554476533631463654456a637047417952446732385441a26469706673582212201fe6e3145b420bca46b9fb59f4f6c20b2e0e497b4bd98363b8f065b54a4b455564736f6c63430008040033000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063715018a611610102578063c87b56dd11610095578063de2ed89311610064578063de2ed8931461054e578063e8a3d48514610564578063e985e9c514610579578063f2fde38b1461059957600080fd5b8063c87b56dd146104cb578063c9bf028b146104eb578063cc6cb19a1461050b578063db9b168f1461053857600080fd5b8063a22cb465116100d1578063a22cb4651461045b578063b88d4fde1461047b578063bd68a1611461049b578063c7a9489d146104b057600080fd5b8063715018a6146103fd5780638aaf1511146104125780638da5cb5b1461042857806395d89b411461044657600080fd5b806342842e0e1161017a5780635327787911610149578063532778791461037557806354a246b9146103a25780636352211e146103bd57806370a08231146103dd57600080fd5b806342842e0e1461030c57806342966c681461032c578063475999761461034c578063530d4bc21461036257600080fd5b8063095ea7b3116101b6578063095ea7b31461029b57806323b872dd146102bd5780632b481883146102dd5780633ccfd60b146102f757600080fd5b806301ffc9a7146101e8578063052cb4891461021d57806306fdde0314610241578063081812fc14610263575b600080fd5b3480156101f457600080fd5b5061020861020336600461244e565b6105b9565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b506102336107d081565b604051908152602001610214565b34801561024d57600080fd5b5061025661060b565b60405161021491906125cd565b34801561026f57600080fd5b5061028361027e366004612501565b61069d565b6040516001600160a01b039091168152602001610214565b3480156102a757600080fd5b506102bb6102b6366004612409565b61072a565b005b3480156102c957600080fd5b506102bb6102d8366004612318565b610840565b3480156102e957600080fd5b50600e546102089060ff1681565b34801561030357600080fd5b506102bb610871565b34801561031857600080fd5b506102bb610327366004612318565b6109bf565b34801561033857600080fd5b506102bb610347366004612501565b6109da565b34801561035857600080fd5b506102336101f481565b6102336103703660046124a2565b610a3d565b34801561038157600080fd5b506102336103903660046122c4565b600b6020526000908152604090205481565b3480156103ae57600080fd5b5061023366470de4df82000081565b3480156103c957600080fd5b506102836103d8366004612501565b6111d3565b3480156103e957600080fd5b506102336103f83660046122c4565b61124a565b34801561040957600080fd5b506102bb6112d1565b34801561041e57600080fd5b5061023360095481565b34801561043457600080fd5b506007546001600160a01b0316610283565b34801561045257600080fd5b50610256611307565b34801561046757600080fd5b506102bb6104763660046123d5565b611316565b34801561048757600080fd5b506102bb610496366004612358565b611325565b3480156104a757600080fd5b50610233600281565b3480156104bc57600080fd5b5061023366b1a2bc2ec5000081565b3480156104d757600080fd5b506102566104e6366004612501565b61135d565b3480156104f757600080fd5b506102bb610506366004612434565b6114d4565b34801561051757600080fd5b506102336105263660046122c4565b600c6020526000908152604090205481565b34801561054457600080fd5b50610233600a5481565b34801561055a57600080fd5b50610233600d5481565b34801561057057600080fd5b50610256611539565b34801561058557600080fd5b506102086105943660046122e0565b611559565b3480156105a557600080fd5b506102bb6105b43660046122c4565b611627565b60006001600160e01b031982166380ac58cd60e01b14806105ea57506001600160e01b03198216635b5e139f60e01b145b8061060557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461061a906128b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610646906128b0565b80156106935780601f1061066857610100808354040283529160200191610693565b820191906000526020600020905b81548152906001019060200180831161067657829003601f168201915b5050505050905090565b60006106a8826116c2565b61070e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610735826111d3565b9050806001600160a01b0316836001600160a01b031614156107a35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610705565b336001600160a01b03821614806107bf57506107bf8133611559565b6108315760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610705565b61083b83836116df565b505050565b61084a338261174d565b6108665760405162461bcd60e51b8152600401610705906126c9565b61083b83838361180f565b6007546001600160a01b0316331461089b5760405162461bcd60e51b815260040161070590612694565b600260085414156108be5760405162461bcd60e51b81526004016107059061271a565b60026008556040514790600090339083908381818185875af1925050503d8060008114610907576040519150601f19603f3d011682016040523d82523d6000602084013e61090c565b606091505b50509050806109835760405162461bcd60e51b815260206004820152603e60248201527f43727970746f577261707065643a204f776e6572206661696c656420746f207760448201527f69746864726177204554482066726f6d2043727970746f5772617070656400006064820152608401610705565b6040518281527ff14d4c403993bfd4afadb25c20241d719e649c56f317cff220600370492d35a29060200160405180910390a150506001600855565b61083b83838360405180602001604052806000815250611325565b6007546001600160a01b03163314610a045760405162461bcd60e51b815260040161070590612694565b60026008541415610a275760405162461bcd60e51b81526004016107059061271a565b6002600855610a35816119af565b506001600855565b600060026008541415610a625760405162461bcd60e51b81526004016107059061271a565b6002600855600e5460ff16610ad65760405162461bcd60e51b815260206004820152603460248201527f43727970746f577261707065643a204d696e74696e6720666f7220437279707460448201527337902bb930b83832b2103430b99032b73232b21760611b6064820152608401610705565b33610b345760405162461bcd60e51b815260206004820152602860248201527f43727970746f577261707065643a204578706563746564206e6f6e2d7a65726f604482015267206164647265737360c01b6064820152608401610705565b336000908152600b6020526040902054600211610bb05760405162461bcd60e51b815260206004820152603460248201527f43727970746f577261707065643a20416c7265616479206d696e746564206d616044820152733c34b6bab6903837b9b9b4b136329027232a399760611b6064820152608401610705565b83601081604051610bc19190612545565b9081526040519081900360200190205460ff1615610c475760405162461bcd60e51b815260206004820152603e60248201527f43727970746f577261707065643a20546f6b656e2055524920616c726561647960448201527f206173736f636961746564207769746820616e6f7468657220746f6b656e00006064820152608401610705565b84848082604051602001610c5b9190612663565b6040516020818303038152906040528051906020012014610cdd5760405162461bcd60e51b815260206004820152603660248201527f43727970746f577261707065643a20496e76616c6964205f746f6b656e5552496044820152752430b9b41039b2b73a103a379036b4b73a2a37b5b2b760511b6064820152608401610705565b84610ce7816119ef565b15610d6857610cfa600f80546001019055565b6000610d05600f5490565b9050610d113382611a1f565b610d1b818a611a39565b337f05d098fe34f0b5225a168457dd80d75c5b26953cca000df4dc181ce87df141318a8334610d498c6119ef565b604051610d5994939291906125e0565b60405180910390a29450611168565b604051602001610d779061279f565b60405160208183030381529060405280519060200120811415610f2e576107d060095410610e1c5760405162461bcd60e51b815260206004820152604660248201527f43727970746f577261707065643a204d6178696d756d206e756d626572206f6660448201527f207072656d69756d204e465473206861766520616c7265616479206265656e206064820152651b5a5b9d195960d21b608482015260a401610705565b66470de4df820000341015610e995760405162461bcd60e51b815260206004820152603d60248201527f43727970746f577261707065643a20446964206e6f742072656365697665206560448201527f6e6f7567682045544820746f206d696e74207072656d69756d204e46540000006064820152608401610705565b610ea7600f80546001019055565b6000610eb2600f5490565b9050610ebe3382611a1f565b610ec8818a611a39565b337f05d098fe34f0b5225a168457dd80d75c5b26953cca000df4dc181ce87df141318a8334610ef68c6119ef565b604051610f0694939291906125e0565b60405180910390a29450600954610f1e906001611ac4565b600955610f29611ad7565b611168565b604051602001610f3d906127ed565b60405160208183030381529060405280519060200120811415611101576101f4600a5410610fe85760405162461bcd60e51b815260206004820152604c60248201527f43727970746f577261707065643a204d6178696d756d206e756d626572206f6660448201527f20756c747261207072656d69756d204e465473206861766520616c726561647960648201526b081899595b881b5a5b9d195960a21b608482015260a401610705565b66b1a2bc2ec500003410156110715760405162461bcd60e51b815260206004820152604360248201527f43727970746f577261707065643a20446964206e6f742072656365697665206560448201527f6e6f7567682045544820746f206d696e7420756c747261207072656d69756d2060648201526213919560ea1b608482015260a401610705565b61107f600f80546001019055565b600061108a600f5490565b90506110963382611a1f565b6110a0818a611a39565b337f05d098fe34f0b5225a168457dd80d75c5b26953cca000df4dc181ce87df141318a83346110ce8c6119ef565b6040516110de94939291906125e0565b60405180910390a29450600a546110f6906001611ac4565b600a55610f29611ad7565b60405162461bcd60e51b815260206004820152603660248201527f43727970746f577261707065643a20496e76616c6964205f746965724861736860448201527510383937bb34b232b2103a379036b4b73a2a37b5b2b760511b6064820152608401610705565b505050600160108260405161117d9190612545565b9081526040805160209281900383019020805460ff191693151593909317909255336000908152600b90915220546111b791506001611ac4565b336000908152600b602052604090205560016008559392505050565b6000818152600260205260408120546001600160a01b0316806106055760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610705565b60006001600160a01b0382166112b55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610705565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146112fb5760405162461bcd60e51b815260040161070590612694565b6113056000611b13565b565b60606001805461061a906128b0565b611321338383611b65565b5050565b61132f338361174d565b61134b5760405162461bcd60e51b8152600401610705906126c9565b61135784848484611c34565b50505050565b6060611368826116c2565b6113ce5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610705565b600082815260066020526040812080546113e7906128b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611413906128b0565b80156114605780601f1061143557610100808354040283529160200191611460565b820191906000526020600020905b81548152906001019060200180831161144357829003601f168201915b50505050509050600061147e60408051602081019091526000815290565b9050805160001415611491575092915050565b8151156114c35780826040516020016114ab929190612561565b60405160208183030381529060405292505050919050565b6114cc84611c67565b949350505050565b6007546001600160a01b031633146114fe5760405162461bcd60e51b815260040161070590612694565b600260085414156115215760405162461bcd60e51b81526004016107059061271a565b600e805460ff19169115159190911790556001600855565b606060405180608001604052806043815260200161298860439139905090565b60115460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b1580156115a657600080fd5b505afa1580156115ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115de9190612486565b6001600160a01b031614156115f7576001915050610605565b50506001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6007546001600160a01b031633146116515760405162461bcd60e51b815260040161070590612694565b6001600160a01b0381166116b65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610705565b6116bf81611b13565b50565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611714826111d3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611758826116c2565b6117b95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610705565b60006117c4836111d3565b9050806001600160a01b0316846001600160a01b031614806117ff5750836001600160a01b03166117f48461069d565b6001600160a01b0316145b806114cc57506114cc8185611559565b826001600160a01b0316611822826111d3565b6001600160a01b03161461188a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610705565b6001600160a01b0382166118ec5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610705565b6118f76000826116df565b6001600160a01b038316600090815260036020526040812080546001929061192090849061286d565b90915550506001600160a01b038216600090815260036020526040812080546001929061194e908490612841565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6119b881611d3e565b600081815260066020526040902080546119d1906128b0565b1590506116bf5760008181526006602052604081206116bf91612166565b6000604051602001611a0090612751565b6040516020818303038152906040528051906020012082149050919050565b611321828260405180602001604052806000815250611dd9565b611a42826116c2565b611aa55760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610705565b6000828152600660209081526040909120825161083b928401906121a0565b6000611ad08284612841565b9392505050565b336000908152600c6020526040902054611af19034611ac4565b336000908152600c6020526040902055600d54611b0e9034611ac4565b600d55565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611bc75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610705565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c3f84848461180f565b611c4b84848484611e0c565b6113575760405162461bcd60e51b815260040161070590612611565b6060611c72826116c2565b611cd65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610705565b6000611ced60408051602081019091526000815290565b90506000815111611d0d5760405180602001604052806000815250611ad0565b80611d1784611f19565b604051602001611d28929190612561565b6040516020818303038152906040529392505050565b6000611d49826111d3565b9050611d566000836116df565b6001600160a01b0381166000908152600360205260408120805460019290611d7f90849061286d565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611de38383612033565b611df06000848484611e0c565b61083b5760405162461bcd60e51b815260040161070590612611565b60006001600160a01b0384163b15611f0e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e50903390899088908890600401612590565b602060405180830381600087803b158015611e6a57600080fd5b505af1925050508015611e9a575060408051601f3d908101601f19168201909252611e979181019061246a565b60015b611ef4573d808015611ec8576040519150601f19603f3d011682016040523d82523d6000602084013e611ecd565b606091505b508051611eec5760405162461bcd60e51b815260040161070590612611565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114cc565b506001949350505050565b606081611f3d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f675780611f51816128eb565b9150611f609050600a83612859565b9150611f41565b60008167ffffffffffffffff811115611f9057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fba576020820181803683370190505b5090505b84156114cc57611fcf60018361286d565b9150611fdc600a86612906565b611fe7906030612841565b60f81b81838151811061200a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061202c600a86612859565b9450611fbe565b6001600160a01b0382166120895760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610705565b612092816116c2565b156120df5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610705565b6001600160a01b0382166000908152600360205260408120805460019290612108908490612841565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b508054612172906128b0565b6000825580601f10612182575050565b601f0160209004906000526020600020908101906116bf9190612224565b8280546121ac906128b0565b90600052602060002090601f0160209004810192826121ce5760008555612214565b82601f106121e757805160ff1916838001178555612214565b82800160010185558215612214579182015b828111156122145782518255916020019190600101906121f9565b50612220929150612224565b5090565b5b808211156122205760008155600101612225565b600067ffffffffffffffff8084111561225457612254612946565b604051601f8501601f19908116603f0116810190828211818310171561227c5761227c612946565b8160405280935085815286868601111561229557600080fd5b858560208301376000602087830101525050509392505050565b803580151581146122bf57600080fd5b919050565b6000602082840312156122d5578081fd5b8135611ad08161295c565b600080604083850312156122f2578081fd5b82356122fd8161295c565b9150602083013561230d8161295c565b809150509250929050565b60008060006060848603121561232c578081fd5b83356123378161295c565b925060208401356123478161295c565b929592945050506040919091013590565b6000806000806080858703121561236d578081fd5b84356123788161295c565b935060208501356123888161295c565b925060408501359150606085013567ffffffffffffffff8111156123aa578182fd5b8501601f810187136123ba578182fd5b6123c987823560208401612239565b91505092959194509250565b600080604083850312156123e7578182fd5b82356123f28161295c565b9150612400602084016122af565b90509250929050565b6000806040838503121561241b578182fd5b82356124268161295c565b946020939093013593505050565b600060208284031215612445578081fd5b611ad0826122af565b60006020828403121561245f578081fd5b8135611ad081612971565b60006020828403121561247b578081fd5b8151611ad081612971565b600060208284031215612497578081fd5b8151611ad08161295c565b6000806000606084860312156124b6578283fd5b833567ffffffffffffffff8111156124cc578384fd5b8401601f810186136124dc578384fd5b6124eb86823560208401612239565b9660208601359650604090950135949350505050565b600060208284031215612512578081fd5b5035919050565b60008151808452612531816020860160208601612884565b601f01601f19169290920160200192915050565b60008251612557818460208701612884565b9190910192915050565b60008351612573818460208801612884565b835190830190612587818360208801612884565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125c390830184612519565b9695505050505050565b602081526000611ad06020830184612519565b6080815260006125f36080830187612519565b60208301959095525060408101929092521515606090910152919050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6040815260076040820152661ddc985c1c195960ca1b6060820152608060208201526000611ad06080830184612519565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604081526000612779604083016008815267777261707065642d60c01b602082015260400190565b8281036020938401526007815266636c617373696360c81b928101929092525060400190565b6040815260006127c7604083016008815267777261707065642d60c01b602082015260400190565b82810360209384015260078152667072656d69756d60c81b928101929092525060400190565b604081526000612815604083016008815267777261707065642d60c01b602082015260400190565b828103602093840152600d81526c756c7472612d7072656d69756d60981b928101929092525060400190565b600082198211156128545761285461291a565b500190565b60008261286857612868612930565b500490565b60008282101561287f5761287f61291a565b500390565b60005b8381101561289f578181015183820152602001612887565b838111156113575750506000910152565b600181811c908216806128c457607f821691505b602082108114156128e557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128ff576128ff61291a565b5060010190565b60008261291557612915612930565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146116bf57600080fd5b6001600160e01b0319811681146116bf57600080fdfe68747470733a2f2f697066732e696f2f697066732f516d6471527973354a7133414757795934487647513263554476533631463654456a637047417952446732385441a26469706673582212201fe6e3145b420bca46b9fb59f4f6c20b2e0e497b4bd98363b8f065b54a4b455564736f6c63430008040033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : _openSeaProxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1


Deployed Bytecode Sourcemap

50055:8982:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32463:305;;;;;;;;;;-1:-1:-1;32463:305:0;;;;;:::i;:::-;;:::i;:::-;;;7529:14:1;;7522:22;7504:41;;7492:2;7477:18;32463:305:0;;;;;;;;50624:52;;;;;;;;;;;;50672:4;50624:52;;;;;22885:25:1;;;22873:2;22858:18;50624:52:0;22840:76:1;33408:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34967:221::-;;;;;;;;;;-1:-1:-1;34967:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6827:32:1;;;6809:51;;6797:2;6782:18;34967:221:0;6764:102:1;34490:411:0;;;;;;;;;;-1:-1:-1;34490:411:0;;;;;:::i;:::-;;:::i;:::-;;35717:339;;;;;;;;;;-1:-1:-1;35717:339:0;;;;;:::i;:::-;;:::i;51372:35::-;;;;;;;;;;-1:-1:-1;51372:35:0;;;;;;;;56874:371;;;;;;;;;;;;;:::i;36127:185::-;;;;;;;;;;-1:-1:-1;36127:185:0;;;;;:::i;:::-;;:::i;57320:96::-;;;;;;;;;;-1:-1:-1;57320:96:0;;;;;:::i;:::-;;:::i;50683:57::-;;;;;;;;;;;;50737:3;50683:57;;55660:883;;;;;;:::i;:::-;;:::i;50998:45::-;;;;;;;;;;-1:-1:-1;50998:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;50327:50;;;;;;;;;;;;50367:10;50327:50;;33102:239;;;;;;;;;;-1:-1:-1;33102:239:0;;;;;:::i;:::-;;:::i;32832:208::-;;;;;;;;;;-1:-1:-1;32832:208:0;;;;;:::i;:::-;;:::i;48621:103::-;;;;;;;;;;;;;:::i;50814:32::-;;;;;;;;;;;;;;;;47970:87;;;;;;;;;;-1:-1:-1;48043:6:0;;-1:-1:-1;;;;;48043:6:0;47970:87;;33577:104;;;;;;;;;;;;;:::i;35260:155::-;;;;;;;;;;-1:-1:-1;35260:155:0;;;;;:::i;:::-;;:::i;36383:328::-;;;;;;;;;;-1:-1:-1;36383:328:0;;;;;:::i;:::-;;:::i;50502:46::-;;;;;;;;;;;;50547:1;50502:46;;50384:56;;;;;;;;;;;;50430:10;50384:56;;45414:679;;;;;;;;;;-1:-1:-1;45414:679:0;;;;;:::i;:::-;;:::i;57498:172::-;;;;;;;;;;-1:-1:-1;57498:172:0;;;;;:::i;:::-;;:::i;51178:44::-;;;;;;;;;;-1:-1:-1;51178:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;50853:37;;;;;;;;;;;;;;;;51286:29;;;;;;;;;;;;;;;;56551:169;;;;;;;;;;;;;:::i;57869:556::-;;;;;;;;;;-1:-1:-1;57869:556:0;;;;;:::i;:::-;;:::i;48879:201::-;;;;;;;;;;-1:-1:-1;48879:201:0;;;;;:::i;:::-;;:::i;32463:305::-;32565:4;-1:-1:-1;;;;;;32602:40:0;;-1:-1:-1;;;32602:40:0;;:105;;-1:-1:-1;;;;;;;32659:48:0;;-1:-1:-1;;;32659:48:0;32602:105;:158;;;-1:-1:-1;;;;;;;;;;21689:40:0;;;32724:36;32582:178;32463:305;-1:-1:-1;;32463:305:0:o;33408:100::-;33462:13;33495:5;33488:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33408:100;:::o;34967:221::-;35043:7;35071:16;35079:7;35071;:16::i;:::-;35063:73;;;;-1:-1:-1;;;35063:73:0;;15916:2:1;35063:73:0;;;15898:21:1;15955:2;15935:18;;;15928:30;15994:34;15974:18;;;15967:62;-1:-1:-1;;;16045:18:1;;;16038:42;16097:19;;35063:73:0;;;;;;;;;-1:-1:-1;35156:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35156:24:0;;34967:221::o;34490:411::-;34571:13;34587:23;34602:7;34587:14;:23::i;:::-;34571:39;;34635:5;-1:-1:-1;;;;;34629:11:0;:2;-1:-1:-1;;;;;34629:11:0;;;34621:57;;;;-1:-1:-1;;;34621:57:0;;17937:2:1;34621:57:0;;;17919:21:1;17976:2;17956:18;;;17949:30;18015:34;17995:18;;;17988:62;-1:-1:-1;;;18066:18:1;;;18059:31;18107:19;;34621:57:0;17909:223:1;34621:57:0;30937:10;-1:-1:-1;;;;;34713:21:0;;;;:62;;-1:-1:-1;34738:37:0;34755:5;30937:10;57869:556;:::i;34738:37::-;34691:168;;;;-1:-1:-1;;;34691:168:0;;13045:2:1;34691:168:0;;;13027:21:1;13084:2;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13194:26;13174:18;;;13167:54;13238:19;;34691:168:0;13017:246:1;34691:168:0;34872:21;34881:2;34885:7;34872:8;:21::i;:::-;34490:411;;;:::o;35717:339::-;35912:41;30937:10;35945:7;35912:18;:41::i;:::-;35904:103;;;;-1:-1:-1;;;35904:103:0;;;;;;;:::i;:::-;36020:28;36030:4;36036:2;36040:7;36020:9;:28::i;56874:371::-;48043:6;;-1:-1:-1;;;;;48043:6:0;30937:10;48190:23;48182:68;;;;-1:-1:-1;;;48182:68:0;;;;;;;:::i;:::-;29231:1:::1;29829:7;;:19;;29821:63;;;;-1:-1:-1::0;;;29821:63:0::1;;;;;;;:::i;:::-;29231:1;29962:7;:18:::0;57012:44:::2;::::0;56964:21:::2;::::0;56937:24:::2;::::0;57012:10:::2;::::0;56964:21;;56937:24;57012:44;56937:24;57012:44;56964:21;57012:10;:44:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56996:60;;;57089:4;57067:116;;;::::0;-1:-1:-1;;;57067:116:0;;20496:2:1;57067:116:0::2;::::0;::::2;20478:21:1::0;20535:2;20515:18;;;20508:30;20574:34;20554:18;;;20547:62;20645:32;20625:18;;;20618:60;20695:19;;57067:116:0::2;20468:252:1::0;57067:116:0::2;57201:36;::::0;22885:25:1;;;57201:36:0::2;::::0;22873:2:1;22858:18;57201:36:0::2;;;;;;;-1:-1:-1::0;;29187:1:0::1;30141:7;:22:::0;56874:371::o;36127:185::-;36265:39;36282:4;36288:2;36292:7;36265:39;;;;;;;;;;;;:16;:39::i;57320:96::-;48043:6;;-1:-1:-1;;;;;48043:6:0;30937:10;48190:23;48182:68;;;;-1:-1:-1;;;48182:68:0;;;;;;;:::i;:::-;29231:1:::1;29829:7;;:19;;29821:63;;;;-1:-1:-1::0;;;29821:63:0::1;;;;;;;:::i;:::-;29231:1;29962:7;:18:::0;57394:14:::2;57400:7:::0;57394:5:::2;:14::i;:::-;-1:-1:-1::0;29187:1:0::1;30141:7;:22:::0;57320:96::o;55660:883::-;56055:7;29231:1;29829:7;;:19;;29821:63;;;;-1:-1:-1;;;29821:63:0;;;;;;;:::i;:::-;29231:1;29962:7;:18;52615:16:::1;::::0;::::1;;52593:118;;;::::0;-1:-1:-1;;;52593:118:0;;17516:2:1;52593:118:0::1;::::0;::::1;17498:21:1::0;17555:2;17535:18;;;17528:30;17594:34;17574:18;;;17567:62;-1:-1:-1;;;17645:18:1;;;17638:50;17705:19;;52593:118:0::1;17488:242:1::0;52593:118:0::1;52795:10:::2;52773:114;;;::::0;-1:-1:-1;;;52773:114:0;;19178:2:1;52773:114:0::2;::::0;::::2;19160:21:1::0;19217:2;19197:18;;;19190:30;19256:34;19236:18;;;19229:62;-1:-1:-1;;;19307:18:1;;;19300:38;19355:19;;52773:114:0::2;19150:230:1::0;52773:114:0::2;52995:10:::3;52984:22;::::0;;;:10:::3;:22;::::0;;;;;50547:1:::3;-1:-1:-1::0;52962:145:0::3;;;::::0;-1:-1:-1;;;52962:145:0;;18757:2:1;52962:145:0::3;::::0;::::3;18739:21:1::0;18796:2;18776:18;;;18769:30;18835:34;18815:18;;;18808:62;-1:-1:-1;;;18886:18:1;;;18879:50;18946:19;;52962:145:0::3;18729:242:1::0;52962:145:0::3;55939:9:::4;53279:15;53295:9;53279:26;;;;;;:::i;:::-;::::0;;;::::4;::::0;;;;;::::4;::::0;;;;::::4;;:35;53257:147;;;::::0;-1:-1:-1;;;53257:147:0;;13470:2:1;53257:147:0::4;::::0;::::4;13452:21:1::0;13509:2;13489:18;;;13482:30;13548:34;13528:18;;;13521:62;13619:32;13599:18;;;13592:60;13669:19;;53257:147:0::4;13442:252:1::0;53257:147:0::4;55979:9:::5;55990:13;53658;53643:9;53621:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;53611:43;;;;;;:60;53589:164;;;::::0;-1:-1:-1;;;53589:164:0;;8431:2:1;53589:164:0::5;::::0;::::5;8413:21:1::0;8470:2;8450:18;;;8443:30;8509:34;8489:18;;;8482:62;-1:-1:-1;;;8560:18:1;;;8553:52;8622:19;;53589:164:0::5;8403:244:1::0;53589:164:0::5;56026:9:::6;53836:32;53858:9;53836:21;:32::i;:::-;53832:1310;;;56080:21:::7;:9;8110:19:::0;;8128:1;8110:19;;;8021:127;56080:21:::7;56114:18;56135:19;:9;7991:14:::0;;7899:114;56135:19:::7;56114:40;;56165:33;56175:10;56187;56165:9;:33::i;:::-;56209:35;56222:10;56234:9;56209:12;:35::i;:::-;56296:10;56262:243;56331:9:::0;56367:10;56403:9:::7;56445:32;56467:9:::0;56445:21:::7;:32::i;:::-;56262:243;;;;;;;;;:::i;:::-;;;;;;;;56525:10:::0;-1:-1:-1;53832:1310:0::6;;;53931:33;;;;;;;:::i;:::-;;;;;;;;;;;;;53921:44;;;;;;53908:9;:57;53904:1238;;;50672:4;54008:17;;:41;53982:173;;;::::0;-1:-1:-1;;;53982:173:0;;20017:2:1;53982:173:0::6;::::0;::::6;19999:21:1::0;20056:2;20036:18;;;20029:30;20095:34;20075:18;;;20068:62;20166:34;20146:18;;;20139:62;-1:-1:-1;;;20217:19:1;;;20210:37;20264:19;;53982:173:0::6;19989:300:1::0;53982:173:0::6;50367:10;54196:9;:26;;54170:149;;;::::0;-1:-1:-1;;;54170:149:0;;19587:2:1;54170:149:0::6;::::0;::::6;19569:21:1::0;19626:2;19606:18;;;19599:30;19665:34;19645:18;;;19638:62;19736:31;19716:18;;;19709:59;19785:19;;54170:149:0::6;19559:251:1::0;54170:149:0::6;56080:21:::7;:9;8110:19:::0;;8128:1;8110:19;;;8021:127;56080:21:::7;56114:18;56135:19;:9;7991:14:::0;;7899:114;56135:19:::7;56114:40;;56165:33;56175:10;56187;56165:9;:33::i;:::-;56209:35;56222:10;56234:9;56209:12;:35::i;:::-;56296:10;56262:243;56331:9:::0;56367:10;56403:9:::7;56445:32;56467:9:::0;56445:21:::7;:32::i;:::-;56262:243;;;;;;;;;:::i;:::-;;;;;;;;56525:10:::0;-1:-1:-1;54370:17:0::6;::::0;:24:::6;::::0;54392:1:::6;54370:21;:24::i;:::-;54350:17;:44:::0;54409:16:::6;:14;:16::i;:::-;53904:1238;;;54484:39;;;;;;;:::i;:::-;;;;;;;;;;;;;54474:50;;;;;;54461:9;:63;54443:699;;;50737:3;54577:22;;:52;54551:190;;;::::0;-1:-1:-1;;;54551:190:0;;12560:2:1;54551:190:0::6;::::0;::::6;12542:21:1::0;12599:2;12579:18;;;12572:30;12638:34;12618:18;;;12611:62;12709:34;12689:18;;;12682:62;-1:-1:-1;;;12760:19:1;;;12753:43;12813:19;;54551:190:0::6;12532:306:1::0;54551:190:0::6;50430:10;54782:9;:32;;54756:161;;;::::0;-1:-1:-1;;;54756:161:0;;11671:2:1;54756:161:0::6;::::0;::::6;11653:21:1::0;11710:2;11690:18;;;11683:30;11749:34;11729:18;;;11722:62;11820:34;11800:18;;;11793:62;-1:-1:-1;;;11871:19:1;;;11864:34;11915:19;;54756:161:0::6;11643:297:1::0;54756:161:0::6;56080:21:::7;:9;8110:19:::0;;8128:1;8110:19;;;8021:127;56080:21:::7;56114:18;56135:19;:9;7991:14:::0;;7899:114;56135:19:::7;56114:40;;56165:33;56175:10;56187;56165:9;:33::i;:::-;56209:35;56222:10;56234:9;56209:12;:35::i;:::-;56296:10;56262:243;56331:9:::0;56367:10;56403:9:::7;56445:32;56467:9:::0;56445:21:::7;:32::i;:::-;56262:243;;;;;;;;;:::i;:::-;;;;;;;;56525:10:::0;-1:-1:-1;54973:22:0::6;::::0;:29:::6;::::0;55000:1:::6;54973:26;:29::i;:::-;54948:22;:54:::0;55017:16:::6;:14;:16::i;54443:699::-;55066:64;::::0;-1:-1:-1;;;55066:64:0;;10037:2:1;55066:64:0::6;::::0;::::6;10019:21:1::0;10076:2;10056:18;;;10049:30;10115:34;10095:18;;;10088:62;-1:-1:-1;;;10166:18:1;;;10159:52;10228:19;;55066:64:0::6;10009:244:1::0;54443:699:0::6;53764:1;53415::::5;;53456:4:::4;53427:15;53443:9;53427:26;;;;;;:::i;:::-;::::0;;;::::4;::::0;;::::4;::::0;;;;;;;;:33;;-1:-1:-1;;53427:33:0::4;::::0;::::4;;::::0;;;::::4;::::0;;;53166:10:::3;-1:-1:-1::0;53155:22:0;;;:10:::3;:22:::0;;;;;:29:::3;::::0;-1:-1:-1;;53155:26:0::3;:29::i;:::-;53141:10;53130:22;::::0;;;:10:::3;:22;::::0;;;;:54;29187:1;30141:7;:22;55660:883;;-1:-1:-1;;;55660:883:0:o;33102:239::-;33174:7;33210:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33210:16:0;33245:19;33237:73;;;;-1:-1:-1;;;33237:73:0;;14312:2:1;33237:73:0;;;14294:21:1;14351:2;14331:18;;;14324:30;14390:34;14370:18;;;14363:62;-1:-1:-1;;;14441:18:1;;;14434:39;14490:19;;33237:73:0;14284:231:1;32832:208:0;32904:7;-1:-1:-1;;;;;32932:19:0;;32924:74;;;;-1:-1:-1;;;32924:74:0;;13901:2:1;32924:74:0;;;13883:21:1;13940:2;13920:18;;;13913:30;13979:34;13959:18;;;13952:62;-1:-1:-1;;;14030:18:1;;;14023:40;14080:19;;32924:74:0;13873:232:1;32924:74:0;-1:-1:-1;;;;;;33016:16:0;;;;;:9;:16;;;;;;;32832:208::o;48621:103::-;48043:6;;-1:-1:-1;;;;;48043:6:0;30937:10;48190:23;48182:68;;;;-1:-1:-1;;;48182:68:0;;;;;;;:::i;:::-;48686:30:::1;48713:1;48686:18;:30::i;:::-;48621:103::o:0;33577:104::-;33633:13;33666:7;33659:14;;;;;:::i;35260:155::-;35355:52;30937:10;35388:8;35398;35355:18;:52::i;:::-;35260:155;;:::o;36383:328::-;36558:41;30937:10;36591:7;36558:18;:41::i;:::-;36550:103;;;;-1:-1:-1;;;36550:103:0;;;;;;;:::i;:::-;36664:39;36678:4;36684:2;36688:7;36697:5;36664:13;:39::i;:::-;36383:328;;;;:::o;45414:679::-;45487:13;45521:16;45529:7;45521;:16::i;:::-;45513:78;;;;-1:-1:-1;;;45513:78:0;;15498:2:1;45513:78:0;;;15480:21:1;15537:2;15517:18;;;15510:30;15576:34;15556:18;;;15549:62;-1:-1:-1;;;15627:18:1;;;15620:47;15684:19;;45513:78:0;15470:239:1;45513:78:0;45604:23;45630:19;;;:10;:19;;;;;45604:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45660:18;45681:10;34411:9;;;;;;;;;-1:-1:-1;34411:9:0;;;34334:94;45681:10;45660:31;;45773:4;45767:18;45789:1;45767:23;45763:72;;;-1:-1:-1;45814:9:0;45414:679;-1:-1:-1;;45414:679:0:o;45763:72::-;45939:23;;:27;45935:108;;46014:4;46020:9;45997:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45983:48;;;;45414:679;;;:::o;45935:108::-;46062:23;46077:7;46062:14;:23::i;:::-;46055:30;45414:679;-1:-1:-1;;;;45414:679:0:o;57498:172::-;48043:6;;-1:-1:-1;;;;;48043:6:0;30937:10;48190:23;48182:68;;;;-1:-1:-1;;;48182:68:0;;;;;;;:::i;:::-;29231:1:::1;29829:7;;:19;;29821:63;;;;-1:-1:-1::0;;;29821:63:0::1;;;;;;;:::i;:::-;57626:16:::2;:36:::0;;-1:-1:-1;;57626:36:0::2;::::0;::::2;;::::0;;;::::2;::::0;;-1:-1:-1;29962:7:0::1;30141:22:::0;57498:172::o;56551:169::-;56597:13;56623:89;;;;;;;;;;;;;;;;;;;56551:169;:::o;57869:556::-;58217:27;;58278:28;;-1:-1:-1;;;58278:28:0;;-1:-1:-1;;;;;6827:32:1;;;58278:28:0;;;6809:51:1;57994:4:0;;58217:27;;;58270:49;;;;58217:27;;58278:21;;6782:18:1;;58278:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;58270:49:0;;58266:93;;;58343:4;58336:11;;;;;58266:93;-1:-1:-1;;;;;;;35607:25:0;;;35583:4;35607:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;57869:556::o;48879:201::-;48043:6;;-1:-1:-1;;;;;48043:6:0;30937:10;48190:23;48182:68;;;;-1:-1:-1;;;48182:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48968:22:0;::::1;48960:73;;;::::0;-1:-1:-1;;;48960:73:0;;9273:2:1;48960:73:0::1;::::0;::::1;9255:21:1::0;9312:2;9292:18;;;9285:30;9351:34;9331:18;;;9324:62;-1:-1:-1;;;9402:18:1;;;9395:36;9448:19;;48960:73:0::1;9245:228:1::0;48960:73:0::1;49044:28;49063:8;49044:18;:28::i;:::-;48879:201:::0;:::o;38221:127::-;38286:4;38310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38310:16:0;:30;;;38221:127::o;42203:174::-;42278:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42278:29:0;-1:-1:-1;;;;;42278:29:0;;;;;;;;:24;;42332:23;42278:24;42332:14;:23::i;:::-;-1:-1:-1;;;;;42323:46:0;;;;;;;;;;;42203:174;;:::o;38515:348::-;38608:4;38633:16;38641:7;38633;:16::i;:::-;38625:73;;;;-1:-1:-1;;;38625:73:0;;12147:2:1;38625:73:0;;;12129:21:1;12186:2;12166:18;;;12159:30;12225:34;12205:18;;;12198:62;-1:-1:-1;;;12276:18:1;;;12269:42;12328:19;;38625:73:0;12119:234:1;38625:73:0;38709:13;38725:23;38740:7;38725:14;:23::i;:::-;38709:39;;38778:5;-1:-1:-1;;;;;38767:16:0;:7;-1:-1:-1;;;;;38767:16:0;;:51;;;;38811:7;-1:-1:-1;;;;;38787:31:0;:20;38799:7;38787:11;:20::i;:::-;-1:-1:-1;;;;;38787:31:0;;38767:51;:87;;;;38822:32;38839:5;38846:7;38822:16;:32::i;41507:578::-;41666:4;-1:-1:-1;;;;;41639:31:0;:23;41654:7;41639:14;:23::i;:::-;-1:-1:-1;;;;;41639:31:0;;41631:85;;;;-1:-1:-1;;;41631:85:0;;16690:2:1;41631:85:0;;;16672:21:1;16729:2;16709:18;;;16702:30;16768:34;16748:18;;;16741:62;-1:-1:-1;;;16819:18:1;;;16812:39;16868:19;;41631:85:0;16662:231:1;41631:85:0;-1:-1:-1;;;;;41735:16:0;;41727:65;;;;-1:-1:-1;;;41727:65:0;;10460:2:1;41727:65:0;;;10442:21:1;10499:2;10479:18;;;10472:30;10538:34;10518:18;;;10511:62;-1:-1:-1;;;10589:18:1;;;10582:34;10633:19;;41727:65:0;10432:226:1;41727:65:0;41909:29;41926:1;41930:7;41909:8;:29::i;:::-;-1:-1:-1;;;;;41951:15:0;;;;;;:9;:15;;;;;:20;;41970:1;;41951:15;:20;;41970:1;;41951:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41982:13:0;;;;;;:9;:13;;;;;:18;;41999:1;;41982:13;:18;;41999:1;;41982:18;:::i;:::-;;;;-1:-1:-1;;42011:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42011:21:0;-1:-1:-1;;;;;42011:21:0;;;;;;;;;42050:27;;42011:16;;42050:27;;;;;;;41507:578;;;:::o;46695:206::-;46764:20;46776:7;46764:11;:20::i;:::-;46807:19;;;;:10;:19;;;;;46801:33;;;;;:::i;:::-;:38;;-1:-1:-1;46797:97:0;;46863:19;;;;:10;:19;;;;;46856:26;;;:::i;58588:194::-;58688:4;58740:33;;;;;;;:::i;:::-;;;;;;;;;;;;;58730:44;;;;;;58717:9;:57;58710:64;;58588:194;;;:::o;39205:110::-;39281:26;39291:2;39295:7;39281:26;;;;;;;;;;;;:9;:26::i;46249:217::-;46349:16;46357:7;46349;:16::i;:::-;46341:75;;;;-1:-1:-1;;;46341:75:0;;14722:2:1;46341:75:0;;;14704:21:1;14761:2;14741:18;;;14734:30;14800:34;14780:18;;;14773:62;-1:-1:-1;;;14851:18:1;;;14844:44;14905:19;;46341:75:0;14694:236:1;46341:75:0;46427:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;2862:98::-;2920:7;2947:5;2951:1;2947;:5;:::i;:::-;2940:12;2862:98;-1:-1:-1;;;2862:98:0:o;58863:171::-;58943:10;58933:21;;;;:9;:21;;;;;;:36;;58959:9;58933:25;:36::i;:::-;58919:10;58909:21;;;;:9;:21;;;;;:60;58997:14;;:29;;59016:9;58997:18;:29::i;:::-;58980:14;:46;58863:171::o;49240:191::-;49333:6;;;-1:-1:-1;;;;;49350:17:0;;;-1:-1:-1;;;;;;49350:17:0;;;;;;;49383:40;;49333:6;;;49350:17;49333:6;;49383:40;;49314:16;;49383:40;49240:191;;:::o;42519:315::-;42674:8;-1:-1:-1;;;;;42665:17:0;:5;-1:-1:-1;;;;;42665:17:0;;;42657:55;;;;-1:-1:-1;;;42657:55:0;;10865:2:1;42657:55:0;;;10847:21:1;10904:2;10884:18;;;10877:30;10943:27;10923:18;;;10916:55;10988:18;;42657:55:0;10837:175:1;42657:55:0;-1:-1:-1;;;;;42723:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;42723:46:0;;;;;;;;;;42785:41;;7504::1;;;42785::0;;7477:18:1;42785:41:0;;;;;;;42519:315;;;:::o;37593:::-;37750:28;37760:4;37766:2;37770:7;37750:9;:28::i;:::-;37797:48;37820:4;37826:2;37830:7;37839:5;37797:22;:48::i;:::-;37789:111;;;;-1:-1:-1;;;37789:111:0;;;;;;;:::i;33752:334::-;33825:13;33859:16;33867:7;33859;:16::i;:::-;33851:76;;;;-1:-1:-1;;;33851:76:0;;17100:2:1;33851:76:0;;;17082:21:1;17139:2;17119:18;;;17112:30;17178:34;17158:18;;;17151:62;-1:-1:-1;;;17229:18:1;;;17222:45;17284:19;;33851:76:0;17072:237:1;33851:76:0;33940:21;33964:10;34411:9;;;;;;;;;-1:-1:-1;34411:9:0;;;34334:94;33964:10;33940:34;;34016:1;33998:7;33992:21;:25;:86;;;;;;;;;;;;;;;;;34044:7;34053:18;:7;:16;:18::i;:::-;34027:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33985:93;33752:334;-1:-1:-1;;;33752:334:0:o;40810:360::-;40870:13;40886:23;40901:7;40886:14;:23::i;:::-;40870:39;;41011:29;41028:1;41032:7;41011:8;:29::i;:::-;-1:-1:-1;;;;;41053:16:0;;;;;;:9;:16;;;;;:21;;41073:1;;41053:16;:21;;41073:1;;41053:21;:::i;:::-;;;;-1:-1:-1;;41092:16:0;;;;:7;:16;;;;;;41085:23;;-1:-1:-1;;;;;;41085:23:0;;;41126:36;41100:7;;41092:16;-1:-1:-1;;;;;41126:36:0;;;;;41092:16;;41126:36;40810:360;;:::o;39542:321::-;39672:18;39678:2;39682:7;39672:5;:18::i;:::-;39723:54;39754:1;39758:2;39762:7;39771:5;39723:22;:54::i;:::-;39701:154;;;;-1:-1:-1;;;39701:154:0;;;;;;;:::i;43399:799::-;43554:4;-1:-1:-1;;;;;43575:13:0;;11759:20;11807:8;43571:620;;43611:72;;-1:-1:-1;;;43611:72:0;;-1:-1:-1;;;;;43611:36:0;;;;;:72;;30937:10;;43662:4;;43668:7;;43677:5;;43611:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43611:72:0;;;;;;;;-1:-1:-1;;43611:72:0;;;;;;;;;;;;:::i;:::-;;;43607:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43853:13:0;;43849:272;;43896:60;;-1:-1:-1;;;43896:60:0;;;;;;;:::i;43849:272::-;44071:6;44065:13;44056:6;44052:2;44048:15;44041:38;43607:529;-1:-1:-1;;;;;;43734:51:0;-1:-1:-1;;;43734:51:0;;-1:-1:-1;43727:58:0;;43571:620;-1:-1:-1;44175:4:0;43399:799;;;;;;:::o;8857:723::-;8913:13;9134:10;9130:53;;-1:-1:-1;;9161:10:0;;;;;;;;;;;;-1:-1:-1;;;9161:10:0;;;;;8857:723::o;9130:53::-;9208:5;9193:12;9249:78;9256:9;;9249:78;;9282:8;;;;:::i;:::-;;-1:-1:-1;9305:10:0;;-1:-1:-1;9313:2:0;9305:10;;:::i;:::-;;;9249:78;;;9337:19;9369:6;9359:17;;;;;;-1:-1:-1;;;9359:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9359:17:0;;9337:39;;9387:154;9394:10;;9387:154;;9421:11;9431:1;9421:11;;:::i;:::-;;-1:-1:-1;9490:10:0;9498:2;9490:5;:10;:::i;:::-;9477:24;;:2;:24;:::i;:::-;9464:39;;9447:6;9454;9447:14;;;;;;-1:-1:-1;;;9447:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;9447:56:0;;;;;;;;-1:-1:-1;9518:11:0;9527:2;9518:11;;:::i;:::-;;;9387:154;;40199:382;-1:-1:-1;;;;;40279:16:0;;40271:61;;;;-1:-1:-1;;;40271:61:0;;15137:2:1;40271:61:0;;;15119:21:1;;;15156:18;;;15149:30;15215:34;15195:18;;;15188:62;15267:18;;40271:61:0;15109:182:1;40271:61:0;40352:16;40360:7;40352;:16::i;:::-;40351:17;40343:58;;;;-1:-1:-1;;;40343:58:0;;9680:2:1;40343:58:0;;;9662:21:1;9719:2;9699:18;;;9692:30;9758;9738:18;;;9731:58;9806:18;;40343:58:0;9652:178:1;40343:58:0;-1:-1:-1;;;;;40472:13:0;;;;;;:9;:13;;;;;:18;;40489:1;;40472:13;:18;;40489:1;;40472:18;:::i;:::-;;;;-1:-1:-1;;40501:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40501:21:0;-1:-1:-1;;;;;40501:21:0;;;;;;;;40540:33;;40501:16;;;40540:33;;40501:16;;40540:33;40199:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:2;;800:1;797;790:12;744:2;696:114;;;:::o;815:257::-;874:6;927:2;915:9;906:7;902:23;898:32;895:2;;;948:6;940;933:22;895:2;992:9;979:23;1011:31;1036:5;1011:31;:::i;1077:398::-;1145:6;1153;1206:2;1194:9;1185:7;1181:23;1177:32;1174:2;;;1227:6;1219;1212:22;1174:2;1271:9;1258:23;1290:31;1315:5;1290:31;:::i;:::-;1340:5;-1:-1:-1;1397:2:1;1382:18;;1369:32;1410:33;1369:32;1410:33;:::i;:::-;1462:7;1452:17;;;1164:311;;;;;:::o;1480:466::-;1557:6;1565;1573;1626:2;1614:9;1605:7;1601:23;1597:32;1594:2;;;1647:6;1639;1632:22;1594:2;1691:9;1678:23;1710:31;1735:5;1710:31;:::i;:::-;1760:5;-1:-1:-1;1817:2:1;1802:18;;1789:32;1830:33;1789:32;1830:33;:::i;:::-;1584:362;;1882:7;;-1:-1:-1;;;1936:2:1;1921:18;;;;1908:32;;1584:362::o;1951:824::-;2046:6;2054;2062;2070;2123:3;2111:9;2102:7;2098:23;2094:33;2091:2;;;2145:6;2137;2130:22;2091:2;2189:9;2176:23;2208:31;2233:5;2208:31;:::i;:::-;2258:5;-1:-1:-1;2315:2:1;2300:18;;2287:32;2328:33;2287:32;2328:33;:::i;:::-;2380:7;-1:-1:-1;2434:2:1;2419:18;;2406:32;;-1:-1:-1;2489:2:1;2474:18;;2461:32;2516:18;2505:30;;2502:2;;;2553:6;2545;2538:22;2502:2;2581:22;;2634:4;2626:13;;2622:27;-1:-1:-1;2612:2:1;;2668:6;2660;2653:22;2612:2;2696:73;2761:7;2756:2;2743:16;2738:2;2734;2730:11;2696:73;:::i;:::-;2686:83;;;2081:694;;;;;;;:::o;2780:325::-;2845:6;2853;2906:2;2894:9;2885:7;2881:23;2877:32;2874:2;;;2927:6;2919;2912:22;2874:2;2971:9;2958:23;2990:31;3015:5;2990:31;:::i;:::-;3040:5;-1:-1:-1;3064:35:1;3095:2;3080:18;;3064:35;:::i;:::-;3054:45;;2864:241;;;;;:::o;3110:325::-;3178:6;3186;3239:2;3227:9;3218:7;3214:23;3210:32;3207:2;;;3260:6;3252;3245:22;3207:2;3304:9;3291:23;3323:31;3348:5;3323:31;:::i;:::-;3373:5;3425:2;3410:18;;;;3397:32;;-1:-1:-1;;;3197:238:1:o;3440:190::-;3496:6;3549:2;3537:9;3528:7;3524:23;3520:32;3517:2;;;3570:6;3562;3555:22;3517:2;3598:26;3614:9;3598:26;:::i;3635:255::-;3693:6;3746:2;3734:9;3725:7;3721:23;3717:32;3714:2;;;3767:6;3759;3752:22;3714:2;3811:9;3798:23;3830:30;3854:5;3830:30;:::i;3895:259::-;3964:6;4017:2;4005:9;3996:7;3992:23;3988:32;3985:2;;;4038:6;4030;4023:22;3985:2;4075:9;4069:16;4094:30;4118:5;4094:30;:::i;4159:290::-;4258:6;4311:2;4299:9;4290:7;4286:23;4282:32;4279:2;;;4332:6;4324;4317:22;4279:2;4369:9;4363:16;4388:31;4413:5;4388:31;:::i;4454:620::-;4541:6;4549;4557;4610:2;4598:9;4589:7;4585:23;4581:32;4578:2;;;4631:6;4623;4616:22;4578:2;4676:9;4663:23;4709:18;4701:6;4698:30;4695:2;;;4746:6;4738;4731:22;4695:2;4774:22;;4827:4;4819:13;;4815:27;-1:-1:-1;4805:2:1;;4861:6;4853;4846:22;4805:2;4889:75;4956:7;4951:2;4938:16;4931:4;4927:2;4923:13;4889:75;:::i;:::-;4879:85;5011:4;4996:20;;4983:34;;-1:-1:-1;5064:2:1;5049:18;;;5036:32;;4568:506;-1:-1:-1;;;;4568:506:1:o;5079:190::-;5138:6;5191:2;5179:9;5170:7;5166:23;5162:32;5159:2;;;5212:6;5204;5197:22;5159:2;-1:-1:-1;5240:23:1;;5149:120;-1:-1:-1;5149:120:1:o;5274:257::-;5315:3;5353:5;5347:12;5380:6;5375:3;5368:19;5396:63;5452:6;5445:4;5440:3;5436:14;5429:4;5422:5;5418:16;5396:63;:::i;:::-;5513:2;5492:15;-1:-1:-1;;5488:29:1;5479:39;;;;5520:4;5475:50;;5323:208;-1:-1:-1;;5323:208:1:o;5697:276::-;5828:3;5866:6;5860:13;5882:53;5928:6;5923:3;5916:4;5908:6;5904:17;5882:53;:::i;:::-;5951:16;;;;;5836:137;-1:-1:-1;;5836:137:1:o;5978:470::-;6157:3;6195:6;6189:13;6211:53;6257:6;6252:3;6245:4;6237:6;6233:17;6211:53;:::i;:::-;6327:13;;6286:16;;;;6349:57;6327:13;6286:16;6383:4;6371:17;;6349:57;:::i;:::-;6422:20;;6165:283;-1:-1:-1;;;;6165:283:1:o;6871:488::-;-1:-1:-1;;;;;7140:15:1;;;7122:34;;7192:15;;7187:2;7172:18;;7165:43;7239:2;7224:18;;7217:34;;;7287:3;7282:2;7267:18;;7260:31;;;7065:4;;7308:45;;7333:19;;7325:6;7308:45;:::i;:::-;7300:53;7074:285;-1:-1:-1;;;;;;7074:285:1:o;7556:219::-;7705:2;7694:9;7687:21;7668:4;7725:44;7765:2;7754:9;7750:18;7742:6;7725:44;:::i;7780:444::-;8007:3;7996:9;7989:22;7970:4;8028:45;8068:3;8057:9;8053:19;8045:6;8028:45;:::i;:::-;8104:2;8089:18;;8082:34;;;;-1:-1:-1;8147:2:1;8132:18;;8125:34;;;;8202:14;8195:22;8190:2;8175:18;;;8168:50;8020:53;7979:245;-1:-1:-1;7979:245:1:o;8652:414::-;8854:2;8836:21;;;8893:2;8873:18;;;8866:30;8932:34;8927:2;8912:18;;8905:62;-1:-1:-1;;;8998:2:1;8983:18;;8976:48;9056:3;9041:19;;8826:240::o;11017:447::-;11267:2;11256:9;11249:21;11306:1;11301:2;11290:9;11286:18;11279:29;-1:-1:-1;;;11339:2:1;11328:9;11324:18;11317:37;11392:3;11385:4;11374:9;11370:20;11363:33;11230:4;11413:45;11453:3;11442:9;11438:19;11430:6;11413:45;:::i;16127:356::-;16329:2;16311:21;;;16348:18;;;16341:30;16407:34;16402:2;16387:18;;16380:62;16474:2;16459:18;;16301:182::o;18137:413::-;18339:2;18321:21;;;18378:2;18358:18;;;18351:30;18417:34;18412:2;18397:18;;18390:62;-1:-1:-1;;;18483:2:1;18468:18;;18461:47;18540:3;18525:19;;18311:239::o;20725:355::-;20927:2;20909:21;;;20966:2;20946:18;;;20939:30;21005:33;21000:2;20985:18;;20978:61;21071:2;21056:18;;20899:181::o;21085:544::-;21388:2;21377:9;21370:21;21351:4;21414:49;21459:2;21448:9;21444:18;5613:1;5601:14;;-1:-1:-1;;;5640:4:1;5631:14;;5624:34;5683:2;5674:12;;5591:101;21414:49;21499:22;;;21494:2;21479:18;;;21472:50;21546:1;21531:17;;-1:-1:-1;;;21564:15:1;;;21557:34;;;;-1:-1:-1;21620:2:1;21608:15;;21360:269::o;21634:544::-;21937:2;21926:9;21919:21;21900:4;21963:49;22008:2;21997:9;21993:18;5613:1;5601:14;;-1:-1:-1;;;5640:4:1;5631:14;;5624:34;5683:2;5674:12;;5591:101;21963:49;22048:22;;;22043:2;22028:18;;;22021:50;22095:1;22080:17;;-1:-1:-1;;;22113:15:1;;;22106:34;;;;-1:-1:-1;22169:2:1;22157:15;;21909:269::o;22183:551::-;22486:2;22475:9;22468:21;22449:4;22512:49;22557:2;22546:9;22542:18;5613:1;5601:14;;-1:-1:-1;;;5640:4:1;5631:14;;5624:34;5683:2;5674:12;;5591:101;22512:49;22597:22;;;22592:2;22577:18;;;22570:50;22644:2;22629:18;;-1:-1:-1;;;22663:15:1;;;22656:40;;;;-1:-1:-1;22725:2:1;22713:15;;22458:276::o;22921:128::-;22961:3;22992:1;22988:6;22985:1;22982:13;22979:2;;;22998:18;;:::i;:::-;-1:-1:-1;23034:9:1;;22969:80::o;23054:120::-;23094:1;23120;23110:2;;23125:18;;:::i;:::-;-1:-1:-1;23159:9:1;;23100:74::o;23179:125::-;23219:4;23247:1;23244;23241:8;23238:2;;;23252:18;;:::i;:::-;-1:-1:-1;23289:9:1;;23228:76::o;23309:258::-;23381:1;23391:113;23405:6;23402:1;23399:13;23391:113;;;23481:11;;;23475:18;23462:11;;;23455:39;23427:2;23420:10;23391:113;;;23522:6;23519:1;23516:13;23513:2;;;-1:-1:-1;;23557:1:1;23539:16;;23532:27;23362:205::o;23572:380::-;23651:1;23647:12;;;;23694;;;23715:2;;23769:4;23761:6;23757:17;23747:27;;23715:2;23822;23814:6;23811:14;23791:18;23788:38;23785:2;;;23868:10;23863:3;23859:20;23856:1;23849:31;23903:4;23900:1;23893:15;23931:4;23928:1;23921:15;23785:2;;23627:325;;;:::o;23957:135::-;23996:3;-1:-1:-1;;24017:17:1;;24014:2;;;24037:18;;:::i;:::-;-1:-1:-1;24084:1:1;24073:13;;24004:88::o;24097:112::-;24129:1;24155;24145:2;;24160:18;;:::i;:::-;-1:-1:-1;24194:9:1;;24135:74::o;24214:127::-;24275:10;24270:3;24266:20;24263:1;24256:31;24306:4;24303:1;24296:15;24330:4;24327:1;24320:15;24346:127;24407:10;24402:3;24398:20;24395:1;24388:31;24438:4;24435:1;24428:15;24462:4;24459:1;24452:15;24478:127;24539:10;24534:3;24530:20;24527:1;24520:31;24570:4;24567:1;24560:15;24594:4;24591:1;24584:15;24610:131;-1:-1:-1;;;;;24685:31:1;;24675:42;;24665:2;;24731:1;24728;24721:12;24746:131;-1:-1:-1;;;;;;24820:32:1;;24810:43;;24800:2;;24867:1;24864;24857:12

Swarm Source

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