ETH Price: $2,609.80 (-0.44%)

Token

The Travellers Club (TTC)
 

Overview

Max Total Supply

1 TTC

Holders

1

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mjouan.eth
Balance
1 TTC
0xEeCBa4834ca010C0ced9b2ED8B7050f5229667B8
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:
TheTravellersClub

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-05
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * 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 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (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.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

    /**
     * @dev 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/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/contract.sol



pragma solidity ^0.8.7;

/// @title Contract of your NFTs collection
/// @author TheTravellersClub







contract TheTravellersClub is ERC721Enumerable, Ownable, ReentrancyGuard {

    //To increment the id of the NFTs
    using Counters for Counters.Counter;

    //To concatenate the URL of an NFT
    using Strings for uint256;

    //To check the addresses in the whitelist
    bytes32 public merkleRoot;

    //Id of the next NFT to mint
    Counters.Counter private _nftIdCounter;

    //Number of NFTs in the collection
    uint public constant MAX_SUPPLY = 5000;
    //Maximum number of NFTs an address can mint
    uint public max_mint_allowed = 10;
    //Price of one NFT in presale
    uint public pricePresale = 0.18 ether;

    uint256 public  reserveAmount;
    uint256 public tokensReserved;

    //URI of the NFTs when revealed
    string public baseURI;
    //URI of the NFTs when not revealed
    string public notRevealedURI;
    //The extension of the file containing the Metadatas of the NFTs
    string public baseExtension = ".json";

    //Are the NFTs revealed yet ?
    bool public revealed = false;

    //Is the contract paused ?
    bool public paused = false;

    //The different stages of selling the collection
    enum Steps {
        Before,
        Whitelist,
        Presale,
        SoldOut,
        Reveal
    }

    Steps public sellingStep;
    
    //Owner of the smart contract
    address private _owner;

    //Keep a track of the number of tokens per address
    mapping(address => uint) nftsPerWallet;
    
  mapping(address => bool) public isWhitelisted;
  mapping(address => uint) public tokensMintedByAddress;

    //Addresses of all the members of the team

    //Constructor of the collection
    constructor(string memory _theBaseURI, string memory _notRevealedURI) ERC721("The Travellers Club", "TTC"){
        _nftIdCounter.increment();
        transferOwnership(msg.sender);
        sellingStep = Steps.Before;
        baseURI = _theBaseURI;
        notRevealedURI = _notRevealedURI;
    }

    /**
    * @notice Edit the Merkle Root 
    *
    * @param _newMerkleRoot The new Merkle Root
    **/
    function changeMerkleRoot(bytes32 _newMerkleRoot) external onlyOwner {
        merkleRoot = _newMerkleRoot;
    }

    /** 
    * @notice Set pause to true or false
    *
    * @param _paused True or false if you want the contract to be paused or not
    **/
    function setPaused(bool _paused) external onlyOwner {
        paused = _paused;
    }

    /** 
    * @notice Change the number of NFTs that an address can mint
    *
    * @param _maxMintAllowed The number of NFTs that an address can mint
    **/
    function changeMaxMintAllowed(uint _maxMintAllowed) external onlyOwner {
        max_mint_allowed = _maxMintAllowed;
    }

    /**
    * @notice Change the price of one NFT for the presale
    *
    * @param _pricePresale The new price of one NFT for the presale
    **/
    function changePricePresale(uint _pricePresale) external onlyOwner {
        pricePresale = _pricePresale;
    }

  
    /**
    * @notice Change the base URI
    *
    * @param _newBaseURI The new base URI
    **/
    function setBaseUri(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    /**
    * @notice Change the not revealed URI
    *
    * @param _notRevealedURI The new not revealed URI
    **/
    function setNotRevealURI(string memory _notRevealedURI) external onlyOwner {
        notRevealedURI = _notRevealedURI;
    }

    /**
    * @notice Allows to set the revealed variable to true
    **/
    function reveal() external onlyOwner{
        revealed = true;
    }

    /**
    * @notice Return URI of the NFTs when revealed
    *
    * @return The URI of the NFTs when revealed
    **/
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    /**
    * @notice Allows to change the base extension of the metadatas files
    *
    * @param _baseExtension the new extension of the metadatas files
    **/
    function setBaseExtension(string memory _baseExtension) external onlyOwner {
        baseExtension = _baseExtension;
    }


    function setUpMinting() external onlyOwner {
        sellingStep = Steps.Presale;
    }


    function PresaleMint(uint256 _ammount) external payable nonReentrant {
        //Get the number of NFT sold
        uint numberNftSold = totalSupply();
        //Get the price of one NFT in Sale
        uint price = pricePresale;
        //If Sale didn't start yet
        require(sellingStep == Steps.Presale, "Sorry, sale has not started yet.");
        //Did the user then enought Ethers to buy ammount NFTs ?
        require(msg.value >= price * _ammount, "Not enought funds.");
        //The user can only mint max 3 NFTs
        require(_ammount <= max_mint_allowed, "You can't mint more than 3 tokens");
        //If the user try to mint any non-existent token
        require(numberNftSold +  _ammount <= MAX_SUPPLY, "Sale is almost done and we don't have enought NFTs left.");
        //Add the ammount of NFTs minted by the user to the total he minted
        nftsPerWallet[msg.sender] += _ammount;
        //If this account minted the last NFTs available
        if(numberNftSold + _ammount <= MAX_SUPPLY) {
            sellingStep = Steps.SoldOut;   
        }
        //Minting all the account NFTs
        for(uint i = 1 ; i <= _ammount ; i++) {
            _safeMint(msg.sender, numberNftSold + i);
        }
    }

       function reserveNFT() public onlyOwner {        
        uint numberNftSold = totalSupply();
        uint i;
        for (i = 0; i < 30; i++) {
            _safeMint(msg.sender, numberNftSold + i);
        }
    }


    /**
    * @notice Return true or false if the account is whitelisted or not
    *
    * @param account The account of the user
    * @param proof The Merkle Proof
    *
    * @return true or false if the account is whitelisted or not
    **/
    function isWhiteListed(address account, bytes32[] calldata proof) internal view returns(bool) {
        return _verify(_leaf(account), proof);
    }


 function whitelist(address[] calldata _users) public onlyOwner {
      for (uint i = 0; i < _users.length; i++) {
          isWhitelisted[_users[i]] = true;
      }
  }
  
  function unWhitelist(address[] calldata _users) public onlyOwner {
     for(uint i = 0; i < _users.length; i++) {
          isWhitelisted[_users[i]] = false;
     }
  }


    /**
    * @notice Return the account hashed
    *
    * @param account The account to hash
    *
    * @return The account hashed
    **/
    function _leaf(address account) internal pure returns(bytes32) {
        return keccak256(abi.encodePacked(account));
    }

    /** 
    * @notice Returns true if a leaf can be proved to be a part of a Merkle tree defined by root
    *
    * @param leaf The leaf
    * @param proof The Merkle Proof
    *
    * @return True if a leaf can be provded to be a part of a Merkle tree defined by root
    **/
    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns(bool) {
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }

    /**
    * @notice Allows to get the complete URI of a specific NFT by his ID
    *
    * @param _nftId The id of the NFT
    *
    * @return The token URI of the NFT which has _nftId Id
    **/
    function tokenURI(uint _nftId) public view override(ERC721) returns (string memory) {
        require(_exists(_nftId), "This NFT doesn't exist.");
        if(revealed == false) {
            return notRevealedURI;
        }
        
        string memory currentBaseURI = _baseURI();
        return 
            bytes(currentBaseURI).length > 0 
            ? string(abi.encodePacked(currentBaseURI, _nftId.toString(), baseExtension))
            : "";
    }

      function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success, "Withdrawal of funds failed");
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_theBaseURI","type":"string"},{"internalType":"string","name":"_notRevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ammount","type":"uint256"}],"name":"PresaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAllowed","type":"uint256"}],"name":"changeMaxMintAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"changeMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pricePresale","type":"uint256"}],"name":"changePricePresale","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":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_mint_allowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserveNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellingStep","outputs":[{"internalType":"enum TheTravellersClub.Steps","name":"","type":"uint8"}],"stateMutability":"view","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":"_baseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpMinting","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":"_nftId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokensMintedByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_users","type":"address[]"}],"name":"unWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

