ETH Price: $3,293.22 (+1.34%)
Gas: 2 Gwei

Token

CryptoJunks (CJUNK)
 

Overview

Max Total Supply

392 CJUNK

Holders

108

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 CJUNK
0xE6F2B600fd7df131b832F781174DB4CBc70a1131
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:
CryptoJunksOfficial

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: None
/*
 ..... ▄▄ ▄▄
......▄▌▒▒▀▒▒▐▄
.... ▐▒▒▒▒▒▒▒▒▒▌
... ▐▒▒▒▒▒▒▒▒▒▒▒▌
....▐▒▒▒▒▒▒▒▒▒▒▒▌
....▐▀▄▄▄▄▄▄▄▄▄▀▌
....▐░░░░░░░░░░░▌
....▐░░░░░░░░░░░▌
....▐░░░░░░░░░░░▌
....▐░░░░░░░░░░░▌
....▐░░░░░░░░░░░▌
....▐░░░░░░░░░░░▌
....▐░░░░░░░░░░░▌
....▐░░░░░░░░░░░▌
....▐░░░░░░░░░░░▌
....▐░░░░░░░░░░░▌
....▐░░░░░░░░░░░▌
...▄█▓░░░░░░░░░▓█▄
..▄▀░░░░░░░░░░░░░ ▀▄
.▐░░░░░░░▀▄▒▄▀░░░░░░▌
▐░░░░░░░▒▒▐▒▒░░░░░░░▌
▐▒░░░░░▒▒▒▐▒▒▒░░░░░▒▌
.▀▄▒▒▒▒▒▄▀▒▀▄▒▒▒▒▒▄▀
.. ▀▀▀▀▀ ▀▀▀▀▀

CRYPTO JUNKS BABY, check out the Genesis collection https://opensea.io/collection/crypto-junks.
*/

