ETH Price: $3,387.15 (-1.74%)
Gas: 3 Gwei

Token

TwiLifeClub Image Collection Campaign (TLC GIF)
 

Overview

Max Total Supply

10,000 TLC GIF

Holders

8,426

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TLC GIF
0x727C216ffFb234CcA8235ac5d57965828766f227
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:
TLCGIF

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-25
*/

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// 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: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle 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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// 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: ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @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..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * 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 = 0;

  uint256 internal immutable collectionSize;
  uint256 internal 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.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

  /**
   * @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(collectionSize). 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:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `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 > collectionSize - 1) {
      endIndex = collectionSize - 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: 2dnft.sol


pragma solidity ^0.8.4;







contract TLCGIF is ERC721A, ReentrancyGuard, Ownable {

    using Strings for uint256;

    struct whitelist_config {
        uint256 WHITELIST_START_TIME; 
        uint256 WHITELIST_END_TIME;  
        uint256 WHITELIST_CURVE_LENGTH;
        uint256 WHITELIST_TOTALSUPPLY;
        uint256 FREEMINT_END_TIME;
    }

    whitelist_config public whitelistConfig;

    mapping (address => uint256) public maxPerAddressDuringMint;

    bytes32 public root;

    uint256 public FreeAlreadyMint;

    uint256 public DevAlreadyMint;

    mapping (address => uint256) public AddressAlreadyMint;

    uint256 public constant _totalSupply = 10000;

    mapping (address => bool) public userFreeMint;

    string private UriPrefix = "https://bafybeia7axgj5v5lhlzp4owbld3bazueml6yhp5kktc62sqd5z4nnb6jpa.ipfs.nftstorage.link/character_";

    string private UriSuffix = ".json";

    uint256 public allowListSales;

    receive() external payable {}

  constructor( ) ERC721A("TwiLifeClub Image Collection Campaign", "TLC GIF", 200, 10000) {

       
  }

    function setTime(uint256 _whitelistStartTIme, uint256 _whitelistEndTIme, uint256 _freemintEndTime) external onlyOwner  {
        whitelistConfig.WHITELIST_START_TIME = _whitelistStartTIme;
        whitelistConfig.WHITELIST_END_TIME = _whitelistEndTIme;
        whitelistConfig.FREEMINT_END_TIME = _freemintEndTime;
    }

    function setRoot(bytes32 _root) external onlyOwner {
        root = _root;
    }

    function _baseURI(uint256 tokenId) internal view returns (string memory) {

        return getBaseUri(tokenId);

    }

    function setBaseURI(string memory _UriPrefix, string memory _UriSuffix) external onlyOwner {
        
        UriPrefix = _UriPrefix;
        UriSuffix = _UriSuffix;

    }

    function getBaseUri(uint256 tokenId) internal view returns(string memory) {
        
        string memory baseURI;

        
         baseURI = string(abi.encodePacked(UriPrefix, tokenId.toString(), UriSuffix));
     
        
        return baseURI;

    }

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

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    } 

    //freemint
    function freeMint() external nonReentrant callerIsUser{

        require(block.timestamp >= whitelistConfig.WHITELIST_END_TIME, "freemint has not started ye");

        require(block.timestamp < whitelistConfig.FREEMINT_END_TIME, "freemint expired");

        require(!userFreeMint[msg.sender], "This user has Mint");

        require(totalSupply() + 1 <= _totalSupply, "sold out");

        userFreeMint[msg.sender] = true;

        FreeAlreadyMint += 1;

        _safeMint(msg.sender,1);

    }

    function allowlistMint(bytes32[] calldata _proofs, uint256 proofQuantity,uint256 quantity) external nonReentrant callerIsUser{

        require(block.timestamp >= whitelistConfig.WHITELIST_START_TIME,"whitelist has not started ye");

        require(block.timestamp < whitelistConfig.WHITELIST_END_TIME, "whitelist expired");
   
        require(AddressAlreadyMint[msg.sender] + quantity  <= proofQuantity,"The quantity has exceeded the limit");

        require(quantity > 0, "Quantity must be greater than 0");

        require(totalSupply() + quantity <= _totalSupply, "sold out");

        bytes32 _leaf = keccak256(abi.encodePacked(msg.sender,uint256(proofQuantity)));

        (bool res) = MerkleProof.verify(_proofs, root, _leaf);

        require(res,"verify false");

        allowListSales += quantity;

        AddressAlreadyMint[msg.sender] += quantity;

        _safeMint(msg.sender,quantity);
    }
  
    function tokenURI(uint256 tokenId) public view override(ERC721A) returns(string memory){

        return _baseURI(tokenId);
 
    }

    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal override {

         super._afterTokenTransfers(from,to,startTokenId,quantity);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AddressAlreadyMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DevAlreadyMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreeAlreadyMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListSales","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proofs","type":"bytes32[]"},{"internalType":"uint256","name":"proofQuantity","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"allowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"_UriPrefix","type":"string"},{"internalType":"string","name":"_UriSuffix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistStartTIme","type":"uint256"},{"internalType":"uint256","name":"_whitelistEndTIme","type":"uint256"},{"internalType":"uint256","name":"_freemintEndTime","type":"uint256"}],"name":"setTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistConfig","outputs":[{"internalType":"uint256","name":"WHITELIST_START_TIME","type":"uint256"},{"internalType":"uint256","name":"WHITELIST_END_TIME","type":"uint256"},{"internalType":"uint256","name":"WHITELIST_CURVE_LENGTH","type":"uint256"},{"internalType":"uint256","name":"WHITELIST_TOTALSUPPLY","type":"uint256"},{"internalType":"uint256","name":"FREEMINT_END_TIME","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6000808055600755610160604052606360c08181529062002a1e60e03980516200003291601591602090910190620001bd565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200006191601691620001bd565b503480156200006f57600080fd5b50604051806060016040528060258152602001620029f9602591396040805180820190915260078152662a26219023a4a360c91b602082015260c8612710620000bc565b60405180910390fd5b600082116200011e5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000b3565b835162000133906001906020870190620001bd565b50825162000149906002906020860190620001bd565b5060a0919091526080525050600160085562000165336200016b565b620002a0565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001cb9062000263565b90600052602060002090601f016020900481019282620001ef57600085556200023a565b82601f106200020a57805160ff19168380011785556200023a565b828001600101855582156200023a579182015b828111156200023a5782518255916020019190600101906200021d565b50620002489291506200024c565b5090565b5b808211156200024857600081556001016200024d565b600181811c908216806200027857607f821691505b602082108114156200029a57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612728620002d16000396000818161181b015281816118450152611c030152600050506127286000f3fe6080604052600436106101fd5760003560e01c80637f6486a81161010d578063b88d4fde116100a0578063dab5f3401161006f578063dab5f340146105d0578063e985e9c5146105f0578063ebf0c71714610639578063f2fde38b1461064f578063f72506521461066f57600080fd5b8063b88d4fde1461052b578063c73f9ae71461054b578063c87b56dd1461059a578063d7224ba0146105ba57600080fd5b80639f77525d116100dc5780639f77525d146104c9578063a22cb465146104df578063a806a3d4146104ff578063b016a0731461051557600080fd5b80637f6486a8146104465780638268aa66146104665780638da5cb5b1461049657806395d89b41146104b457600080fd5b80633eaaf86b116101905780636352211e1161015f5780636352211e146103a45780636559d817146103c45780636790a9de146103f157806370a0823114610411578063715018a61461043157600080fd5b80633eaaf86b1461033957806342842e0e1461034f5780634f6ccce71461036f5780635b70ea9f1461038f57600080fd5b806315d8f2d7116101cc57806315d8f2d7146102ba57806318160ddd146102da57806323b872dd146102f95780632f745c591461031957600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b31461029857600080fd5b3661020457005b600080fd5b34801561021557600080fd5b50610229610224366004612038565b61069c565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106ad565b60405161023591906120ad565b34801561026c57600080fd5b5061028061027b3660046120c0565b61073f565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b33660046120f5565b6107cf565b005b3480156102c657600080fd5b506102b86102d536600461211f565b6108e7565b3480156102e657600080fd5b506000545b604051908152602001610235565b34801561030557600080fd5b506102b86103143660046121a1565b610c50565b34801561032557600080fd5b506102eb6103343660046120f5565b610c5b565b34801561034557600080fd5b506102eb61271081565b34801561035b57600080fd5b506102b861036a3660046121a1565b610dc9565b34801561037b57600080fd5b506102eb61038a3660046120c0565b610de4565b34801561039b57600080fd5b506102b8610e46565b3480156103b057600080fd5b506102806103bf3660046120c0565b611070565b3480156103d057600080fd5b506102eb6103df3660046121dd565b60136020526000908152604090205481565b3480156103fd57600080fd5b506102b861040c3660046122a4565b611082565b34801561041d57600080fd5b506102eb61042c3660046121dd565b6110b1565b34801561043d57600080fd5b506102b8611142565b34801561045257600080fd5b506102b8610461366004612308565b611156565b34801561047257600080fd5b506102296104813660046121dd565b60146020526000908152604090205460ff1681565b3480156104a257600080fd5b506009546001600160a01b0316610280565b3480156104c057600080fd5b5061025361116c565b3480156104d557600080fd5b506102eb60125481565b3480156104eb57600080fd5b506102b86104fa366004612334565b61117b565b34801561050b57600080fd5b506102eb60115481565b34801561052157600080fd5b506102eb60175481565b34801561053757600080fd5b506102b8610546366004612370565b611240565b34801561055757600080fd5b50600a54600b54600c54600d54600e54610572949392919085565b604080519586526020860194909452928401919091526060830152608082015260a001610235565b3480156105a657600080fd5b506102536105b53660046120c0565b611279565b3480156105c657600080fd5b506102eb60075481565b3480156105dc57600080fd5b506102b86105eb3660046120c0565b611284565b3480156105fc57600080fd5b5061022961060b3660046123ec565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561064557600080fd5b506102eb60105481565b34801561065b57600080fd5b506102b861066a3660046121dd565b611291565b34801561067b57600080fd5b506102eb61068a3660046121dd565b600f6020526000908152604090205481565b60006106a78261130a565b92915050565b6060600180546106bc9061241f565b80601f01602080910402602001604051908101604052809291908181526020018280546106e89061241f565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074c826000541190565b6107b35760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107da82611070565b9050806001600160a01b0316836001600160a01b031614156108495760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107aa565b336001600160a01b03821614806108655750610865813361060b565b6108d75760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107aa565b6108e2838383611375565b505050565b6002600854141561093a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107aa565b600260085532331461098e5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016107aa565b600a544210156109e05760405162461bcd60e51b815260206004820152601c60248201527f77686974656c69737420686173206e6f7420737461727465642079650000000060448201526064016107aa565b600b544210610a255760405162461bcd60e51b81526020600482015260116024820152701dda1a5d195b1a5cdd08195e1c1a5c9959607a1b60448201526064016107aa565b336000908152601360205260409020548290610a42908390612470565b1115610a9c5760405162461bcd60e51b815260206004820152602360248201527f546865207175616e746974792068617320657863656564656420746865206c696044820152621b5a5d60ea1b60648201526084016107aa565b60008111610aec5760405162461bcd60e51b815260206004820152601f60248201527f5175616e74697479206d7573742062652067726561746572207468616e20300060448201526064016107aa565b61271081610af960005490565b610b039190612470565b1115610b3c5760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016107aa565b6040516bffffffffffffffffffffffff193360601b166020820152603481018390526000906054016040516020818303038152906040528051906020012090506000610bbf8686808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060105491508590506113d1565b905080610bfd5760405162461bcd60e51b815260206004820152600c60248201526b7665726966792066616c736560a01b60448201526064016107aa565b8260176000828254610c0f9190612470565b90915550503360009081526013602052604081208054859290610c33908490612470565b90915550610c43905033846113e7565b5050600160085550505050565b6108e2838383611405565b6000610c66836110b1565b8210610cbf5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107aa565b600080549080805b83811015610d69576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d1a57805192505b876001600160a01b0316836001600160a01b03161415610d565786841415610d48575093506106a792505050565b83610d5281612488565b9450505b5080610d6181612488565b915050610cc7565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107aa565b6108e283838360405180602001604052806000815250611240565b600080548210610e425760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107aa565b5090565b60026008541415610e995760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107aa565b6002600855323314610eed5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016107aa565b600b54421015610f3f5760405162461bcd60e51b815260206004820152601b60248201527f667265656d696e7420686173206e6f742073746172746564207965000000000060448201526064016107aa565b600e544210610f835760405162461bcd60e51b815260206004820152601060248201526f199c99595b5a5b9d08195e1c1a5c995960821b60448201526064016107aa565b3360009081526014602052604090205460ff1615610fd85760405162461bcd60e51b8152602060048201526012602482015271151a1a5cc81d5cd95c881a185cc8135a5b9d60721b60448201526064016107aa565b612710610fe460005490565b610fef906001612470565b11156110285760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016107aa565b336000908152601460205260408120805460ff191660019081179091556011805491929091611058908490612470565b9091555061106990503360016113e7565b6001600855565b600061107b82611799565b5192915050565b61108a611943565b815161109d906015906020850190611f92565b5080516108e2906016906020840190611f92565b60006001600160a01b03821661111d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107aa565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b61114a611943565b611154600061199d565b565b61115e611943565b600a92909255600b55600e55565b6060600280546106bc9061241f565b6001600160a01b0382163314156111d45760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107aa565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61124b848484611405565b611257848484846119ef565b6112735760405162461bcd60e51b81526004016107aa906124a3565b50505050565b60606106a782611aee565b61128c611943565b601055565b611299611943565b6001600160a01b0381166112fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107aa565b6113078161199d565b50565b60006001600160e01b031982166380ac58cd60e01b148061133b57506001600160e01b03198216635b5e139f60e01b145b8061135657506001600160e01b0319821663780e9d6360e01b145b806106a757506301ffc9a760e01b6001600160e01b03198316146106a7565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000826113de8584611af9565b14949350505050565b611401828260405180602001604052806000815250611b46565b5050565b600061141082611799565b80519091506000906001600160a01b0316336001600160a01b0316148061144757503361143c8461073f565b6001600160a01b0316145b8061145957508151611459903361060b565b9050806114c35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107aa565b846001600160a01b031682600001516001600160a01b0316146115375760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107aa565b6001600160a01b03841661159b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107aa565b6115ab6000848460000151611375565b6001600160a01b03851660009081526004602052604081208054600192906115dd9084906001600160801b03166124f6565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926116299185911661251e565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556116b1846001612470565b6000818152600360205260409020549091506001600160a01b0316611743576116db816000541190565b156117435760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117918686866001611e24565b505050505050565b60408051808201909152600080825260208201526117b8826000541190565b6118175760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107aa565b60007f000000000000000000000000000000000000000000000000000000000000000083106118785761186a7f000000000000000000000000000000000000000000000000000000000000000084612549565b611875906001612470565b90505b825b8181106118e2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118cf57949350505050565b50806118da81612560565b91505061187a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016107aa565b6009546001600160a01b031633146111545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107aa565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611ae257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a33903390899088908890600401612577565b6020604051808303816000875af1925050508015611a6e575060408051601f3d908101601f19168201909252611a6b918101906125b4565b60015b611ac8573d808015611a9c576040519150601f19603f3d011682016040523d82523d6000602084013e611aa1565b606091505b508051611ac05760405162461bcd60e51b81526004016107aa906124a3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ae6565b5060015b949350505050565b60606106a782611e29565b600081815b8451811015611b3e57611b2a82868381518110611b1d57611b1d6125d1565b6020026020010151611e62565b915080611b3681612488565b915050611afe565b509392505050565b6000546001600160a01b038416611ba95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107aa565b611bb4816000541190565b15611c015760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016107aa565b7f0000000000000000000000000000000000000000000000000000000000000000831115611c7c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016107aa565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611cd890879061251e565b6001600160801b03168152602001858360200151611cf6919061251e565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611e165760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611dda60008884886119ef565b611df65760405162461bcd60e51b81526004016107aa906124a3565b81611e0081612488565b9250508080611e0e90612488565b915050611d8d565b506000818155611791908785885b611273565b6060806015611e3784611e94565b6016604051602001611e4b93929190612681565b60408051601f198184030181529190529392505050565b6000818310611e7e576000828152602084905260409020611e8d565b60008381526020839052604090205b9392505050565b606081611eb85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ee25780611ecc81612488565b9150611edb9050600a836126ca565b9150611ebc565b60008167ffffffffffffffff811115611efd57611efd6121f8565b6040519080825280601f01601f191660200182016040528015611f27576020820181803683370190505b5090505b8415611ae657611f3c600183612549565b9150611f49600a866126de565b611f54906030612470565b60f81b818381518110611f6957611f696125d1565b60200101906001600160f81b031916908160001a905350611f8b600a866126ca565b9450611f2b565b828054611f9e9061241f565b90600052602060002090601f016020900481019282611fc05760008555612006565b82601f10611fd957805160ff1916838001178555612006565b82800160010185558215612006579182015b82811115612006578251825591602001919060010190611feb565b50610e429291505b80821115610e42576000815560010161200e565b6001600160e01b03198116811461130757600080fd5b60006020828403121561204a57600080fd5b8135611e8d81612022565b60005b83811015612070578181015183820152602001612058565b838111156112735750506000910152565b60008151808452612099816020860160208601612055565b601f01601f19169290920160200192915050565b602081526000611e8d6020830184612081565b6000602082840312156120d257600080fd5b5035919050565b80356001600160a01b03811681146120f057600080fd5b919050565b6000806040838503121561210857600080fd5b612111836120d9565b946020939093013593505050565b6000806000806060858703121561213557600080fd5b843567ffffffffffffffff8082111561214d57600080fd5b818701915087601f83011261216157600080fd5b81358181111561217057600080fd5b8860208260051b850101111561218557600080fd5b6020928301999098509187013596604001359550909350505050565b6000806000606084860312156121b657600080fd5b6121bf846120d9565b92506121cd602085016120d9565b9150604084013590509250925092565b6000602082840312156121ef57600080fd5b611e8d826120d9565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612229576122296121f8565b604051601f8501601f19908116603f01168101908282118183101715612251576122516121f8565b8160405280935085815286868601111561226a57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261229557600080fd5b611e8d8383356020850161220e565b600080604083850312156122b757600080fd5b823567ffffffffffffffff808211156122cf57600080fd5b6122db86838701612284565b935060208501359150808211156122f157600080fd5b506122fe85828601612284565b9150509250929050565b60008060006060848603121561231d57600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561234757600080fd5b612350836120d9565b91506020830135801515811461236557600080fd5b809150509250929050565b6000806000806080858703121561238657600080fd5b61238f856120d9565b935061239d602086016120d9565b925060408501359150606085013567ffffffffffffffff8111156123c057600080fd5b8501601f810187136123d157600080fd5b6123e08782356020840161220e565b91505092959194509250565b600080604083850312156123ff57600080fd5b612408836120d9565b9150612416602084016120d9565b90509250929050565b600181811c9082168061243357607f821691505b6020821081141561245457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156124835761248361245a565b500190565b600060001982141561249c5761249c61245a565b5060010190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03838116908316818110156125165761251661245a565b039392505050565b60006001600160801b038083168185168083038211156125405761254061245a565b01949350505050565b60008282101561255b5761255b61245a565b500390565b60008161256f5761256f61245a565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125aa90830184612081565b9695505050505050565b6000602082840312156125c657600080fd5b8151611e8d81612022565b634e487b7160e01b600052603260045260246000fd5b8054600090600181811c908083168061260157607f831692505b602080841082141561262357634e487b7160e01b600052602260045260246000fd5b818015612637576001811461264857612675565b60ff19861689528489019650612675565b60008881526020902060005b8681101561266d5781548b820152908501908301612654565b505084890196505b50505050505092915050565b600061268d82866125e7565b845161269d818360208901612055565b6126a9818301866125e7565b979650505050505050565b634e487b7160e01b600052601260045260246000fd5b6000826126d9576126d96126b4565b500490565b6000826126ed576126ed6126b4565b50069056fea2646970667358221220fe49d3da114c9e7fa960a0ab6e63704c333e28a3e8b1d02058f719be4c37b18664736f6c634300080a00335477694c696665436c756220496d61676520436f6c6c656374696f6e2043616d706169676e68747470733a2f2f6261667962656961376178676a3576356c686c7a70346f77626c643362617a75656d6c36796870356b6b74633632737164357a346e6e62366a70612e697066732e6e667473746f726167652e6c696e6b2f6368617261637465725f

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c80637f6486a81161010d578063b88d4fde116100a0578063dab5f3401161006f578063dab5f340146105d0578063e985e9c5146105f0578063ebf0c71714610639578063f2fde38b1461064f578063f72506521461066f57600080fd5b8063b88d4fde1461052b578063c73f9ae71461054b578063c87b56dd1461059a578063d7224ba0146105ba57600080fd5b80639f77525d116100dc5780639f77525d146104c9578063a22cb465146104df578063a806a3d4146104ff578063b016a0731461051557600080fd5b80637f6486a8146104465780638268aa66146104665780638da5cb5b1461049657806395d89b41146104b457600080fd5b80633eaaf86b116101905780636352211e1161015f5780636352211e146103a45780636559d817146103c45780636790a9de146103f157806370a0823114610411578063715018a61461043157600080fd5b80633eaaf86b1461033957806342842e0e1461034f5780634f6ccce71461036f5780635b70ea9f1461038f57600080fd5b806315d8f2d7116101cc57806315d8f2d7146102ba57806318160ddd146102da57806323b872dd146102f95780632f745c591461031957600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b31461029857600080fd5b3661020457005b600080fd5b34801561021557600080fd5b50610229610224366004612038565b61069c565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106ad565b60405161023591906120ad565b34801561026c57600080fd5b5061028061027b3660046120c0565b61073f565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b33660046120f5565b6107cf565b005b3480156102c657600080fd5b506102b86102d536600461211f565b6108e7565b3480156102e657600080fd5b506000545b604051908152602001610235565b34801561030557600080fd5b506102b86103143660046121a1565b610c50565b34801561032557600080fd5b506102eb6103343660046120f5565b610c5b565b34801561034557600080fd5b506102eb61271081565b34801561035b57600080fd5b506102b861036a3660046121a1565b610dc9565b34801561037b57600080fd5b506102eb61038a3660046120c0565b610de4565b34801561039b57600080fd5b506102b8610e46565b3480156103b057600080fd5b506102806103bf3660046120c0565b611070565b3480156103d057600080fd5b506102eb6103df3660046121dd565b60136020526000908152604090205481565b3480156103fd57600080fd5b506102b861040c3660046122a4565b611082565b34801561041d57600080fd5b506102eb61042c3660046121dd565b6110b1565b34801561043d57600080fd5b506102b8611142565b34801561045257600080fd5b506102b8610461366004612308565b611156565b34801561047257600080fd5b506102296104813660046121dd565b60146020526000908152604090205460ff1681565b3480156104a257600080fd5b506009546001600160a01b0316610280565b3480156104c057600080fd5b5061025361116c565b3480156104d557600080fd5b506102eb60125481565b3480156104eb57600080fd5b506102b86104fa366004612334565b61117b565b34801561050b57600080fd5b506102eb60115481565b34801561052157600080fd5b506102eb60175481565b34801561053757600080fd5b506102b8610546366004612370565b611240565b34801561055757600080fd5b50600a54600b54600c54600d54600e54610572949392919085565b604080519586526020860194909452928401919091526060830152608082015260a001610235565b3480156105a657600080fd5b506102536105b53660046120c0565b611279565b3480156105c657600080fd5b506102eb60075481565b3480156105dc57600080fd5b506102b86105eb3660046120c0565b611284565b3480156105fc57600080fd5b5061022961060b3660046123ec565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561064557600080fd5b506102eb60105481565b34801561065b57600080fd5b506102b861066a3660046121dd565b611291565b34801561067b57600080fd5b506102eb61068a3660046121dd565b600f6020526000908152604090205481565b60006106a78261130a565b92915050565b6060600180546106bc9061241f565b80601f01602080910402602001604051908101604052809291908181526020018280546106e89061241f565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074c826000541190565b6107b35760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107da82611070565b9050806001600160a01b0316836001600160a01b031614156108495760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107aa565b336001600160a01b03821614806108655750610865813361060b565b6108d75760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107aa565b6108e2838383611375565b505050565b6002600854141561093a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107aa565b600260085532331461098e5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016107aa565b600a544210156109e05760405162461bcd60e51b815260206004820152601c60248201527f77686974656c69737420686173206e6f7420737461727465642079650000000060448201526064016107aa565b600b544210610a255760405162461bcd60e51b81526020600482015260116024820152701dda1a5d195b1a5cdd08195e1c1a5c9959607a1b60448201526064016107aa565b336000908152601360205260409020548290610a42908390612470565b1115610a9c5760405162461bcd60e51b815260206004820152602360248201527f546865207175616e746974792068617320657863656564656420746865206c696044820152621b5a5d60ea1b60648201526084016107aa565b60008111610aec5760405162461bcd60e51b815260206004820152601f60248201527f5175616e74697479206d7573742062652067726561746572207468616e20300060448201526064016107aa565b61271081610af960005490565b610b039190612470565b1115610b3c5760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016107aa565b6040516bffffffffffffffffffffffff193360601b166020820152603481018390526000906054016040516020818303038152906040528051906020012090506000610bbf8686808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060105491508590506113d1565b905080610bfd5760405162461bcd60e51b815260206004820152600c60248201526b7665726966792066616c736560a01b60448201526064016107aa565b8260176000828254610c0f9190612470565b90915550503360009081526013602052604081208054859290610c33908490612470565b90915550610c43905033846113e7565b5050600160085550505050565b6108e2838383611405565b6000610c66836110b1565b8210610cbf5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107aa565b600080549080805b83811015610d69576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d1a57805192505b876001600160a01b0316836001600160a01b03161415610d565786841415610d48575093506106a792505050565b83610d5281612488565b9450505b5080610d6181612488565b915050610cc7565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107aa565b6108e283838360405180602001604052806000815250611240565b600080548210610e425760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107aa565b5090565b60026008541415610e995760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107aa565b6002600855323314610eed5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016107aa565b600b54421015610f3f5760405162461bcd60e51b815260206004820152601b60248201527f667265656d696e7420686173206e6f742073746172746564207965000000000060448201526064016107aa565b600e544210610f835760405162461bcd60e51b815260206004820152601060248201526f199c99595b5a5b9d08195e1c1a5c995960821b60448201526064016107aa565b3360009081526014602052604090205460ff1615610fd85760405162461bcd60e51b8152602060048201526012602482015271151a1a5cc81d5cd95c881a185cc8135a5b9d60721b60448201526064016107aa565b612710610fe460005490565b610fef906001612470565b11156110285760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016107aa565b336000908152601460205260408120805460ff191660019081179091556011805491929091611058908490612470565b9091555061106990503360016113e7565b6001600855565b600061107b82611799565b5192915050565b61108a611943565b815161109d906015906020850190611f92565b5080516108e2906016906020840190611f92565b60006001600160a01b03821661111d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107aa565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b61114a611943565b611154600061199d565b565b61115e611943565b600a92909255600b55600e55565b6060600280546106bc9061241f565b6001600160a01b0382163314156111d45760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107aa565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61124b848484611405565b611257848484846119ef565b6112735760405162461bcd60e51b81526004016107aa906124a3565b50505050565b60606106a782611aee565b61128c611943565b601055565b611299611943565b6001600160a01b0381166112fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107aa565b6113078161199d565b50565b60006001600160e01b031982166380ac58cd60e01b148061133b57506001600160e01b03198216635b5e139f60e01b145b8061135657506001600160e01b0319821663780e9d6360e01b145b806106a757506301ffc9a760e01b6001600160e01b03198316146106a7565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000826113de8584611af9565b14949350505050565b611401828260405180602001604052806000815250611b46565b5050565b600061141082611799565b80519091506000906001600160a01b0316336001600160a01b0316148061144757503361143c8461073f565b6001600160a01b0316145b8061145957508151611459903361060b565b9050806114c35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107aa565b846001600160a01b031682600001516001600160a01b0316146115375760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107aa565b6001600160a01b03841661159b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107aa565b6115ab6000848460000151611375565b6001600160a01b03851660009081526004602052604081208054600192906115dd9084906001600160801b03166124f6565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926116299185911661251e565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556116b1846001612470565b6000818152600360205260409020549091506001600160a01b0316611743576116db816000541190565b156117435760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117918686866001611e24565b505050505050565b60408051808201909152600080825260208201526117b8826000541190565b6118175760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107aa565b60007f00000000000000000000000000000000000000000000000000000000000000c883106118785761186a7f00000000000000000000000000000000000000000000000000000000000000c884612549565b611875906001612470565b90505b825b8181106118e2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118cf57949350505050565b50806118da81612560565b91505061187a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016107aa565b6009546001600160a01b031633146111545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107aa565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611ae257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a33903390899088908890600401612577565b6020604051808303816000875af1925050508015611a6e575060408051601f3d908101601f19168201909252611a6b918101906125b4565b60015b611ac8573d808015611a9c576040519150601f19603f3d011682016040523d82523d6000602084013e611aa1565b606091505b508051611ac05760405162461bcd60e51b81526004016107aa906124a3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ae6565b5060015b949350505050565b60606106a782611e29565b600081815b8451811015611b3e57611b2a82868381518110611b1d57611b1d6125d1565b6020026020010151611e62565b915080611b3681612488565b915050611afe565b509392505050565b6000546001600160a01b038416611ba95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107aa565b611bb4816000541190565b15611c015760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016107aa565b7f00000000000000000000000000000000000000000000000000000000000000c8831115611c7c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016107aa565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611cd890879061251e565b6001600160801b03168152602001858360200151611cf6919061251e565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611e165760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611dda60008884886119ef565b611df65760405162461bcd60e51b81526004016107aa906124a3565b81611e0081612488565b9250508080611e0e90612488565b915050611d8d565b506000818155611791908785885b611273565b6060806015611e3784611e94565b6016604051602001611e4b93929190612681565b60408051601f198184030181529190529392505050565b6000818310611e7e576000828152602084905260409020611e8d565b60008381526020839052604090205b9392505050565b606081611eb85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ee25780611ecc81612488565b9150611edb9050600a836126ca565b9150611ebc565b60008167ffffffffffffffff811115611efd57611efd6121f8565b6040519080825280601f01601f191660200182016040528015611f27576020820181803683370190505b5090505b8415611ae657611f3c600183612549565b9150611f49600a866126de565b611f54906030612470565b60f81b818381518110611f6957611f696125d1565b60200101906001600160f81b031916908160001a905350611f8b600a866126ca565b9450611f2b565b828054611f9e9061241f565b90600052602060002090601f016020900481019282611fc05760008555612006565b82601f10611fd957805160ff1916838001178555612006565b82800160010185558215612006579182015b82811115612006578251825591602001919060010190611feb565b50610e429291505b80821115610e42576000815560010161200e565b6001600160e01b03198116811461130757600080fd5b60006020828403121561204a57600080fd5b8135611e8d81612022565b60005b83811015612070578181015183820152602001612058565b838111156112735750506000910152565b60008151808452612099816020860160208601612055565b601f01601f19169290920160200192915050565b602081526000611e8d6020830184612081565b6000602082840312156120d257600080fd5b5035919050565b80356001600160a01b03811681146120f057600080fd5b919050565b6000806040838503121561210857600080fd5b612111836120d9565b946020939093013593505050565b6000806000806060858703121561213557600080fd5b843567ffffffffffffffff8082111561214d57600080fd5b818701915087601f83011261216157600080fd5b81358181111561217057600080fd5b8860208260051b850101111561218557600080fd5b6020928301999098509187013596604001359550909350505050565b6000806000606084860312156121b657600080fd5b6121bf846120d9565b92506121cd602085016120d9565b9150604084013590509250925092565b6000602082840312156121ef57600080fd5b611e8d826120d9565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612229576122296121f8565b604051601f8501601f19908116603f01168101908282118183101715612251576122516121f8565b8160405280935085815286868601111561226a57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261229557600080fd5b611e8d8383356020850161220e565b600080604083850312156122b757600080fd5b823567ffffffffffffffff808211156122cf57600080fd5b6122db86838701612284565b935060208501359150808211156122f157600080fd5b506122fe85828601612284565b9150509250929050565b60008060006060848603121561231d57600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561234757600080fd5b612350836120d9565b91506020830135801515811461236557600080fd5b809150509250929050565b6000806000806080858703121561238657600080fd5b61238f856120d9565b935061239d602086016120d9565b925060408501359150606085013567ffffffffffffffff8111156123c057600080fd5b8501601f810187136123d157600080fd5b6123e08782356020840161220e565b91505092959194509250565b600080604083850312156123ff57600080fd5b612408836120d9565b9150612416602084016120d9565b90509250929050565b600181811c9082168061243357607f821691505b6020821081141561245457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156124835761248361245a565b500190565b600060001982141561249c5761249c61245a565b5060010190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03838116908316818110156125165761251661245a565b039392505050565b60006001600160801b038083168185168083038211156125405761254061245a565b01949350505050565b60008282101561255b5761255b61245a565b500390565b60008161256f5761256f61245a565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125aa90830184612081565b9695505050505050565b6000602082840312156125c657600080fd5b8151611e8d81612022565b634e487b7160e01b600052603260045260246000fd5b8054600090600181811c908083168061260157607f831692505b602080841082141561262357634e487b7160e01b600052602260045260246000fd5b818015612637576001811461264857612675565b60ff19861689528489019650612675565b60008881526020902060005b8681101561266d5781548b820152908501908301612654565b505084890196505b50505050505092915050565b600061268d82866125e7565b845161269d818360208901612055565b6126a9818301866125e7565b979650505050505050565b634e487b7160e01b600052601260045260246000fd5b6000826126d9576126d96126b4565b500490565b6000826126ed576126ed6126b4565b50069056fea2646970667358221220fe49d3da114c9e7fa960a0ab6e63704c333e28a3e8b1d02058f719be4c37b18664736f6c634300080a0033

Deployed Bytecode Sourcemap

52006:4299:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54107:195;;;;;;;;;;-1:-1:-1;54107:195:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;54107:195:0;;;;;;;;35906:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37431:204::-;;;;;;;;;;-1:-1:-1;37431:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;37431:204:0;1528:203:1;36994:379:0;;;;;;;;;;-1:-1:-1;36994:379:0;;;;;:::i;:::-;;:::i;:::-;;54976:935;;;;;;;;;;-1:-1:-1;54976:935:0;;;;;:::i;:::-;;:::i;32741:94::-;;;;;;;;;;-1:-1:-1;32794:7:0;32817:12;32741:94;;;3081:25:1;;;3069:2;3054:18;32741:94:0;2935:177:1;38281:142:0;;;;;;;;;;-1:-1:-1;38281:142:0;;;;;:::i;:::-;;:::i;33372:744::-;;;;;;;;;;-1:-1:-1;33372:744:0;;;;;:::i;:::-;;:::i;52622:44::-;;;;;;;;;;;;52661:5;52622:44;;38486:157;;;;;;;;;;-1:-1:-1;38486:157:0;;;;;:::i;:::-;;:::i;32904:177::-;;;;;;;;;;-1:-1:-1;32904:177:0;;;;;:::i;:::-;;:::i;54456:512::-;;;;;;;;;;;;;:::i;35729:118::-;;;;;;;;;;-1:-1:-1;35729:118:0;;;;;:::i;:::-;;:::i;52559:54::-;;;;;;;;;;-1:-1:-1;52559:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;53646:177;;;;;;;;;;-1:-1:-1;53646:177:0;;;;;:::i;:::-;;:::i;34606:211::-;;;;;;;;;;-1:-1:-1;34606:211:0;;;;;:::i;:::-;;:::i;48367:103::-;;;;;;;;;;;;;:::i;53094:324::-;;;;;;;;;;-1:-1:-1;53094:324:0;;;;;:::i;:::-;;:::i;52675:45::-;;;;;;;;;;-1:-1:-1;52675:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;47719:87;;;;;;;;;;-1:-1:-1;47792:6:0;;-1:-1:-1;;;;;47792:6:0;47719:87;;36061:98;;;;;;;;;;;;;:::i;52521:29::-;;;;;;;;;;;;;;;;37699:274;;;;;;;;;;-1:-1:-1;37699:274:0;;;;;:::i;:::-;;:::i;52482:30::-;;;;;;;;;;;;;;;;52909:29;;;;;;;;;;;;;;;;38706:311;;;;;;;;;;-1:-1:-1;38706:311:0;;;;;:::i;:::-;;:::i;52338:39::-;;;;;;;;;;-1:-1:-1;52338:39:0;;;;;;;;;;;;;;;;;;;;;;6789:25:1;;;6845:2;6830:18;;6823:34;;;;6873:18;;;6866:34;;;;6931:2;6916:18;;6909:34;6974:3;6959:19;;6952:35;6776:3;6761:19;52338:39:0;6530:463:1;55921:135:0;;;;;;;;;;-1:-1:-1;55921:135:0;;;;;:::i;:::-;;:::i;43121:43::-;;;;;;;;;;;;;;;;53426:82;;;;;;;;;;-1:-1:-1;53426:82:0;;;;;:::i;:::-;;:::i;38036:186::-;;;;;;;;;;-1:-1:-1;38036:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;38181:25:0;;;38158:4;38181:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38036:186;52454:19;;;;;;;;;;;;;;;;48625:201;;;;;;;;;;-1:-1:-1;48625:201:0;;;;;:::i;:::-;;:::i;52386:59::-;;;;;;;;;;-1:-1:-1;52386:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;54107:195;54229:4;54258:36;54282:11;54258:23;:36::i;:::-;54251:43;54107:195;-1:-1:-1;;54107:195:0:o;35906:94::-;35960:13;35989:5;35982:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35906:94;:::o;37431:204::-;37499:7;37523:16;37531:7;39313:4;39343:12;-1:-1:-1;39333:22:0;39256:105;37523:16;37515:74;;;;-1:-1:-1;;;37515:74:0;;8217:2:1;37515:74:0;;;8199:21:1;8256:2;8236:18;;;8229:30;8295:34;8275:18;;;8268:62;-1:-1:-1;;;8346:18:1;;;8339:43;8399:19;;37515:74:0;;;;;;;;;-1:-1:-1;37605:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37605:24:0;;37431:204::o;36994:379::-;37063:13;37079:24;37095:7;37079:15;:24::i;:::-;37063:40;;37124:5;-1:-1:-1;;;;;37118:11:0;:2;-1:-1:-1;;;;;37118:11:0;;;37110:58;;;;-1:-1:-1;;;37110:58:0;;8631:2:1;37110:58:0;;;8613:21:1;8670:2;8650:18;;;8643:30;8709:34;8689:18;;;8682:62;-1:-1:-1;;;8760:18:1;;;8753:32;8802:19;;37110:58:0;8429:398:1;37110:58:0;30301:10;-1:-1:-1;;;;;37193:21:0;;;;:62;;-1:-1:-1;37218:37:0;37235:5;30301:10;38036:186;:::i;37218:37::-;37177:153;;;;-1:-1:-1;;;37177:153:0;;9034:2:1;37177:153:0;;;9016:21:1;9073:2;9053:18;;;9046:30;9112:34;9092:18;;;9085:62;9183:27;9163:18;;;9156:55;9228:19;;37177:153:0;8832:421:1;37177:153:0;37339:28;37348:2;37352:7;37361:5;37339:8;:28::i;:::-;37056:317;36994:379;;:::o;54976:935::-;50996:1;51594:7;;:19;;51586:63;;;;-1:-1:-1;;;51586:63:0;;9460:2:1;51586:63:0;;;9442:21:1;9499:2;9479:18;;;9472:30;9538:33;9518:18;;;9511:61;9589:18;;51586:63:0;9258:355:1;51586:63:0;50996:1;51727:7;:18;54353:9:::1;54366:10;54353:23;54345:66;;;::::0;-1:-1:-1;;;54345:66:0;;9820:2:1;54345:66:0::1;::::0;::::1;9802:21:1::0;9859:2;9839:18;;;9832:30;9898:32;9878:18;;;9871:60;9948:18;;54345:66:0::1;9618:354:1::0;54345:66:0::1;55141:15:::2;:36:::0;55122:15:::2;:55;;55114:95;;;::::0;-1:-1:-1;;;55114:95:0;;10179:2:1;55114:95:0::2;::::0;::::2;10161:21:1::0;10218:2;10198:18;;;10191:30;10257;10237:18;;;10230:58;10305:18;;55114:95:0::2;9977:352:1::0;55114:95:0::2;55248:34:::0;;55230:15:::2;:52;55222:82;;;::::0;-1:-1:-1;;;55222:82:0;;10536:2:1;55222:82:0::2;::::0;::::2;10518:21:1::0;10575:2;10555:18;;;10548:30;-1:-1:-1;;;10594:18:1;;;10587:47;10651:18;;55222:82:0::2;10334:341:1::0;55222:82:0::2;55347:10;55328:30;::::0;;;:18:::2;:30;::::0;;;;;55374:13;;55328:41:::2;::::0;55361:8;;55328:41:::2;:::i;:::-;:59;;55320:106;;;::::0;-1:-1:-1;;;55320:106:0;;11147:2:1;55320:106:0::2;::::0;::::2;11129:21:1::0;11186:2;11166:18;;;11159:30;11225:34;11205:18;;;11198:62;-1:-1:-1;;;11276:18:1;;;11269:33;11319:19;;55320:106:0::2;10945:399:1::0;55320:106:0::2;55458:1;55447:8;:12;55439:56;;;::::0;-1:-1:-1;;;55439:56:0;;11551:2:1;55439:56:0::2;::::0;::::2;11533:21:1::0;11590:2;11570:18;;;11563:30;11629:33;11609:18;;;11602:61;11680:18;;55439:56:0::2;11349:355:1::0;55439:56:0::2;52661:5;55532:8;55516:13;32794:7:::0;32817:12;;32741:94;55516:13:::2;:24;;;;:::i;:::-;:40;;55508:61;;;::::0;-1:-1:-1;;;55508:61:0;;11911:2:1;55508:61:0::2;::::0;::::2;11893:21:1::0;11950:1;11930:18;;;11923:29;-1:-1:-1;;;11968:18:1;;;11961:38;12016:18;;55508:61:0::2;11709:331:1::0;55508:61:0::2;55608:51;::::0;-1:-1:-1;;55625:10:0::2;12222:2:1::0;12218:15;12214:53;55608:51:0::2;::::0;::::2;12202:66:1::0;12284:12;;;12277:28;;;55582:13:0::2;::::0;12321:12:1;;55608:51:0::2;;;;;;;;;;;;55598:62;;;;;;55582:78;;55674:8;55686:40;55705:7;;55686:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;55714:4:0::2;::::0;;-1:-1:-1;55720:5:0;;-1:-1:-1;55686:18:0::2;:40::i;:::-;55673:53;;55747:3;55739:27;;;::::0;-1:-1:-1;;;55739:27:0;;12546:2:1;55739:27:0::2;::::0;::::2;12528:21:1::0;12585:2;12565:18;;;12558:30;-1:-1:-1;;;12604:18:1;;;12597:42;12656:18;;55739:27:0::2;12344:336:1::0;55739:27:0::2;55797:8;55779:14;;:26;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;55837:10:0::2;55818:30;::::0;;;:18:::2;:30;::::0;;;;:42;;55852:8;;55818:30;:42:::2;::::0;55852:8;;55818:42:::2;:::i;:::-;::::0;;;-1:-1:-1;55873:30:0::2;::::0;-1:-1:-1;55883:10:0::2;55894:8:::0;55873:9:::2;:30::i;:::-;-1:-1:-1::0;;50952:1:0;51906:7;:22;-1:-1:-1;;;;54976:935:0:o;38281:142::-;38389:28;38399:4;38405:2;38409:7;38389:9;:28::i;33372:744::-;33481:7;33516:16;33526:5;33516:9;:16::i;:::-;33508:5;:24;33500:71;;;;-1:-1:-1;;;33500:71:0;;12887:2:1;33500:71:0;;;12869:21:1;12926:2;12906:18;;;12899:30;12965:34;12945:18;;;12938:62;-1:-1:-1;;;13016:18:1;;;13009:32;13058:19;;33500:71:0;12685:398:1;33500:71:0;33578:22;32817:12;;;33578:22;;33698:350;33722:14;33718:1;:18;33698:350;;;33752:31;33786:14;;;:11;:14;;;;;;;;;33752:48;;;;;;;;;-1:-1:-1;;;;;33752:48:0;;;;;-1:-1:-1;;;33752:48:0;;;;;;;;;;;;33813:28;33809:89;;33874:14;;;-1:-1:-1;33809:89:0;33931:5;-1:-1:-1;;;;;33910:26:0;:17;-1:-1:-1;;;;;33910:26:0;;33906:135;;;33968:5;33953:11;:20;33949:59;;;-1:-1:-1;33995:1:0;-1:-1:-1;33988:8:0;;-1:-1:-1;;;33988:8:0;33949:59;34018:13;;;;:::i;:::-;;;;33906:135;-1:-1:-1;33738:3:0;;;;:::i;:::-;;;;33698:350;;;-1:-1:-1;34054:56:0;;-1:-1:-1;;;34054:56:0;;13430:2:1;34054:56:0;;;13412:21:1;13469:2;13449:18;;;13442:30;13508:34;13488:18;;;13481:62;-1:-1:-1;;;13559:18:1;;;13552:44;13613:19;;34054:56:0;13228:410:1;38486:157:0;38598:39;38615:4;38621:2;38625:7;38598:39;;;;;;;;;;;;:16;:39::i;32904:177::-;32971:7;32817:12;;32995:5;:21;32987:69;;;;-1:-1:-1;;;32987:69:0;;13845:2:1;32987:69:0;;;13827:21:1;13884:2;13864:18;;;13857:30;13923:34;13903:18;;;13896:62;-1:-1:-1;;;13974:18:1;;;13967:33;14017:19;;32987:69:0;13643:399:1;32987:69:0;-1:-1:-1;33070:5:0;32904:177::o;54456:512::-;50996:1;51594:7;;:19;;51586:63;;;;-1:-1:-1;;;51586:63:0;;9460:2:1;51586:63:0;;;9442:21:1;9499:2;9479:18;;;9472:30;9538:33;9518:18;;;9511:61;9589:18;;51586:63:0;9258:355:1;51586:63:0;50996:1;51727:7;:18;54353:9:::1;54366:10;54353:23;54345:66;;;::::0;-1:-1:-1;;;54345:66:0;;9820:2:1;54345:66:0::1;::::0;::::1;9802:21:1::0;9859:2;9839:18;;;9832:30;9898:32;9878:18;;;9871:60;9948:18;;54345:66:0::1;9618:354:1::0;54345:66:0::1;54550:34:::0;;54531:15:::2;:53;;54523:93;;;::::0;-1:-1:-1;;;54523:93:0;;14249:2:1;54523:93:0::2;::::0;::::2;14231:21:1::0;14288:2;14268:18;;;14261:30;14327:29;14307:18;;;14300:57;14374:18;;54523:93:0::2;14047:351:1::0;54523:93:0::2;54655:33:::0;;54637:15:::2;:51;54629:80;;;::::0;-1:-1:-1;;;54629:80:0;;14605:2:1;54629:80:0::2;::::0;::::2;14587:21:1::0;14644:2;14624:18;;;14617:30;-1:-1:-1;;;14663:18:1;;;14656:46;14719:18;;54629:80:0::2;14403:340:1::0;54629:80:0::2;54744:10;54731:24;::::0;;;:12:::2;:24;::::0;;;;;::::2;;54730:25;54722:56;;;::::0;-1:-1:-1;;;54722:56:0;;14950:2:1;54722:56:0::2;::::0;::::2;14932:21:1::0;14989:2;14969:18;;;14962:30;-1:-1:-1;;;15008:18:1;;;15001:48;15066:18;;54722:56:0::2;14748:342:1::0;54722:56:0::2;52661:5;54799:13;32794:7:::0;32817:12;;32741:94;54799:13:::2;:17;::::0;54815:1:::2;54799:17;:::i;:::-;:33;;54791:54;;;::::0;-1:-1:-1;;;54791:54:0;;11911:2:1;54791:54:0::2;::::0;::::2;11893:21:1::0;11950:1;11930:18;;;11923:29;-1:-1:-1;;;11968:18:1;;;11961:38;12016:18;;54791:54:0::2;11709:331:1::0;54791:54:0::2;54871:10;54858:24;::::0;;;:12:::2;:24;::::0;;;;:31;;-1:-1:-1;;54858:31:0::2;54885:4;54858:31:::0;;::::2;::::0;;;54902:15:::2;:20:::0;;54885:4;;54902:15;;:20:::2;::::0;54885:4;;54902:20:::2;:::i;:::-;::::0;;;-1:-1:-1;54935:23:0::2;::::0;-1:-1:-1;54945:10:0::2;54956:1;54935:9;:23::i;:::-;50952:1:::0;51906:7;:22;54456:512::o;35729:118::-;35793:7;35816:20;35828:7;35816:11;:20::i;:::-;:25;;35729:118;-1:-1:-1;;35729:118:0:o;53646:177::-;47605:13;:11;:13::i;:::-;53758:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;53791:22:0;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;34606:211::-:0;34670:7;-1:-1:-1;;;;;34694:19:0;;34686:75;;;;-1:-1:-1;;;34686:75:0;;15297:2:1;34686:75:0;;;15279:21:1;15336:2;15316:18;;;15309:30;15375:34;15355:18;;;15348:62;-1:-1:-1;;;15426:18:1;;;15419:41;15477:19;;34686:75:0;15095:407:1;34686:75:0;-1:-1:-1;;;;;;34783:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;34783:27:0;;34606:211::o;48367:103::-;47605:13;:11;:13::i;:::-;48432:30:::1;48459:1;48432:18;:30::i;:::-;48367:103::o:0;53094:324::-;47605:13;:11;:13::i;:::-;53224:15:::1;:58:::0;;;;53293:34;:54;53358:33;:52;53094:324::o;36061:98::-;36117:13;36146:7;36139:14;;;;;:::i;37699:274::-;-1:-1:-1;;;;;37790:24:0;;30301:10;37790:24;;37782:63;;;;-1:-1:-1;;;37782:63:0;;15709:2:1;37782:63:0;;;15691:21:1;15748:2;15728:18;;;15721:30;15787:28;15767:18;;;15760:56;15833:18;;37782:63:0;15507:350:1;37782:63:0;30301:10;37854:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37854:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37854:53:0;;;;;;;;;;37919:48;;540:41:1;;;37854:42:0;;30301:10;37919:48;;513:18:1;37919:48:0;;;;;;;37699:274;;:::o;38706:311::-;38843:28;38853:4;38859:2;38863:7;38843:9;:28::i;:::-;38894:48;38917:4;38923:2;38927:7;38936:5;38894:22;:48::i;:::-;38878:133;;;;-1:-1:-1;;;38878:133:0;;;;;;;:::i;:::-;38706:311;;;;:::o;55921:135::-;55994:13;56028:17;56037:7;56028:8;:17::i;53426:82::-;47605:13;:11;:13::i;:::-;53488:4:::1;:12:::0;53426:82::o;48625:201::-;47605:13;:11;:13::i;:::-;-1:-1:-1;;;;;48714:22:0;::::1;48706:73;;;::::0;-1:-1:-1;;;48706:73:0;;16484:2:1;48706:73:0::1;::::0;::::1;16466:21:1::0;16523:2;16503:18;;;16496:30;16562:34;16542:18;;;16535:62;-1:-1:-1;;;16613:18:1;;;16606:36;16659:19;;48706:73:0::1;16282:402:1::0;48706:73:0::1;48790:28;48809:8;48790:18;:28::i;:::-;48625:201:::0;:::o;34180:370::-;34307:4;-1:-1:-1;;;;;;34337:40:0;;-1:-1:-1;;;34337:40:0;;:99;;-1:-1:-1;;;;;;;34388:48:0;;-1:-1:-1;;;34388:48:0;34337:99;:160;;;-1:-1:-1;;;;;;;34447:50:0;;-1:-1:-1;;;34447:50:0;34337:160;:207;;;-1:-1:-1;;;;;;;;;;11498:40:0;;;34508:36;11389:157;42943:172;43040:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43040:29:0;-1:-1:-1;;;;;43040:29:0;;;;;;;;;43081:28;;43040:24;;43081:28;;;;;;;42943:172;;;:::o;22036:190::-;22161:4;22214;22185:25;22198:5;22205:4;22185:12;:25::i;:::-;:33;;22036:190;-1:-1:-1;;;;22036:190:0:o;39367:98::-;39432:27;39442:2;39446:8;39432:27;;;;;;;;;;;;:9;:27::i;:::-;39367:98;;:::o;41308:1529::-;41405:35;41443:20;41455:7;41443:11;:20::i;:::-;41514:18;;41405:58;;-1:-1:-1;41472:22:0;;-1:-1:-1;;;;;41498:34:0;30301:10;-1:-1:-1;;;;;41498:34:0;;:81;;;-1:-1:-1;30301:10:0;41543:20;41555:7;41543:11;:20::i;:::-;-1:-1:-1;;;;;41543:36:0;;41498:81;:142;;;-1:-1:-1;41607:18:0;;41590:50;;30301:10;38036:186;:::i;41590:50::-;41472:169;;41666:17;41650:101;;;;-1:-1:-1;;;41650:101:0;;16891:2:1;41650:101:0;;;16873:21:1;16930:2;16910:18;;;16903:30;16969:34;16949:18;;;16942:62;-1:-1:-1;;;17020:18:1;;;17013:48;17078:19;;41650:101:0;16689:414:1;41650:101:0;41798:4;-1:-1:-1;;;;;41776:26:0;:13;:18;;;-1:-1:-1;;;;;41776:26:0;;41760:98;;;;-1:-1:-1;;;41760:98:0;;17310:2:1;41760:98:0;;;17292:21:1;17349:2;17329:18;;;17322:30;17388:34;17368:18;;;17361:62;-1:-1:-1;;;17439:18:1;;;17432:36;17485:19;;41760:98:0;17108:402:1;41760:98:0;-1:-1:-1;;;;;41873:16:0;;41865:66;;;;-1:-1:-1;;;41865:66:0;;17717:2:1;41865:66:0;;;17699:21:1;17756:2;17736:18;;;17729:30;17795:34;17775:18;;;17768:62;-1:-1:-1;;;17846:18:1;;;17839:35;17891:19;;41865:66:0;17515:401:1;41865:66:0;42040:49;42057:1;42061:7;42070:13;:18;;;42040:8;:49::i;:::-;-1:-1:-1;;;;;42098:18:0;;;;;;:12;:18;;;;;:31;;42128:1;;42098:18;:31;;42128:1;;-1:-1:-1;;;;;42098:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;42098:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42136:16:0;;-1:-1:-1;42136:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;42136:16:0;;:29;;-1:-1:-1;;42136:29:0;;:::i;:::-;;;-1:-1:-1;;;;;42136:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42195:43:0;;;;;;;;-1:-1:-1;;;;;42195:43:0;;;;;;42221:15;42195:43;;;;;;;;;-1:-1:-1;42172:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;42172:66:0;-1:-1:-1;;;;;;42172:66:0;;;;;;;;;;;42488:11;42184:7;-1:-1:-1;42488:11:0;:::i;:::-;42551:1;42510:24;;;:11;:24;;;;;:29;42466:33;;-1:-1:-1;;;;;;42510:29:0;42506:236;;42568:20;42576:11;39313:4;39343:12;-1:-1:-1;39333:22:0;39256:105;42568:20;42564:171;;;42628:97;;;;;;;;42655:18;;-1:-1:-1;;;;;42628:97:0;;;;;;42686:28;;;;42628:97;;;;;;;;;;-1:-1:-1;42601:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;42601:124:0;-1:-1:-1;;;;;;42601:124:0;;;;;;;;;;;;42564:171;42774:7;42770:2;-1:-1:-1;;;;;42755:27:0;42764:4;-1:-1:-1;;;;;42755:27:0;;;;;;;;;;;42789:42;42810:4;42816:2;42820:7;42829:1;42789:20;:42::i;:::-;41398:1439;;;41308:1529;;;:::o;35069:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;35186:16:0;35194:7;39313:4;39343:12;-1:-1:-1;39333:22:0;39256:105;35186:16;35178:71;;;;-1:-1:-1;;;35178:71:0;;18632:2:1;35178:71:0;;;18614:21:1;18671:2;18651:18;;;18644:30;18710:34;18690:18;;;18683:62;-1:-1:-1;;;18761:18:1;;;18754:40;18811:19;;35178:71:0;18430:406:1;35178:71:0;35258:26;35306:12;35295:7;:23;35291:93;;35350:22;35360:12;35350:7;:22;:::i;:::-;:26;;35375:1;35350:26;:::i;:::-;35329:47;;35291:93;35412:7;35392:212;35429:18;35421:4;:26;35392:212;;35466:31;35500:17;;;:11;:17;;;;;;;;;35466:51;;;;;;;;;-1:-1:-1;;;;;35466:51:0;;;;;-1:-1:-1;;;35466:51:0;;;;;;;;;;;;35530:28;35526:71;;35578:9;35069:606;-1:-1:-1;;;;35069:606:0:o;35526:71::-;-1:-1:-1;35449:6:0;;;;:::i;:::-;;;;35392:212;;;-1:-1:-1;35612:57:0;;-1:-1:-1;;;35612:57:0;;19314:2:1;35612:57:0;;;19296:21:1;19353:2;19333:18;;;19326:30;19392:34;19372:18;;;19365:62;-1:-1:-1;;;19443:18:1;;;19436:45;19498:19;;35612:57:0;19112:411:1;47884:132:0;47792:6;;-1:-1:-1;;;;;47792:6:0;30301:10;47948:23;47940:68;;;;-1:-1:-1;;;47940:68:0;;19730:2:1;47940:68:0;;;19712:21:1;;;19749:18;;;19742:30;19808:34;19788:18;;;19781:62;19860:18;;47940:68:0;19528:356:1;48986:191:0;49079:6;;;-1:-1:-1;;;;;49096:17:0;;;-1:-1:-1;;;;;;49096:17:0;;;;;;;49129:40;;49079:6;;;49096:17;49079:6;;49129:40;;49060:16;;49129:40;49049:128;48986:191;:::o;44658:690::-;44795:4;-1:-1:-1;;;;;44812:13:0;;1528:19;:23;44808:535;;44851:72;;-1:-1:-1;;;44851:72:0;;-1:-1:-1;;;;;44851:36:0;;;;;:72;;30301:10;;44902:4;;44908:7;;44917:5;;44851:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44851:72:0;;;;;;;;-1:-1:-1;;44851:72:0;;;;;;;;;;;;:::i;:::-;;;44838:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45082:13:0;;45078:215;;45115:61;;-1:-1:-1;;;45115:61:0;;;;;;;:::i;45078:215::-;45261:6;45255:13;45246:6;45242:2;45238:15;45231:38;44838:464;-1:-1:-1;;;;;;44973:55:0;-1:-1:-1;;;44973:55:0;;-1:-1:-1;44966:62:0;;44808:535;-1:-1:-1;45331:4:0;44808:535;44658:690;;;;;;:::o;53516:122::-;53574:13;53609:19;53620:7;53609:10;:19::i;22903:296::-;22986:7;23029:4;22986:7;23044:118;23068:5;:12;23064:1;:16;23044:118;;;23117:33;23127:12;23141:5;23147:1;23141:8;;;;;;;;:::i;:::-;;;;;;;23117:9;:33::i;:::-;23102:48;-1:-1:-1;23082:3:0;;;;:::i;:::-;;;;23044:118;;;-1:-1:-1;23179:12:0;22903:296;-1:-1:-1;;;22903:296:0:o;39804:1272::-;39909:20;39932:12;-1:-1:-1;;;;;39959:16:0;;39951:62;;;;-1:-1:-1;;;39951:62:0;;20971:2:1;39951:62:0;;;20953:21:1;21010:2;20990:18;;;20983:30;21049:34;21029:18;;;21022:62;-1:-1:-1;;;21100:18:1;;;21093:31;21141:19;;39951:62:0;20769:397:1;39951:62:0;40150:21;40158:12;39313:4;39343:12;-1:-1:-1;39333:22:0;39256:105;40150:21;40149:22;40141:64;;;;-1:-1:-1;;;40141:64:0;;21373:2:1;40141:64:0;;;21355:21:1;21412:2;21392:18;;;21385:30;21451:31;21431:18;;;21424:59;21500:18;;40141:64:0;21171:353:1;40141:64:0;40232:12;40220:8;:24;;40212:71;;;;-1:-1:-1;;;40212:71:0;;21731:2:1;40212:71:0;;;21713:21:1;21770:2;21750:18;;;21743:30;21809:34;21789:18;;;21782:62;-1:-1:-1;;;21860:18:1;;;21853:32;21902:19;;40212:71:0;21529:398:1;40212:71:0;-1:-1:-1;;;;;40395:16:0;;40362:30;40395:16;;;:12;:16;;;;;;;;;40362:49;;;;;;;;;-1:-1:-1;;;;;40362:49:0;;;;;-1:-1:-1;;;40362:49:0;;;;;;;;;;;40437:119;;;;;;;;40457:19;;40362:49;;40437:119;;;40457:39;;40487:8;;40457:39;:::i;:::-;-1:-1:-1;;;;;40437:119:0;;;;;40540:8;40505:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;40437:119:0;;;;;;-1:-1:-1;;;;;40418:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;40418:138:0;;;;;;;;;;;;40591:43;;;;;;;;;;;40617:15;40591:43;;;;;;;;40563:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;40563:71:0;-1:-1:-1;;;;;;40563:71:0;;;;;;;;;;;;;;;;;;40575:12;;40687:281;40711:8;40707:1;:12;40687:281;;;40740:38;;40765:12;;-1:-1:-1;;;;;40740:38:0;;;40757:1;;40740:38;;40757:1;;40740:38;40805:59;40836:1;40840:2;40844:12;40858:5;40805:22;:59::i;:::-;40787:150;;;;-1:-1:-1;;;40787:150:0;;;;;;;:::i;:::-;40946:14;;;;:::i;:::-;;;;40721:3;;;;;:::i;:::-;;;;40687:281;;;-1:-1:-1;40976:12:0;:27;;;41010:60;;41043:2;41047:12;41061:8;56064:236;56235:57;38706:311;53831:268;53890:13;53926:21;54005:9;54016:18;:7;:16;:18::i;:::-;54036:9;53988:58;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;53988:58:0;;;;;;;;;;53831:268;-1:-1:-1;;;53831:268:0:o;29110:149::-;29173:7;29204:1;29200;:5;:51;;29335:13;29429:15;;;29465:4;29458:15;;;29512:4;29496:21;;29200:51;;;29335:13;29429:15;;;29465:4;29458:15;;;29512:4;29496:21;;29208:20;29193:58;29110:149;-1:-1:-1;;;29110:149:0:o;18750:723::-;18806:13;19027:10;19023:53;;-1:-1:-1;;19054:10:0;;;;;;;;;;;;-1:-1:-1;;;19054:10:0;;;;;18750:723::o;19023:53::-;19101:5;19086:12;19142:78;19149:9;;19142:78;;19175:8;;;;:::i;:::-;;-1:-1:-1;19198:10:0;;-1:-1:-1;19206:2:0;19198:10;;:::i;:::-;;;19142:78;;;19230:19;19262:6;19252:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19252:17:0;;19230:39;;19280:154;19287:10;;19280:154;;19314:11;19324:1;19314:11;;:::i;:::-;;-1:-1:-1;19383:10:0;19391:2;19383:5;:10;:::i;:::-;19370:24;;:2;:24;:::i;:::-;19357:39;;19340:6;19347;19340:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19340:56:0;;;;;;;;-1:-1:-1;19411:11:0;19420:2;19411:11;;:::i;:::-;;;19280:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:757::-;2277:6;2285;2293;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2410:9;2397:23;2439:18;2480:2;2472:6;2469:14;2466:34;;;2496:1;2493;2486:12;2466:34;2534:6;2523:9;2519:22;2509:32;;2579:7;2572:4;2568:2;2564:13;2560:27;2550:55;;2601:1;2598;2591:12;2550:55;2641:2;2628:16;2667:2;2659:6;2656:14;2653:34;;;2683:1;2680;2673:12;2653:34;2738:7;2731:4;2721:6;2718:1;2714:14;2710:2;2706:23;2702:34;2699:47;2696:67;;;2759:1;2756;2749:12;2696:67;2790:4;2782:13;;;;2814:6;;-1:-1:-1;2852:20:1;;;2839:34;;2920:2;2905:18;2892:32;;-1:-1:-1;2173:757:1;;-1:-1:-1;;;;2173:757:1:o;3117:328::-;3194:6;3202;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;;3350:38;3384:2;3373:9;3369:18;3350:38;:::i;:::-;3340:48;;3435:2;3424:9;3420:18;3407:32;3397:42;;3117:328;;;;;:::o;3450:186::-;3509:6;3562:2;3550:9;3541:7;3537:23;3533:32;3530:52;;;3578:1;3575;3568:12;3530:52;3601:29;3620:9;3601:29;:::i;3641:127::-;3702:10;3697:3;3693:20;3690:1;3683:31;3733:4;3730:1;3723:15;3757:4;3754:1;3747:15;3773:632;3838:5;3868:18;3909:2;3901:6;3898:14;3895:40;;;3915:18;;:::i;:::-;3990:2;3984:9;3958:2;4044:15;;-1:-1:-1;;4040:24:1;;;4066:2;4036:33;4032:42;4020:55;;;4090:18;;;4110:22;;;4087:46;4084:72;;;4136:18;;:::i;:::-;4176:10;4172:2;4165:22;4205:6;4196:15;;4235:6;4227;4220:22;4275:3;4266:6;4261:3;4257:16;4254:25;4251:45;;;4292:1;4289;4282:12;4251:45;4342:6;4337:3;4330:4;4322:6;4318:17;4305:44;4397:1;4390:4;4381:6;4373;4369:19;4365:30;4358:41;;;;3773:632;;;;;:::o;4410:222::-;4453:5;4506:3;4499:4;4491:6;4487:17;4483:27;4473:55;;4524:1;4521;4514:12;4473:55;4546:80;4622:3;4613:6;4600:20;4593:4;4585:6;4581:17;4546:80;:::i;4637:543::-;4725:6;4733;4786:2;4774:9;4765:7;4761:23;4757:32;4754:52;;;4802:1;4799;4792:12;4754:52;4842:9;4829:23;4871:18;4912:2;4904:6;4901:14;4898:34;;;4928:1;4925;4918:12;4898:34;4951:50;4993:7;4984:6;4973:9;4969:22;4951:50;:::i;:::-;4941:60;;5054:2;5043:9;5039:18;5026:32;5010:48;;5083:2;5073:8;5070:16;5067:36;;;5099:1;5096;5089:12;5067:36;;5122:52;5166:7;5155:8;5144:9;5140:24;5122:52;:::i;:::-;5112:62;;;4637:543;;;;;:::o;5185:316::-;5262:6;5270;5278;5331:2;5319:9;5310:7;5306:23;5302:32;5299:52;;;5347:1;5344;5337:12;5299:52;-1:-1:-1;;5370:23:1;;;5440:2;5425:18;;5412:32;;-1:-1:-1;5491:2:1;5476:18;;;5463:32;;5185:316;-1:-1:-1;5185:316:1:o;5506:347::-;5571:6;5579;5632:2;5620:9;5611:7;5607:23;5603:32;5600:52;;;5648:1;5645;5638:12;5600:52;5671:29;5690:9;5671:29;:::i;:::-;5661:39;;5750:2;5739:9;5735:18;5722:32;5797:5;5790:13;5783:21;5776:5;5773:32;5763:60;;5819:1;5816;5809:12;5763:60;5842:5;5832:15;;;5506:347;;;;;:::o;5858:667::-;5953:6;5961;5969;5977;6030:3;6018:9;6009:7;6005:23;6001:33;5998:53;;;6047:1;6044;6037:12;5998:53;6070:29;6089:9;6070:29;:::i;:::-;6060:39;;6118:38;6152:2;6141:9;6137:18;6118:38;:::i;:::-;6108:48;;6203:2;6192:9;6188:18;6175:32;6165:42;;6258:2;6247:9;6243:18;6230:32;6285:18;6277:6;6274:30;6271:50;;;6317:1;6314;6307:12;6271:50;6340:22;;6393:4;6385:13;;6381:27;-1:-1:-1;6371:55:1;;6422:1;6419;6412:12;6371:55;6445:74;6511:7;6506:2;6493:16;6488:2;6484;6480:11;6445:74;:::i;:::-;6435:84;;;5858:667;;;;;;;:::o;7183:260::-;7251:6;7259;7312:2;7300:9;7291:7;7287:23;7283:32;7280:52;;;7328:1;7325;7318:12;7280:52;7351:29;7370:9;7351:29;:::i;:::-;7341:39;;7399:38;7433:2;7422:9;7418:18;7399:38;:::i;:::-;7389:48;;7183:260;;;;;:::o;7630:380::-;7709:1;7705:12;;;;7752;;;7773:61;;7827:4;7819:6;7815:17;7805:27;;7773:61;7880:2;7872:6;7869:14;7849:18;7846:38;7843:161;;;7926:10;7921:3;7917:20;7914:1;7907:31;7961:4;7958:1;7951:15;7989:4;7986:1;7979:15;7843:161;;7630:380;;;:::o;10680:127::-;10741:10;10736:3;10732:20;10729:1;10722:31;10772:4;10769:1;10762:15;10796:4;10793:1;10786:15;10812:128;10852:3;10883:1;10879:6;10876:1;10873:13;10870:39;;;10889:18;;:::i;:::-;-1:-1:-1;10925:9:1;;10812:128::o;13088:135::-;13127:3;-1:-1:-1;;13148:17:1;;13145:43;;;13168:18;;:::i;:::-;-1:-1:-1;13215:1:1;13204:13;;13088:135::o;15862:415::-;16064:2;16046:21;;;16103:2;16083:18;;;16076:30;16142:34;16137:2;16122:18;;16115:62;-1:-1:-1;;;16208:2:1;16193:18;;16186:49;16267:3;16252:19;;15862:415::o;17921:246::-;17961:4;-1:-1:-1;;;;;18074:10:1;;;;18044;;18096:12;;;18093:38;;;18111:18;;:::i;:::-;18148:13;;17921:246;-1:-1:-1;;;17921:246:1:o;18172:253::-;18212:3;-1:-1:-1;;;;;18301:2:1;18298:1;18294:10;18331:2;18328:1;18324:10;18362:3;18358:2;18354:12;18349:3;18346:21;18343:47;;;18370:18;;:::i;:::-;18406:13;;18172:253;-1:-1:-1;;;;18172:253:1:o;18841:125::-;18881:4;18909:1;18906;18903:8;18900:34;;;18914:18;;:::i;:::-;-1:-1:-1;18951:9:1;;18841:125::o;18971:136::-;19010:3;19038:5;19028:39;;19047:18;;:::i;:::-;-1:-1:-1;;;19083:18:1;;18971:136::o;19889:489::-;-1:-1:-1;;;;;20158:15:1;;;20140:34;;20210:15;;20205:2;20190:18;;20183:43;20257:2;20242:18;;20235:34;;;20305:3;20300:2;20285:18;;20278:31;;;20083:4;;20326:46;;20352:19;;20344:6;20326:46;:::i;:::-;20318:54;19889:489;-1:-1:-1;;;;;;19889:489:1:o;20383:249::-;20452:6;20505:2;20493:9;20484:7;20480:23;20476:32;20473:52;;;20521:1;20518;20511:12;20473:52;20553:9;20547:16;20572:30;20596:5;20572:30;:::i;20637:127::-;20698:10;20693:3;20689:20;20686:1;20679:31;20729:4;20726:1;20719:15;20753:4;20750:1;20743:15;22058:973;22143:12;;22108:3;;22198:1;22218:18;;;;22271;;;;22298:61;;22352:4;22344:6;22340:17;22330:27;;22298:61;22378:2;22426;22418:6;22415:14;22395:18;22392:38;22389:161;;;22472:10;22467:3;22463:20;22460:1;22453:31;22507:4;22504:1;22497:15;22535:4;22532:1;22525:15;22389:161;22566:18;22593:104;;;;22711:1;22706:319;;;;22559:466;;22593:104;-1:-1:-1;;22626:24:1;;22614:37;;22671:16;;;;-1:-1:-1;22593:104:1;;22706:319;22005:1;21998:14;;;22042:4;22029:18;;22800:1;22814:165;22828:6;22825:1;22822:13;22814:165;;;22906:14;;22893:11;;;22886:35;22949:16;;;;22843:10;;22814:165;;;22818:3;;23008:6;23003:3;22999:16;22992:23;;22559:466;;;;;;;22058:973;;;;:::o;23036:456::-;23257:3;23285:38;23319:3;23311:6;23285:38;:::i;:::-;23352:6;23346:13;23368:52;23413:6;23409:2;23402:4;23394:6;23390:17;23368:52;:::i;:::-;23436:50;23478:6;23474:2;23470:15;23462:6;23436:50;:::i;:::-;23429:57;23036:456;-1:-1:-1;;;;;;;23036:456:1:o;23497:127::-;23558:10;23553:3;23549:20;23546:1;23539:31;23589:4;23586:1;23579:15;23613:4;23610:1;23603:15;23629:120;23669:1;23695;23685:35;;23700:18;;:::i;:::-;-1:-1:-1;23734:9:1;;23629:120::o;23754:112::-;23786:1;23812;23802:35;;23817:18;;:::i;:::-;-1:-1:-1;23851:9:1;;23754:112::o

Swarm Source

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