600a600e5567027f7d0bdb920000600f5560c06040526005608090815264173539b7b760d91b60a05260149062000037908262000337565b506015805461ffff191690553480156200005057600080fd5b5060405162002f0638038062002f068339810160408190526200007391620004ba565b6040518060400160405280601381526020017f5468652054726176656c6c65727320436c7562000000000000000000000000008152506040518060400160405280600381526020016254544360e81b8152508160009081620000d6919062000337565b506001620000e5828262000337565b50505062000102620000fc6200015e60201b60201c565b62000162565b6001600b8190555062000121600d620001b460201b6200170f1760201c565b6200012c33620001bd565b6015805462ff000019169055601262000146838262000337565b50601362000155828262000337565b50505062000524565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b600a546001600160a01b031633146200021d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038116620002845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000214565b6200028f8162000162565b50565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002bd57607f821691505b602082108103620002de57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033257600081815260208120601f850160051c810160208610156200030d5750805b601f850160051c820191505b818110156200032e5782815560010162000319565b5050505b505050565b81516001600160401b0381111562000353576200035362000292565b6200036b81620003648454620002a8565b84620002e4565b602080601f831160018114620003a357600084156200038a5750858301515b600019600386901b1c1916600185901b1785556200032e565b600085815260208120601f198616915b82811015620003d457888601518255948401946001909101908401620003b3565b5085821015620003f35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200041557600080fd5b81516001600160401b038082111562000432576200043262000292565b604051601f8301601f19908116603f011681019082821181831017156200045d576200045d62000292565b816040528381526020925086838588010111156200047a57600080fd5b600091505b838210156200049e57858201830151818301840152908201906200047f565b83821115620004b05760008385830101525b9695505050505050565b60008060408385031215620004ce57600080fd5b82516001600160401b0380821115620004e657600080fd5b620004f48683870162000403565b935060208501519150808211156200050b57600080fd5b506200051a8582860162000403565b9150509250929050565b6129d280620005346000396000f3fe6080604052600436106102885760003560e01c80636352211e1161015a578063b88d4fde116100c1578063cbccefb21161007a578063cbccefb214610738578063da3ef23f14610765578063e985e9c514610785578063ebcea3db146107ce578063f2fde38b146107ee578063fbe5cc231461080e57600080fd5b8063b88d4fde14610698578063ba0c60c9146106b8578063bd8aa780146106ce578063c617f4ed146106ee578063c668286214610703578063c87b56dd1461071857600080fd5b80639147dd1b116101135780639147dd1b1461060557806395d89b411461061b578063a0bcfc7f14610630578063a22cb46514610650578063a475b5dd14610670578063af27073e1461068557600080fd5b80636352211e146105685780636c0360eb1461058857806370a082311461059d578063715018a6146105bd57806372250380146105d25780638da5cb5b146105e757600080fd5b80633af32abf116101fe5780634f6ccce7116101b75780634f6ccce7146104a257806351830227146104c2578063549df2df146104dc5780635accac99146104fc5780635c975abb1461051c5780635e8bf9f71461053b57600080fd5b80633af32abf146103fe5780633ccfd60b1461042e5780633f5fbad01461043657806342842e0e14610456578063433adb05146104765780634b09b72a1461048c57600080fd5b806316c38b3c1161025057806316c38b3c1461035357806318160ddd1461037357806323b872dd146103925780632eb4a7ab146103b25780632f745c59146103c857806332cb6b0c146103e857600080fd5b806301ffc9a71461028d5780630219804e146102c257806306fdde03146102d9578063081812fc146102fb578063095ea7b314610333575b600080fd5b34801561029957600080fd5b506102ad6102a83660046121d1565b61082e565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d7610859565b005b3480156102e557600080fd5b506102ee61089f565b6040516102b99190612246565b34801561030757600080fd5b5061031b610316366004612259565b610931565b6040516001600160a01b0390911681526020016102b9565b34801561033f57600080fd5b506102d761034e36600461228e565b6109c6565b34801561035f57600080fd5b506102d761036e3660046122c8565b610adb565b34801561037f57600080fd5b506008545b6040519081526020016102b9565b34801561039e57600080fd5b506102d76103ad3660046122e3565b610b1f565b3480156103be57600080fd5b50610384600c5481565b3480156103d457600080fd5b506103846103e336600461228e565b610b50565b3480156103f457600080fd5b5061038461138881565b34801561040a57600080fd5b506102ad61041936600461231f565b60176020526000908152604090205460ff1681565b6102d7610be6565b34801561044257600080fd5b506102d7610451366004612259565b610cab565b34801561046257600080fd5b506102d76104713660046122e3565b610cda565b34801561048257600080fd5b5061038460115481565b34801561049857600080fd5b5061038460105481565b3480156104ae57600080fd5b506103846104bd366004612259565b610cf5565b3480156104ce57600080fd5b506015546102ad9060ff1681565b3480156104e857600080fd5b506102d76104f7366004612259565b610d88565b34801561050857600080fd5b506102d76105173660046123c6565b610db7565b34801561052857600080fd5b506015546102ad90610100900460ff1681565b34801561054757600080fd5b5061038461055636600461231f565b60186020526000908152604090205481565b34801561057457600080fd5b5061031b610583366004612259565b610df1565b34801561059457600080fd5b506102ee610e68565b3480156105a957600080fd5b506103846105b836600461231f565b610ef6565b3480156105c957600080fd5b506102d7610f7d565b3480156105de57600080fd5b506102ee610fb3565b3480156105f357600080fd5b50600a546001600160a01b031661031b565b34801561061157600080fd5b50610384600f5481565b34801561062757600080fd5b506102ee610fc0565b34801561063c57600080fd5b506102d761064b3660046123c6565b610fcf565b34801561065c57600080fd5b506102d761066b36600461240f565b611005565b34801561067c57600080fd5b506102d7611010565b6102d7610693366004612259565b611049565b3480156106a457600080fd5b506102d76106b3366004612442565b6112cb565b3480156106c457600080fd5b50610384600e5481565b3480156106da57600080fd5b506102d76106e93660046124be565b611303565b3480156106fa57600080fd5b506102d761139f565b34801561070f57600080fd5b506102ee611402565b34801561072457600080fd5b506102ee610733366004612259565b61140f565b34801561074457600080fd5b506015546107589062010000900460ff1681565b6040516102b99190612549565b34801561077157600080fd5b506102d76107803660046123c6565b611576565b34801561079157600080fd5b506102ad6107a0366004612571565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107da57600080fd5b506102d76107e9366004612259565b6115ac565b3480156107fa57600080fd5b506102d761080936600461231f565b6115db565b34801561081a57600080fd5b506102d76108293660046124be565b611673565b60006001600160e01b0319821663780e9d6360e01b1480610853575061085382611718565b92915050565b600a546001600160a01b0316331461088c5760405162461bcd60e51b81526004016108839061259b565b60405180910390fd5b6015805462ff0000191662020000179055565b6060600080546108ae906125d0565b80601f01602080910402602001604051908101604052809291908181526020018280546108da906125d0565b80156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109aa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610883565b506000908152600460205260409020546001600160a01b031690565b60006109d182610df1565b9050806001600160a01b0316836001600160a01b031603610a3e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610883565b336001600160a01b0382161480610a5a5750610a5a81336107a0565b610acc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610883565b610ad68383611768565b505050565b600a546001600160a01b03163314610b055760405162461bcd60e51b81526004016108839061259b565b601580549115156101000261ff0019909216919091179055565b610b2933826117d6565b610b455760405162461bcd60e51b81526004016108839061260a565b610ad68383836118cd565b6000610b5b83610ef6565b8210610bbd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610883565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c105760405162461bcd60e51b81526004016108839061259b565b604051600090339047908381818185875af1925050503d8060008114610c52576040519150601f19603f3d011682016040523d82523d6000602084013e610c57565b606091505b5050905080610ca85760405162461bcd60e51b815260206004820152601a60248201527f5769746864726177616c206f662066756e6473206661696c65640000000000006044820152606401610883565b50565b600a546001600160a01b03163314610cd55760405162461bcd60e51b81526004016108839061259b565b600f55565b610ad6838383604051806020016040528060008152506112cb565b6000610d0060085490565b8210610d635760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610883565b60088281548110610d7657610d7661265b565b90600052602060002001549050919050565b600a546001600160a01b03163314610db25760405162461bcd60e51b81526004016108839061259b565b600e55565b600a546001600160a01b03163314610de15760405162461bcd60e51b81526004016108839061259b565b6013610ded82826126bf565b5050565b6000818152600260205260408120546001600160a01b0316806108535760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610883565b60128054610e75906125d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea1906125d0565b8015610eee5780601f10610ec357610100808354040283529160200191610eee565b820191906000526020600020905b815481529060010190602001808311610ed157829003601f168201915b505050505081565b60006001600160a01b038216610f615760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610883565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fa75760405162461bcd60e51b81526004016108839061259b565b610fb16000611a74565b565b60138054610e75906125d0565b6060600180546108ae906125d0565b600a546001600160a01b03163314610ff95760405162461bcd60e51b81526004016108839061259b565b6012610ded82826126bf565b610ded338383611ac6565b600a546001600160a01b0316331461103a5760405162461bcd60e51b81526004016108839061259b565b6015805460ff19166001179055565b6002600b540361109b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610883565b6002600b5560006110ab60085490565b600f54909150600260155462010000900460ff1660048111156110d0576110d0612533565b1461111d5760405162461bcd60e51b815260206004820181905260248201527f536f7272792c2073616c6520686173206e6f742073746172746564207965742e6044820152606401610883565b6111278382612795565b34101561116b5760405162461bcd60e51b81526020600482015260126024820152712737ba1032b737bab3b43a10333ab732399760711b6044820152606401610883565b600e548311156111c75760405162461bcd60e51b815260206004820152602160248201527f596f752063616e2774206d696e74206d6f7265207468616e203320746f6b656e6044820152607360f81b6064820152608401610883565b6113886111d484846127b4565b11156112485760405162461bcd60e51b815260206004820152603860248201527f53616c6520697320616c6d6f737420646f6e6520616e6420776520646f6e277460448201527f206861766520656e6f75676874204e465473206c6566742e00000000000000006064820152608401610883565b33600090815260166020526040812080548592906112679084906127b4565b90915550611388905061127a84846127b4565b11611291576015805462ff00001916620300001790555b60015b8381116112c0576112ae336112a983866127b4565b611b94565b806112b8816127cc565b915050611294565b50506001600b555050565b6112d533836117d6565b6112f15760405162461bcd60e51b81526004016108839061260a565b6112fd84848484611bae565b50505050565b600a546001600160a01b0316331461132d5760405162461bcd60e51b81526004016108839061259b565b60005b81811015610ad6576001601760008585858181106113505761135061265b565b9050602002016020810190611365919061231f565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611397816127cc565b915050611330565b600a546001600160a01b031633146113c95760405162461bcd60e51b81526004016108839061259b565b60006113d460085490565b905060005b601e811015610ded576113f0336112a983856127b4565b806113fa816127cc565b9150506113d9565b60148054610e75906125d0565b6000818152600260205260409020546060906001600160a01b03166114765760405162461bcd60e51b815260206004820152601760248201527f54686973204e465420646f65736e27742065786973742e0000000000000000006044820152606401610883565b60155460ff1615156000036115175760138054611492906125d0565b80601f01602080910402602001604051908101604052809291908181526020018280546114be906125d0565b801561150b5780601f106114e05761010080835404028352916020019161150b565b820191906000526020600020905b8154815290600101906020018083116114ee57829003601f168201915b50505050509050919050565b6000611521611be1565b90506000815111611541576040518060200160405280600081525061156f565b8061154b84611bf0565b601460405160200161155f939291906127e5565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115a05760405162461bcd60e51b81526004016108839061259b565b6014610ded82826126bf565b600a546001600160a01b031633146115d65760405162461bcd60e51b81526004016108839061259b565b600c55565b600a546001600160a01b031633146116055760405162461bcd60e51b81526004016108839061259b565b6001600160a01b03811661166a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610883565b610ca881611a74565b600a546001600160a01b0316331461169d5760405162461bcd60e51b81526004016108839061259b565b60005b81811015610ad6576000601760008585858181106116c0576116c061265b565b90506020020160208101906116d5919061231f565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611707816127cc565b9150506116a0565b80546001019055565b60006001600160e01b031982166380ac58cd60e01b148061174957506001600160e01b03198216635b5e139f60e01b145b8061085357506301ffc9a760e01b6001600160e01b0319831614610853565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061179d82610df1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661184f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610883565b600061185a83610df1565b9050806001600160a01b0316846001600160a01b031614806118a157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806118c55750836001600160a01b03166118ba84610931565b6001600160a01b0316145b949350505050565b826001600160a01b03166118e082610df1565b6001600160a01b0316146119445760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610883565b6001600160a01b0382166119a65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610883565b6119b1838383611cf1565b6119bc600082611768565b6001600160a01b03831660009081526003602052604081208054600192906119e5908490612885565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a139084906127b4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611b275760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610883565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610ded828260405180602001604052806000815250611da9565b611bb98484846118cd565b611bc584848484611ddc565b6112fd5760405162461bcd60e51b81526004016108839061289c565b6060601280546108ae906125d0565b606081600003611c175750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c415780611c2b816127cc565b9150611c3a9050600a83612904565b9150611c1b565b60008167ffffffffffffffff811115611c5c57611c5c61233a565b6040519080825280601f01601f191660200182016040528015611c86576020820181803683370190505b5090505b84156118c557611c9b600183612885565b9150611ca8600a86612918565b611cb39060306127b4565b60f81b818381518110611cc857611cc861265b565b60200101906001600160f81b031916908160001a905350611cea600a86612904565b9450611c8a565b6001600160a01b038316611d4c57611d4781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d6f565b816001600160a01b0316836001600160a01b031614611d6f57611d6f8382611edd565b6001600160a01b038216611d8657610ad681611f7a565b826001600160a01b0316826001600160a01b031614610ad657610ad68282612029565b611db3838361206d565b611dc06000848484611ddc565b610ad65760405162461bcd60e51b81526004016108839061289c565b60006001600160a01b0384163b15611ed257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e2090339089908890889060040161292c565b6020604051808303816000875af1925050508015611e5b575060408051601f3d908101601f19168201909252611e5891810190612969565b60015b611eb8573d808015611e89576040519150601f19603f3d011682016040523d82523d6000602084013e611e8e565b606091505b508051600003611eb05760405162461bcd60e51b81526004016108839061289c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118c5565b506001949350505050565b60006001611eea84610ef6565b611ef49190612885565b600083815260076020526040902054909150808214611f47576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f8c90600190612885565b60008381526009602052604081205460088054939450909284908110611fb457611fb461265b565b906000526020600020015490508060088381548110611fd557611fd561265b565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061200d5761200d612986565b6001900381819060005260206000200160009055905550505050565b600061203483610ef6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120c35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610883565b6000818152600260205260409020546001600160a01b0316156121285760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610883565b61213460008383611cf1565b6001600160a01b038216600090815260036020526040812080546001929061215d9084906127b4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610ca857600080fd5b6000602082840312156121e357600080fd5b813561156f816121bb565b60005b838110156122095781810151838201526020016121f1565b838111156112fd5750506000910152565b600081518084526122328160208601602086016121ee565b601f01601f19169290920160200192915050565b60208152600061156f602083018461221a565b60006020828403121561226b57600080fd5b5035919050565b80356001600160a01b038116811461228957600080fd5b919050565b600080604083850312156122a157600080fd5b6122aa83612272565b946020939093013593505050565b8035801515811461228957600080fd5b6000602082840312156122da57600080fd5b61156f826122b8565b6000806000606084860312156122f857600080fd5b61230184612272565b925061230f60208501612272565b9150604084013590509250925092565b60006020828403121561233157600080fd5b61156f82612272565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561236b5761236b61233a565b604051601f8501601f19908116603f011681019082821181831017156123935761239361233a565b816040528093508581528686860111156123ac57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123d857600080fd5b813567ffffffffffffffff8111156123ef57600080fd5b8201601f8101841361240057600080fd5b6118c584823560208401612350565b6000806040838503121561242257600080fd5b61242b83612272565b9150612439602084016122b8565b90509250929050565b6000806000806080858703121561245857600080fd5b61246185612272565b935061246f60208601612272565b925060408501359150606085013567ffffffffffffffff81111561249257600080fd5b8501601f810187136124a357600080fd5b6124b287823560208401612350565b91505092959194509250565b600080602083850312156124d157600080fd5b823567ffffffffffffffff808211156124e957600080fd5b818501915085601f8301126124fd57600080fd5b81358181111561250c57600080fd5b8660208260051b850101111561252157600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052602160045260246000fd5b602081016005831061256b57634e487b7160e01b600052602160045260246000fd5b91905290565b6000806040838503121561258457600080fd5b61258d83612272565b915061243960208401612272565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806125e457607f821691505b60208210810361260457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b601f821115610ad657600081815260208120601f850160051c810160208610156126985750805b601f850160051c820191505b818110156126b7578281556001016126a4565b505050505050565b815167ffffffffffffffff8111156126d9576126d961233a565b6126ed816126e784546125d0565b84612671565b602080601f831160018114612722576000841561270a5750858301515b600019600386901b1c1916600185901b1785556126b7565b600085815260208120601f198616915b8281101561275157888601518255948401946001909101908401612732565b508582101561276f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156127af576127af61277f565b500290565b600082198211156127c7576127c761277f565b500190565b6000600182016127de576127de61277f565b5060010190565b6000845160206127f88285838a016121ee565b85519184019161280b8184848a016121ee565b855492019160009061281c816125d0565b60018281168015612834576001811461284957612875565b60ff1984168752821515830287019450612875565b896000528560002060005b8481101561286d57815489820152908301908701612854565b505082870194505b50929a9950505050505050505050565b6000828210156128975761289761277f565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612913576129136128ee565b500490565b600082612927576129276128ee565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061295f9083018461221a565b9695505050505050565b60006020828403121561297b57600080fd5b815161156f816121bb565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220c4ca97e38bdd007d6814bc62b08e7cc33340b1cf4735da451f21e6d4adad4dfd64736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5865534b6d7a31364257696d675274574e4661715045646b536a6d43716e6d4c6155583777427257796a32742f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d64316369524b4c4d526f5377657850757154585667786f343465635035353548643676586e6a4a7562644d522f00000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c80636352211e1161015a578063b88d4fde116100c1578063cbccefb21161007a578063cbccefb214610738578063da3ef23f14610765578063e985e9c514610785578063ebcea3db146107ce578063f2fde38b146107ee578063fbe5cc231461080e57600080fd5b8063b88d4fde14610698578063ba0c60c9146106b8578063bd8aa780146106ce578063c617f4ed146106ee578063c668286214610703578063c87b56dd1461071857600080fd5b80639147dd1b116101135780639147dd1b1461060557806395d89b411461061b578063a0bcfc7f14610630578063a22cb46514610650578063a475b5dd14610670578063af27073e1461068557600080fd5b80636352211e146105685780636c0360eb1461058857806370a082311461059d578063715018a6146105bd57806372250380146105d25780638da5cb5b146105e757600080fd5b80633af32abf116101fe5780634f6ccce7116101b75780634f6ccce7146104a257806351830227146104c2578063549df2df146104dc5780635accac99146104fc5780635c975abb1461051c5780635e8bf9f71461053b57600080fd5b80633af32abf146103fe5780633ccfd60b1461042e5780633f5fbad01461043657806342842e0e14610456578063433adb05146104765780634b09b72a1461048c57600080fd5b806316c38b3c1161025057806316c38b3c1461035357806318160ddd1461037357806323b872dd146103925780632eb4a7ab146103b25780632f745c59146103c857806332cb6b0c146103e857600080fd5b806301ffc9a71461028d5780630219804e146102c257806306fdde03146102d9578063081812fc146102fb578063095ea7b314610333575b600080fd5b34801561029957600080fd5b506102ad6102a83660046121d1565b61082e565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d7610859565b005b3480156102e557600080fd5b506102ee61089f565b6040516102b99190612246565b34801561030757600080fd5b5061031b610316366004612259565b610931565b6040516001600160a01b0390911681526020016102b9565b34801561033f57600080fd5b506102d761034e36600461228e565b6109c6565b34801561035f57600080fd5b506102d761036e3660046122c8565b610adb565b34801561037f57600080fd5b506008545b6040519081526020016102b9565b34801561039e57600080fd5b506102d76103ad3660046122e3565b610b1f565b3480156103be57600080fd5b50610384600c5481565b3480156103d457600080fd5b506103846103e336600461228e565b610b50565b3480156103f457600080fd5b5061038461138881565b34801561040a57600080fd5b506102ad61041936600461231f565b60176020526000908152604090205460ff1681565b6102d7610be6565b34801561044257600080fd5b506102d7610451366004612259565b610cab565b34801561046257600080fd5b506102d76104713660046122e3565b610cda565b34801561048257600080fd5b5061038460115481565b34801561049857600080fd5b5061038460105481565b3480156104ae57600080fd5b506103846104bd366004612259565b610cf5565b3480156104ce57600080fd5b506015546102ad9060ff1681565b3480156104e857600080fd5b506102d76104f7366004612259565b610d88565b34801561050857600080fd5b506102d76105173660046123c6565b610db7565b34801561052857600080fd5b506015546102ad90610100900460ff1681565b34801561054757600080fd5b5061038461055636600461231f565b60186020526000908152604090205481565b34801561057457600080fd5b5061031b610583366004612259565b610df1565b34801561059457600080fd5b506102ee610e68565b3480156105a957600080fd5b506103846105b836600461231f565b610ef6565b3480156105c957600080fd5b506102d7610f7d565b3480156105de57600080fd5b506102ee610fb3565b3480156105f357600080fd5b50600a546001600160a01b031661031b565b34801561061157600080fd5b50610384600f5481565b34801561062757600080fd5b506102ee610fc0565b34801561063c57600080fd5b506102d761064b3660046123c6565b610fcf565b34801561065c57600080fd5b506102d761066b36600461240f565b611005565b34801561067c57600080fd5b506102d7611010565b6102d7610693366004612259565b611049565b3480156106a457600080fd5b506102d76106b3366004612442565b6112cb565b3480156106c457600080fd5b50610384600e5481565b3480156106da57600080fd5b506102d76106e93660046124be565b611303565b3480156106fa57600080fd5b506102d761139f565b34801561070f57600080fd5b506102ee611402565b34801561072457600080fd5b506102ee610733366004612259565b61140f565b34801561074457600080fd5b506015546107589062010000900460ff1681565b6040516102b99190612549565b34801561077157600080fd5b506102d76107803660046123c6565b611576565b34801561079157600080fd5b506102ad6107a0366004612571565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107da57600080fd5b506102d76107e9366004612259565b6115ac565b3480156107fa57600080fd5b506102d761080936600461231f565b6115db565b34801561081a57600080fd5b506102d76108293660046124be565b611673565b60006001600160e01b0319821663780e9d6360e01b1480610853575061085382611718565b92915050565b600a546001600160a01b0316331461088c5760405162461bcd60e51b81526004016108839061259b565b60405180910390fd5b6015805462ff0000191662020000179055565b6060600080546108ae906125d0565b80601f01602080910402602001604051908101604052809291908181526020018280546108da906125d0565b80156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109aa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610883565b506000908152600460205260409020546001600160a01b031690565b60006109d182610df1565b9050806001600160a01b0316836001600160a01b031603610a3e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610883565b336001600160a01b0382161480610a5a5750610a5a81336107a0565b610acc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610883565b610ad68383611768565b505050565b600a546001600160a01b03163314610b055760405162461bcd60e51b81526004016108839061259b565b601580549115156101000261ff0019909216919091179055565b610b2933826117d6565b610b455760405162461bcd60e51b81526004016108839061260a565b610ad68383836118cd565b6000610b5b83610ef6565b8210610bbd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610883565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c105760405162461bcd60e51b81526004016108839061259b565b604051600090339047908381818185875af1925050503d8060008114610c52576040519150601f19603f3d011682016040523d82523d6000602084013e610c57565b606091505b5050905080610ca85760405162461bcd60e51b815260206004820152601a60248201527f5769746864726177616c206f662066756e6473206661696c65640000000000006044820152606401610883565b50565b600a546001600160a01b03163314610cd55760405162461bcd60e51b81526004016108839061259b565b600f55565b610ad6838383604051806020016040528060008152506112cb565b6000610d0060085490565b8210610d635760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610883565b60088281548110610d7657610d7661265b565b90600052602060002001549050919050565b600a546001600160a01b03163314610db25760405162461bcd60e51b81526004016108839061259b565b600e55565b600a546001600160a01b03163314610de15760405162461bcd60e51b81526004016108839061259b565b6013610ded82826126bf565b5050565b6000818152600260205260408120546001600160a01b0316806108535760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610883565b60128054610e75906125d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea1906125d0565b8015610eee5780601f10610ec357610100808354040283529160200191610eee565b820191906000526020600020905b815481529060010190602001808311610ed157829003601f168201915b505050505081565b60006001600160a01b038216610f615760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610883565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fa75760405162461bcd60e51b81526004016108839061259b565b610fb16000611a74565b565b60138054610e75906125d0565b6060600180546108ae906125d0565b600a546001600160a01b03163314610ff95760405162461bcd60e51b81526004016108839061259b565b6012610ded82826126bf565b610ded338383611ac6565b600a546001600160a01b0316331461103a5760405162461bcd60e51b81526004016108839061259b565b6015805460ff19166001179055565b6002600b540361109b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610883565b6002600b5560006110ab60085490565b600f54909150600260155462010000900460ff1660048111156110d0576110d0612533565b1461111d5760405162461bcd60e51b815260206004820181905260248201527f536f7272792c2073616c6520686173206e6f742073746172746564207965742e6044820152606401610883565b6111278382612795565b34101561116b5760405162461bcd60e51b81526020600482015260126024820152712737ba1032b737bab3b43a10333ab732399760711b6044820152606401610883565b600e548311156111c75760405162461bcd60e51b815260206004820152602160248201527f596f752063616e2774206d696e74206d6f7265207468616e203320746f6b656e6044820152607360f81b6064820152608401610883565b6113886111d484846127b4565b11156112485760405162461bcd60e51b815260206004820152603860248201527f53616c6520697320616c6d6f737420646f6e6520616e6420776520646f6e277460448201527f206861766520656e6f75676874204e465473206c6566742e00000000000000006064820152608401610883565b33600090815260166020526040812080548592906112679084906127b4565b90915550611388905061127a84846127b4565b11611291576015805462ff00001916620300001790555b60015b8381116112c0576112ae336112a983866127b4565b611b94565b806112b8816127cc565b915050611294565b50506001600b555050565b6112d533836117d6565b6112f15760405162461bcd60e51b81526004016108839061260a565b6112fd84848484611bae565b50505050565b600a546001600160a01b0316331461132d5760405162461bcd60e51b81526004016108839061259b565b60005b81811015610ad6576001601760008585858181106113505761135061265b565b9050602002016020810190611365919061231f565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611397816127cc565b915050611330565b600a546001600160a01b031633146113c95760405162461bcd60e51b81526004016108839061259b565b60006113d460085490565b905060005b601e811015610ded576113f0336112a983856127b4565b806113fa816127cc565b9150506113d9565b60148054610e75906125d0565b6000818152600260205260409020546060906001600160a01b03166114765760405162461bcd60e51b815260206004820152601760248201527f54686973204e465420646f65736e27742065786973742e0000000000000000006044820152606401610883565b60155460ff1615156000036115175760138054611492906125d0565b80601f01602080910402602001604051908101604052809291908181526020018280546114be906125d0565b801561150b5780601f106114e05761010080835404028352916020019161150b565b820191906000526020600020905b8154815290600101906020018083116114ee57829003601f168201915b50505050509050919050565b6000611521611be1565b90506000815111611541576040518060200160405280600081525061156f565b8061154b84611bf0565b601460405160200161155f939291906127e5565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115a05760405162461bcd60e51b81526004016108839061259b565b6014610ded82826126bf565b600a546001600160a01b031633146115d65760405162461bcd60e51b81526004016108839061259b565b600c55565b600a546001600160a01b031633146116055760405162461bcd60e51b81526004016108839061259b565b6001600160a01b03811661166a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610883565b610ca881611a74565b600a546001600160a01b0316331461169d5760405162461bcd60e51b81526004016108839061259b565b60005b81811015610ad6576000601760008585858181106116c0576116c061265b565b90506020020160208101906116d5919061231f565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611707816127cc565b9150506116a0565b80546001019055565b60006001600160e01b031982166380ac58cd60e01b148061174957506001600160e01b03198216635b5e139f60e01b145b8061085357506301ffc9a760e01b6001600160e01b0319831614610853565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061179d82610df1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661184f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610883565b600061185a83610df1565b9050806001600160a01b0316846001600160a01b031614806118a157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806118c55750836001600160a01b03166118ba84610931565b6001600160a01b0316145b949350505050565b826001600160a01b03166118e082610df1565b6001600160a01b0316146119445760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610883565b6001600160a01b0382166119a65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610883565b6119b1838383611cf1565b6119bc600082611768565b6001600160a01b03831660009081526003602052604081208054600192906119e5908490612885565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a139084906127b4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611b275760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610883565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610ded828260405180602001604052806000815250611da9565b611bb98484846118cd565b611bc584848484611ddc565b6112fd5760405162461bcd60e51b81526004016108839061289c565b6060601280546108ae906125d0565b606081600003611c175750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c415780611c2b816127cc565b9150611c3a9050600a83612904565b9150611c1b565b60008167ffffffffffffffff811115611c5c57611c5c61233a565b6040519080825280601f01601f191660200182016040528015611c86576020820181803683370190505b5090505b84156118c557611c9b600183612885565b9150611ca8600a86612918565b611cb39060306127b4565b60f81b818381518110611cc857611cc861265b565b60200101906001600160f81b031916908160001a905350611cea600a86612904565b9450611c8a565b6001600160a01b038316611d4c57611d4781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d6f565b816001600160a01b0316836001600160a01b031614611d6f57611d6f8382611edd565b6001600160a01b038216611d8657610ad681611f7a565b826001600160a01b0316826001600160a01b031614610ad657610ad68282612029565b611db3838361206d565b611dc06000848484611ddc565b610ad65760405162461bcd60e51b81526004016108839061289c565b60006001600160a01b0384163b15611ed257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e2090339089908890889060040161292c565b6020604051808303816000875af1925050508015611e5b575060408051601f3d908101601f19168201909252611e5891810190612969565b60015b611eb8573d808015611e89576040519150601f19603f3d011682016040523d82523d6000602084013e611e8e565b606091505b508051600003611eb05760405162461bcd60e51b81526004016108839061289c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118c5565b506001949350505050565b60006001611eea84610ef6565b611ef49190612885565b600083815260076020526040902054909150808214611f47576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f8c90600190612885565b60008381526009602052604081205460088054939450909284908110611fb457611fb461265b565b906000526020600020015490508060088381548110611fd557611fd561265b565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061200d5761200d612986565b6001900381819060005260206000200160009055905550505050565b600061203483610ef6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120c35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610883565b6000818152600260205260409020546001600160a01b0316156121285760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610883565b61213460008383611cf1565b6001600160a01b038216600090815260036020526040812080546001929061215d9084906127b4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610ca857600080fd5b6000602082840312156121e357600080fd5b813561156f816121bb565b60005b838110156122095781810151838201526020016121f1565b838111156112fd5750506000910152565b600081518084526122328160208601602086016121ee565b601f01601f19169290920160200192915050565b60208152600061156f602083018461221a565b60006020828403121561226b57600080fd5b5035919050565b80356001600160a01b038116811461228957600080fd5b919050565b600080604083850312156122a157600080fd5b6122aa83612272565b946020939093013593505050565b8035801515811461228957600080fd5b6000602082840312156122da57600080fd5b61156f826122b8565b6000806000606084860312156122f857600080fd5b61230184612272565b925061230f60208501612272565b9150604084013590509250925092565b60006020828403121561233157600080fd5b61156f82612272565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561236b5761236b61233a565b604051601f8501601f19908116603f011681019082821181831017156123935761239361233a565b816040528093508581528686860111156123ac57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123d857600080fd5b813567ffffffffffffffff8111156123ef57600080fd5b8201601f8101841361240057600080fd5b6118c584823560208401612350565b6000806040838503121561242257600080fd5b61242b83612272565b9150612439602084016122b8565b90509250929050565b6000806000806080858703121561245857600080fd5b61246185612272565b935061246f60208601612272565b925060408501359150606085013567ffffffffffffffff81111561249257600080fd5b8501601f810187136124a357600080fd5b6124b287823560208401612350565b91505092959194509250565b600080602083850312156124d157600080fd5b823567ffffffffffffffff808211156124e957600080fd5b818501915085601f8301126124fd57600080fd5b81358181111561250c57600080fd5b8660208260051b850101111561252157600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052602160045260246000fd5b602081016005831061256b57634e487b7160e01b600052602160045260246000fd5b91905290565b6000806040838503121561258457600080fd5b61258d83612272565b915061243960208401612272565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806125e457607f821691505b60208210810361260457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b601f821115610ad657600081815260208120601f850160051c810160208610156126985750805b601f850160051c820191505b818110156126b7578281556001016126a4565b505050505050565b815167ffffffffffffffff8111156126d9576126d961233a565b6126ed816126e784546125d0565b84612671565b602080601f831160018114612722576000841561270a5750858301515b600019600386901b1c1916600185901b1785556126b7565b600085815260208120601f198616915b8281101561275157888601518255948401946001909101908401612732565b508582101561276f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156127af576127af61277f565b500290565b600082198211156127c7576127c761277f565b500190565b6000600182016127de576127de61277f565b5060010190565b6000845160206127f88285838a016121ee565b85519184019161280b8184848a016121ee565b855492019160009061281c816125d0565b60018281168015612834576001811461284957612875565b60ff1984168752821515830287019450612875565b896000528560002060005b8481101561286d57815489820152908301908701612854565b505082870194505b50929a9950505050505050505050565b6000828210156128975761289761277f565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612913576129136128ee565b500490565b600082612927576129276128ee565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061295f9083018461221a565b9695505050505050565b60006020828403121561297b57600080fd5b815161156f816121bb565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220c4ca97e38bdd007d6814bc62b08e7cc33340b1cf4735da451f21e6d4adad4dfd64736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5865534b6d7a31364257696d675274574e4661715045646b536a6d43716e6d4c6155583777427257796a32742f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d64316369524b4c4d526f5377657850757154585667786f343465635035353548643676586e6a4a7562644d522f00000000000000000000