interface IERC165 {
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/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/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/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



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

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

// 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/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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _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 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/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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

contract CryptoJunksOfficial is Ownable, ERC721 {
  
  using SafeMath for uint256;
  using Counters for Counters.Counter;
  Counters.Counter private _tokenIdCounter;
  
  uint256 public mintPrice = .01 ether;
  uint256 public maxSupply = 6969;
  uint256 public freeMintAmount = 1500;
  uint256 private mintLimit = 10;
  string private baseURI;
  bool public publicSaleState = false;
  bool public revealed = true;
  string private base_URI_tail = ".json";
  

  constructor() ERC721("CryptoJunks", "CJUNK") { 
}
  function _baseURI() internal view override returns (string memory) {
    return baseURI;
  }

  function setBaseURI(string calldata newBaseURI) external onlyOwner {
      baseURI = newBaseURI;
  }

  function tokenURI(uint256 _tokenId) public view override returns (string memory) {
    require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

  string memory currentBaseURI = _baseURI();
  return string(abi.encodePacked(currentBaseURI, Strings.toString(_tokenId), base_URI_tail));
  }  

  function reveal() public onlyOwner returns(bool) {
    revealed = !revealed;
    return revealed;
  }
      
  function changeStatePublicSale() public onlyOwner returns(bool) {
    publicSaleState = !publicSaleState;
    return publicSaleState;
  }

  function mint(uint numberOfTokens) external payable {
    require(publicSaleState, "Sale is not active");
    require(_tokenIdCounter.current() <= maxSupply, "Not enough tokens left");
    require(numberOfTokens <= mintLimit, "Too many tokens for one transaction");
    if(_tokenIdCounter.current() >= freeMintAmount){
        require(msg.value >= mintPrice.mul(numberOfTokens), "Insufficient payment");
    }
    mintInternal(msg.sender, numberOfTokens);
  }
 
  function mintInternal(address wallet, uint amount) internal {
    uint currentTokenSupply = _tokenIdCounter.current();
    require(currentTokenSupply.add(amount) <= maxSupply, "Not enough tokens left");
        for(uint i = 0; i< amount; i++){
        currentTokenSupply++;
        _safeMint(wallet, currentTokenSupply);
        _tokenIdCounter.increment();
    }
  }
  
  function reserve(uint256 numberOfTokens) external onlyOwner {
    mintInternal(msg.sender, numberOfTokens);
  }
  function setfreeAmount(uint16 _newFreeMints) public onlyOwner() {
    freeMintAmount = _newFreeMints;
  }

  function totalSupply() public view returns (uint){
    return _tokenIdCounter.current();
  }

  function withdraw() public onlyOwner {
    require(address(this).balance > 0, "No balance to withdraw");
    payable(owner()).transfer(address(this).balance); 
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"changeStatePublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintAmount","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_newFreeMints","type":"uint16"}],"name":"setfreeAmount","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

662386f26fc10000600855611b396009556105dc600a908155600b55600d805461ffff191661010017905560c06040526005608081905264173539b7b760d91b60a09081526200005391600e919062000146565b503480156200006157600080fd5b506040518060400160405280600b81526020016a43727970746f4a756e6b7360a81b81525060405180604001604052806005815260200164434a554e4b60d81b815250620000be620000b8620000f260201b60201c565b620000f6565b8151620000d390600190602085019062000146565b508051620000e990600290602084019062000146565b50505062000229565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200015490620001ec565b90600052602060002090601f016020900481019282620001785760008555620001c3565b82601f106200019357805160ff1916838001178555620001c3565b82800160010185558215620001c3579182015b82811115620001c3578251825591602001919060010190620001a6565b50620001d1929150620001d5565b5090565b5b80821115620001d15760008155600101620001d6565b600181811c908216806200020157607f821691505b602082108114156200022357634e487b7160e01b600052602260045260246000fd5b50919050565b611e1c80620002396000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063d1cbf17d11610064578063d1cbf17d146104c5578063d5abeb01146104da578063e985e9c5146104f0578063f2fde38b1461053957600080fd5b8063a22cb46514610450578063a475b5dd14610470578063b88d4fde14610485578063c87b56dd146104a557600080fd5b8063819b25ba116100d1578063819b25ba146103ea5780638da5cb5b1461040a57806395d89b4114610428578063a0712d681461043d57600080fd5b806370a082311461039b578063715018a6146103bb57806371adc02a146103d057600080fd5b80633a467e3d11610164578063518302271161013e578063518302271461032657806355f804b3146103455780636352211e146103655780636817c76c1461038557600080fd5b80633a467e3d146102db5780633ccfd60b146102f157806342842e0e1461030657600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd1461029b5780632d46d6ff146102bb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046117ad565b610559565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105ab565b6040516101f39190611822565b34801561022a57600080fd5b5061023e610239366004611835565b61063d565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b5061027661027136600461186a565b6106d7565b005b34801561028457600080fd5b5061028d6107ed565b6040519081526020016101f3565b3480156102a757600080fd5b506102766102b6366004611894565b6107fd565b3480156102c757600080fd5b506102766102d63660046118d0565b61082e565b3480156102e757600080fd5b5061028d600a5481565b3480156102fd57600080fd5b50610276610861565b34801561031257600080fd5b50610276610321366004611894565b610911565b34801561033257600080fd5b50600d546101e790610100900460ff1681565b34801561035157600080fd5b506102766103603660046118f4565b61092c565b34801561037157600080fd5b5061023e610380366004611835565b610962565b34801561039157600080fd5b5061028d60085481565b3480156103a757600080fd5b5061028d6103b6366004611966565b6109d9565b3480156103c757600080fd5b50610276610a60565b3480156103dc57600080fd5b50600d546101e79060ff1681565b3480156103f657600080fd5b50610276610405366004611835565b610a96565b34801561041657600080fd5b506000546001600160a01b031661023e565b34801561043457600080fd5b50610211610aca565b61027661044b366004611835565b610ad9565b34801561045c57600080fd5b5061027661046b366004611981565b610c29565b34801561047c57600080fd5b506101e7610cee565b34801561049157600080fd5b506102766104a03660046119d3565b610d40565b3480156104b157600080fd5b506102116104c0366004611835565b610d78565b3480156104d157600080fd5b506101e7610e38565b3480156104e657600080fd5b5061028d60095481565b3480156104fc57600080fd5b506101e761050b366004611aaf565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561054557600080fd5b50610276610554366004611966565b610e7d565b60006001600160e01b031982166380ac58cd60e01b148061058a57506001600160e01b03198216635b5e139f60e01b145b806105a557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105ba90611ae2565b80601f01602080910402602001604051908101604052809291908181526020018280546105e690611ae2565b80156106335780601f1061060857610100808354040283529160200191610633565b820191906000526020600020905b81548152906001019060200180831161061657829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166106bb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106e282610962565b9050806001600160a01b0316836001600160a01b031614156107505760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106b2565b336001600160a01b038216148061076c575061076c813361050b565b6107de5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106b2565b6107e88383610f15565b505050565b60006107f860075490565b905090565b6108073382610f83565b6108235760405162461bcd60e51b81526004016106b290611b1d565b6107e883838361107a565b6000546001600160a01b031633146108585760405162461bcd60e51b81526004016106b290611b6e565b61ffff16600a55565b6000546001600160a01b0316331461088b5760405162461bcd60e51b81526004016106b290611b6e565b600047116108d45760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b60448201526064016106b2565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f1935050505015801561090e573d6000803e3d6000fd5b50565b6107e883838360405180602001604052806000815250610d40565b6000546001600160a01b031633146109565760405162461bcd60e51b81526004016106b290611b6e565b6107e8600c83836116fe565b6000818152600360205260408120546001600160a01b0316806105a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106b2565b60006001600160a01b038216610a445760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106b2565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610a8a5760405162461bcd60e51b81526004016106b290611b6e565b610a94600061121a565b565b6000546001600160a01b03163314610ac05760405162461bcd60e51b81526004016106b290611b6e565b61090e338261126a565b6060600280546105ba90611ae2565b600d5460ff16610b205760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016106b2565b6009546007541115610b6d5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016106b2565b600b54811115610bcb5760405162461bcd60e51b815260206004820152602360248201527f546f6f206d616e7920746f6b656e7320666f72206f6e65207472616e7361637460448201526234b7b760e91b60648201526084016106b2565b600a5460075410610ac057600854610be3908261130e565b341015610ac05760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b60448201526064016106b2565b6001600160a01b038216331415610c825760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b2565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080546001600160a01b03163314610d195760405162461bcd60e51b81526004016106b290611b6e565b50600d805460ff610100808304821615810261ff0019909316929092179283905591041690565b610d4a3383610f83565b610d665760405162461bcd60e51b81526004016106b290611b1d565b610d7284848484611321565b50505050565b6000818152600360205260409020546060906001600160a01b0316610df75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106b2565b6000610e01611354565b905080610e0d84611363565b600e604051602001610e2193929190611ba3565b604051602081830303815290604052915050919050565b600080546001600160a01b03163314610e635760405162461bcd60e51b81526004016106b290611b6e565b50600d805460ff19811660ff918216159081179092551690565b6000546001600160a01b03163314610ea75760405162461bcd60e51b81526004016106b290611b6e565b6001600160a01b038116610f0c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b2565b61090e8161121a565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f4a82610962565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316610ffc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b2565b600061100783610962565b9050806001600160a01b0316846001600160a01b031614806110425750836001600160a01b03166110378461063d565b6001600160a01b0316145b8061107257506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661108d82610962565b6001600160a01b0316146110f55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106b2565b6001600160a01b0382166111575760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106b2565b611162600082610f15565b6001600160a01b038316600090815260046020526040812080546001929061118b908490611c7d565b90915550506001600160a01b03821660009081526004602052604081208054600192906111b9908490611c94565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061127560075490565b6009549091506112858284611461565b11156112cc5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016106b2565b60005b82811015610d7257816112e181611cac565b9250506112ee848361146d565b6112fc600780546001019055565b8061130681611cac565b9150506112cf565b600061131a8284611cc7565b9392505050565b61132c84848461107a565b6113388484848461148b565b610d725760405162461bcd60e51b81526004016106b290611ce6565b6060600c80546105ba90611ae2565b6060816113875750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113b1578061139b81611cac565b91506113aa9050600a83611d4e565b915061138b565b60008167ffffffffffffffff8111156113cc576113cc6119bd565b6040519080825280601f01601f1916602001820160405280156113f6576020820181803683370190505b5090505b84156110725761140b600183611c7d565b9150611418600a86611d62565b611423906030611c94565b60f81b81838151811061143857611438611d76565b60200101906001600160f81b031916908160001a90535061145a600a86611d4e565b94506113fa565b600061131a8284611c94565b611487828260405180602001604052806000815250611589565b5050565b60006001600160a01b0384163b1561157e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114cf903390899088908890600401611d8c565b6020604051808303816000875af192505050801561150a575060408051601f3d908101601f1916820190925261150791810190611dc9565b60015b611564573d808015611538576040519150601f19603f3d011682016040523d82523d6000602084013e61153d565b606091505b50805161155c5760405162461bcd60e51b81526004016106b290611ce6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611072565b506001949350505050565b61159383836115bc565b6115a0600084848461148b565b6107e85760405162461bcd60e51b81526004016106b290611ce6565b6001600160a01b0382166116125760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b2565b6000818152600360205260409020546001600160a01b0316156116775760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b2565b6001600160a01b03821660009081526004602052604081208054600192906116a0908490611c94565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461170a90611ae2565b90600052602060002090601f01602090048101928261172c5760008555611772565b82601f106117455782800160ff19823516178555611772565b82800160010185558215611772579182015b82811115611772578235825591602001919060010190611757565b5061177e929150611782565b5090565b5b8082111561177e5760008155600101611783565b6001600160e01b03198116811461090e57600080fd5b6000602082840312156117bf57600080fd5b813561131a81611797565b60005b838110156117e55781810151838201526020016117cd565b83811115610d725750506000910152565b6000815180845261180e8160208601602086016117ca565b601f01601f19169290920160200192915050565b60208152600061131a60208301846117f6565b60006020828403121561184757600080fd5b5035919050565b80356001600160a01b038116811461186557600080fd5b919050565b6000806040838503121561187d57600080fd5b6118868361184e565b946020939093013593505050565b6000806000606084860312156118a957600080fd5b6118b28461184e565b92506118c06020850161184e565b9150604084013590509250925092565b6000602082840312156118e257600080fd5b813561ffff8116811461131a57600080fd5b6000806020838503121561190757600080fd5b823567ffffffffffffffff8082111561191f57600080fd5b818501915085601f83011261193357600080fd5b81358181111561194257600080fd5b86602082850101111561195457600080fd5b60209290920196919550909350505050565b60006020828403121561197857600080fd5b61131a8261184e565b6000806040838503121561199457600080fd5b61199d8361184e565b9150602083013580151581146119b257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156119e957600080fd5b6119f28561184e565b9350611a006020860161184e565b925060408501359150606085013567ffffffffffffffff80821115611a2457600080fd5b818701915087601f830112611a3857600080fd5b813581811115611a4a57611a4a6119bd565b604051601f8201601f19908116603f01168101908382118183101715611a7257611a726119bd565b816040528281528a6020848701011115611a8b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611ac257600080fd5b611acb8361184e565b9150611ad96020840161184e565b90509250929050565b600181811c90821680611af657607f821691505b60208210811415611b1757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600084516020611bb68285838a016117ca565b855191840191611bc98184848a016117ca565b8554920191600090600181811c9080831680611be657607f831692505b858310811415611c0457634e487b7160e01b85526022600452602485fd5b808015611c185760018114611c2957611c56565b60ff19851688528388019550611c56565b60008b81526020902060005b85811015611c4e5781548a820152908401908801611c35565b505083880195505b50939b9a5050505050505050505050565b634e487b7160e01b600052601160045260246000fd5b600082821015611c8f57611c8f611c67565b500390565b60008219821115611ca757611ca7611c67565b500190565b6000600019821415611cc057611cc0611c67565b5060010190565b6000816000190483118215151615611ce157611ce1611c67565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611d5d57611d5d611d38565b500490565b600082611d7157611d71611d38565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dbf908301846117f6565b9695505050505050565b600060208284031215611ddb57600080fd5b815161131a8161179756fea26469706673582212207309bb562124715c98bf6018f35d8fe679587fd6ec1edad548397d970c36fc0364736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063d1cbf17d11610064578063d1cbf17d146104c5578063d5abeb01146104da578063e985e9c5146104f0578063f2fde38b1461053957600080fd5b8063a22cb46514610450578063a475b5dd14610470578063b88d4fde14610485578063c87b56dd146104a557600080fd5b8063819b25ba116100d1578063819b25ba146103ea5780638da5cb5b1461040a57806395d89b4114610428578063a0712d681461043d57600080fd5b806370a082311461039b578063715018a6146103bb57806371adc02a146103d057600080fd5b80633a467e3d11610164578063518302271161013e578063518302271461032657806355f804b3146103455780636352211e146103655780636817c76c1461038557600080fd5b80633a467e3d146102db5780633ccfd60b146102f157806342842e0e1461030657600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd1461029b5780632d46d6ff146102bb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046117ad565b610559565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105ab565b6040516101f39190611822565b34801561022a57600080fd5b5061023e610239366004611835565b61063d565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b5061027661027136600461186a565b6106d7565b005b34801561028457600080fd5b5061028d6107ed565b6040519081526020016101f3565b3480156102a757600080fd5b506102766102b6366004611894565b6107fd565b3480156102c757600080fd5b506102766102d63660046118d0565b61082e565b3480156102e757600080fd5b5061028d600a5481565b3480156102fd57600080fd5b50610276610861565b34801561031257600080fd5b50610276610321366004611894565b610911565b34801561033257600080fd5b50600d546101e790610100900460ff1681565b34801561035157600080fd5b506102766103603660046118f4565b61092c565b34801561037157600080fd5b5061023e610380366004611835565b610962565b34801561039157600080fd5b5061028d60085481565b3480156103a757600080fd5b5061028d6103b6366004611966565b6109d9565b3480156103c757600080fd5b50610276610a60565b3480156103dc57600080fd5b50600d546101e79060ff1681565b3480156103f657600080fd5b50610276610405366004611835565b610a96565b34801561041657600080fd5b506000546001600160a01b031661023e565b34801561043457600080fd5b50610211610aca565b61027661044b366004611835565b610ad9565b34801561045c57600080fd5b5061027661046b366004611981565b610c29565b34801561047c57600080fd5b506101e7610cee565b34801561049157600080fd5b506102766104a03660046119d3565b610d40565b3480156104b157600080fd5b506102116104c0366004611835565b610d78565b3480156104d157600080fd5b506101e7610e38565b3480156104e657600080fd5b5061028d60095481565b3480156104fc57600080fd5b506101e761050b366004611aaf565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561054557600080fd5b50610276610554366004611966565b610e7d565b60006001600160e01b031982166380ac58cd60e01b148061058a57506001600160e01b03198216635b5e139f60e01b145b806105a557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105ba90611ae2565b80601f01602080910402602001604051908101604052809291908181526020018280546105e690611ae2565b80156106335780601f1061060857610100808354040283529160200191610633565b820191906000526020600020905b81548152906001019060200180831161061657829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166106bb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106e282610962565b9050806001600160a01b0316836001600160a01b031614156107505760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106b2565b336001600160a01b038216148061076c575061076c813361050b565b6107de5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106b2565b6107e88383610f15565b505050565b60006107f860075490565b905090565b6108073382610f83565b6108235760405162461bcd60e51b81526004016106b290611b1d565b6107e883838361107a565b6000546001600160a01b031633146108585760405162461bcd60e51b81526004016106b290611b6e565b61ffff16600a55565b6000546001600160a01b0316331461088b5760405162461bcd60e51b81526004016106b290611b6e565b600047116108d45760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b60448201526064016106b2565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f1935050505015801561090e573d6000803e3d6000fd5b50565b6107e883838360405180602001604052806000815250610d40565b6000546001600160a01b031633146109565760405162461bcd60e51b81526004016106b290611b6e565b6107e8600c83836116fe565b6000818152600360205260408120546001600160a01b0316806105a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106b2565b60006001600160a01b038216610a445760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106b2565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610a8a5760405162461bcd60e51b81526004016106b290611b6e565b610a94600061121a565b565b6000546001600160a01b03163314610ac05760405162461bcd60e51b81526004016106b290611b6e565b61090e338261126a565b6060600280546105ba90611ae2565b600d5460ff16610b205760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016106b2565b6009546007541115610b6d5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016106b2565b600b54811115610bcb5760405162461bcd60e51b815260206004820152602360248201527f546f6f206d616e7920746f6b656e7320666f72206f6e65207472616e7361637460448201526234b7b760e91b60648201526084016106b2565b600a5460075410610ac057600854610be3908261130e565b341015610ac05760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b60448201526064016106b2565b6001600160a01b038216331415610c825760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b2565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080546001600160a01b03163314610d195760405162461bcd60e51b81526004016106b290611b6e565b50600d805460ff610100808304821615810261ff0019909316929092179283905591041690565b610d4a3383610f83565b610d665760405162461bcd60e51b81526004016106b290611b1d565b610d7284848484611321565b50505050565b6000818152600360205260409020546060906001600160a01b0316610df75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106b2565b6000610e01611354565b905080610e0d84611363565b600e604051602001610e2193929190611ba3565b604051602081830303815290604052915050919050565b600080546001600160a01b03163314610e635760405162461bcd60e51b81526004016106b290611b6e565b50600d805460ff19811660ff918216159081179092551690565b6000546001600160a01b03163314610ea75760405162461bcd60e51b81526004016106b290611b6e565b6001600160a01b038116610f0c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b2565b61090e8161121a565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f4a82610962565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316610ffc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b2565b600061100783610962565b9050806001600160a01b0316846001600160a01b031614806110425750836001600160a01b03166110378461063d565b6001600160a01b0316145b8061107257506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661108d82610962565b6001600160a01b0316146110f55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106b2565b6001600160a01b0382166111575760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106b2565b611162600082610f15565b6001600160a01b038316600090815260046020526040812080546001929061118b908490611c7d565b90915550506001600160a01b03821660009081526004602052604081208054600192906111b9908490611c94565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061127560075490565b6009549091506112858284611461565b11156112cc5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016106b2565b60005b82811015610d7257816112e181611cac565b9250506112ee848361146d565b6112fc600780546001019055565b8061130681611cac565b9150506112cf565b600061131a8284611cc7565b9392505050565b61132c84848461107a565b6113388484848461148b565b610d725760405162461bcd60e51b81526004016106b290611ce6565b6060600c80546105ba90611ae2565b6060816113875750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113b1578061139b81611cac565b91506113aa9050600a83611d4e565b915061138b565b60008167ffffffffffffffff8111156113cc576113cc6119bd565b6040519080825280601f01601f1916602001820160405280156113f6576020820181803683370190505b5090505b84156110725761140b600183611c7d565b9150611418600a86611d62565b611423906030611c94565b60f81b81838151811061143857611438611d76565b60200101906001600160f81b031916908160001a90535061145a600a86611d4e565b94506113fa565b600061131a8284611c94565b611487828260405180602001604052806000815250611589565b5050565b60006001600160a01b0384163b1561157e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114cf903390899088908890600401611d8c565b6020604051808303816000875af192505050801561150a575060408051601f3d908101601f1916820190925261150791810190611dc9565b60015b611564573d808015611538576040519150601f19603f3d011682016040523d82523d6000602084013e61153d565b606091505b50805161155c5760405162461bcd60e51b81526004016106b290611ce6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611072565b506001949350505050565b61159383836115bc565b6115a0600084848461148b565b6107e85760405162461bcd60e51b81526004016106b290611ce6565b6001600160a01b0382166116125760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b2565b6000818152600360205260409020546001600160a01b0316156116775760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b2565b6001600160a01b03821660009081526004602052604081208054600192906116a0908490611c94565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461170a90611ae2565b90600052602060002090601f01602090048101928261172c5760008555611772565b82601f106117455782800160ff19823516178555611772565b82800160010185558215611772579182015b82811115611772578235825591602001919060010190611757565b5061177e929150611782565b5090565b5b8082111561177e5760008155600101611783565b6001600160e01b03198116811461090e57600080fd5b6000602082840312156117bf57600080fd5b813561131a81611797565b60005b838110156117e55781810151838201526020016117cd565b83811115610d725750506000910152565b6000815180845261180e8160208601602086016117ca565b601f01601f19169290920160200192915050565b60208152600061131a60208301846117f6565b60006020828403121561184757600080fd5b5035919050565b80356001600160a01b038116811461186557600080fd5b919050565b6000806040838503121561187d57600080fd5b6118868361184e565b946020939093013593505050565b6000806000606084860312156118a957600080fd5b6118b28461184e565b92506118c06020850161184e565b9150604084013590509250925092565b6000602082840312156118e257600080fd5b813561ffff8116811461131a57600080fd5b6000806020838503121561190757600080fd5b823567ffffffffffffffff8082111561191f57600080fd5b818501915085601f83011261193357600080fd5b81358181111561194257600080fd5b86602082850101111561195457600080fd5b60209290920196919550909350505050565b60006020828403121561197857600080fd5b61131a8261184e565b6000806040838503121561199457600080fd5b61199d8361184e565b9150602083013580151581146119b257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156119e957600080fd5b6119f28561184e565b9350611a006020860161184e565b925060408501359150606085013567ffffffffffffffff80821115611a2457600080fd5b818701915087601f830112611a3857600080fd5b813581811115611a4a57611a4a6119bd565b604051601f8201601f19908116603f01168101908382118183101715611a7257611a726119bd565b816040528281528a6020848701011115611a8b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611ac257600080fd5b611acb8361184e565b9150611ad96020840161184e565b90509250929050565b600181811c90821680611af657607f821691505b60208210811415611b1757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600084516020611bb68285838a016117ca565b855191840191611bc98184848a016117ca565b8554920191600090600181811c9080831680611be657607f831692505b858310811415611c0457634e487b7160e01b85526022600452602485fd5b808015611c185760018114611c2957611c56565b60ff19851688528388019550611c56565b60008b81526020902060005b85811015611c4e5781548a820152908401908801611c35565b505083880195505b50939b9a5050505050505050505050565b634e487b7160e01b600052601160045260246000fd5b600082821015611c8f57611c8f611c67565b500390565b60008219821115611ca757611ca7611c67565b500190565b6000600019821415611cc057611cc0611c67565b5060010190565b6000816000190483118215151615611ce157611ce1611c67565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611d5d57611d5d611d38565b500490565b600082611d7157611d71611d38565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dbf908301846117f6565b9695505050505050565b600060208284031215611ddb57600080fd5b815161131a8161179756fea26469706673582212207309bb562124715c98bf6018f35d8fe679587fd6ec1edad548397d970c36fc0364736f6c634300080a0033

Deployed Bytecode Sourcemap

43910:2682:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29488:305;;;;;;;;;;-1:-1:-1;29488:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;29488:305:0;;;;;;;;30433:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31992:221::-;;;;;;;;;;-1:-1:-1;31992:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;31992:221:0;1528:203:1;31515:411:0;;;;;;;;;;-1:-1:-1;31515:411:0;;;;;:::i;:::-;;:::i;:::-;;46321:94;;;;;;;;;;;;;:::i;:::-;;;2319:25:1;;;2307:2;2292:18;46321:94:0;2173:177:1;32882:339:0;;;;;;;;;;-1:-1:-1;32882:339:0;;;;;:::i;:::-;;:::i;46208:107::-;;;;;;;;;;-1:-1:-1;46208:107:0;;;;;:::i;:::-;;:::i;44164:36::-;;;;;;;;;;;;;;;;46421:168;;;;;;;;;;;;;:::i;33292:185::-;;;;;;;;;;-1:-1:-1;33292:185:0;;;;;:::i;:::-;;:::i;44307:27::-;;;;;;;;;;-1:-1:-1;44307:27:0;;;;;;;;;;;44542:102;;;;;;;;;;-1:-1:-1;44542:102:0;;;;;:::i;:::-;;:::i;30127:239::-;;;;;;;;;;-1:-1:-1;30127:239:0;;;;;:::i;:::-;;:::i;44087:36::-;;;;;;;;;;;;;;;;29857:208;;;;;;;;;;-1:-1:-1;29857:208:0;;;;;:::i;:::-;;:::i;43254:94::-;;;;;;;;;;;;;:::i;44267:35::-;;;;;;;;;;-1:-1:-1;44267:35:0;;;;;;;;46091:113;;;;;;;;;;-1:-1:-1;46091:113:0;;;;;:::i;:::-;;:::i;42603:87::-;;;;;;;;;;-1:-1:-1;42649:7:0;42676:6;-1:-1:-1;;;;;42676:6:0;42603:87;;30602:104;;;;;;;;;;;;;:::i;45234:467::-;;;;;;:::i;:::-;;:::i;32285:295::-;;;;;;;;;;-1:-1:-1;32285:295:0;;;;;:::i;:::-;;:::i;44972:104::-;;;;;;;;;;;;;:::i;33548:328::-;;;;;;;;;;-1:-1:-1;33548:328:0;;;;;:::i;:::-;;:::i;44650:314::-;;;;;;;;;;-1:-1:-1;44650:314:0;;;;;:::i;:::-;;:::i;45088:140::-;;;;;;;;;;;;;:::i;44128:31::-;;;;;;;;;;;;;;;;32651:164;;;;;;;;;;-1:-1:-1;32651:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32772:25:0;;;32748:4;32772:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32651:164;43503:192;;;;;;;;;;-1:-1:-1;43503:192:0;;;;;:::i;:::-;;:::i;29488:305::-;29590:4;-1:-1:-1;;;;;;29627:40:0;;-1:-1:-1;;;29627:40:0;;:105;;-1:-1:-1;;;;;;;29684:48:0;;-1:-1:-1;;;29684:48:0;29627:105;:158;;;-1:-1:-1;;;;;;;;;;7057:40:0;;;29749:36;29607:178;29488:305;-1:-1:-1;;29488:305:0:o;30433:100::-;30487:13;30520:5;30513:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30433:100;:::o;31992:221::-;32068:7;35475:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35475:16:0;32088:73;;;;-1:-1:-1;;;32088:73:0;;6232:2:1;32088:73:0;;;6214:21:1;6271:2;6251:18;;;6244:30;6310:34;6290:18;;;6283:62;-1:-1:-1;;;6361:18:1;;;6354:42;6413:19;;32088:73:0;;;;;;;;;-1:-1:-1;32181:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32181:24:0;;31992:221::o;31515:411::-;31596:13;31612:23;31627:7;31612:14;:23::i;:::-;31596:39;;31660:5;-1:-1:-1;;;;;31654:11:0;:2;-1:-1:-1;;;;;31654:11:0;;;31646:57;;;;-1:-1:-1;;;31646:57:0;;6645:2:1;31646:57:0;;;6627:21:1;6684:2;6664:18;;;6657:30;6723:34;6703:18;;;6696:62;-1:-1:-1;;;6774:18:1;;;6767:31;6815:19;;31646:57:0;6443:397:1;31646:57:0;19671:10;-1:-1:-1;;;;;31738:21:0;;;;:62;;-1:-1:-1;31763:37:0;31780:5;19671:10;32651:164;:::i;31763:37::-;31716:168;;;;-1:-1:-1;;;31716:168:0;;7047:2:1;31716:168:0;;;7029:21:1;7086:2;7066:18;;;7059:30;7125:34;7105:18;;;7098:62;7196:26;7176:18;;;7169:54;7240:19;;31716:168:0;6845:420:1;31716:168:0;31897:21;31906:2;31910:7;31897:8;:21::i;:::-;31585:341;31515:411;;:::o;46321:94::-;46365:4;46384:25;:15;27677:14;;27585:114;46384:25;46377:32;;46321:94;:::o;32882:339::-;33077:41;19671:10;33110:7;33077:18;:41::i;:::-;33069:103;;;;-1:-1:-1;;;33069:103:0;;;;;;;:::i;:::-;33185:28;33195:4;33201:2;33205:7;33185:9;:28::i;46208:107::-;42649:7;42676:6;-1:-1:-1;;;;;42676:6:0;19671:10;42823:23;42815:68;;;;-1:-1:-1;;;42815:68:0;;;;;;;:::i;:::-;46279:30:::1;;:14;:30:::0;46208:107::o;46421:168::-;42649:7;42676:6;-1:-1:-1;;;;;42676:6:0;19671:10;42823:23;42815:68;;;;-1:-1:-1;;;42815:68:0;;;;;;;:::i;:::-;46497:1:::1;46473:21;:25;46465:60;;;::::0;-1:-1:-1;;;46465:60:0;;8251:2:1;46465:60:0::1;::::0;::::1;8233:21:1::0;8290:2;8270:18;;;8263:30;-1:-1:-1;;;8309:18:1;;;8302:52;8371:18;;46465:60:0::1;8049:346:1::0;46465:60:0::1;42649:7:::0;42676:6;;46532:48:::1;::::0;-1:-1:-1;;;;;42676:6:0;;;;46558:21:::1;46532:48:::0;::::1;;;::::0;46558:21;;46532:48;42649:7;46532:48;46558:21;42676:6;46532:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;46421:168::o:0;33292:185::-;33430:39;33447:4;33453:2;33457:7;33430:39;;;;;;;;;;;;:16;:39::i;44542:102::-;42649:7;42676:6;-1:-1:-1;;;;;42676:6:0;19671:10;42823:23;42815:68;;;;-1:-1:-1;;;42815:68:0;;;;;;;:::i;:::-;44618:20:::1;:7;44628:10:::0;;44618:20:::1;:::i;30127:239::-:0;30199:7;30235:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30235:16:0;30270:19;30262:73;;;;-1:-1:-1;;;30262:73:0;;8602:2:1;30262:73:0;;;8584:21:1;8641:2;8621:18;;;8614:30;8680:34;8660:18;;;8653:62;-1:-1:-1;;;8731:18:1;;;8724:39;8780:19;;30262:73:0;8400:405:1;29857:208:0;29929:7;-1:-1:-1;;;;;29957:19:0;;29949:74;;;;-1:-1:-1;;;29949:74:0;;9012:2:1;29949:74:0;;;8994:21:1;9051:2;9031:18;;;9024:30;9090:34;9070:18;;;9063:62;-1:-1:-1;;;9141:18:1;;;9134:40;9191:19;;29949:74:0;8810:406:1;29949:74:0;-1:-1:-1;;;;;;30041:16:0;;;;;:9;:16;;;;;;;29857:208::o;43254:94::-;42649:7;42676:6;-1:-1:-1;;;;;42676:6:0;19671:10;42823:23;42815:68;;;;-1:-1:-1;;;42815:68:0;;;;;;;:::i;:::-;43319:21:::1;43337:1;43319:9;:21::i;:::-;43254:94::o:0;46091:113::-;42649:7;42676:6;-1:-1:-1;;;;;42676:6:0;19671:10;42823:23;42815:68;;;;-1:-1:-1;;;42815:68:0;;;;;;;:::i;:::-;46158:40:::1;46171:10;46183:14;46158:12;:40::i;30602:104::-:0;30658:13;30691:7;30684:14;;;;;:::i;45234:467::-;45301:15;;;;45293:46;;;;-1:-1:-1;;;45293:46:0;;9423:2:1;45293:46:0;;;9405:21:1;9462:2;9442:18;;;9435:30;-1:-1:-1;;;9481:18:1;;;9474:48;9539:18;;45293:46:0;9221:342:1;45293:46:0;45383:9;;45354:15;27677:14;45354:38;;45346:73;;;;-1:-1:-1;;;45346:73:0;;9770:2:1;45346:73:0;;;9752:21:1;9809:2;9789:18;;;9782:30;-1:-1:-1;;;9828:18:1;;;9821:52;9890:18;;45346:73:0;9568:346:1;45346:73:0;45452:9;;45434:14;:27;;45426:75;;;;-1:-1:-1;;;45426:75:0;;10121:2:1;45426:75:0;;;10103:21:1;10160:2;10140:18;;;10133:30;10199:34;10179:18;;;10172:62;-1:-1:-1;;;10250:18:1;;;10243:33;10293:19;;45426:75:0;9919:399:1;45426:75:0;45540:14;;45511:15;27677:14;45511:43;45508:141;;45587:9;;:29;;45601:14;45587:13;:29::i;:::-;45574:9;:42;;45566:75;;;;-1:-1:-1;;;45566:75:0;;10525:2:1;45566:75:0;;;10507:21:1;10564:2;10544:18;;;10537:30;-1:-1:-1;;;10583:18:1;;;10576:50;10643:18;;45566:75:0;10323:344:1;32285:295:0;-1:-1:-1;;;;;32388:24:0;;19671:10;32388:24;;32380:62;;;;-1:-1:-1;;;32380:62:0;;10874:2:1;32380:62:0;;;10856:21:1;10913:2;10893:18;;;10886:30;10952:27;10932:18;;;10925:55;10997:18;;32380:62:0;10672:349:1;32380:62:0;19671:10;32455:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32455:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32455:53:0;;;;;;;;;;32524:48;;540:41:1;;;32455:42:0;;19671:10;32524:48;;513:18:1;32524:48:0;;;;;;;32285:295;;:::o;44972:104::-;45015:4;42676:6;;-1:-1:-1;;;;;42676:6:0;19671:10;42823:23;42815:68;;;;-1:-1:-1;;;42815:68:0;;;;;;;:::i;:::-;-1:-1:-1;45040:8:0::1;::::0;;::::1;;::::0;;::::1;::::0;::::1;45039:9;45028:20:::0;::::1;-1:-1:-1::0;;45028:20:0;;::::1;::::0;;;::::1;::::0;;;;45062:8;::::1;;44972:104:::0;:::o;33548:328::-;33723:41;19671:10;33756:7;33723:18;:41::i;:::-;33715:103;;;;-1:-1:-1;;;33715:103:0;;;;;;;:::i;:::-;33829:39;33843:4;33849:2;33853:7;33862:5;33829:13;:39::i;:::-;33548:328;;;;:::o;44650:314::-;35451:4;35475:16;;;:7;:16;;;;;;44716:13;;-1:-1:-1;;;;;35475:16:0;44738:77;;;;-1:-1:-1;;;44738:77:0;;11228:2:1;44738:77:0;;;11210:21:1;11267:2;11247:18;;;11240:30;11306:34;11286:18;;;11279:62;-1:-1:-1;;;11357:18:1;;;11350:45;11412:19;;44738:77:0;11026:411:1;44738:77:0;44822:28;44853:10;:8;:10::i;:::-;44822:41;;44899:14;44915:26;44932:8;44915:16;:26::i;:::-;44943:13;44882:75;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44868:90;;;44650:314;;;:::o;45088:140::-;45146:4;42676:6;;-1:-1:-1;;;;;42676:6:0;19671:10;42823:23;42815:68;;;;-1:-1:-1;;;42815:68:0;;;;;;;:::i;:::-;-1:-1:-1;45178:15:0::1;::::0;;-1:-1:-1;;45159:34:0;::::1;45178:15;::::0;;::::1;45177:16;45159:34:::0;;::::1;::::0;;;45207:15;45088:140;:::o;43503:192::-;42649:7;42676:6;-1:-1:-1;;;;;42676:6:0;19671:10;42823:23;42815:68;;;;-1:-1:-1;;;42815:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43592:22:0;::::1;43584:73;;;::::0;-1:-1:-1;;;43584:73:0;;13302:2:1;43584:73:0::1;::::0;::::1;13284:21:1::0;13341:2;13321:18;;;13314:30;13380:34;13360:18;;;13353:62;-1:-1:-1;;;13431:18:1;;;13424:36;13477:19;;43584:73:0::1;13100:402:1::0;43584:73:0::1;43668:19;43678:8;43668:9;:19::i;39368:174::-:0;39443:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39443:29:0;-1:-1:-1;;;;;39443:29:0;;;;;;;;:24;;39497:23;39443:24;39497:14;:23::i;:::-;-1:-1:-1;;;;;39488:46:0;;;;;;;;;;;39368:174;;:::o;35680:348::-;35773:4;35475:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35475:16:0;35790:73;;;;-1:-1:-1;;;35790:73:0;;13709:2:1;35790:73:0;;;13691:21:1;13748:2;13728:18;;;13721:30;13787:34;13767:18;;;13760:62;-1:-1:-1;;;13838:18:1;;;13831:42;13890:19;;35790:73:0;13507:408:1;35790:73:0;35874:13;35890:23;35905:7;35890:14;:23::i;:::-;35874:39;;35943:5;-1:-1:-1;;;;;35932:16:0;:7;-1:-1:-1;;;;;35932:16:0;;:51;;;;35976:7;-1:-1:-1;;;;;35952:31:0;:20;35964:7;35952:11;:20::i;:::-;-1:-1:-1;;;;;35952:31:0;;35932:51;:87;;;-1:-1:-1;;;;;;32772:25:0;;;32748:4;32772:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35987:32;35924:96;35680:348;-1:-1:-1;;;;35680:348:0:o;38672:578::-;38831:4;-1:-1:-1;;;;;38804:31:0;:23;38819:7;38804:14;:23::i;:::-;-1:-1:-1;;;;;38804:31:0;;38796:85;;;;-1:-1:-1;;;38796:85:0;;14122:2:1;38796:85:0;;;14104:21:1;14161:2;14141:18;;;14134:30;14200:34;14180:18;;;14173:62;-1:-1:-1;;;14251:18:1;;;14244:39;14300:19;;38796:85:0;13920:405:1;38796:85:0;-1:-1:-1;;;;;38900:16:0;;38892:65;;;;-1:-1:-1;;;38892:65:0;;14532:2:1;38892:65:0;;;14514:21:1;14571:2;14551:18;;;14544:30;14610:34;14590:18;;;14583:62;-1:-1:-1;;;14661:18:1;;;14654:34;14705:19;;38892:65:0;14330:400:1;38892:65:0;39074:29;39091:1;39095:7;39074:8;:29::i;:::-;-1:-1:-1;;;;;39116:15:0;;;;;;:9;:15;;;;;:20;;39135:1;;39116:15;:20;;39135:1;;39116:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39147:13:0;;;;;;:9;:13;;;;;:18;;39164:1;;39147:13;:18;;39164:1;;39147:18;:::i;:::-;;;;-1:-1:-1;;39176:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39176:21:0;-1:-1:-1;;;;;39176:21:0;;;;;;;;;39215:27;;39176:16;;39215:27;;;;;;;38672:578;;;:::o;43703:173::-;43759:16;43778:6;;-1:-1:-1;;;;;43795:17:0;;;-1:-1:-1;;;;;;43795:17:0;;;;;;43828:40;;43778:6;;;;;;;43828:40;;43759:16;43828:40;43748:128;43703:173;:::o;45708:375::-;45775:23;45801:25;:15;27677:14;;27585:114;45801:25;45875:9;;45775:51;;-1:-1:-1;45841:30:0;45775:51;45864:6;45841:22;:30::i;:::-;:43;;45833:78;;;;-1:-1:-1;;;45833:78:0;;9770:2:1;45833:78:0;;;9752:21:1;9809:2;9789:18;;;9782:30;-1:-1:-1;;;9828:18:1;;;9821:52;9890:18;;45833:78:0;9568:346:1;45833:78:0;45926:6;45922:156;45941:6;45938:1;:9;45922:156;;;45964:20;;;;:::i;:::-;;;;45995:37;46005:6;46013:18;45995:9;:37::i;:::-;46043:27;:15;27796:19;;27814:1;27796:19;;;27707:127;46043:27;45949:3;;;;:::i;:::-;;;;45922:156;;23343:98;23401:7;23428:5;23432:1;23428;:5;:::i;:::-;23421:12;23343:98;-1:-1:-1;;;23343:98:0:o;34758:315::-;34915:28;34925:4;34931:2;34935:7;34915:9;:28::i;:::-;34962:48;34985:4;34991:2;34995:7;35004:5;34962:22;:48::i;:::-;34954:111;;;;-1:-1:-1;;;34954:111:0;;;;;;;:::i;44442:94::-;44494:13;44523:7;44516:14;;;;;:::i;7423:723::-;7479:13;7700:10;7696:53;;-1:-1:-1;;7727:10:0;;;;;;;;;;;;-1:-1:-1;;;7727:10:0;;;;;7423:723::o;7696:53::-;7774:5;7759:12;7815:78;7822:9;;7815:78;;7848:8;;;;:::i;:::-;;-1:-1:-1;7871:10:0;;-1:-1:-1;7879:2:0;7871:10;;:::i;:::-;;;7815:78;;;7903:19;7935:6;7925:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7925:17:0;;7903:39;;7953:154;7960:10;;7953:154;;7987:11;7997:1;7987:11;;:::i;:::-;;-1:-1:-1;8056:10:0;8064:2;8056:5;:10;:::i;:::-;8043:24;;:2;:24;:::i;:::-;8030:39;;8013:6;8020;8013:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8013:56:0;;;;;;;;-1:-1:-1;8084:11:0;8093:2;8084:11;;:::i;:::-;;;7953:154;;22605:98;22663:7;22690:5;22694:1;22690;:5;:::i;36370:110::-;36446:26;36456:2;36460:7;36446:26;;;;;;;;;;;;:9;:26::i;:::-;36370:110;;:::o;40107:799::-;40262:4;-1:-1:-1;;;;;40283:13:0;;10271:20;10319:8;40279:620;;40319:72;;-1:-1:-1;;;40319:72:0;;-1:-1:-1;;;;;40319:36:0;;;;;:72;;19671:10;;40370:4;;40376:7;;40385:5;;40319:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40319:72:0;;;;;;;;-1:-1:-1;;40319:72:0;;;;;;;;;;;;:::i;:::-;;;40315:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40561:13:0;;40557:272;;40604:60;;-1:-1:-1;;;40604:60:0;;;;;;;:::i;40557:272::-;40779:6;40773:13;40764:6;40760:2;40756:15;40749:38;40315:529;-1:-1:-1;;;;;;40442:51:0;-1:-1:-1;;;40442:51:0;;-1:-1:-1;40435:58:0;;40279:620;-1:-1:-1;40883:4:0;40107:799;;;;;;:::o;36707:321::-;36837:18;36843:2;36847:7;36837:5;:18::i;:::-;36888:54;36919:1;36923:2;36927:7;36936:5;36888:22;:54::i;:::-;36866:154;;;;-1:-1:-1;;;36866:154:0;;;;;;;:::i;37364:382::-;-1:-1:-1;;;;;37444:16:0;;37436:61;;;;-1:-1:-1;;;37436:61:0;;17318:2:1;37436:61:0;;;17300:21:1;;;17337:18;;;17330:30;17396:34;17376:18;;;17369:62;17448:18;;37436:61:0;17116:356:1;37436:61:0;35451:4;35475:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35475:16:0;:30;37508:58;;;;-1:-1:-1;;;37508:58:0;;17679:2:1;37508:58:0;;;17661:21:1;17718:2;17698:18;;;17691:30;17757;17737:18;;;17730:58;17805:18;;37508:58:0;17477:352:1;37508:58:0;-1:-1:-1;;;;;37637:13:0;;;;;;:9;:13;;;;;:18;;37654:1;;37637:13;:18;;37654:1;;37637:18;:::i;:::-;;;;-1:-1:-1;;37666:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37666:21:0;-1:-1:-1;;;;;37666:21:0;;;;;;;;37705:33;;37666:16;;;37705:33;;37666:16;;37705:33;37364:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:272::-;2746:6;2799:2;2787:9;2778:7;2774:23;2770:32;2767:52;;;2815:1;2812;2805:12;2767:52;2854:9;2841:23;2904:6;2897:5;2893:18;2886:5;2883:29;2873:57;;2926:1;2923;2916:12;2965:592;3036:6;3044;3097:2;3085:9;3076:7;3072:23;3068:32;3065:52;;;3113:1;3110;3103:12;3065:52;3153:9;3140:23;3182:18;3223:2;3215:6;3212:14;3209:34;;;3239:1;3236;3229:12;3209:34;3277:6;3266:9;3262:22;3252:32;;3322:7;3315:4;3311:2;3307:13;3303:27;3293:55;;3344:1;3341;3334:12;3293:55;3384:2;3371:16;3410:2;3402:6;3399:14;3396:34;;;3426:1;3423;3416:12;3396:34;3471:7;3466:2;3457:6;3453:2;3449:15;3445:24;3442:37;3439:57;;;3492:1;3489;3482:12;3439:57;3523:2;3515:11;;;;;3545:6;;-1:-1:-1;2965:592:1;;-1:-1:-1;;;;2965:592:1:o;3562:186::-;3621:6;3674:2;3662:9;3653:7;3649:23;3645:32;3642:52;;;3690:1;3687;3680:12;3642:52;3713:29;3732:9;3713:29;:::i;3753:347::-;3818:6;3826;3879:2;3867:9;3858:7;3854:23;3850:32;3847:52;;;3895:1;3892;3885:12;3847:52;3918:29;3937:9;3918:29;:::i;:::-;3908:39;;3997:2;3986:9;3982:18;3969:32;4044:5;4037:13;4030:21;4023:5;4020:32;4010:60;;4066:1;4063;4056:12;4010:60;4089:5;4079:15;;;3753:347;;;;;:::o;4105:127::-;4166:10;4161:3;4157:20;4154:1;4147:31;4197:4;4194:1;4187:15;4221:4;4218:1;4211:15;4237:1138;4332:6;4340;4348;4356;4409:3;4397:9;4388:7;4384:23;4380:33;4377:53;;;4426:1;4423;4416:12;4377:53;4449:29;4468:9;4449:29;:::i;:::-;4439:39;;4497:38;4531:2;4520:9;4516:18;4497:38;:::i;:::-;4487:48;;4582:2;4571:9;4567:18;4554:32;4544:42;;4637:2;4626:9;4622:18;4609:32;4660:18;4701:2;4693:6;4690:14;4687:34;;;4717:1;4714;4707:12;4687:34;4755:6;4744:9;4740:22;4730:32;;4800:7;4793:4;4789:2;4785:13;4781:27;4771:55;;4822:1;4819;4812:12;4771:55;4858:2;4845:16;4880:2;4876;4873:10;4870:36;;;4886:18;;:::i;:::-;4961:2;4955:9;4929:2;5015:13;;-1:-1:-1;;5011:22:1;;;5035:2;5007:31;5003:40;4991:53;;;5059:18;;;5079:22;;;5056:46;5053:72;;;5105:18;;:::i;:::-;5145:10;5141:2;5134:22;5180:2;5172:6;5165:18;5220:7;5215:2;5210;5206;5202:11;5198:20;5195:33;5192:53;;;5241:1;5238;5231:12;5192:53;5297:2;5292;5288;5284:11;5279:2;5271:6;5267:15;5254:46;5342:1;5337:2;5332;5324:6;5320:15;5316:24;5309:35;5363:6;5353:16;;;;;;;4237:1138;;;;;;;:::o;5380:260::-;5448:6;5456;5509:2;5497:9;5488:7;5484:23;5480:32;5477:52;;;5525:1;5522;5515:12;5477:52;5548:29;5567:9;5548:29;:::i;:::-;5538:39;;5596:38;5630:2;5619:9;5615:18;5596:38;:::i;:::-;5586:48;;5380:260;;;;;:::o;5645:380::-;5724:1;5720:12;;;;5767;;;5788:61;;5842:4;5834:6;5830:17;5820:27;;5788:61;5895:2;5887:6;5884:14;5864:18;5861:38;5858:161;;;5941:10;5936:3;5932:20;5929:1;5922:31;5976:4;5973:1;5966:15;6004:4;6001:1;5994:15;5858:161;;5645:380;;;:::o;7270:413::-;7472:2;7454:21;;;7511:2;7491:18;;;7484:30;7550:34;7545:2;7530:18;;7523:62;-1:-1:-1;;;7616:2:1;7601:18;;7594:47;7673:3;7658:19;;7270:413::o;7688:356::-;7890:2;7872:21;;;7909:18;;;7902:30;7968:34;7963:2;7948:18;;7941:62;8035:2;8020:18;;7688:356::o;11568:1527::-;11792:3;11830:6;11824:13;11856:4;11869:51;11913:6;11908:3;11903:2;11895:6;11891:15;11869:51;:::i;:::-;11983:13;;11942:16;;;;12005:55;11983:13;11942:16;12027:15;;;12005:55;:::i;:::-;12149:13;;12082:20;;;12122:1;;12209;12231:18;;;;12284;;;;12311:93;;12389:4;12379:8;12375:19;12363:31;;12311:93;12452:2;12442:8;12439:16;12419:18;12416:40;12413:167;;;-1:-1:-1;;;12479:33:1;;12535:4;12532:1;12525:15;12565:4;12486:3;12553:17;12413:167;12596:18;12623:110;;;;12747:1;12742:328;;;;12589:481;;12623:110;-1:-1:-1;;12658:24:1;;12644:39;;12703:20;;;;-1:-1:-1;12623:110:1;;12742:328;11515:1;11508:14;;;11552:4;11539:18;;12837:1;12851:169;12865:8;12862:1;12859:15;12851:169;;;12947:14;;12932:13;;;12925:37;12990:16;;;;12882:10;;12851:169;;;12855:3;;13051:8;13044:5;13040:20;13033:27;;12589:481;-1:-1:-1;13086:3:1;;11568:1527;-1:-1:-1;;;;;;;;;;;11568:1527:1:o;14735:127::-;14796:10;14791:3;14787:20;14784:1;14777:31;14827:4;14824:1;14817:15;14851:4;14848:1;14841:15;14867:125;14907:4;14935:1;14932;14929:8;14926:34;;;14940:18;;:::i;:::-;-1:-1:-1;14977:9:1;;14867:125::o;14997:128::-;15037:3;15068:1;15064:6;15061:1;15058:13;15055:39;;;15074:18;;:::i;:::-;-1:-1:-1;15110:9:1;;14997:128::o;15130:135::-;15169:3;-1:-1:-1;;15190:17:1;;15187:43;;;15210:18;;:::i;:::-;-1:-1:-1;15257:1:1;15246:13;;15130:135::o;15270:168::-;15310:7;15376:1;15372;15368:6;15364:14;15361:1;15358:21;15353:1;15346:9;15339:17;15335:45;15332:71;;;15383:18;;:::i;:::-;-1:-1:-1;15423:9:1;;15270:168::o;15443:414::-;15645:2;15627:21;;;15684:2;15664:18;;;15657:30;15723:34;15718:2;15703:18;;15696:62;-1:-1:-1;;;15789:2:1;15774:18;;15767:48;15847:3;15832:19;;15443:414::o;15862:127::-;15923:10;15918:3;15914:20;15911:1;15904:31;15954:4;15951:1;15944:15;15978:4;15975:1;15968:15;15994:120;16034:1;16060;16050:35;;16065:18;;:::i;:::-;-1:-1:-1;16099:9:1;;15994:120::o;16119:112::-;16151:1;16177;16167:35;;16182:18;;:::i;:::-;-1:-1:-1;16216:9:1;;16119:112::o;16236:127::-;16297:10;16292:3;16288:20;16285:1;16278:31;16328:4;16325:1;16318:15;16352:4;16349:1;16342:15;16368:489;-1:-1:-1;;;;;16637:15:1;;;16619:34;;16689:15;;16684:2;16669:18;;16662:43;16736:2;16721:18;;16714:34;;;16784:3;16779:2;16764:18;;16757:31;;;16562:4;;16805:46;;16831:19;;16823:6;16805:46;:::i;:::-;16797:54;16368:489;-1:-1:-1;;;;;;16368:489:1:o;16862:249::-;16931:6;16984:2;16972:9;16963:7;16959:23;16955:32;16952:52;;;17000:1;16997;16990:12;16952:52;17032:9;17026:16;17051:30;17075:5;17051:30;:::i

Swarm Source

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