ETH Price: $2,988.76 (-2.29%)
Gas: 1 Gwei

Token

CryptoKarls (CK)
 

Overview

Max Total Supply

422 CK

Holders

184

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tquan.eth
Balance
1 CK
0x9763771312dfed5bd8f14c224626be2af6c4102a
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:
CryptoKarls

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-04
*/

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/artifacts/ERC721A.sol



pragma solidity ^0.8.10;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 1;

  uint256 public immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // 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
   * `maxBatchSize` refers to how much a minter can mint at a time.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @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 override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: 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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > currentIndex - 1) {
      endIndex = currentIndex - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @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(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * 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`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}
// File: contracts/artifacts/Ck.sol



//Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel



pragma solidity >=0.7.0 <0.9.0;






contract CryptoKarls is ERC721A, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.05 ether;
  uint256 public wlcost = 0.03 ether;
  uint256 public maxSupply = 2500;
  uint256 public WlSupply = 2500;
  uint256 public MaxperWallet = 5;
  uint256 public MaxperWalletWl = 5;
  uint256 public MaxperTxWl = 5;
  uint256 public maxsize = 5 ; // max mint per tx
  bool public paused = false;
  bool public revealed = false;
  bool public preSale = true;
  bool public publicSale = false;
  bytes32 public merkleRoot = 0x663d931af97f42bad5073eb8d21cc4e0de7c377b9164403e603c03c822b4dc71;
  mapping(address => uint256) private _presaleMints;

  constructor(
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721A("CryptoKarls", "CK", maxsize) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  // public
  function mint(uint256 tokens) public payable {
    require(!paused, "CK: oops contract is paused");
    require(publicSale, "CK: Sale Hasn't started yet");
    uint256 supply = totalSupply();
    uint256 ownerTokenCount = balanceOf(_msgSender());
    require(tokens > 0, "CK: need to mint at least 1 NFT");
    require(tokens <= maxsize, "CK: max mint amount per tx exceeded");
    require(supply + tokens <= maxSupply, "CK: We Soldout");
    require(ownerTokenCount + tokens <= MaxperWallet + _presaleMints[_msgSender()], "CK: Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "CK: insufficient funds");

      _safeMint(_msgSender(), tokens);
    
  }
/// @dev presale mint for whitelisted
    function presalemint(uint256 tokens, bytes32[] calldata merkleProof) public payable  {
    require(!paused, "CK: oops contract is paused");
    require(preSale, "CK: Presale Hasn't started yet");
    require(MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "CK: You are not Whitelisted");
    uint256 supply = totalSupply();
    require(_presaleMints[_msgSender()] + tokens <= MaxperWalletWl, "CK: Max NFT Per Wallet For Whitelist exceeded");
    require(tokens > 0, "CK: need to mint at least 1 NFT");
    require(tokens <= MaxperTxWl, "CK: max mint per Tx exceeded");
    require(supply + tokens <= WlSupply, "CK: Whitelist MaxSupply exceeded");
    require(msg.value >= wlcost * tokens, "CK: insufficient funds");

      _safeMint(_msgSender(), tokens);
      _presaleMints[_msgSender()] += tokens;
    
  }




  /// @dev use it for giveaway and mint for yourself
     function gift(uint256 _mintAmount, address destination) public onlyOwner {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
    
  }

  


  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal(bool _state) public onlyOwner {
      revealed = _state;
  }

  function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }
  
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

    function setWlMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWalletWl = _limit;
  }

  function setmaxsize(uint256 _maxsize) public onlyOwner {
    maxsize = _maxsize;
  }

    function setWLMaxpertx(uint256 _maxpertx) public onlyOwner {
    MaxperTxWl = _maxpertx;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

    function setWlCost(uint256 _newWlCost) public onlyOwner {
    wlcost = _newWlCost;
  }

    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }

    function setwlsupply(uint256 _newsupply) public onlyOwner {
    WlSupply = _newsupply;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

    function togglepreSale(bool _state) external onlyOwner {
        preSale = _state;
    }

    function togglepublicSale(bool _state) external onlyOwner {
        publicSale = _state;
    }
  
 
  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"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":[],"name":"MaxperTxWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxsize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"presalemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxpertx","type":"uint256"}],"name":"setWLMaxpertx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWlCost","type":"uint256"}],"name":"setWlCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWlMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxsize","type":"uint256"}],"name":"setmaxsize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setwlsupply","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":"bool","name":"_state","type":"bool"}],"name":"togglepreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglepublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6001600090815560075560e0604052600560a081905264173539b7b760d91b60c09081526200003291600a9190620002e2565b5066b1a2bc2ec50000600c55666a94d74f430000600d556109c4600e819055600f5560056010819055601181905560128190556013556014805463ffffffff1916620100001790557f663d931af97f42bad5073eb8d21cc4e0de7c377b9164403e603c03c822b4dc71601555348015620000ab57600080fd5b506040516200381f3803806200381f833981016040819052620000ce9162000455565b6040518060400160405280600b81526020016a43727970746f4b61726c7360a81b81525060405180604001604052806002815260200161434b60f01b81525060135460008111620001765760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084015b60405180910390fd5b82516200018b906001906020860190620002e2565b508151620001a1906002906020850190620002e2565b5060805250620001b3905033620001d1565b620001be8262000223565b620001c98162000287565b5050620004fc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b031633146200026e5760405162461bcd60e51b81526020600482018190526024820152600080516020620037ff83398151915260448201526064016200016d565b805162000283906009906020840190620002e2565b5050565b6008546001600160a01b03163314620002d25760405162461bcd60e51b81526020600482018190526024820152600080516020620037ff83398151915260448201526064016200016d565b80516200028390600b9060208401905b828054620002f090620004bf565b90600052602060002090601f0160209004810192826200031457600085556200035f565b82601f106200032f57805160ff19168380011785556200035f565b828001600101855582156200035f579182015b828111156200035f57825182559160200191906001019062000342565b506200036d92915062000371565b5090565b5b808211156200036d576000815560010162000372565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620003b057600080fd5b81516001600160401b0380821115620003cd57620003cd62000388565b604051601f8301601f19908116603f01168101908282118183101715620003f857620003f862000388565b816040528381526020925086838588010111156200041557600080fd5b600091505b838210156200043957858201830151818301840152908201906200041a565b838211156200044b5760008385830101525b9695505050505050565b600080604083850312156200046957600080fd5b82516001600160401b03808211156200048157600080fd5b6200048f868387016200039e565b93506020850151915080821115620004a657600080fd5b50620004b5858286016200039e565b9150509250929050565b600181811c90821680620004d457607f821691505b60208210811415620004f657634e487b7160e01b600052602260045260246000fd5b50919050565b6080516132d26200052d600039600081816105550152818161240e0152818161243801526128bd01526132d26000f3fe6080604052600436106103805760003560e01c80636c0360eb116101d1578063bde0608a11610102578063da3ef23f116100a0578063f2c4ce1e1161006f578063f2c4ce1e146109ee578063f2fde38b14610a0e578063f3257cdd14610a2e578063fea0e05814610a4e57600080fd5b8063da3ef23f14610945578063e268e4d314610965578063e985e9c514610985578063f12f6d5d146109ce57600080fd5b8063ca6b7ef5116100dc578063ca6b7ef5146108e3578063d5abeb0114610903578063d7224ba014610919578063d8ed370c1461092f57600080fd5b8063bde0608a1461088e578063c6682862146108ae578063c87b56dd146108c357600080fd5b80638da5cb5b1161016f578063a0712d6811610149578063a0712d6814610825578063a22cb46514610838578063b88d4fde14610858578063bd7a19981461087857600080fd5b80638da5cb5b146107d2578063940cd05b146107f057806395d89b411461081057600080fd5b806370a08231116101ab57806370a082311461075d578063715018a61461077d5780637cb647591461079257806383a076be146107b257600080fd5b80636c0360eb1461071c5780636c2d3c4f146107315780636c6e927e1461074757600080fd5b80632913daa0116102b657806344a0d68a1161025457806355f804b31161022357806355f804b3146106a25780635a7adf7f146106c25780635c975abb146106e25780636352211e146106fc57600080fd5b806344a0d68a14610623578063458c4f9e146106435780634f6ccce714610663578063518302271461068357600080fd5b806333bc1c5c1161029057806333bc1c5c146105ad5780633ccfd60b146105ce57806342842e0e146105d6578063438b6300146105f657600080fd5b80632913daa0146105435780632eb4a7ab146105775780632f745c591461058d57600080fd5b8063095ea7b311610323578063149835a0116102fd578063149835a0146104ce57806318160ddd146104ee5780631866756c1461050357806323b872dd1461052357600080fd5b8063095ea7b3146104825780630bddb613146104a257806313faede6146104b857600080fd5b8063036e4cb51161035f578063036e4cb51461040057806306fdde0314610413578063081812fc14610435578063081c8c441461046d57600080fd5b806277ec051461038557806301ffc9a7146103ae57806302329a29146103de575b600080fd5b34801561039157600080fd5b5061039b60115481565b6040519081526020015b60405180910390f35b3480156103ba57600080fd5b506103ce6103c9366004612b81565b610a6e565b60405190151581526020016103a5565b3480156103ea57600080fd5b506103fe6103f9366004612bb3565b610adb565b005b6103fe61040e366004612bce565b610b21565b34801561041f57600080fd5b50610428610ebe565b6040516103a59190612ca5565b34801561044157600080fd5b50610455610450366004612cb8565b610f50565b6040516001600160a01b0390911681526020016103a5565b34801561047957600080fd5b50610428610fdb565b34801561048e57600080fd5b506103fe61049d366004612ce8565b611069565b3480156104ae57600080fd5b5061039b600f5481565b3480156104c457600080fd5b5061039b600c5481565b3480156104da57600080fd5b506103fe6104e9366004612cb8565b611181565b3480156104fa57600080fd5b5061039b6111b0565b34801561050f57600080fd5b506103fe61051e366004612cb8565b6111c6565b34801561052f57600080fd5b506103fe61053e366004612d12565b6111f5565b34801561054f57600080fd5b5061039b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561058357600080fd5b5061039b60155481565b34801561059957600080fd5b5061039b6105a8366004612ce8565b611200565b3480156105b957600080fd5b506014546103ce906301000000900460ff1681565b6103fe611378565b3480156105e257600080fd5b506103fe6105f1366004612d12565b6113fa565b34801561060257600080fd5b50610616610611366004612d4e565b611415565b6040516103a59190612d69565b34801561062f57600080fd5b506103fe61063e366004612cb8565b6114b7565b34801561064f57600080fd5b506103fe61065e366004612cb8565b6114e6565b34801561066f57600080fd5b5061039b61067e366004612cb8565b611515565b34801561068f57600080fd5b506014546103ce90610100900460ff1681565b3480156106ae57600080fd5b506103fe6106bd366004612e39565b61157d565b3480156106ce57600080fd5b506014546103ce9062010000900460ff1681565b3480156106ee57600080fd5b506014546103ce9060ff1681565b34801561070857600080fd5b50610455610717366004612cb8565b6115be565b34801561072857600080fd5b506104286115d0565b34801561073d57600080fd5b5061039b600d5481565b34801561075357600080fd5b5061039b60135481565b34801561076957600080fd5b5061039b610778366004612d4e565b6115dd565b34801561078957600080fd5b506103fe61166e565b34801561079e57600080fd5b506103fe6107ad366004612cb8565b6116a4565b3480156107be57600080fd5b506103fe6107cd366004612e82565b6116d3565b3480156107de57600080fd5b506008546001600160a01b0316610455565b3480156107fc57600080fd5b506103fe61080b366004612bb3565b6117b8565b34801561081c57600080fd5b506104286117fc565b6103fe610833366004612cb8565b61180b565b34801561084457600080fd5b506103fe610853366004612eae565b611a9f565b34801561086457600080fd5b506103fe610873366004612ed8565b611b64565b34801561088457600080fd5b5061039b60105481565b34801561089a57600080fd5b506103fe6108a9366004612cb8565b611b9d565b3480156108ba57600080fd5b50610428611bcc565b3480156108cf57600080fd5b506104286108de366004612cb8565b611bd9565b3480156108ef57600080fd5b506103fe6108fe366004612cb8565b611d4b565b34801561090f57600080fd5b5061039b600e5481565b34801561092557600080fd5b5061039b60075481565b34801561093b57600080fd5b5061039b60125481565b34801561095157600080fd5b506103fe610960366004612e39565b611d7a565b34801561097157600080fd5b506103fe610980366004612cb8565b611db7565b34801561099157600080fd5b506103ce6109a0366004612f54565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156109da57600080fd5b506103fe6109e9366004612cb8565b611de6565b3480156109fa57600080fd5b506103fe610a09366004612e39565b611e15565b348015610a1a57600080fd5b506103fe610a29366004612d4e565b611e52565b348015610a3a57600080fd5b506103fe610a49366004612bb3565b611eea565b348015610a5a57600080fd5b506103fe610a69366004612bb3565b611f32565b60006001600160e01b031982166380ac58cd60e01b1480610a9f57506001600160e01b03198216635b5e139f60e01b145b80610aba57506001600160e01b0319821663780e9d6360e01b145b80610ad557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610b0e5760405162461bcd60e51b8152600401610b0590612f7e565b60405180910390fd5b6014805460ff1916911515919091179055565b60145460ff1615610b745760405162461bcd60e51b815260206004820152601b60248201527f434b3a206f6f707320636f6e74726163742069732070617573656400000000006044820152606401610b05565b60145462010000900460ff16610bcc5760405162461bcd60e51b815260206004820152601e60248201527f434b3a2050726573616c65204861736e277420737461727465642079657400006044820152606401610b05565b610c41828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611f78565b610c8d5760405162461bcd60e51b815260206004820152601b60248201527f434b3a20596f7520617265206e6f742057686974656c697374656400000000006044820152606401610b05565b6000610c976111b0565b90506011548460166000610ca83390565b6001600160a01b03166001600160a01b0316815260200190815260200160002054610cd39190612fc9565b1115610d375760405162461bcd60e51b815260206004820152602d60248201527f434b3a204d6178204e4654205065722057616c6c657420466f7220576869746560448201526c1b1a5cdd08195e18d959591959609a1b6064820152608401610b05565b60008411610d875760405162461bcd60e51b815260206004820152601f60248201527f434b3a206e65656420746f206d696e74206174206c656173742031204e4654006044820152606401610b05565b601254841115610dd95760405162461bcd60e51b815260206004820152601c60248201527f434b3a206d6178206d696e7420706572205478206578636565646564000000006044820152606401610b05565b600f54610de68583612fc9565b1115610e345760405162461bcd60e51b815260206004820181905260248201527f434b3a2057686974656c697374204d6178537570706c792065786365656465646044820152606401610b05565b83600d54610e429190612fe1565b341015610e8a5760405162461bcd60e51b8152602060048201526016602482015275434b3a20696e73756666696369656e742066756e647360501b6044820152606401610b05565b610e943385611f8e565b3360009081526016602052604081208054869290610eb3908490612fc9565b909155505050505050565b606060018054610ecd90613000565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef990613000565b8015610f465780601f10610f1b57610100808354040283529160200191610f46565b820191906000526020600020905b815481529060010190602001808311610f2957829003601f168201915b5050505050905090565b6000610f5d826000541190565b610fbf5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610b05565b506000908152600560205260409020546001600160a01b031690565b600b8054610fe890613000565b80601f016020809104026020016040519081016040528092919081815260200182805461101490613000565b80156110615780601f1061103657610100808354040283529160200191611061565b820191906000526020600020905b81548152906001019060200180831161104457829003601f168201915b505050505081565b6000611074826115be565b9050806001600160a01b0316836001600160a01b031614156110e35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b05565b336001600160a01b03821614806110ff57506110ff81336109a0565b6111715760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b05565b61117c838383611fa8565b505050565b6008546001600160a01b031633146111ab5760405162461bcd60e51b8152600401610b0590612f7e565b600e55565b600060016000546111c1919061303b565b905090565b6008546001600160a01b031633146111f05760405162461bcd60e51b8152600401610b0590612f7e565b601255565b61117c838383612004565b600061120b836115dd565b82106112645760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b05565b600061126e6111b0565b905060008060005b83811015611318576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156112c957805192505b876001600160a01b0316836001600160a01b0316141561130557868414156112f757509350610ad592505050565b8361130181613052565b9450505b508061131081613052565b915050611276565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610b05565b6008546001600160a01b031633146113a25760405162461bcd60e51b8152600401610b0590612f7e565b604051600090339047908381818185875af1925050503d80600081146113e4576040519150601f19603f3d011682016040523d82523d6000602084013e6113e9565b606091505b50509050806113f757600080fd5b50565b61117c83838360405180602001604052806000815250611b64565b60606000611422836115dd565b905060008167ffffffffffffffff81111561143f5761143f612dad565b604051908082528060200260200182016040528015611468578160200160208202803683370190505b50905060005b828110156114af576114808582611200565b8282815181106114925761149261306d565b6020908102919091010152806114a781613052565b91505061146e565b509392505050565b6008546001600160a01b031633146114e15760405162461bcd60e51b8152600401610b0590612f7e565b600c55565b6008546001600160a01b031633146115105760405162461bcd60e51b8152600401610b0590612f7e565b600f55565b600061151f6111b0565b82106115795760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b05565b5090565b6008546001600160a01b031633146115a75760405162461bcd60e51b8152600401610b0590612f7e565b80516115ba906009906020840190612adb565b5050565b60006115c98261238c565b5192915050565b60098054610fe890613000565b60006001600160a01b0382166116495760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b05565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146116985760405162461bcd60e51b8152600401610b0590612f7e565b6116a26000612536565b565b6008546001600160a01b031633146116ce5760405162461bcd60e51b8152600401610b0590612f7e565b601555565b6008546001600160a01b031633146116fd5760405162461bcd60e51b8152600401610b0590612f7e565b6000821161174d5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b05565b60006117576111b0565b600e549091506117678483612fc9565b11156117ae5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b05565b61117c8284611f8e565b6008546001600160a01b031633146117e25760405162461bcd60e51b8152600401610b0590612f7e565b601480549115156101000261ff0019909216919091179055565b606060028054610ecd90613000565b60145460ff161561185e5760405162461bcd60e51b815260206004820152601b60248201527f434b3a206f6f707320636f6e74726163742069732070617573656400000000006044820152606401610b05565b6014546301000000900460ff166118b75760405162461bcd60e51b815260206004820152601b60248201527f434b3a2053616c65204861736e277420737461727465642079657400000000006044820152606401610b05565b60006118c16111b0565b905060006118ce336115dd565b9050600083116119205760405162461bcd60e51b815260206004820152601f60248201527f434b3a206e65656420746f206d696e74206174206c656173742031204e4654006044820152606401610b05565b60135483111561197e5760405162461bcd60e51b815260206004820152602360248201527f434b3a206d6178206d696e7420616d6f756e742070657220747820657863656560448201526219195960ea1b6064820152608401610b05565b600e5461198b8484612fc9565b11156119ca5760405162461bcd60e51b815260206004820152600e60248201526d10d2ce8815d94814dbdb191bdd5d60921b6044820152606401610b05565b336000908152601660205260409020546010546119e79190612fc9565b6119f18483612fc9565b1115611a3f5760405162461bcd60e51b815260206004820152601f60248201527f434b3a204d6178204e4654205065722057616c6c6574206578636565646564006044820152606401610b05565b82600c54611a4d9190612fe1565b341015611a955760405162461bcd60e51b8152602060048201526016602482015275434b3a20696e73756666696369656e742066756e647360501b6044820152606401610b05565b61117c3384611f8e565b6001600160a01b038216331415611af85760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b05565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611b6f848484612004565b611b7b84848484612588565b611b975760405162461bcd60e51b8152600401610b0590613083565b50505050565b6008546001600160a01b03163314611bc75760405162461bcd60e51b8152600401610b0590612f7e565b601155565b600a8054610fe890613000565b6060611be6826000541190565b611c4b5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610b05565b601454610100900460ff16611cec57600b8054611c6790613000565b80601f0160208091040260200160405190810160405280929190818152602001828054611c9390613000565b8015611ce05780601f10611cb557610100808354040283529160200191611ce0565b820191906000526020600020905b815481529060010190602001808311611cc357829003601f168201915b50505050509050919050565b6000611cf6612687565b90506000815111611d165760405180602001604052806000815250611d44565b80611d2084612696565b600a604051602001611d34939291906130d6565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611d755760405162461bcd60e51b8152600401610b0590612f7e565b601355565b6008546001600160a01b03163314611da45760405162461bcd60e51b8152600401610b0590612f7e565b80516115ba90600a906020840190612adb565b6008546001600160a01b03163314611de15760405162461bcd60e51b8152600401610b0590612f7e565b601055565b6008546001600160a01b03163314611e105760405162461bcd60e51b8152600401610b0590612f7e565b600d55565b6008546001600160a01b03163314611e3f5760405162461bcd60e51b8152600401610b0590612f7e565b80516115ba90600b906020840190612adb565b6008546001600160a01b03163314611e7c5760405162461bcd60e51b8152600401610b0590612f7e565b6001600160a01b038116611ee15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b05565b6113f781612536565b6008546001600160a01b03163314611f145760405162461bcd60e51b8152600401610b0590612f7e565b6014805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b03163314611f5c5760405162461bcd60e51b8152600401610b0590612f7e565b60148054911515620100000262ff000019909216919091179055565b600082611f858584612794565b14949350505050565b6115ba828260405180602001604052806000815250612800565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061200f8261238c565b80519091506000906001600160a01b0316336001600160a01b0316148061204657503361203b84610f50565b6001600160a01b0316145b806120585750815161205890336109a0565b9050806120c25760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b05565b846001600160a01b031682600001516001600160a01b0316146121365760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b05565b6001600160a01b03841661219a5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b05565b6121aa6000848460000151611fa8565b6001600160a01b03851660009081526004602052604081208054600192906121dc9084906001600160801b031661319a565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092612228918591166131c2565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556122b0846001612fc9565b6000818152600360205260409020549091506001600160a01b0316612342576122da816000541190565b156123425760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526123ab826000541190565b61240a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610b05565b60007f0000000000000000000000000000000000000000000000000000000000000000831061246b5761245d7f00000000000000000000000000000000000000000000000000000000000000008461303b565b612468906001612fc9565b90505b825b8181106124d5576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156124c257949350505050565b50806124cd816131ed565b91505061246d565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610b05565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561267b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125cc903390899088908890600401613204565b6020604051808303816000875af1925050508015612607575060408051601f3d908101601f1916820190925261260491810190613241565b60015b612661573d808015612635576040519150601f19603f3d011682016040523d82523d6000602084013e61263a565b606091505b5080516126595760405162461bcd60e51b8152600401610b0590613083565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061267f565b5060015b949350505050565b606060098054610ecd90613000565b6060816126ba5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126e457806126ce81613052565b91506126dd9050600a83613274565b91506126be565b60008167ffffffffffffffff8111156126ff576126ff612dad565b6040519080825280601f01601f191660200182016040528015612729576020820181803683370190505b5090505b841561267f5761273e60018361303b565b915061274b600a86613288565b612756906030612fc9565b60f81b81838151811061276b5761276b61306d565b60200101906001600160f81b031916908160001a90535061278d600a86613274565b945061272d565b600081815b84518110156114af5760008582815181106127b6576127b661306d565b602002602001015190508083116127dc57600083815260208290526040902092506127ed565b600081815260208490526040902092505b50806127f881613052565b915050612799565b6000546001600160a01b0384166128635760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b05565b61286e816000541190565b156128bb5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b05565b7f00000000000000000000000000000000000000000000000000000000000000008311156129365760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610b05565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906129929087906131c2565b6001600160801b031681526020018583602001516129b091906131c2565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612ad05760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612a946000888488612588565b612ab05760405162461bcd60e51b8152600401610b0590613083565b81612aba81613052565b9250508080612ac890613052565b915050612a47565b506000819055612384565b828054612ae790613000565b90600052602060002090601f016020900481019282612b095760008555612b4f565b82601f10612b2257805160ff1916838001178555612b4f565b82800160010185558215612b4f579182015b82811115612b4f578251825591602001919060010190612b34565b506115799291505b808211156115795760008155600101612b57565b6001600160e01b0319811681146113f757600080fd5b600060208284031215612b9357600080fd5b8135611d4481612b6b565b80358015158114612bae57600080fd5b919050565b600060208284031215612bc557600080fd5b611d4482612b9e565b600080600060408486031215612be357600080fd5b83359250602084013567ffffffffffffffff80821115612c0257600080fd5b818601915086601f830112612c1657600080fd5b813581811115612c2557600080fd5b8760208260051b8501011115612c3a57600080fd5b6020830194508093505050509250925092565b60005b83811015612c68578181015183820152602001612c50565b83811115611b975750506000910152565b60008151808452612c91816020860160208601612c4d565b601f01601f19169290920160200192915050565b602081526000611d446020830184612c79565b600060208284031215612cca57600080fd5b5035919050565b80356001600160a01b0381168114612bae57600080fd5b60008060408385031215612cfb57600080fd5b612d0483612cd1565b946020939093013593505050565b600080600060608486031215612d2757600080fd5b612d3084612cd1565b9250612d3e60208501612cd1565b9150604084013590509250925092565b600060208284031215612d6057600080fd5b611d4482612cd1565b6020808252825182820181905260009190848201906040850190845b81811015612da157835183529284019291840191600101612d85565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612dde57612dde612dad565b604051601f8501601f19908116603f01168101908282118183101715612e0657612e06612dad565b81604052809350858152868686011115612e1f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612e4b57600080fd5b813567ffffffffffffffff811115612e6257600080fd5b8201601f81018413612e7357600080fd5b61267f84823560208401612dc3565b60008060408385031215612e9557600080fd5b82359150612ea560208401612cd1565b90509250929050565b60008060408385031215612ec157600080fd5b612eca83612cd1565b9150612ea560208401612b9e565b60008060008060808587031215612eee57600080fd5b612ef785612cd1565b9350612f0560208601612cd1565b925060408501359150606085013567ffffffffffffffff811115612f2857600080fd5b8501601f81018713612f3957600080fd5b612f4887823560208401612dc3565b91505092959194509250565b60008060408385031215612f6757600080fd5b612f7083612cd1565b9150612ea560208401612cd1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612fdc57612fdc612fb3565b500190565b6000816000190483118215151615612ffb57612ffb612fb3565b500290565b600181811c9082168061301457607f821691505b6020821081141561303557634e487b7160e01b600052602260045260246000fd5b50919050565b60008282101561304d5761304d612fb3565b500390565b600060001982141561306657613066612fb3565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000845160206130e98285838a01612c4d565b8551918401916130fc8184848a01612c4d565b8554920191600090600181811c908083168061311957607f831692505b85831081141561313757634e487b7160e01b85526022600452602485fd5b80801561314b576001811461315c57613189565b60ff19851688528388019550613189565b60008b81526020902060005b858110156131815781548a820152908401908801613168565b505083880195505b50939b9a5050505050505050505050565b60006001600160801b03838116908316818110156131ba576131ba612fb3565b039392505050565b60006001600160801b038083168185168083038211156131e4576131e4612fb3565b01949350505050565b6000816131fc576131fc612fb3565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061323790830184612c79565b9695505050505050565b60006020828403121561325357600080fd5b8151611d4481612b6b565b634e487b7160e01b600052601260045260246000fd5b6000826132835761328361325e565b500490565b6000826132975761329761325e565b50069056fea264697066735822122014994dbcb0f888b14c843ac423c662c091a571998e7b1cfd090c4739e28ab30564736f6c634300080c00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000050697066733a2f2f516d524d6744726b627a584d546e4e74593336524c3277487566417737506f734e564376536444617738634d546d2f43727970746f4b61726c73756e72657665616c65642e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103805760003560e01c80636c0360eb116101d1578063bde0608a11610102578063da3ef23f116100a0578063f2c4ce1e1161006f578063f2c4ce1e146109ee578063f2fde38b14610a0e578063f3257cdd14610a2e578063fea0e05814610a4e57600080fd5b8063da3ef23f14610945578063e268e4d314610965578063e985e9c514610985578063f12f6d5d146109ce57600080fd5b8063ca6b7ef5116100dc578063ca6b7ef5146108e3578063d5abeb0114610903578063d7224ba014610919578063d8ed370c1461092f57600080fd5b8063bde0608a1461088e578063c6682862146108ae578063c87b56dd146108c357600080fd5b80638da5cb5b1161016f578063a0712d6811610149578063a0712d6814610825578063a22cb46514610838578063b88d4fde14610858578063bd7a19981461087857600080fd5b80638da5cb5b146107d2578063940cd05b146107f057806395d89b411461081057600080fd5b806370a08231116101ab57806370a082311461075d578063715018a61461077d5780637cb647591461079257806383a076be146107b257600080fd5b80636c0360eb1461071c5780636c2d3c4f146107315780636c6e927e1461074757600080fd5b80632913daa0116102b657806344a0d68a1161025457806355f804b31161022357806355f804b3146106a25780635a7adf7f146106c25780635c975abb146106e25780636352211e146106fc57600080fd5b806344a0d68a14610623578063458c4f9e146106435780634f6ccce714610663578063518302271461068357600080fd5b806333bc1c5c1161029057806333bc1c5c146105ad5780633ccfd60b146105ce57806342842e0e146105d6578063438b6300146105f657600080fd5b80632913daa0146105435780632eb4a7ab146105775780632f745c591461058d57600080fd5b8063095ea7b311610323578063149835a0116102fd578063149835a0146104ce57806318160ddd146104ee5780631866756c1461050357806323b872dd1461052357600080fd5b8063095ea7b3146104825780630bddb613146104a257806313faede6146104b857600080fd5b8063036e4cb51161035f578063036e4cb51461040057806306fdde0314610413578063081812fc14610435578063081c8c441461046d57600080fd5b806277ec051461038557806301ffc9a7146103ae57806302329a29146103de575b600080fd5b34801561039157600080fd5b5061039b60115481565b6040519081526020015b60405180910390f35b3480156103ba57600080fd5b506103ce6103c9366004612b81565b610a6e565b60405190151581526020016103a5565b3480156103ea57600080fd5b506103fe6103f9366004612bb3565b610adb565b005b6103fe61040e366004612bce565b610b21565b34801561041f57600080fd5b50610428610ebe565b6040516103a59190612ca5565b34801561044157600080fd5b50610455610450366004612cb8565b610f50565b6040516001600160a01b0390911681526020016103a5565b34801561047957600080fd5b50610428610fdb565b34801561048e57600080fd5b506103fe61049d366004612ce8565b611069565b3480156104ae57600080fd5b5061039b600f5481565b3480156104c457600080fd5b5061039b600c5481565b3480156104da57600080fd5b506103fe6104e9366004612cb8565b611181565b3480156104fa57600080fd5b5061039b6111b0565b34801561050f57600080fd5b506103fe61051e366004612cb8565b6111c6565b34801561052f57600080fd5b506103fe61053e366004612d12565b6111f5565b34801561054f57600080fd5b5061039b7f000000000000000000000000000000000000000000000000000000000000000581565b34801561058357600080fd5b5061039b60155481565b34801561059957600080fd5b5061039b6105a8366004612ce8565b611200565b3480156105b957600080fd5b506014546103ce906301000000900460ff1681565b6103fe611378565b3480156105e257600080fd5b506103fe6105f1366004612d12565b6113fa565b34801561060257600080fd5b50610616610611366004612d4e565b611415565b6040516103a59190612d69565b34801561062f57600080fd5b506103fe61063e366004612cb8565b6114b7565b34801561064f57600080fd5b506103fe61065e366004612cb8565b6114e6565b34801561066f57600080fd5b5061039b61067e366004612cb8565b611515565b34801561068f57600080fd5b506014546103ce90610100900460ff1681565b3480156106ae57600080fd5b506103fe6106bd366004612e39565b61157d565b3480156106ce57600080fd5b506014546103ce9062010000900460ff1681565b3480156106ee57600080fd5b506014546103ce9060ff1681565b34801561070857600080fd5b50610455610717366004612cb8565b6115be565b34801561072857600080fd5b506104286115d0565b34801561073d57600080fd5b5061039b600d5481565b34801561075357600080fd5b5061039b60135481565b34801561076957600080fd5b5061039b610778366004612d4e565b6115dd565b34801561078957600080fd5b506103fe61166e565b34801561079e57600080fd5b506103fe6107ad366004612cb8565b6116a4565b3480156107be57600080fd5b506103fe6107cd366004612e82565b6116d3565b3480156107de57600080fd5b506008546001600160a01b0316610455565b3480156107fc57600080fd5b506103fe61080b366004612bb3565b6117b8565b34801561081c57600080fd5b506104286117fc565b6103fe610833366004612cb8565b61180b565b34801561084457600080fd5b506103fe610853366004612eae565b611a9f565b34801561086457600080fd5b506103fe610873366004612ed8565b611b64565b34801561088457600080fd5b5061039b60105481565b34801561089a57600080fd5b506103fe6108a9366004612cb8565b611b9d565b3480156108ba57600080fd5b50610428611bcc565b3480156108cf57600080fd5b506104286108de366004612cb8565b611bd9565b3480156108ef57600080fd5b506103fe6108fe366004612cb8565b611d4b565b34801561090f57600080fd5b5061039b600e5481565b34801561092557600080fd5b5061039b60075481565b34801561093b57600080fd5b5061039b60125481565b34801561095157600080fd5b506103fe610960366004612e39565b611d7a565b34801561097157600080fd5b506103fe610980366004612cb8565b611db7565b34801561099157600080fd5b506103ce6109a0366004612f54565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156109da57600080fd5b506103fe6109e9366004612cb8565b611de6565b3480156109fa57600080fd5b506103fe610a09366004612e39565b611e15565b348015610a1a57600080fd5b506103fe610a29366004612d4e565b611e52565b348015610a3a57600080fd5b506103fe610a49366004612bb3565b611eea565b348015610a5a57600080fd5b506103fe610a69366004612bb3565b611f32565b60006001600160e01b031982166380ac58cd60e01b1480610a9f57506001600160e01b03198216635b5e139f60e01b145b80610aba57506001600160e01b0319821663780e9d6360e01b145b80610ad557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610b0e5760405162461bcd60e51b8152600401610b0590612f7e565b60405180910390fd5b6014805460ff1916911515919091179055565b60145460ff1615610b745760405162461bcd60e51b815260206004820152601b60248201527f434b3a206f6f707320636f6e74726163742069732070617573656400000000006044820152606401610b05565b60145462010000900460ff16610bcc5760405162461bcd60e51b815260206004820152601e60248201527f434b3a2050726573616c65204861736e277420737461727465642079657400006044820152606401610b05565b610c41828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611f78565b610c8d5760405162461bcd60e51b815260206004820152601b60248201527f434b3a20596f7520617265206e6f742057686974656c697374656400000000006044820152606401610b05565b6000610c976111b0565b90506011548460166000610ca83390565b6001600160a01b03166001600160a01b0316815260200190815260200160002054610cd39190612fc9565b1115610d375760405162461bcd60e51b815260206004820152602d60248201527f434b3a204d6178204e4654205065722057616c6c657420466f7220576869746560448201526c1b1a5cdd08195e18d959591959609a1b6064820152608401610b05565b60008411610d875760405162461bcd60e51b815260206004820152601f60248201527f434b3a206e65656420746f206d696e74206174206c656173742031204e4654006044820152606401610b05565b601254841115610dd95760405162461bcd60e51b815260206004820152601c60248201527f434b3a206d6178206d696e7420706572205478206578636565646564000000006044820152606401610b05565b600f54610de68583612fc9565b1115610e345760405162461bcd60e51b815260206004820181905260248201527f434b3a2057686974656c697374204d6178537570706c792065786365656465646044820152606401610b05565b83600d54610e429190612fe1565b341015610e8a5760405162461bcd60e51b8152602060048201526016602482015275434b3a20696e73756666696369656e742066756e647360501b6044820152606401610b05565b610e943385611f8e565b3360009081526016602052604081208054869290610eb3908490612fc9565b909155505050505050565b606060018054610ecd90613000565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef990613000565b8015610f465780601f10610f1b57610100808354040283529160200191610f46565b820191906000526020600020905b815481529060010190602001808311610f2957829003601f168201915b5050505050905090565b6000610f5d826000541190565b610fbf5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610b05565b506000908152600560205260409020546001600160a01b031690565b600b8054610fe890613000565b80601f016020809104026020016040519081016040528092919081815260200182805461101490613000565b80156110615780601f1061103657610100808354040283529160200191611061565b820191906000526020600020905b81548152906001019060200180831161104457829003601f168201915b505050505081565b6000611074826115be565b9050806001600160a01b0316836001600160a01b031614156110e35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b05565b336001600160a01b03821614806110ff57506110ff81336109a0565b6111715760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b05565b61117c838383611fa8565b505050565b6008546001600160a01b031633146111ab5760405162461bcd60e51b8152600401610b0590612f7e565b600e55565b600060016000546111c1919061303b565b905090565b6008546001600160a01b031633146111f05760405162461bcd60e51b8152600401610b0590612f7e565b601255565b61117c838383612004565b600061120b836115dd565b82106112645760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b05565b600061126e6111b0565b905060008060005b83811015611318576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156112c957805192505b876001600160a01b0316836001600160a01b0316141561130557868414156112f757509350610ad592505050565b8361130181613052565b9450505b508061131081613052565b915050611276565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610b05565b6008546001600160a01b031633146113a25760405162461bcd60e51b8152600401610b0590612f7e565b604051600090339047908381818185875af1925050503d80600081146113e4576040519150601f19603f3d011682016040523d82523d6000602084013e6113e9565b606091505b50509050806113f757600080fd5b50565b61117c83838360405180602001604052806000815250611b64565b60606000611422836115dd565b905060008167ffffffffffffffff81111561143f5761143f612dad565b604051908082528060200260200182016040528015611468578160200160208202803683370190505b50905060005b828110156114af576114808582611200565b8282815181106114925761149261306d565b6020908102919091010152806114a781613052565b91505061146e565b509392505050565b6008546001600160a01b031633146114e15760405162461bcd60e51b8152600401610b0590612f7e565b600c55565b6008546001600160a01b031633146115105760405162461bcd60e51b8152600401610b0590612f7e565b600f55565b600061151f6111b0565b82106115795760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b05565b5090565b6008546001600160a01b031633146115a75760405162461bcd60e51b8152600401610b0590612f7e565b80516115ba906009906020840190612adb565b5050565b60006115c98261238c565b5192915050565b60098054610fe890613000565b60006001600160a01b0382166116495760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b05565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146116985760405162461bcd60e51b8152600401610b0590612f7e565b6116a26000612536565b565b6008546001600160a01b031633146116ce5760405162461bcd60e51b8152600401610b0590612f7e565b601555565b6008546001600160a01b031633146116fd5760405162461bcd60e51b8152600401610b0590612f7e565b6000821161174d5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b05565b60006117576111b0565b600e549091506117678483612fc9565b11156117ae5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b05565b61117c8284611f8e565b6008546001600160a01b031633146117e25760405162461bcd60e51b8152600401610b0590612f7e565b601480549115156101000261ff0019909216919091179055565b606060028054610ecd90613000565b60145460ff161561185e5760405162461bcd60e51b815260206004820152601b60248201527f434b3a206f6f707320636f6e74726163742069732070617573656400000000006044820152606401610b05565b6014546301000000900460ff166118b75760405162461bcd60e51b815260206004820152601b60248201527f434b3a2053616c65204861736e277420737461727465642079657400000000006044820152606401610b05565b60006118c16111b0565b905060006118ce336115dd565b9050600083116119205760405162461bcd60e51b815260206004820152601f60248201527f434b3a206e65656420746f206d696e74206174206c656173742031204e4654006044820152606401610b05565b60135483111561197e5760405162461bcd60e51b815260206004820152602360248201527f434b3a206d6178206d696e7420616d6f756e742070657220747820657863656560448201526219195960ea1b6064820152608401610b05565b600e5461198b8484612fc9565b11156119ca5760405162461bcd60e51b815260206004820152600e60248201526d10d2ce8815d94814dbdb191bdd5d60921b6044820152606401610b05565b336000908152601660205260409020546010546119e79190612fc9565b6119f18483612fc9565b1115611a3f5760405162461bcd60e51b815260206004820152601f60248201527f434b3a204d6178204e4654205065722057616c6c6574206578636565646564006044820152606401610b05565b82600c54611a4d9190612fe1565b341015611a955760405162461bcd60e51b8152602060048201526016602482015275434b3a20696e73756666696369656e742066756e647360501b6044820152606401610b05565b61117c3384611f8e565b6001600160a01b038216331415611af85760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b05565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611b6f848484612004565b611b7b84848484612588565b611b975760405162461bcd60e51b8152600401610b0590613083565b50505050565b6008546001600160a01b03163314611bc75760405162461bcd60e51b8152600401610b0590612f7e565b601155565b600a8054610fe890613000565b6060611be6826000541190565b611c4b5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610b05565b601454610100900460ff16611cec57600b8054611c6790613000565b80601f0160208091040260200160405190810160405280929190818152602001828054611c9390613000565b8015611ce05780601f10611cb557610100808354040283529160200191611ce0565b820191906000526020600020905b815481529060010190602001808311611cc357829003601f168201915b50505050509050919050565b6000611cf6612687565b90506000815111611d165760405180602001604052806000815250611d44565b80611d2084612696565b600a604051602001611d34939291906130d6565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611d755760405162461bcd60e51b8152600401610b0590612f7e565b601355565b6008546001600160a01b03163314611da45760405162461bcd60e51b8152600401610b0590612f7e565b80516115ba90600a906020840190612adb565b6008546001600160a01b03163314611de15760405162461bcd60e51b8152600401610b0590612f7e565b601055565b6008546001600160a01b03163314611e105760405162461bcd60e51b8152600401610b0590612f7e565b600d55565b6008546001600160a01b03163314611e3f5760405162461bcd60e51b8152600401610b0590612f7e565b80516115ba90600b906020840190612adb565b6008546001600160a01b03163314611e7c5760405162461bcd60e51b8152600401610b0590612f7e565b6001600160a01b038116611ee15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b05565b6113f781612536565b6008546001600160a01b03163314611f145760405162461bcd60e51b8152600401610b0590612f7e565b6014805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b03163314611f5c5760405162461bcd60e51b8152600401610b0590612f7e565b60148054911515620100000262ff000019909216919091179055565b600082611f858584612794565b14949350505050565b6115ba828260405180602001604052806000815250612800565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061200f8261238c565b80519091506000906001600160a01b0316336001600160a01b0316148061204657503361203b84610f50565b6001600160a01b0316145b806120585750815161205890336109a0565b9050806120c25760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b05565b846001600160a01b031682600001516001600160a01b0316146121365760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b05565b6001600160a01b03841661219a5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b05565b6121aa6000848460000151611fa8565b6001600160a01b03851660009081526004602052604081208054600192906121dc9084906001600160801b031661319a565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092612228918591166131c2565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556122b0846001612fc9565b6000818152600360205260409020549091506001600160a01b0316612342576122da816000541190565b156123425760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526123ab826000541190565b61240a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610b05565b60007f0000000000000000000000000000000000000000000000000000000000000005831061246b5761245d7f00000000000000000000000000000000000000000000000000000000000000058461303b565b612468906001612fc9565b90505b825b8181106124d5576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156124c257949350505050565b50806124cd816131ed565b91505061246d565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610b05565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561267b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125cc903390899088908890600401613204565b6020604051808303816000875af1925050508015612607575060408051601f3d908101601f1916820190925261260491810190613241565b60015b612661573d808015612635576040519150601f19603f3d011682016040523d82523d6000602084013e61263a565b606091505b5080516126595760405162461bcd60e51b8152600401610b0590613083565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061267f565b5060015b949350505050565b606060098054610ecd90613000565b6060816126ba5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126e457806126ce81613052565b91506126dd9050600a83613274565b91506126be565b60008167ffffffffffffffff8111156126ff576126ff612dad565b6040519080825280601f01601f191660200182016040528015612729576020820181803683370190505b5090505b841561267f5761273e60018361303b565b915061274b600a86613288565b612756906030612fc9565b60f81b81838151811061276b5761276b61306d565b60200101906001600160f81b031916908160001a90535061278d600a86613274565b945061272d565b600081815b84518110156114af5760008582815181106127b6576127b661306d565b602002602001015190508083116127dc57600083815260208290526040902092506127ed565b600081815260208490526040902092505b50806127f881613052565b915050612799565b6000546001600160a01b0384166128635760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b05565b61286e816000541190565b156128bb5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b05565b7f00000000000000000000000000000000000000000000000000000000000000058311156129365760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610b05565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906129929087906131c2565b6001600160801b031681526020018583602001516129b091906131c2565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612ad05760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612a946000888488612588565b612ab05760405162461bcd60e51b8152600401610b0590613083565b81612aba81613052565b9250508080612ac890613052565b915050612a47565b506000819055612384565b828054612ae790613000565b90600052602060002090601f016020900481019282612b095760008555612b4f565b82601f10612b2257805160ff1916838001178555612b4f565b82800160010185558215612b4f579182015b82811115612b4f578251825591602001919060010190612b34565b506115799291505b808211156115795760008155600101612b57565b6001600160e01b0319811681146113f757600080fd5b600060208284031215612b9357600080fd5b8135611d4481612b6b565b80358015158114612bae57600080fd5b919050565b600060208284031215612bc557600080fd5b611d4482612b9e565b600080600060408486031215612be357600080fd5b83359250602084013567ffffffffffffffff80821115612c0257600080fd5b818601915086601f830112612c1657600080fd5b813581811115612c2557600080fd5b8760208260051b8501011115612c3a57600080fd5b6020830194508093505050509250925092565b60005b83811015612c68578181015183820152602001612c50565b83811115611b975750506000910152565b60008151808452612c91816020860160208601612c4d565b601f01601f19169290920160200192915050565b602081526000611d446020830184612c79565b600060208284031215612cca57600080fd5b5035919050565b80356001600160a01b0381168114612bae57600080fd5b60008060408385031215612cfb57600080fd5b612d0483612cd1565b946020939093013593505050565b600080600060608486031215612d2757600080fd5b612d3084612cd1565b9250612d3e60208501612cd1565b9150604084013590509250925092565b600060208284031215612d6057600080fd5b611d4482612cd1565b6020808252825182820181905260009190848201906040850190845b81811015612da157835183529284019291840191600101612d85565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612dde57612dde612dad565b604051601f8501601f19908116603f01168101908282118183101715612e0657612e06612dad565b81604052809350858152868686011115612e1f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612e4b57600080fd5b813567ffffffffffffffff811115612e6257600080fd5b8201601f81018413612e7357600080fd5b61267f84823560208401612dc3565b60008060408385031215612e9557600080fd5b82359150612ea560208401612cd1565b90509250929050565b60008060408385031215612ec157600080fd5b612eca83612cd1565b9150612ea560208401612b9e565b60008060008060808587031215612eee57600080fd5b612ef785612cd1565b9350612f0560208601612cd1565b925060408501359150606085013567ffffffffffffffff811115612f2857600080fd5b8501601f81018713612f3957600080fd5b612f4887823560208401612dc3565b91505092959194509250565b60008060408385031215612f6757600080fd5b612f7083612cd1565b9150612ea560208401612cd1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612fdc57612fdc612fb3565b500190565b6000816000190483118215151615612ffb57612ffb612fb3565b500290565b600181811c9082168061301457607f821691505b6020821081141561303557634e487b7160e01b600052602260045260246000fd5b50919050565b60008282101561304d5761304d612fb3565b500390565b600060001982141561306657613066612fb3565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000845160206130e98285838a01612c4d565b8551918401916130fc8184848a01612c4d565b8554920191600090600181811c908083168061311957607f831692505b85831081141561313757634e487b7160e01b85526022600452602485fd5b80801561314b576001811461315c57613189565b60ff19851688528388019550613189565b60008b81526020902060005b858110156131815781548a820152908401908801613168565b505083880195505b50939b9a5050505050505050505050565b60006001600160801b03838116908316818110156131ba576131ba612fb3565b039392505050565b60006001600160801b038083168185168083038211156131e4576131e4612fb3565b01949350505050565b6000816131fc576131fc612fb3565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061323790830184612c79565b9695505050505050565b60006020828403121561325357600080fd5b8151611d4481612b6b565b634e487b7160e01b600052601260045260246000fd5b6000826132835761328361325e565b500490565b6000826132975761329761325e565b50069056fea264697066735822122014994dbcb0f888b14c843ac423c662c091a571998e7b1cfd090c4739e28ab30564736f6c634300080c0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000050697066733a2f2f516d524d6744726b627a584d546e4e74593336524c3277487566417737506f734e564376536444617738634d546d2f43727970746f4b61726c73756e72657665616c65642e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmRMgDrkbzXMTnNtY36RL2wHufAw7PosNVCvSdDaw8cMTm/CryptoKarlsunrevealed.json
Arg [1] : _initNotRevealedUri (string):

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [3] : 697066733a2f2f516d524d6744726b627a584d546e4e74593336524c32774875
Arg [4] : 66417737506f734e564376536444617738634d546d2f43727970746f4b61726c
Arg [5] : 73756e72657665616c65642e6a736f6e00000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48937:5764:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49299:33;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;49299:33:0;;;;;;;;36572:370;;;;;;;;;;-1:-1:-1;36572:370:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;36572:370:0;582:187:1;54254:73:0;;;;;;;;;;-1:-1:-1;54254:73:0;;;;;:::i;:::-;;:::i;:::-;;50791:861;;;;;;:::i;:::-;;:::i;38298:94::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39823:204::-;;;;;;;;;;-1:-1:-1;39823:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2912:32:1;;;2894:51;;2882:2;2867:18;39823:204:0;2748:203:1;49083:28:0;;;;;;;;;;;;;:::i;39386:379::-;;;;;;;;;;-1:-1:-1;39386:379:0;;;;;:::i;:::-;;:::i;49228:30::-;;;;;;;;;;;;;;;;49116:32;;;;;;;;;;;;;;;;53694:94;;;;;;;;;;-1:-1:-1;53694:94:0;;;;;:::i;:::-;;:::i;35132:98::-;;;;;;;;;;;;;:::i;53408:94::-;;;;;;;;;;-1:-1:-1;53408:94:0;;;;;:::i;:::-;;:::i;40673:142::-;;;;;;;;;;-1:-1:-1;40673:142:0;;;;;:::i;:::-;;:::i;34010:37::-;;;;;;;;;;;;;;;49552:94;;;;;;;;;;;;;;;;35764:744;;;;;;;;;;-1:-1:-1;35764:744:0;;;;;:::i;:::-;;:::i;49517:30::-;;;;;;;;;;-1:-1:-1;49517:30:0;;;;;;;;;;;54540:158;;;:::i;40878:157::-;;;;;;;;;;-1:-1:-1;40878:157:0;;;;;:::i;:::-;;:::i;52040:348::-;;;;;;;;;;-1:-1:-1;52040:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53510:80::-;;;;;;;;;;-1:-1:-1;53510:80:0;;;;;:::i;:::-;;:::i;53796:92::-;;;;;;;;;;-1:-1:-1;53796:92:0;;;;;:::i;:::-;;:::i;35299:177::-;;;;;;;;;;-1:-1:-1;35299:177:0;;;;;:::i;:::-;;:::i;49453:28::-;;;;;;;;;;-1:-1:-1;49453:28:0;;;;;;;;;;;53894:98;;;;;;;;;;-1:-1:-1;53894:98:0;;;;;:::i;:::-;;:::i;49486:26::-;;;;;;;;;;-1:-1:-1;49486:26:0;;;;;;;;;;;49422;;;;;;;;;;-1:-1:-1;49422:26:0;;;;;;;;38121:118;;;;;;;;;;-1:-1:-1;38121:118:0;;;;;:::i;:::-;;:::i;49015:21::-;;;;;;;;;;;;;:::i;49153:34::-;;;;;;;;;;;;;;;;49371:26;;;;;;;;;;;;;;;;36998:211;;;;;;;;;;-1:-1:-1;36998:211:0;;;;;:::i;:::-;;:::i;14146:103::-;;;;;;;;;;;;;:::i;52998:106::-;;;;;;;;;;-1:-1:-1;52998:106:0;;;;;:::i;:::-;;:::i;51721:305::-;;;;;;;;;;-1:-1:-1;51721:305:0;;;;;:::i;:::-;;:::i;13495:87::-;;;;;;;;;;-1:-1:-1;13568:6:0;;-1:-1:-1;;;;;13568:6:0;13495:87;;52914:78;;;;;;;;;;-1:-1:-1;52914:78:0;;;;;:::i;:::-;;:::i;38453:98::-;;;;;;;;;;;;;:::i;50059:687::-;;;;;;:::i;:::-;;:::i;40091:274::-;;;;;;;;;;-1:-1:-1;40091:274:0;;;;;:::i;:::-;;:::i;41098:311::-;;;;;;;;;;-1:-1:-1;41098:311:0;;;;;:::i;:::-;;:::i;49263:31::-;;;;;;;;;;;;;;;;53212:96;;;;;;;;;;-1:-1:-1;53212:96:0;;;;;:::i;:::-;;:::i;49041:37::-;;;;;;;;;;;;;:::i;52394:498::-;;;;;;;;;;-1:-1:-1;52394:498:0;;;;;:::i;:::-;;:::i;53314:86::-;;;;;;;;;;-1:-1:-1;53314:86:0;;;;;:::i;:::-;;:::i;49192:31::-;;;;;;;;;;;;;;;;45429:43;;;;;;;;;;;;;;;;49337:29;;;;;;;;;;;;;;;;53998:122;;;;;;;;;;-1:-1:-1;53998:122:0;;;;;:::i;:::-;;:::i;53112:92::-;;;;;;;;;;-1:-1:-1;53112:92:0;;;;;:::i;:::-;;:::i;40428:186::-;;;;;;;;;;-1:-1:-1;40428:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;40573:25:0;;;40550:4;40573:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40428:186;53598:88;;;;;;;;;;-1:-1:-1;53598:88:0;;;;;:::i;:::-;;:::i;54128:120::-;;;;;;;;;;-1:-1:-1;54128:120:0;;;;;:::i;:::-;;:::i;14404:201::-;;;;;;;;;;-1:-1:-1;14404:201:0;;;;;:::i;:::-;;:::i;54433:96::-;;;;;;;;;;-1:-1:-1;54433:96:0;;;;;:::i;:::-;;:::i;54335:90::-;;;;;;;;;;-1:-1:-1;54335:90:0;;;;;:::i;:::-;;:::i;36572:370::-;36699:4;-1:-1:-1;;;;;;36729:40:0;;-1:-1:-1;;;36729:40:0;;:99;;-1:-1:-1;;;;;;;36780:48:0;;-1:-1:-1;;;36780:48:0;36729:99;:160;;;-1:-1:-1;;;;;;;36839:50:0;;-1:-1:-1;;;36839:50:0;36729:160;:207;;;-1:-1:-1;;;;;;;;;;26388:40:0;;;36900:36;36715:221;36572:370;-1:-1:-1;;36572:370:0:o;54254:73::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;;;;;;;;;54306:6:::1;:15:::0;;-1:-1:-1;;54306:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54254:73::o;50791:861::-;50892:6;;;;50891:7;50883:47;;;;-1:-1:-1;;;50883:47:0;;8164:2:1;50883:47:0;;;8146:21:1;8203:2;8183:18;;;8176:30;8242:29;8222:18;;;8215:57;8289:18;;50883:47:0;7962:351:1;50883:47:0;50945:7;;;;;;;50937:50;;;;-1:-1:-1;;;50937:50:0;;8520:2:1;50937:50:0;;;8502:21:1;8559:2;8539:18;;;8532:30;8598:32;8578:18;;;8571:60;8648:18;;50937:50:0;8318:354:1;50937:50:0;51002:84;51021:11;;51002:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51034:10:0;;51056:28;;-1:-1:-1;;51073:10:0;8826:2:1;8822:15;8818:53;51056:28:0;;;8806:66:1;51034:10:0;;-1:-1:-1;8888:12:1;;;-1:-1:-1;51056:28:0;;;;;;;;;;;;51046:39;;;;;;51002:18;:84::i;:::-;50994:124;;;;-1:-1:-1;;;50994:124:0;;9113:2:1;50994:124:0;;;9095:21:1;9152:2;9132:18;;;9125:30;9191:29;9171:18;;;9164:57;9238:18;;50994:124:0;8911:351:1;50994:124:0;51125:14;51142:13;:11;:13::i;:::-;51125:30;;51210:14;;51200:6;51170:13;:27;51184:12;12299:10;;12219:98;51184:12;-1:-1:-1;;;;;51170:27:0;-1:-1:-1;;;;;51170:27:0;;;;;;;;;;;;;:36;;;;:::i;:::-;:54;;51162:112;;;;-1:-1:-1;;;51162:112:0;;9734:2:1;51162:112:0;;;9716:21:1;9773:2;9753:18;;;9746:30;9812:34;9792:18;;;9785:62;-1:-1:-1;;;9863:18:1;;;9856:43;9916:19;;51162:112:0;9532:409:1;51162:112:0;51298:1;51289:6;:10;51281:54;;;;-1:-1:-1;;;51281:54:0;;10148:2:1;51281:54:0;;;10130:21:1;10187:2;10167:18;;;10160:30;10226:33;10206:18;;;10199:61;10277:18;;51281:54:0;9946:355:1;51281:54:0;51360:10;;51350:6;:20;;51342:61;;;;-1:-1:-1;;;51342:61:0;;10508:2:1;51342:61:0;;;10490:21:1;10547:2;10527:18;;;10520:30;10586;10566:18;;;10559:58;10634:18;;51342:61:0;10306:352:1;51342:61:0;51437:8;;51418:15;51427:6;51418;:15;:::i;:::-;:27;;51410:72;;;;-1:-1:-1;;;51410:72:0;;10865:2:1;51410:72:0;;;10847:21:1;;;10884:18;;;10877:30;10943:34;10923:18;;;10916:62;10995:18;;51410:72:0;10663:356:1;51410:72:0;51519:6;51510;;:15;;;;:::i;:::-;51497:9;:28;;51489:63;;;;-1:-1:-1;;;51489:63:0;;11399:2:1;51489:63:0;;;11381:21:1;11438:2;11418:18;;;11411:30;-1:-1:-1;;;11457:18:1;;;11450:52;11519:18;;51489:63:0;11197:346:1;51489:63:0;51563:31;12299:10;51587:6;51563:9;:31::i;:::-;12299:10;51603:27;;;;:13;:27;;;;;:37;;51634:6;;51603:27;:37;;51634:6;;51603:37;:::i;:::-;;;;-1:-1:-1;;;;;;50791:861:0:o;38298:94::-;38352:13;38381:5;38374:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38298:94;:::o;39823:204::-;39891:7;39915:16;39923:7;41705:4;41735:12;-1:-1:-1;41725:22:0;41648:105;39915:16;39907:74;;;;-1:-1:-1;;;39907:74:0;;12135:2:1;39907:74:0;;;12117:21:1;12174:2;12154:18;;;12147:30;12213:34;12193:18;;;12186:62;-1:-1:-1;;;12264:18:1;;;12257:43;12317:19;;39907:74:0;11933:409:1;39907:74:0;-1:-1:-1;39997:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39997:24:0;;39823:204::o;49083:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39386:379::-;39455:13;39471:24;39487:7;39471:15;:24::i;:::-;39455:40;;39516:5;-1:-1:-1;;;;;39510:11:0;:2;-1:-1:-1;;;;;39510:11:0;;;39502:58;;;;-1:-1:-1;;;39502:58:0;;12549:2:1;39502:58:0;;;12531:21:1;12588:2;12568:18;;;12561:30;12627:34;12607:18;;;12600:62;-1:-1:-1;;;12678:18:1;;;12671:32;12720:19;;39502:58:0;12347:398:1;39502:58:0;12299:10;-1:-1:-1;;;;;39585:21:0;;;;:62;;-1:-1:-1;39610:37:0;39627:5;12299:10;40428:186;:::i;39610:37::-;39569:153;;;;-1:-1:-1;;;39569:153:0;;12952:2:1;39569:153:0;;;12934:21:1;12991:2;12971:18;;;12964:30;13030:34;13010:18;;;13003:62;13101:27;13081:18;;;13074:55;13146:19;;39569:153:0;12750:421:1;39569:153:0;39731:28;39740:2;39744:7;39753:5;39731:8;:28::i;:::-;39448:317;39386:379;;:::o;53694:94::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53760:9:::1;:22:::0;53694:94::o;35132:98::-;35185:7;35223:1;35208:12;;:16;;;;:::i;:::-;35201:23;;35132:98;:::o;53408:94::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53474:10:::1;:22:::0;53408:94::o;40673:142::-;40781:28;40791:4;40797:2;40801:7;40781:9;:28::i;35764:744::-;35873:7;35908:16;35918:5;35908:9;:16::i;:::-;35900:5;:24;35892:71;;;;-1:-1:-1;;;35892:71:0;;13508:2:1;35892:71:0;;;13490:21:1;13547:2;13527:18;;;13520:30;13586:34;13566:18;;;13559:62;-1:-1:-1;;;13637:18:1;;;13630:32;13679:19;;35892:71:0;13306:398:1;35892:71:0;35970:22;35995:13;:11;:13::i;:::-;35970:38;;36015:19;36045:25;36095:9;36090:350;36114:14;36110:1;:18;36090:350;;;36144:31;36178:14;;;:11;:14;;;;;;;;;36144:48;;;;;;;;;-1:-1:-1;;;;;36144:48:0;;;;;-1:-1:-1;;;36144:48:0;;;;;;;;;;;;36205:28;36201:89;;36266:14;;;-1:-1:-1;36201:89:0;36323:5;-1:-1:-1;;;;;36302:26:0;:17;-1:-1:-1;;;;;36302:26:0;;36298:135;;;36360:5;36345:11;:20;36341:59;;;-1:-1:-1;36387:1:0;-1:-1:-1;36380:8:0;;-1:-1:-1;;;36380:8:0;36341:59;36410:13;;;;:::i;:::-;;;;36298:135;-1:-1:-1;36130:3:0;;;;:::i;:::-;;;;36090:350;;;-1:-1:-1;36446:56:0;;-1:-1:-1;;;36446:56:0;;14051:2:1;36446:56:0;;;14033:21:1;14090:2;14070:18;;;14063:30;14129:34;14109:18;;;14102:62;-1:-1:-1;;;14180:18:1;;;14173:44;14234:19;;36446:56:0;13849:410:1;54540:158:0;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;54611:58:::1;::::0;54593:12:::1;::::0;54619:10:::1;::::0;54643:21:::1;::::0;54593:12;54611:58;54593:12;54611:58;54643:21;54619:10;54611:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54592:77;;;54684:7;54676:16;;;::::0;::::1;;54585:113;54540:158::o:0;40878:157::-;40990:39;41007:4;41013:2;41017:7;40990:39;;;;;;;;;;;;:16;:39::i;52040:348::-;52115:16;52143:23;52169:17;52179:6;52169:9;:17::i;:::-;52143:43;;52193:25;52235:15;52221:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52221:30:0;;52193:58;;52263:9;52258:103;52278:15;52274:1;:19;52258:103;;;52323:30;52343:6;52351:1;52323:19;:30::i;:::-;52309:8;52318:1;52309:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;52295:3;;;;:::i;:::-;;;;52258:103;;;-1:-1:-1;52374:8:0;52040:348;-1:-1:-1;;;52040:348:0:o;53510:80::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53569:4:::1;:15:::0;53510:80::o;53796:92::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53861:8:::1;:21:::0;53796:92::o;35299:177::-;35366:7;35398:13;:11;:13::i;:::-;35390:5;:21;35382:69;;;;-1:-1:-1;;;35382:69:0;;14808:2:1;35382:69:0;;;14790:21:1;14847:2;14827:18;;;14820:30;14886:34;14866:18;;;14859:62;-1:-1:-1;;;14937:18:1;;;14930:33;14980:19;;35382:69:0;14606:399:1;35382:69:0;-1:-1:-1;35465:5:0;35299:177::o;53894:98::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53965:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53894:98:::0;:::o;38121:118::-;38185:7;38208:20;38220:7;38208:11;:20::i;:::-;:25;;38121:118;-1:-1:-1;;38121:118:0:o;49015:21::-;;;;;;;:::i;36998:211::-;37062:7;-1:-1:-1;;;;;37086:19:0;;37078:75;;;;-1:-1:-1;;;37078:75:0;;15212:2:1;37078:75:0;;;15194:21:1;15251:2;15231:18;;;15224:30;15290:34;15270:18;;;15263:62;-1:-1:-1;;;15341:18:1;;;15334:41;15392:19;;37078:75:0;15010:407:1;37078:75:0;-1:-1:-1;;;;;;37175:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37175:27:0;;36998:211::o;14146:103::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;14211:30:::1;14238:1;14211:18;:30::i;:::-;14146:103::o:0;52998:106::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53072:10:::1;:24:::0;52998:106::o;51721:305::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;51823:1:::1;51809:11;:15;51801:55;;;::::0;-1:-1:-1;;;51801:55:0;;15624:2:1;51801:55:0::1;::::0;::::1;15606:21:1::0;15663:2;15643:18;;;15636:30;15702:29;15682:18;;;15675:57;15749:18;;51801:55:0::1;15422:351:1::0;51801:55:0::1;51863:14;51880:13;:11;:13::i;:::-;51932:9;::::0;51863:30;;-1:-1:-1;51908:20:0::1;51917:11:::0;51863:30;51908:20:::1;:::i;:::-;:33;;51900:68;;;::::0;-1:-1:-1;;;51900:68:0;;15980:2:1;51900:68:0::1;::::0;::::1;15962:21:1::0;16019:2;15999:18;;;15992:30;-1:-1:-1;;;16038:18:1;;;16031:52;16100:18;;51900:68:0::1;15778:346:1::0;51900:68:0::1;51979:35;51989:11;52002;51979:9;:35::i;52914:78::-:0;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;52969:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;52969:17:0;;::::1;::::0;;;::::1;::::0;;52914:78::o;38453:98::-;38509:13;38538:7;38531:14;;;;;:::i;50059:687::-;50120:6;;;;50119:7;50111:47;;;;-1:-1:-1;;;50111:47:0;;8164:2:1;50111:47:0;;;8146:21:1;8203:2;8183:18;;;8176:30;8242:29;8222:18;;;8215:57;8289:18;;50111:47:0;7962:351:1;50111:47:0;50173:10;;;;;;;50165:50;;;;-1:-1:-1;;;50165:50:0;;16331:2:1;50165:50:0;;;16313:21:1;16370:2;16350:18;;;16343:30;16409:29;16389:18;;;16382:57;16456:18;;50165:50:0;16129:351:1;50165:50:0;50222:14;50239:13;:11;:13::i;:::-;50222:30;-1:-1:-1;50259:23:0;50285;12299:10;36998:211;:::i;50285:23::-;50259:49;;50332:1;50323:6;:10;50315:54;;;;-1:-1:-1;;;50315:54:0;;10148:2:1;50315:54:0;;;10130:21:1;10187:2;10167:18;;;10160:30;10226:33;10206:18;;;10199:61;10277:18;;50315:54:0;9946:355:1;50315:54:0;50394:7;;50384:6;:17;;50376:65;;;;-1:-1:-1;;;50376:65:0;;16687:2:1;50376:65:0;;;16669:21:1;16726:2;16706:18;;;16699:30;16765:34;16745:18;;;16738:62;-1:-1:-1;;;16816:18:1;;;16809:33;16859:19;;50376:65:0;16485:399:1;50376:65:0;50475:9;;50456:15;50465:6;50456;:15;:::i;:::-;:28;;50448:55;;;;-1:-1:-1;;;50448:55:0;;17091:2:1;50448:55:0;;;17073:21:1;17130:2;17110:18;;;17103:30;-1:-1:-1;;;17149:18:1;;;17142:44;17203:18;;50448:55:0;16889:338:1;50448:55:0;12299:10;50561:27;;;;:13;:27;;;;;;50546:12;;:42;;50561:27;50546:42;:::i;:::-;50518:24;50536:6;50518:15;:24;:::i;:::-;:70;;50510:114;;;;-1:-1:-1;;;50510:114:0;;17434:2:1;50510:114:0;;;17416:21:1;17473:2;17453:18;;;17446:30;17512:33;17492:18;;;17485:61;17563:18;;50510:114:0;17232:355:1;50510:114:0;50659:6;50652:4;;:13;;;;:::i;:::-;50639:9;:26;;50631:61;;;;-1:-1:-1;;;50631:61:0;;11399:2:1;50631:61:0;;;11381:21:1;11438:2;11418:18;;;11411:30;-1:-1:-1;;;11457:18:1;;;11450:52;11519:18;;50631:61:0;11197:346:1;50631:61:0;50703:31;12299:10;50727:6;50703:9;:31::i;40091:274::-;-1:-1:-1;;;;;40182:24:0;;12299:10;40182:24;;40174:63;;;;-1:-1:-1;;;40174:63:0;;17794:2:1;40174:63:0;;;17776:21:1;17833:2;17813:18;;;17806:30;17872:28;17852:18;;;17845:56;17918:18;;40174:63:0;17592:350:1;40174:63:0;12299:10;40246:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40246:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40246:53:0;;;;;;;;;;40311:48;;722:41:1;;;40246:42:0;;12299:10;40311:48;;695:18:1;40311:48:0;;;;;;;40091:274;;:::o;41098:311::-;41235:28;41245:4;41251:2;41255:7;41235:9;:28::i;:::-;41286:48;41309:4;41315:2;41319:7;41328:5;41286:22;:48::i;:::-;41270:133;;;;-1:-1:-1;;;41270:133:0;;;;;;;:::i;:::-;41098:311;;;;:::o;53212:96::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53279:14:::1;:23:::0;53212:96::o;49041:37::-;;;;;;;:::i;52394:498::-;52492:13;52533:16;52541:7;41705:4;41735:12;-1:-1:-1;41725:22:0;41648:105;52533:16;52517:98;;;;-1:-1:-1;;;52517:98:0;;18569:2:1;52517:98:0;;;18551:21:1;18608:2;18588:18;;;18581:30;18647:34;18627:18;;;18620:62;-1:-1:-1;;;18698:18:1;;;18691:46;18754:19;;52517:98:0;18367:412:1;52517:98:0;52631:8;;;;;;;52628:62;;52668:14;52661:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52394:498;;;:::o;52628:62::-;52698:28;52729:10;:8;:10::i;:::-;52698:41;;52784:1;52759:14;52753:28;:32;:133;;;;;;;;;;;;;;;;;52821:14;52837:18;:7;:16;:18::i;:::-;52857:13;52804:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52753:133;52746:140;52394:498;-1:-1:-1;;;52394:498:0:o;53314:86::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53376:7:::1;:18:::0;53314:86::o;53998:122::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;54081:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;53112:92::-:0;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53177:12:::1;:21:::0;53112:92::o;53598:88::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53661:6:::1;:19:::0;53598:88::o;54128:120::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;54210:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;14404:201::-:0;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14493:22:0;::::1;14485:73;;;::::0;-1:-1:-1;;;14485:73:0;;20644:2:1;14485:73:0::1;::::0;::::1;20626:21:1::0;20683:2;20663:18;;;20656:30;20722:34;20702:18;;;20695:62;-1:-1:-1;;;20773:18:1;;;20766:36;20819:19;;14485:73:0::1;20442:402:1::0;14485:73:0::1;14569:28;14588:8;14569:18;:28::i;54433:96::-:0;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;54502:10:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;54502:19:0;;::::1;::::0;;;::::1;::::0;;54433:96::o;54335:90::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;54401:7:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;54401:16:0;;::::1;::::0;;;::::1;::::0;;54335:90::o;923:190::-;1048:4;1101;1072:25;1085:5;1092:4;1072:12;:25::i;:::-;:33;;923:190;-1:-1:-1;;;;923:190:0:o;41759:98::-;41824:27;41834:2;41838:8;41824:27;;;;;;;;;;;;:9;:27::i;45251:172::-;45348:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45348:29:0;-1:-1:-1;;;;;45348:29:0;;;;;;;;;45389:28;;45348:24;;45389:28;;;;;;;45251:172;;;:::o;43616:1529::-;43713:35;43751:20;43763:7;43751:11;:20::i;:::-;43822:18;;43713:58;;-1:-1:-1;43780:22:0;;-1:-1:-1;;;;;43806:34:0;12299:10;-1:-1:-1;;;;;43806:34:0;;:81;;;-1:-1:-1;12299:10:0;43851:20;43863:7;43851:11;:20::i;:::-;-1:-1:-1;;;;;43851:36:0;;43806:81;:142;;;-1:-1:-1;43915:18:0;;43898:50;;12299:10;40428:186;:::i;43898:50::-;43780:169;;43974:17;43958:101;;;;-1:-1:-1;;;43958:101:0;;21051:2:1;43958:101:0;;;21033:21:1;21090:2;21070:18;;;21063:30;21129:34;21109:18;;;21102:62;-1:-1:-1;;;21180:18:1;;;21173:48;21238:19;;43958:101:0;20849:414:1;43958:101:0;44106:4;-1:-1:-1;;;;;44084:26:0;:13;:18;;;-1:-1:-1;;;;;44084:26:0;;44068:98;;;;-1:-1:-1;;;44068:98:0;;21470:2:1;44068:98:0;;;21452:21:1;21509:2;21489:18;;;21482:30;21548:34;21528:18;;;21521:62;-1:-1:-1;;;21599:18:1;;;21592:36;21645:19;;44068:98:0;21268:402:1;44068:98:0;-1:-1:-1;;;;;44181:16:0;;44173:66;;;;-1:-1:-1;;;44173:66:0;;21877:2:1;44173:66:0;;;21859:21:1;21916:2;21896:18;;;21889:30;21955:34;21935:18;;;21928:62;-1:-1:-1;;;22006:18:1;;;21999:35;22051:19;;44173:66:0;21675:401:1;44173:66:0;44348:49;44365:1;44369:7;44378:13;:18;;;44348:8;:49::i;:::-;-1:-1:-1;;;;;44406:18:0;;;;;;:12;:18;;;;;:31;;44436:1;;44406:18;:31;;44436:1;;-1:-1:-1;;;;;44406:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;44406:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;44444:16:0;;-1:-1:-1;44444:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;44444:16:0;;:29;;-1:-1:-1;;44444:29:0;;:::i;:::-;;;-1:-1:-1;;;;;44444:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44503:43:0;;;;;;;;-1:-1:-1;;;;;44503:43:0;;;;;;44529:15;44503:43;;;;;;;;;-1:-1:-1;44480:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;44480:66:0;-1:-1:-1;;;;;;44480:66:0;;;;;;;;;;;44796:11;44492:7;-1:-1:-1;44796:11:0;:::i;:::-;44859:1;44818:24;;;:11;:24;;;;;:29;44774:33;;-1:-1:-1;;;;;;44818:29:0;44814:236;;44876:20;44884:11;41705:4;41735:12;-1:-1:-1;41725:22:0;41648:105;44876:20;44872:171;;;44936:97;;;;;;;;44963:18;;-1:-1:-1;;;;;44936:97:0;;;;;;44994:28;;;;44936:97;;;;;;;;;;-1:-1:-1;44909:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;44909:124:0;-1:-1:-1;;;;;;44909:124:0;;;;;;;;;;;;44872:171;45082:7;45078:2;-1:-1:-1;;;;;45063:27:0;45072:4;-1:-1:-1;;;;;45063:27:0;;;;;;;;;;;45097:42;43706:1439;;;43616:1529;;;:::o;37461:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;37578:16:0;37586:7;41705:4;41735:12;-1:-1:-1;41725:22:0;41648:105;37578:16;37570:71;;;;-1:-1:-1;;;37570:71:0;;22792:2:1;37570:71:0;;;22774:21:1;22831:2;22811:18;;;22804:30;22870:34;22850:18;;;22843:62;-1:-1:-1;;;22921:18:1;;;22914:40;22971:19;;37570:71:0;22590:406:1;37570:71:0;37650:26;37698:12;37687:7;:23;37683:93;;37742:22;37752:12;37742:7;:22;:::i;:::-;:26;;37767:1;37742:26;:::i;:::-;37721:47;;37683:93;37804:7;37784:212;37821:18;37813:4;:26;37784:212;;37858:31;37892:17;;;:11;:17;;;;;;;;;37858:51;;;;;;;;;-1:-1:-1;;;;;37858:51:0;;;;;-1:-1:-1;;;37858:51:0;;;;;;;;;;;;37922:28;37918:71;;37970:9;37461:606;-1:-1:-1;;;;37461:606:0:o;37918:71::-;-1:-1:-1;37841:6:0;;;;:::i;:::-;;;;37784:212;;;-1:-1:-1;38004:57:0;;-1:-1:-1;;;38004:57:0;;23344:2:1;38004:57:0;;;23326:21:1;23383:2;23363:18;;;23356:30;23422:34;23402:18;;;23395:62;-1:-1:-1;;;23473:18:1;;;23466:45;23528:19;;38004:57:0;23142:411:1;14765:191:0;14858:6;;;-1:-1:-1;;;;;14875:17:0;;;-1:-1:-1;;;;;;14875:17:0;;;;;;;14908:40;;14858:6;;;14875:17;14858:6;;14908:40;;14839:16;;14908:40;14828:128;14765:191;:::o;46962:690::-;47099:4;-1:-1:-1;;;;;47116:13:0;;16491:19;:23;47112:535;;47155:72;;-1:-1:-1;;;47155:72:0;;-1:-1:-1;;;;;47155:36:0;;;;;:72;;12299:10;;47206:4;;47212:7;;47221:5;;47155:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47155:72:0;;;;;;;;-1:-1:-1;;47155:72:0;;;;;;;;;;;;:::i;:::-;;;47142:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47386:13:0;;47382:215;;47419:61;;-1:-1:-1;;;47419:61:0;;;;;;;:::i;47382:215::-;47565:6;47559:13;47550:6;47546:2;47542:15;47535:38;47142:464;-1:-1:-1;;;;;;47277:55:0;-1:-1:-1;;;47277:55:0;;-1:-1:-1;47270:62:0;;47112:535;-1:-1:-1;47635:4:0;47112:535;46962:690;;;;;;:::o;49938:102::-;49998:13;50027:7;50020:14;;;;;:::i;9781:723::-;9837:13;10058:10;10054:53;;-1:-1:-1;;10085:10:0;;;;;;;;;;;;-1:-1:-1;;;10085:10:0;;;;;9781:723::o;10054:53::-;10132:5;10117:12;10173:78;10180:9;;10173:78;;10206:8;;;;:::i;:::-;;-1:-1:-1;10229:10:0;;-1:-1:-1;10237:2:0;10229:10;;:::i;:::-;;;10173:78;;;10261:19;10293:6;10283:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10283:17:0;;10261:39;;10311:154;10318:10;;10311:154;;10345:11;10355:1;10345:11;;:::i;:::-;;-1:-1:-1;10414:10:0;10422:2;10414:5;:10;:::i;:::-;10401:24;;:2;:24;:::i;:::-;10388:39;;10371:6;10378;10371:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10371:56:0;;;;;;;;-1:-1:-1;10442:11:0;10451:2;10442:11;;:::i;:::-;;;10311:154;;1475:675;1558:7;1601:4;1558:7;1616:497;1640:5;:12;1636:1;:16;1616:497;;;1674:20;1697:5;1703:1;1697:8;;;;;;;;:::i;:::-;;;;;;;1674:31;;1740:12;1724;:28;1720:382;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;1852:57;;1720:382;;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;2029:57;;1720:382;-1:-1:-1;1654:3:0;;;;:::i;:::-;;;;1616:497;;42112:1272;42217:20;42240:12;-1:-1:-1;;;;;42267:16:0;;42259:62;;;;-1:-1:-1;;;42259:62:0;;24882:2:1;42259:62:0;;;24864:21:1;24921:2;24901:18;;;24894:30;24960:34;24940:18;;;24933:62;-1:-1:-1;;;25011:18:1;;;25004:31;25052:19;;42259:62:0;24680:397:1;42259:62:0;42458:21;42466:12;41705:4;41735:12;-1:-1:-1;41725:22:0;41648:105;42458:21;42457:22;42449:64;;;;-1:-1:-1;;;42449:64:0;;25284:2:1;42449:64:0;;;25266:21:1;25323:2;25303:18;;;25296:30;25362:31;25342:18;;;25335:59;25411:18;;42449:64:0;25082:353:1;42449:64:0;42540:12;42528:8;:24;;42520:71;;;;-1:-1:-1;;;42520:71:0;;25642:2:1;42520:71:0;;;25624:21:1;25681:2;25661:18;;;25654:30;25720:34;25700:18;;;25693:62;-1:-1:-1;;;25771:18:1;;;25764:32;25813:19;;42520:71:0;25440:398:1;42520:71:0;-1:-1:-1;;;;;42703:16:0;;42670:30;42703:16;;;:12;:16;;;;;;;;;42670:49;;;;;;;;;-1:-1:-1;;;;;42670:49:0;;;;;-1:-1:-1;;;42670:49:0;;;;;;;;;;;42745:119;;;;;;;;42765:19;;42670:49;;42745:119;;;42765:39;;42795:8;;42765:39;:::i;:::-;-1:-1:-1;;;;;42745:119:0;;;;;42848:8;42813:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;42745:119:0;;;;;;-1:-1:-1;;;;;42726:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;42726:138:0;;;;;;;;;;;;42899:43;;;;;;;;;;;42925:15;42899:43;;;;;;;;42871:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;42871:71:0;-1:-1:-1;;;;;;42871:71:0;;;;;;;;;;;;;;;;;;42883:12;;42995:281;43019:8;43015:1;:12;42995:281;;;43048:38;;43073:12;;-1:-1:-1;;;;;43048:38:0;;;43065:1;;43048:38;;43065:1;;43048:38;43113:59;43144:1;43148:2;43152:12;43166:5;43113:22;:59::i;:::-;43095:150;;;;-1:-1:-1;;;43095:150:0;;;;;;;:::i;:::-;43254:14;;;;:::i;:::-;;;;43029:3;;;;;:::i;:::-;;;;42995:281;;;-1:-1:-1;43284:12:0;:27;;;43318:60;41098:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:160::-;839:20;;895:13;;888:21;878:32;;868:60;;924:1;921;914:12;868:60;774:160;;;:::o;939:180::-;995:6;1048:2;1036:9;1027:7;1023:23;1019:32;1016:52;;;1064:1;1061;1054:12;1016:52;1087:26;1103:9;1087:26;:::i;1124:683::-;1219:6;1227;1235;1288:2;1276:9;1267:7;1263:23;1259:32;1256:52;;;1304:1;1301;1294:12;1256:52;1340:9;1327:23;1317:33;;1401:2;1390:9;1386:18;1373:32;1424:18;1465:2;1457:6;1454:14;1451:34;;;1481:1;1478;1471:12;1451:34;1519:6;1508:9;1504:22;1494:32;;1564:7;1557:4;1553:2;1549:13;1545:27;1535:55;;1586:1;1583;1576:12;1535:55;1626:2;1613:16;1652:2;1644:6;1641:14;1638:34;;;1668:1;1665;1658:12;1638:34;1721:7;1716:2;1706:6;1703:1;1699:14;1695:2;1691:23;1687:32;1684:45;1681:65;;;1742:1;1739;1732:12;1681:65;1773:2;1769;1765:11;1755:21;;1795:6;1785:16;;;;;1124:683;;;;;:::o;1812:258::-;1884:1;1894:113;1908:6;1905:1;1902:13;1894:113;;;1984:11;;;1978:18;1965:11;;;1958:39;1930:2;1923:10;1894:113;;;2025:6;2022:1;2019:13;2016:48;;;-1:-1:-1;;2060:1:1;2042:16;;2035:27;1812:258::o;2075:::-;2117:3;2155:5;2149:12;2182:6;2177:3;2170:19;2198:63;2254:6;2247:4;2242:3;2238:14;2231:4;2224:5;2220:16;2198:63;:::i;:::-;2315:2;2294:15;-1:-1:-1;;2290:29:1;2281:39;;;;2322:4;2277:50;;2075:258;-1:-1:-1;;2075:258:1:o;2338:220::-;2487:2;2476:9;2469:21;2450:4;2507:45;2548:2;2537:9;2533:18;2525:6;2507:45;:::i;2563:180::-;2622:6;2675:2;2663:9;2654:7;2650:23;2646:32;2643:52;;;2691:1;2688;2681:12;2643:52;-1:-1:-1;2714:23:1;;2563:180;-1:-1:-1;2563:180:1:o;2956:173::-;3024:20;;-1:-1:-1;;;;;3073:31:1;;3063:42;;3053:70;;3119:1;3116;3109:12;3134:254;3202:6;3210;3263:2;3251:9;3242:7;3238:23;3234:32;3231:52;;;3279:1;3276;3269:12;3231:52;3302:29;3321:9;3302:29;:::i;:::-;3292:39;3378:2;3363:18;;;;3350:32;;-1:-1:-1;;;3134:254:1:o;3393:328::-;3470:6;3478;3486;3539:2;3527:9;3518:7;3514:23;3510:32;3507:52;;;3555:1;3552;3545:12;3507:52;3578:29;3597:9;3578:29;:::i;:::-;3568:39;;3626:38;3660:2;3649:9;3645:18;3626:38;:::i;:::-;3616:48;;3711:2;3700:9;3696:18;3683:32;3673:42;;3393:328;;;;;:::o;3908:186::-;3967:6;4020:2;4008:9;3999:7;3995:23;3991:32;3988:52;;;4036:1;4033;4026:12;3988:52;4059:29;4078:9;4059:29;:::i;4099:632::-;4270:2;4322:21;;;4392:13;;4295:18;;;4414:22;;;4241:4;;4270:2;4493:15;;;;4467:2;4452:18;;;4241:4;4536:169;4550:6;4547:1;4544:13;4536:169;;;4611:13;;4599:26;;4680:15;;;;4645:12;;;;4572:1;4565:9;4536:169;;;-1:-1:-1;4722:3:1;;4099:632;-1:-1:-1;;;;;;4099:632:1:o;4736:127::-;4797:10;4792:3;4788:20;4785:1;4778:31;4828:4;4825:1;4818:15;4852:4;4849:1;4842:15;4868:632;4933:5;4963:18;5004:2;4996:6;4993:14;4990:40;;;5010:18;;:::i;:::-;5085:2;5079:9;5053:2;5139:15;;-1:-1:-1;;5135:24:1;;;5161:2;5131:33;5127:42;5115:55;;;5185:18;;;5205:22;;;5182:46;5179:72;;;5231:18;;:::i;:::-;5271:10;5267:2;5260:22;5300:6;5291:15;;5330:6;5322;5315:22;5370:3;5361:6;5356:3;5352:16;5349:25;5346:45;;;5387:1;5384;5377:12;5346:45;5437:6;5432:3;5425:4;5417:6;5413:17;5400:44;5492:1;5485:4;5476:6;5468;5464:19;5460:30;5453:41;;;;4868:632;;;;;:::o;5505:451::-;5574:6;5627:2;5615:9;5606:7;5602:23;5598:32;5595:52;;;5643:1;5640;5633:12;5595:52;5683:9;5670:23;5716:18;5708:6;5705:30;5702:50;;;5748:1;5745;5738:12;5702:50;5771:22;;5824:4;5816:13;;5812:27;-1:-1:-1;5802:55:1;;5853:1;5850;5843:12;5802:55;5876:74;5942:7;5937:2;5924:16;5919:2;5915;5911:11;5876:74;:::i;6146:254::-;6214:6;6222;6275:2;6263:9;6254:7;6250:23;6246:32;6243:52;;;6291:1;6288;6281:12;6243:52;6327:9;6314:23;6304:33;;6356:38;6390:2;6379:9;6375:18;6356:38;:::i;:::-;6346:48;;6146:254;;;;;:::o;6405:::-;6470:6;6478;6531:2;6519:9;6510:7;6506:23;6502:32;6499:52;;;6547:1;6544;6537:12;6499:52;6570:29;6589:9;6570:29;:::i;:::-;6560:39;;6618:35;6649:2;6638:9;6634:18;6618:35;:::i;6664:667::-;6759:6;6767;6775;6783;6836:3;6824:9;6815:7;6811:23;6807:33;6804:53;;;6853:1;6850;6843:12;6804:53;6876:29;6895:9;6876:29;:::i;:::-;6866:39;;6924:38;6958:2;6947:9;6943:18;6924:38;:::i;:::-;6914:48;;7009:2;6998:9;6994:18;6981:32;6971:42;;7064:2;7053:9;7049:18;7036:32;7091:18;7083:6;7080:30;7077:50;;;7123:1;7120;7113:12;7077:50;7146:22;;7199:4;7191:13;;7187:27;-1:-1:-1;7177:55:1;;7228:1;7225;7218:12;7177:55;7251:74;7317:7;7312:2;7299:16;7294:2;7290;7286:11;7251:74;:::i;:::-;7241:84;;;6664:667;;;;;;;:::o;7336:260::-;7404:6;7412;7465:2;7453:9;7444:7;7440:23;7436:32;7433:52;;;7481:1;7478;7471:12;7433:52;7504:29;7523:9;7504:29;:::i;:::-;7494:39;;7552:38;7586:2;7575:9;7571:18;7552:38;:::i;7601:356::-;7803:2;7785:21;;;7822:18;;;7815:30;7881:34;7876:2;7861:18;;7854:62;7948:2;7933:18;;7601:356::o;9267:127::-;9328:10;9323:3;9319:20;9316:1;9309:31;9359:4;9356:1;9349:15;9383:4;9380:1;9373:15;9399:128;9439:3;9470:1;9466:6;9463:1;9460:13;9457:39;;;9476:18;;:::i;:::-;-1:-1:-1;9512:9:1;;9399:128::o;11024:168::-;11064:7;11130:1;11126;11122:6;11118:14;11115:1;11112:21;11107:1;11100:9;11093:17;11089:45;11086:71;;;11137:18;;:::i;:::-;-1:-1:-1;11177:9:1;;11024:168::o;11548:380::-;11627:1;11623:12;;;;11670;;;11691:61;;11745:4;11737:6;11733:17;11723:27;;11691:61;11798:2;11790:6;11787:14;11767:18;11764:38;11761:161;;;11844:10;11839:3;11835:20;11832:1;11825:31;11879:4;11876:1;11869:15;11907:4;11904:1;11897:15;11761:161;;11548:380;;;:::o;13176:125::-;13216:4;13244:1;13241;13238:8;13235:34;;;13249:18;;:::i;:::-;-1:-1:-1;13286:9:1;;13176:125::o;13709:135::-;13748:3;-1:-1:-1;;13769:17:1;;13766:43;;;13789:18;;:::i;:::-;-1:-1:-1;13836:1:1;13825:13;;13709:135::o;14474:127::-;14535:10;14530:3;14526:20;14523:1;14516:31;14566:4;14563:1;14556:15;14590:4;14587:1;14580:15;17947:415;18149:2;18131:21;;;18188:2;18168:18;;;18161:30;18227:34;18222:2;18207:18;;18200:62;-1:-1:-1;;;18293:2:1;18278:18;;18271:49;18352:3;18337:19;;17947:415::o;18910:1527::-;19134:3;19172:6;19166:13;19198:4;19211:51;19255:6;19250:3;19245:2;19237:6;19233:15;19211:51;:::i;:::-;19325:13;;19284:16;;;;19347:55;19325:13;19284:16;19369:15;;;19347:55;:::i;:::-;19491:13;;19424:20;;;19464:1;;19551;19573:18;;;;19626;;;;19653:93;;19731:4;19721:8;19717:19;19705:31;;19653:93;19794:2;19784:8;19781:16;19761:18;19758:40;19755:167;;;-1:-1:-1;;;19821:33:1;;19877:4;19874:1;19867:15;19907:4;19828:3;19895:17;19755:167;19938:18;19965:110;;;;20089:1;20084:328;;;;19931:481;;19965:110;-1:-1:-1;;20000:24:1;;19986:39;;20045:20;;;;-1:-1:-1;19965:110:1;;20084:328;18857:1;18850:14;;;18894:4;18881:18;;20179:1;20193:169;20207:8;20204:1;20201:15;20193:169;;;20289:14;;20274:13;;;20267:37;20332:16;;;;20224:10;;20193:169;;;20197:3;;20393:8;20386:5;20382:20;20375:27;;19931:481;-1:-1:-1;20428:3:1;;18910:1527;-1:-1:-1;;;;;;;;;;;18910:1527:1:o;22081:246::-;22121:4;-1:-1:-1;;;;;22234:10:1;;;;22204;;22256:12;;;22253:38;;;22271:18;;:::i;:::-;22308:13;;22081:246;-1:-1:-1;;;22081:246:1:o;22332:253::-;22372:3;-1:-1:-1;;;;;22461:2:1;22458:1;22454:10;22491:2;22488:1;22484:10;22522:3;22518:2;22514:12;22509:3;22506:21;22503:47;;;22530:18;;:::i;:::-;22566:13;;22332:253;-1:-1:-1;;;;22332:253:1:o;23001:136::-;23040:3;23068:5;23058:39;;23077:18;;:::i;:::-;-1:-1:-1;;;23113:18:1;;23001:136::o;23558:489::-;-1:-1:-1;;;;;23827:15:1;;;23809:34;;23879:15;;23874:2;23859:18;;23852:43;23926:2;23911:18;;23904:34;;;23974:3;23969:2;23954:18;;23947:31;;;23752:4;;23995:46;;24021:19;;24013:6;23995:46;:::i;:::-;23987:54;23558:489;-1:-1:-1;;;;;;23558:489:1:o;24052:249::-;24121:6;24174:2;24162:9;24153:7;24149:23;24145:32;24142:52;;;24190:1;24187;24180:12;24142:52;24222:9;24216:16;24241:30;24265:5;24241:30;:::i;24306:127::-;24367:10;24362:3;24358:20;24355:1;24348:31;24398:4;24395:1;24388:15;24422:4;24419:1;24412:15;24438:120;24478:1;24504;24494:35;;24509:18;;:::i;:::-;-1:-1:-1;24543:9:1;;24438:120::o;24563:112::-;24595:1;24621;24611:35;;24626:18;;:::i;:::-;-1:-1:-1;24660:9:1;;24563:112::o

Swarm Source

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