-----Decoded View---------------
Arg [0] : _theBaseURI (string): ipfs://QmXeSKmz16BWimgRtWNFaqPEdkSjmCqnmLaUX7wBrWyj2t/
Arg [1] : _notRevealedURI (string): ipfs://Qmd1ciRKLMRoSwexPuqTXVgxo44ecP555Hd6vXnjJubdMR/

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5865534b6d7a31364257696d675274574e466171504564
Arg [4] : 6b536a6d43716e6d4c6155583777427257796a32742f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f516d64316369524b4c4d526f5377657850757154585667786f
Arg [7] : 343465635035353548643676586e6a4a7562644d522f00000000000000000000


Deployed Bytecode Sourcemap

52601:8213:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46297:224;;;;;;;;;;-1:-1:-1;46297:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;46297:224:0;;;;;;;;56844:89;;;;;;;;;;;;;:::i;:::-;;33116:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34676:221::-;;;;;;;;;;-1:-1:-1;34676:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;34676:221:0;1528:203:1;34199:411:0;;;;;;;;;;-1:-1:-1;34199:411:0;;;;;:::i;:::-;;:::i;54998:87::-;;;;;;;;;;-1:-1:-1;54998:87:0;;;;;:::i;:::-;;:::i;46937:113::-;;;;;;;;;;-1:-1:-1;47025:10:0;:17;46937:113;;;2669:25:1;;;2657:2;2642:18;46937:113:0;2523:177:1;35426:339:0;;;;;;;;;;-1:-1:-1;35426:339:0;;;;;:::i;:::-;;:::i;52887:25::-;;;;;;;;;;;;;;;;46605:256;;;;;;;;;;-1:-1:-1;46605:256:0;;;;;:::i;:::-;;:::i;53042:38::-;;;;;;;;;;;;53076:4;53042:38;;54106:45;;;;;;;;;;-1:-1:-1;54106:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;60621:188;;;:::i;55544:114::-;;;;;;;;;;-1:-1:-1;55544:114:0;;;;;:::i;:::-;;:::i;35836:185::-;;;;;;;;;;-1:-1:-1;35836:185:0;;;;;:::i;:::-;;:::i;53294:29::-;;;;;;;;;;;;;;;;53258;;;;;;;;;;;;;;;;47127:233;;;;;;;;;;-1:-1:-1;47127:233:0;;;;;:::i;:::-;;:::i;53624:28::-;;;;;;;;;;-1:-1:-1;53624:28:0;;;;;;;;55259:124;;;;;;;;;;-1:-1:-1;55259:124:0;;;;;:::i;:::-;;:::i;56010:126::-;;;;;;;;;;-1:-1:-1;56010:126:0;;;;;:::i;:::-;;:::i;53693:26::-;;;;;;;;;;-1:-1:-1;53693:26:0;;;;;;;;;;;54156:53;;;;;;;;;;-1:-1:-1;54156:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;32810:239;;;;;;;;;;-1:-1:-1;32810:239:0;;;;;:::i;:::-;;:::i;53369:21::-;;;;;;;;;;;;;:::i;32540:208::-;;;;;;;;;;-1:-1:-1;32540:208:0;;;;;:::i;:::-;;:::i;11674:103::-;;;;;;;;;;;;;:::i;53438:28::-;;;;;;;;;;;;;:::i;11023:87::-;;;;;;;;;;-1:-1:-1;11096:6:0;;-1:-1:-1;;;;;11096:6:0;11023:87;;53212:37;;;;;;;;;;;;;;;;33285:104;;;;;;;;;;;;;:::i;55773:106::-;;;;;;;;;;-1:-1:-1;55773:106:0;;;;;:::i;:::-;;:::i;34969:155::-;;;;;;;;;;-1:-1:-1;34969:155:0;;;;;:::i;:::-;;:::i;56221:70::-;;;;;;;;;;;;;:::i;56943:1252::-;;;;;;:::i;:::-;;:::i;36092:328::-;;;;;;;;;;-1:-1:-1;36092:328:0;;;;;:::i;:::-;;:::i;53137:33::-;;;;;;;;;;;;;;;;58846:172;;;;;;;;;;-1:-1:-1;58846:172:0;;;;;:::i;:::-;;:::i;58206:219::-;;;;;;;;;;;;;:::i;53543:37::-;;;;;;;;;;;;;:::i;60142:469::-;;;;;;;;;;-1:-1:-1;60142:469:0;;;;;:::i;:::-;;:::i;53898:24::-;;;;;;;;;;-1:-1:-1;53898:24:0;;;;;;;;;;;;;;;;;;:::i;56710:124::-;;;;;;;;;;-1:-1:-1;56710:124:0;;;;;:::i;:::-;;:::i;35195:164::-;;;;;;;;;;-1:-1:-1;35195:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35316:25:0;;;35292:4;35316:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35195:164;54726:115;;;;;;;;;;-1:-1:-1;54726:115:0;;;;;:::i;:::-;;:::i;11932:201::-;;;;;;;;;;-1:-1:-1;11932:201:0;;;;;:::i;:::-;;:::i;59026:172::-;;;;;;;;;;-1:-1:-1;59026:172:0;;;;;:::i;:::-;;:::i;46297:224::-;46399:4;-1:-1:-1;;;;;;46423:50:0;;-1:-1:-1;;;46423:50:0;;:90;;;46477:36;46501:11;46477:23;:36::i;:::-;46416:97;46297:224;-1:-1:-1;;46297:224:0:o;56844:89::-;11096:6;;-1:-1:-1;;;;;11096:6:0;9827:10;11243:23;11235:68;;;;-1:-1:-1;;;11235:68:0;;;;;;;:::i;:::-;;;;;;;;;56898:11:::1;:27:::0;;-1:-1:-1;;56898:27:0::1;::::0;::::1;::::0;;56844:89::o;33116:100::-;33170:13;33203:5;33196:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33116:100;:::o;34676:221::-;34752:7;38019:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38019:16:0;34772:73;;;;-1:-1:-1;;;34772:73:0;;8060:2:1;34772:73:0;;;8042:21:1;8099:2;8079:18;;;8072:30;8138:34;8118:18;;;8111:62;-1:-1:-1;;;8189:18:1;;;8182:42;8241:19;;34772:73:0;7858:408:1;34772:73:0;-1:-1:-1;34865:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34865:24:0;;34676:221::o;34199:411::-;34280:13;34296:23;34311:7;34296:14;:23::i;:::-;34280:39;;34344:5;-1:-1:-1;;;;;34338:11:0;:2;-1:-1:-1;;;;;34338:11:0;;34330:57;;;;-1:-1:-1;;;34330:57:0;;8473:2:1;34330:57:0;;;8455:21:1;8512:2;8492:18;;;8485:30;8551:34;8531:18;;;8524:62;-1:-1:-1;;;8602:18:1;;;8595:31;8643:19;;34330:57:0;8271:397:1;34330:57:0;9827:10;-1:-1:-1;;;;;34422:21:0;;;;:62;;-1:-1:-1;34447:37:0;34464:5;9827:10;35195:164;:::i;34447:37::-;34400:168;;;;-1:-1:-1;;;34400:168:0;;8875:2:1;34400:168:0;;;8857:21:1;8914:2;8894:18;;;8887:30;8953:34;8933:18;;;8926:62;9024:26;9004:18;;;8997:54;9068:19;;34400:168:0;8673:420:1;34400:168:0;34581:21;34590:2;34594:7;34581:8;:21::i;:::-;34269:341;34199:411;;:::o;54998:87::-;11096:6;;-1:-1:-1;;;;;11096:6:0;9827:10;11243:23;11235:68;;;;-1:-1:-1;;;11235:68:0;;;;;;;:::i;:::-;55061:6:::1;:16:::0;;;::::1;;;;-1:-1:-1::0;;55061:16:0;;::::1;::::0;;;::::1;::::0;;54998:87::o;35426:339::-;35621:41;9827:10;35654:7;35621:18;:41::i;:::-;35613:103;;;;-1:-1:-1;;;35613:103:0;;;;;;;:::i;:::-;35729:28;35739:4;35745:2;35749:7;35729:9;:28::i;46605:256::-;46702:7;46738:23;46755:5;46738:16;:23::i;:::-;46730:5;:31;46722:87;;;;-1:-1:-1;;;46722:87:0;;9718:2:1;46722:87:0;;;9700:21:1;9757:2;9737:18;;;9730:30;9796:34;9776:18;;;9769:62;-1:-1:-1;;;9847:18:1;;;9840:41;9898:19;;46722:87:0;9516:407:1;46722:87:0;-1:-1:-1;;;;;;46827:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;46605:256::o;60621:188::-;11096:6;;-1:-1:-1;;;;;11096:6:0;9827:10;11243:23;11235:68;;;;-1:-1:-1;;;11235:68:0;;;;;;;:::i;:::-;60692:58:::1;::::0;60674:12:::1;::::0;60700:10:::1;::::0;60724:21:::1;::::0;60674:12;60692:58;60674:12;60692:58;60724:21;60700:10;60692:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60673:77;;;60765:7;60757:46;;;::::0;-1:-1:-1;;;60757:46:0;;10340:2:1;60757:46:0::1;::::0;::::1;10322:21:1::0;10379:2;10359:18;;;10352:30;10418:28;10398:18;;;10391:56;10464:18;;60757:46:0::1;10138:350:1::0;60757:46:0::1;60666:143;60621:188::o:0;55544:114::-;11096:6;;-1:-1:-1;;;;;11096:6:0;9827:10;11243:23;11235:68;;;;-1:-1:-1;;;11235:68:0;;;;;;;:::i;:::-;55622:12:::1;:28:::0;55544:114::o;35836:185::-;35974:39;35991:4;35997:2;36001:7;35974:39;;;;;;;;;;;;:16;:39::i;47127:233::-;47202:7;47238:30;47025:10;:17;;46937:113;47238:30;47230:5;:38;47222:95;;;;-1:-1:-1;;;47222:95:0;;10695:2:1;47222:95:0;;;10677:21:1;10734:2;10714:18;;;10707:30;10773:34;10753:18;;;10746:62;-1:-1:-1;;;10824:18:1;;;10817:42;10876:19;;47222:95:0;10493:408:1;47222:95:0;47335:10;47346:5;47335:17;;;;;;;;:::i;:::-;;;;;;;;;47328:24;;47127:233;;;:::o;55259:124::-;11096:6;;-1:-1:-1;;;;;11096:6:0;9827:10;11243:23;11235:68;;;;-1:-1:-1;;;11235:68:0;;;;;;;:::i;:::-;55341:16:::1;:34:::0;55259:124::o;56010:126::-;11096:6;;-1:-1:-1;;;;;11096:6:0;9827:10;11243:23;11235:68;;;;-1:-1:-1;;;11235:68:0;;;;;;;:::i;:::-;56096:14:::1;:32;56113:15:::0;56096:14;:32:::1;:::i;:::-;;56010:126:::0;:::o;32810:239::-;32882:7;32918:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32918:16:0;;32945:73;;;;-1:-1:-1;;;32945:73:0;;13444:2:1;32945:73:0;;;13426:21:1;13483:2;13463:18;;;13456:30;13522:34;13502:18;;;13495:62;-1:-1:-1;;;13573:18:1;;;13566:39;13622:19;;32945:73:0;13242:405:1;53369:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32540:208::-;32612:7;-1:-1:-1;;;;;32640:19:0;;32632:74;;;;-1:-1:-1;;;32632:74:0;;13854:2:1;32632:74:0;;;13836:21:1;13893:2;13873:18;;;13866:30;13932:34;13912:18;;;13905:62;-1:-1:-1;;;13983:18:1;;;13976:40;14033:19;;32632:74:0;13652:406:1;32632:74:0;-1:-1:-1;;;;;;32724:16:0;;;;;:9;:16;;;;;;;32540:208::o;11674:103::-;11096:6;;-1:-1:-1;;;;;11096:6:0;9827:10;11243:23;11235:68;;;;-1:-1:-1;;;11235:68:0;;;;;;;:::i;:::-;11739:30:::1;11766:1;11739:18;:30::i;:::-;11674:103::o:0;53438:28::-;;;;;;;:::i;33285:104::-;33341:13;33374:7;33367:14;;;;;:::i;55773:106::-;11096:6;;-1:-1:-1;;;;;11096:6:0;9827:10;11243:23;11235:68;;;;-1:-1:-1;;;11235:68:0;;;;;;;:::i;:::-;55850:7:::1;:21;55860:11:::0;55850:7;:21:::1;:::i;34969:155::-:0;35064:52;9827:10;35097:8;35107;35064:18;:52::i;56221:70::-;11096:6;;-1:-1:-1;;;;;11096:6:0;9827:10;11243:23;11235:68;;;;-1:-1:-1;;;11235:68:0;;;;;;;:::i;:::-;56268:8:::1;:15:::0;;-1:-1:-1;;56268:15:0::1;56279:4;56268:15;::::0;;56221:70::o;56943:1252::-;1847:1;2445:7;;:19;2437:63;;;;-1:-1:-1;;;2437:63:0;;14265:2:1;2437:63:0;;;14247:21:1;14304:2;14284:18;;;14277:30;14343:33;14323:18;;;14316:61;14394:18;;2437:63:0;14063:355:1;2437:63:0;1847:1;2578:7;:18;57061::::1;57082:13;47025:10:::0;:17;;46937:113;57082:13:::1;57163:12;::::0;57061:34;;-1:-1:-1;57245:13:0::1;57230:11;::::0;;;::::1;;;:28;::::0;::::1;;;;;;:::i;:::-;;57222:73;;;::::0;-1:-1:-1;;;57222:73:0;;14625:2:1;57222:73:0::1;::::0;::::1;14607:21:1::0;;;14644:18;;;14637:30;14703:34;14683:18;;;14676:62;14755:18;;57222:73:0::1;14423:356:1::0;57222:73:0::1;57393:16;57401:8:::0;57393:5;:16:::1;:::i;:::-;57380:9;:29;;57372:60;;;::::0;-1:-1:-1;;;57372:60:0;;15291:2:1;57372:60:0::1;::::0;::::1;15273:21:1::0;15330:2;15310:18;;;15303:30;-1:-1:-1;;;15349:18:1;;;15342:48;15407:18;;57372:60:0::1;15089:342:1::0;57372:60:0::1;57508:16;;57496:8;:28;;57488:74;;;::::0;-1:-1:-1;;;57488:74:0;;15638:2:1;57488:74:0::1;::::0;::::1;15620:21:1::0;15677:2;15657:18;;;15650:30;15716:34;15696:18;;;15689:62;-1:-1:-1;;;15767:18:1;;;15760:31;15808:19;;57488:74:0::1;15436:397:1::0;57488:74:0::1;53076:4;57639:25;57656:8:::0;57639:13;:25:::1;:::i;:::-;:39;;57631:108;;;::::0;-1:-1:-1;;;57631:108:0;;16173:2:1;57631:108:0::1;::::0;::::1;16155:21:1::0;16212:2;16192:18;;;16185:30;16251:34;16231:18;;;16224:62;16322:26;16302:18;;;16295:54;16366:19;;57631:108:0::1;15971:420:1::0;57631:108:0::1;57841:10;57827:25;::::0;;;:13:::1;:25;::::0;;;;:37;;57856:8;;57827:25;:37:::1;::::0;57856:8;;57827:37:::1;:::i;:::-;::::0;;;-1:-1:-1;53076:4:0::1;::::0;-1:-1:-1;57936:24:0::1;57952:8:::0;57936:13;:24:::1;:::i;:::-;:38;57933:100;;57991:11;:27:::0;;-1:-1:-1;;57991:27:0::1;::::0;::::1;::::0;;57933:100:::1;58096:1;58083:105;58105:8;58100:1;:13;58083:105;;58136:40;58146:10;58158:17;58174:1:::0;58158:13;:17:::1;:::i;:::-;58136:9;:40::i;:::-;58116:3:::0;::::1;::::0;::::1;:::i;:::-;;;;58083:105;;;-1:-1:-1::0;;1803:1:0;2757:7;:22;-1:-1:-1;;56943:1252:0:o;36092:328::-;36267:41;9827:10;36300:7;36267:18;:41::i;:::-;36259:103;;;;-1:-1:-1;;;36259:103:0;;;;;;;:::i;:::-;36373:39;36387:4;36393:2;36397:7;36406:5;36373:13;:39::i;:::-;36092:328;;;;:::o;58846:172::-;11096:6;;-1:-1:-1;;;;;11096:6:0;9827:10;11243:23;11235:68;;;;-1:-1:-1;;;11235:68:0;;;;;;;:::i;:::-;58923:6:::1;58918:95;58935:17:::0;;::::1;58918:95;;;58999:4;58972:13;:24;58986:6;;58993:1;58986:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;58972:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;58972:24:0;:31;;-1:-1:-1;;58972:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58954:3;::::1;::::0;::::1;:::i;:::-;;;;58918:95;;58206:219:::0;11096:6;;-1:-1:-1;;;;;11096:6:0;9827:10;11243:23;11235:68;;;;-1:-1:-1;;;11235:68:0;;;;;;;:::i;:::-;58264:18:::1;58285:13;47025:10:::0;:17;;46937:113;58285:13:::1;58264:34;;58309:6;58326:92;58342:2;58338:1;:6;58326:92;;;58366:40;58376:10;58388:17;58404:1:::0;58388:13;:17:::1;:::i;58366:40::-;58346:3:::0;::::1;::::0;::::1;:::i;:::-;;;;58326:92;;53543:37:::0;;;;;;;:::i;60142:469::-;37995:4;38019:16;;;:7;:16;;;;;;60211:13;;-1:-1:-1;;;;;38019:16:0;60237:51;;;;-1:-1:-1;;;60237:51:0;;16738:2:1;60237:51:0;;;16720:21:1;16777:2;16757:18;;;16750:30;16816:25;16796:18;;;16789:53;16859:18;;60237:51:0;16536:347:1;60237:51:0;60302:8;;;;:17;;:8;:17;60299:70;;60343:14;60336:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60142:469;;;:::o;60299:70::-;60389:28;60420:10;:8;:10::i;:::-;60389:41;;60493:1;60468:14;60462:28;:32;:141;;;;;;;;;;;;;;;;;60535:14;60551:17;:6;:15;:17::i;:::-;60570:13;60518:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60462:141;60441:162;60142:469;-1:-1:-1;;;60142:469:0:o;56710:124::-;11096:6;;-1:-1:-1;;;;;11096:6:0;9827:10;11243:23;11235:68;;;;-1:-1:-1;;;11235:68:0;;;;;;;:::i;:::-;56796:13:::1;:30;56812:14:::0;56796:13;:30:::1;:::i;54726:115::-:0;11096:6;;-1:-1:-1;;;;;11096:6:0;9827:10;11243:23;11235:68;;;;-1:-1:-1;;;11235:68:0;;;;;;;:::i;:::-;54806:10:::1;:27:::0;54726:115::o;11932:201::-;11096:6;;-1:-1:-1;;;;;11096:6:0;9827:10;11243:23;11235:68;;;;-1:-1:-1;;;11235:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12021:22:0;::::1;12013:73;;;::::0;-1:-1:-1;;;12013:73:0;;18325:2:1;12013:73:0::1;::::0;::::1;18307:21:1::0;18364:2;18344:18;;;18337:30;18403:34;18383:18;;;18376:62;-1:-1:-1;;;18454:18:1;;;18447:36;18500:19;;12013:73:0::1;18123:402:1::0;12013:73:0::1;12097:28;12116:8;12097:18;:28::i;59026:172::-:0;11096:6;;-1:-1:-1;;;;;11096:6:0;9827:10;11243:23;11235:68;;;;-1:-1:-1;;;11235:68:0;;;;;;;:::i;:::-;59103:6:::1;59099:94;59115:17:::0;;::::1;59099:94;;;59179:5;59152:13;:24;59166:6;;59173:1;59166:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;59152:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;59152:24:0;:32;;-1:-1:-1;;59152:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59134:3;::::1;::::0;::::1;:::i;:::-;;;;59099:94;;3788:127:::0;3877:19;;3895:1;3877:19;;;3788:127::o;32171:305::-;32273:4;-1:-1:-1;;;;;;32310:40:0;;-1:-1:-1;;;32310:40:0;;:105;;-1:-1:-1;;;;;;;32367:48:0;;-1:-1:-1;;;32367:48:0;32310:105;:158;;;-1:-1:-1;;;;;;;;;;23939:40:0;;;32432:36;23830:157;42076:174;42151:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42151:29:0;-1:-1:-1;;;;;42151:29:0;;;;;;;;:24;;42205:23;42151:24;42205:14;:23::i;:::-;-1:-1:-1;;;;;42196:46:0;;;;;;;;;;;42076:174;;:::o;38224:348::-;38317:4;38019:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38019:16:0;38334:73;;;;-1:-1:-1;;;38334:73:0;;18732:2:1;38334:73:0;;;18714:21:1;18771:2;18751:18;;;18744:30;18810:34;18790:18;;;18783:62;-1:-1:-1;;;18861:18:1;;;18854:42;18913:19;;38334:73:0;18530:408:1;38334:73:0;38418:13;38434:23;38449:7;38434:14;:23::i;:::-;38418:39;;38487:5;-1:-1:-1;;;;;38476:16:0;:7;-1:-1:-1;;;;;38476:16:0;;:52;;;-1:-1:-1;;;;;;35316:25:0;;;35292:4;35316:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38496:32;38476:87;;;;38556:7;-1:-1:-1;;;;;38532:31:0;:20;38544:7;38532:11;:20::i;:::-;-1:-1:-1;;;;;38532:31:0;;38476:87;38468:96;38224:348;-1:-1:-1;;;;38224:348:0:o;41333:625::-;41492:4;-1:-1:-1;;;;;41465:31:0;:23;41480:7;41465:14;:23::i;:::-;-1:-1:-1;;;;;41465:31:0;;41457:81;;;;-1:-1:-1;;;41457:81:0;;19145:2:1;41457:81:0;;;19127:21:1;19184:2;19164:18;;;19157:30;19223:34;19203:18;;;19196:62;-1:-1:-1;;;19274:18:1;;;19267:35;19319:19;;41457:81:0;18943:401:1;41457:81:0;-1:-1:-1;;;;;41557:16:0;;41549:65;;;;-1:-1:-1;;;41549:65:0;;19551:2:1;41549:65:0;;;19533:21:1;19590:2;19570:18;;;19563:30;19629:34;19609:18;;;19602:62;-1:-1:-1;;;19680:18:1;;;19673:34;19724:19;;41549:65:0;19349:400:1;41549:65:0;41627:39;41648:4;41654:2;41658:7;41627:20;:39::i;:::-;41731:29;41748:1;41752:7;41731:8;:29::i;:::-;-1:-1:-1;;;;;41773:15:0;;;;;;:9;:15;;;;;:20;;41792:1;;41773:15;:20;;41792:1;;41773:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41804:13:0;;;;;;:9;:13;;;;;:18;;41821:1;;41804:13;:18;;41821:1;;41804:18;:::i;:::-;;;;-1:-1:-1;;41833:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41833:21:0;-1:-1:-1;;;;;41833:21:0;;;;;;;;;41872:27;;41833:16;;41872:27;;;;;;;34269:341;34199:411;;:::o;12293:191::-;12386:6;;;-1:-1:-1;;;;;12403:17:0;;;-1:-1:-1;;;;;;12403:17:0;;;;;;;12436:40;;12386:6;;;12403:17;12386:6;;12436:40;;12367:16;;12436:40;12356:128;12293:191;:::o;42392:315::-;42547:8;-1:-1:-1;;;;;42538:17:0;:5;-1:-1:-1;;;;;42538:17:0;;42530:55;;;;-1:-1:-1;;;42530:55:0;;20086:2:1;42530:55:0;;;20068:21:1;20125:2;20105:18;;;20098:30;20164:27;20144:18;;;20137:55;20209:18;;42530:55:0;19884:349:1;42530:55:0;-1:-1:-1;;;;;42596:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;42596:46:0;;;;;;;;;;42658:41;;540::1;;;42658::0;;513:18:1;42658:41:0;;;;;;;42392:315;;;:::o;38914:110::-;38990:26;39000:2;39004:7;38990:26;;;;;;;;;;;;:9;:26::i;37302:315::-;37459:28;37469:4;37475:2;37479:7;37459:9;:28::i;:::-;37506:48;37529:4;37535:2;37539:7;37548:5;37506:22;:48::i;:::-;37498:111;;;;-1:-1:-1;;;37498:111:0;;;;;;;:::i;56425:108::-;56485:13;56518:7;56511:14;;;;;:::i;7309:723::-;7365:13;7586:5;7595:1;7586:10;7582:53;;-1:-1:-1;;7613:10:0;;;;;;;;;;;;-1:-1:-1;;;7613:10:0;;;;;7309:723::o;7582:53::-;7660:5;7645:12;7701:78;7708:9;;7701:78;;7734:8;;;;:::i;:::-;;-1:-1:-1;7757:10:0;;-1:-1:-1;7765:2:0;7757:10;;:::i;:::-;;;7701:78;;;7789:19;7821:6;7811:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7811:17:0;;7789:39;;7839:154;7846:10;;7839:154;;7873:11;7883:1;7873:11;;:::i;:::-;;-1:-1:-1;7942:10:0;7950:2;7942:5;:10;:::i;:::-;7929:24;;:2;:24;:::i;:::-;7916:39;;7899:6;7906;7899:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7899:56:0;;;;;;;;-1:-1:-1;7970:11:0;7979:2;7970:11;;:::i;:::-;;;7839:154;;47973:589;-1:-1:-1;;;;;48179:18:0;;48175:187;;48214:40;48246:7;49389:10;:17;;49362:24;;;;:15;:24;;;;;:44;;;49417:24;;;;;;;;;;;;49285:164;48214:40;48175:187;;;48284:2;-1:-1:-1;;;;;48276:10:0;:4;-1:-1:-1;;;;;48276:10:0;;48272:90;;48303:47;48336:4;48342:7;48303:32;:47::i;:::-;-1:-1:-1;;;;;48376:16:0;;48372:183;;48409:45;48446:7;48409:36;:45::i;48372:183::-;48482:4;-1:-1:-1;;;;;48476:10:0;:2;-1:-1:-1;;;;;48476:10:0;;48472:83;;48503:40;48531:2;48535:7;48503:27;:40::i;39251:321::-;39381:18;39387:2;39391:7;39381:5;:18::i;:::-;39432:54;39463:1;39467:2;39471:7;39480:5;39432:22;:54::i;:::-;39410:154;;;;-1:-1:-1;;;39410:154:0;;;;;;;:::i;43272:799::-;43427:4;-1:-1:-1;;;;;43448:13:0;;14019:19;:23;43444:620;;43484:72;;-1:-1:-1;;;43484:72:0;;-1:-1:-1;;;;;43484:36:0;;;;;:72;;9827:10;;43535:4;;43541:7;;43550:5;;43484:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43484:72:0;;;;;;;;-1:-1:-1;;43484:72:0;;;;;;;;;;;;:::i;:::-;;;43480:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43726:6;:13;43743:1;43726:18;43722:272;;43769:60;;-1:-1:-1;;;43769:60:0;;;;;;;:::i;43722:272::-;43944:6;43938:13;43929:6;43925:2;43921:15;43914:38;43480:529;-1:-1:-1;;;;;;43607:51:0;-1:-1:-1;;;43607:51:0;;-1:-1:-1;43600:58:0;;43444:620;-1:-1:-1;44048:4:0;43272:799;;;;;;:::o;50076:988::-;50342:22;50392:1;50367:22;50384:4;50367:16;:22::i;:::-;:26;;;;:::i;:::-;50404:18;50425:26;;;:17;:26;;;;;;50342:51;;-1:-1:-1;50558:28:0;;;50554:328;;-1:-1:-1;;;;;50625:18:0;;50603:19;50625:18;;;:12;:18;;;;;;;;:34;;;;;;;;;50676:30;;;;;;:44;;;50793:30;;:17;:30;;;;;:43;;;50554:328;-1:-1:-1;50978:26:0;;;;:17;:26;;;;;;;;50971:33;;;-1:-1:-1;;;;;51022:18:0;;;;;:12;:18;;;;;:34;;;;;;;51015:41;50076:988::o;51359:1079::-;51637:10;:17;51612:22;;51637:21;;51657:1;;51637:21;:::i;:::-;51669:18;51690:24;;;:15;:24;;;;;;52063:10;:26;;51612:46;;-1:-1:-1;51690:24:0;;51612:46;;52063:26;;;;;;:::i;:::-;;;;;;;;;52041:48;;52127:11;52102:10;52113;52102:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;52207:28;;;:15;:28;;;;;;;:41;;;52379:24;;;;;52372:31;52414:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;51430:1008;;;51359:1079;:::o;48863:221::-;48948:14;48965:20;48982:2;48965:16;:20::i;:::-;-1:-1:-1;;;;;48996:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;49041:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;48863:221:0:o;39908:439::-;-1:-1:-1;;;;;39988:16:0;;39980:61;;;;-1:-1:-1;;;39980:61:0;;22113:2:1;39980:61:0;;;22095:21:1;;;22132:18;;;22125:30;22191:34;22171:18;;;22164:62;22243:18;;39980:61:0;21911:356:1;39980:61:0;37995:4;38019:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38019:16:0;:30;40052:58;;;;-1:-1:-1;;;40052:58:0;;22474:2:1;40052:58:0;;;22456:21:1;22513:2;22493:18;;;22486:30;22552;22532:18;;;22525:58;22600:18;;40052:58:0;22272:352:1;40052:58:0;40123:45;40152:1;40156:2;40160:7;40123:20;:45::i;:::-;-1:-1:-1;;;;;40181:13:0;;;;;;:9;:13;;;;;:18;;40198:1;;40181:13;:18;;40198:1;;40181:18;:::i;:::-;;;;-1:-1:-1;;40210:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40210:21:0;-1:-1:-1;;;;;40210:21:0;;;;;;;;40249:33;;40210:16;;;40249:33;;40210:16;;40249:33;56096:32:::1;56010:126:::0;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:160::-;2238:20;;2294:13;;2287:21;2277:32;;2267:60;;2323:1;2320;2313:12;2338:180;2394:6;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2486:26;2502:9;2486:26;:::i;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3220:186::-;3279:6;3332:2;3320:9;3311:7;3307:23;3303:32;3300:52;;;3348:1;3345;3338:12;3300:52;3371:29;3390:9;3371:29;:::i;3411:127::-;3472:10;3467:3;3463:20;3460:1;3453:31;3503:4;3500:1;3493:15;3527:4;3524:1;3517:15;3543:632;3608:5;3638:18;3679:2;3671:6;3668:14;3665:40;;;3685:18;;:::i;:::-;3760:2;3754:9;3728:2;3814:15;;-1:-1:-1;;3810:24:1;;;3836:2;3806:33;3802:42;3790:55;;;3860:18;;;3880:22;;;3857:46;3854:72;;;3906:18;;:::i;:::-;3946:10;3942:2;3935:22;3975:6;3966:15;;4005:6;3997;3990:22;4045:3;4036:6;4031:3;4027:16;4024:25;4021:45;;;4062:1;4059;4052:12;4021:45;4112:6;4107:3;4100:4;4092:6;4088:17;4075:44;4167:1;4160:4;4151:6;4143;4139:19;4135:30;4128:41;;;;3543:632;;;;;:::o;4180:451::-;4249:6;4302:2;4290:9;4281:7;4277:23;4273:32;4270:52;;;4318:1;4315;4308:12;4270:52;4358:9;4345:23;4391:18;4383:6;4380:30;4377:50;;;4423:1;4420;4413:12;4377:50;4446:22;;4499:4;4491:13;;4487:27;-1:-1:-1;4477:55:1;;4528:1;4525;4518:12;4477:55;4551:74;4617:7;4612:2;4599:16;4594:2;4590;4586:11;4551:74;:::i;4636:254::-;4701:6;4709;4762:2;4750:9;4741:7;4737:23;4733:32;4730:52;;;4778:1;4775;4768:12;4730:52;4801:29;4820:9;4801:29;:::i;:::-;4791:39;;4849:35;4880:2;4869:9;4865:18;4849:35;:::i;:::-;4839:45;;4636:254;;;;;:::o;4895:667::-;4990:6;4998;5006;5014;5067:3;5055:9;5046:7;5042:23;5038:33;5035:53;;;5084:1;5081;5074:12;5035:53;5107:29;5126:9;5107:29;:::i;:::-;5097:39;;5155:38;5189:2;5178:9;5174:18;5155:38;:::i;:::-;5145:48;;5240:2;5229:9;5225:18;5212:32;5202:42;;5295:2;5284:9;5280:18;5267:32;5322:18;5314:6;5311:30;5308:50;;;5354:1;5351;5344:12;5308:50;5377:22;;5430:4;5422:13;;5418:27;-1:-1:-1;5408:55:1;;5459:1;5456;5449:12;5408:55;5482:74;5548:7;5543:2;5530:16;5525:2;5521;5517:11;5482:74;:::i;:::-;5472:84;;;4895:667;;;;;;;:::o;5567:615::-;5653:6;5661;5714:2;5702:9;5693:7;5689:23;5685:32;5682:52;;;5730:1;5727;5720:12;5682:52;5770:9;5757:23;5799:18;5840:2;5832:6;5829:14;5826:34;;;5856:1;5853;5846:12;5826:34;5894:6;5883:9;5879:22;5869:32;;5939:7;5932:4;5928:2;5924:13;5920:27;5910:55;;5961:1;5958;5951:12;5910:55;6001:2;5988:16;6027:2;6019:6;6016:14;6013:34;;;6043:1;6040;6033:12;6013:34;6096:7;6091:2;6081:6;6078:1;6074:14;6070:2;6066:23;6062:32;6059:45;6056:65;;;6117:1;6114;6107:12;6056:65;6148:2;6140:11;;;;;6170:6;;-1:-1:-1;5567:615:1;;-1:-1:-1;;;;5567:615:1:o;6187:127::-;6248:10;6243:3;6239:20;6236:1;6229:31;6279:4;6276:1;6269:15;6303:4;6300:1;6293:15;6319:338;6461:2;6446:18;;6494:1;6483:13;;6473:144;;6539:10;6534:3;6530:20;6527:1;6520:31;6574:4;6571:1;6564:15;6602:4;6599:1;6592:15;6473:144;6626:25;;;6319:338;:::o;6662:260::-;6730:6;6738;6791:2;6779:9;6770:7;6766:23;6762:32;6759:52;;;6807:1;6804;6797:12;6759:52;6830:29;6849:9;6830:29;:::i;:::-;6820:39;;6878:38;6912:2;6901:9;6897:18;6878:38;:::i;7112:356::-;7314:2;7296:21;;;7333:18;;;7326:30;7392:34;7387:2;7372:18;;7365:62;7459:2;7444:18;;7112:356::o;7473:380::-;7552:1;7548:12;;;;7595;;;7616:61;;7670:4;7662:6;7658:17;7648:27;;7616:61;7723:2;7715:6;7712:14;7692:18;7689:38;7686:161;;7769:10;7764:3;7760:20;7757:1;7750:31;7804:4;7801:1;7794:15;7832:4;7829:1;7822:15;7686:161;;7473:380;;;:::o;9098:413::-;9300:2;9282:21;;;9339:2;9319:18;;;9312:30;9378:34;9373:2;9358:18;;9351:62;-1:-1:-1;;;9444:2:1;9429:18;;9422:47;9501:3;9486:19;;9098:413::o;10906:127::-;10967:10;10962:3;10958:20;10955:1;10948:31;10998:4;10995:1;10988:15;11022:4;11019:1;11012:15;11164:545;11266:2;11261:3;11258:11;11255:448;;;11302:1;11327:5;11323:2;11316:17;11372:4;11368:2;11358:19;11442:2;11430:10;11426:19;11423:1;11419:27;11413:4;11409:38;11478:4;11466:10;11463:20;11460:47;;;-1:-1:-1;11501:4:1;11460:47;11556:2;11551:3;11547:12;11544:1;11540:20;11534:4;11530:31;11520:41;;11611:82;11629:2;11622:5;11619:13;11611:82;;;11674:17;;;11655:1;11644:13;11611:82;;;11615:3;;;11164:545;;;:::o;11885:1352::-;12011:3;12005:10;12038:18;12030:6;12027:30;12024:56;;;12060:18;;:::i;:::-;12089:97;12179:6;12139:38;12171:4;12165:11;12139:38;:::i;:::-;12133:4;12089:97;:::i;:::-;12241:4;;12305:2;12294:14;;12322:1;12317:663;;;;13024:1;13041:6;13038:89;;;-1:-1:-1;13093:19:1;;;13087:26;13038:89;-1:-1:-1;;11842:1:1;11838:11;;;11834:24;11830:29;11820:40;11866:1;11862:11;;;11817:57;13140:81;;12287:944;;12317:663;11111:1;11104:14;;;11148:4;11135:18;;-1:-1:-1;;12353:20:1;;;12471:236;12485:7;12482:1;12479:14;12471:236;;;12574:19;;;12568:26;12553:42;;12666:27;;;;12634:1;12622:14;;;;12501:19;;12471:236;;;12475:3;12735:6;12726:7;12723:19;12720:201;;;12796:19;;;12790:26;-1:-1:-1;;12879:1:1;12875:14;;;12891:3;12871:24;12867:37;12863:42;12848:58;12833:74;;12720:201;-1:-1:-1;;;;;12967:1:1;12951:14;;;12947:22;12934:36;;-1:-1:-1;11885:1352:1:o;14784:127::-;14845:10;14840:3;14836:20;14833:1;14826:31;14876:4;14873:1;14866:15;14900:4;14897:1;14890:15;14916:168;14956:7;15022:1;15018;15014:6;15010:14;15007:1;15004:21;14999:1;14992:9;14985:17;14981:45;14978:71;;;15029:18;;:::i;:::-;-1:-1:-1;15069:9:1;;14916:168::o;15838:128::-;15878:3;15909:1;15905:6;15902:1;15899:13;15896:39;;;15915:18;;:::i;:::-;-1:-1:-1;15951:9:1;;15838:128::o;16396:135::-;16435:3;16456:17;;;16453:43;;16476:18;;:::i;:::-;-1:-1:-1;16523:1:1;16512:13;;16396:135::o;16888:1230::-;17112:3;17150:6;17144:13;17176:4;17189:51;17233:6;17228:3;17223:2;17215:6;17211:15;17189:51;:::i;:::-;17303:13;;17262:16;;;;17325:55;17303:13;17262:16;17347:15;;;17325:55;:::i;:::-;17469:13;;17402:20;;;17442:1;;17507:36;17469:13;17507:36;:::i;:::-;17562:1;17579:18;;;17606:141;;;;17761:1;17756:337;;;;17572:521;;17606:141;-1:-1:-1;;17641:24:1;;17627:39;;17718:16;;17711:24;17697:39;;17686:51;;;-1:-1:-1;17606:141:1;;17756:337;17787:6;17784:1;17777:17;17835:2;17832:1;17822:16;17860:1;17874:169;17888:8;17885:1;17882:15;17874:169;;;17970:14;;17955:13;;;17948:37;18013:16;;;;17905:10;;17874:169;;;17878:3;;18074:8;18067:5;18063:20;18056:27;;17572:521;-1:-1:-1;18109:3:1;;16888:1230;-1:-1:-1;;;;;;;;;;16888:1230:1:o;19754:125::-;19794:4;19822:1;19819;19816:8;19813:34;;;19827:18;;:::i;:::-;-1:-1:-1;19864:9:1;;19754:125::o;20238:414::-;20440:2;20422:21;;;20479:2;20459:18;;;20452:30;20518:34;20513:2;20498:18;;20491:62;-1:-1:-1;;;20584:2:1;20569:18;;20562:48;20642:3;20627:19;;20238:414::o;20657:127::-;20718:10;20713:3;20709:20;20706:1;20699:31;20749:4;20746:1;20739:15;20773:4;20770:1;20763:15;20789:120;20829:1;20855;20845:35;;20860:18;;:::i;:::-;-1:-1:-1;20894:9:1;;20789:120::o;20914:112::-;20946:1;20972;20962:35;;20977:18;;:::i;:::-;-1:-1:-1;21011:9:1;;20914:112::o;21031:489::-;-1:-1:-1;;;;;21300:15:1;;;21282:34;;21352:15;;21347:2;21332:18;;21325:43;21399:2;21384:18;;21377:34;;;21447:3;21442:2;21427:18;;21420:31;;;21225:4;;21468:46;;21494:19;;21486:6;21468:46;:::i;:::-;21460:54;21031:489;-1:-1:-1;;;;;;21031:489:1:o;21525:249::-;21594:6;21647:2;21635:9;21626:7;21622:23;21618:32;21615:52;;;21663:1;21660;21653:12;21615:52;21695:9;21689:16;21714:30;21738:5;21714:30;:::i;21779:127::-;21840:10;21835:3;21831:20;21828:1;21821:31;21871:4;21868:1;21861:15;21895:4;21892:1;21885:15

Swarm Source

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