ETH Price: $2,699.59 (+7.28%)
 

Overview

Max Total Supply

500 KNC

Holders

67

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 KNC
0xbd13f6e14204bad01b89d95be0aab4f309c21d95
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:
KNC

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-07
*/

// 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/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// 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 (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: KNC/NFT.sol



pragma solidity ^0.8.7;








contract KNC is ERC721A, Ownable, ReentrancyGuard {

    using Strings for uint256;

    // using Address for address;

    uint256 public price = 0.08 ether;
    uint256 public _maxSupply = 10000;
    uint256 public maxMintAmountPerTx = 10;
    uint256 maxMintAmountPerWallet = 10;

    address payable Jabs = payable(0xceC4CEF7646FC987769aa5765DCdF6c89EAba3f6);

    string public baseURL;
    string ExtensionURL = ".json";
    string HiddenURL;

    IERC20 Koa = IERC20(0x6769D86f9C430f5AC6d9c861a0173613F1C5544C);

    //Mint Phases

    mapping(uint256 => uint256) previousPhases;

    struct Phase {
        uint256 cap; //NFTs per claim
        uint256 currentPhase;
    }

    Phase public phase = Phase({currentPhase: 1, cap: 500});

    //Whitelist
    bytes32 root; //Set root
    bool public wlOpen = true; //Set whitelist
    mapping(address=>bool) claimed; //Whitelist claim


    bool public paused = true;
    bool public revealed;

    constructor(string memory _initNotRevealedUri, bytes32 _root, string memory _uri) ERC721A("Koala NFT Club", "KNC") {
        HiddenURL = _initNotRevealedUri;
        root = _root;
        baseURL = _uri;
    }

    // ================== Mint Function =======================

    modifier mintComp(uint256 _mintAmount, bool isWl){
        isWl ? require(wlOpen, "Whitelist mint is not open"): require(!paused, "The contract is paused!");
        uint256 _supply = totalSupply();
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
        require(_supply + _mintAmount <= _maxSupply, "Max supply exceeded!");
        require(msg.value >= _mintAmount * price);
        require(_supply + _mintAmount <= phase.cap, "Phase supply exceeded!");
        require(balanceOf(msg.sender) < maxMintAmountPerWallet, "You have too many NFTs.");
        _;
    }

    modifier whitelister(bytes32[] memory proof) {
        bytes32 account = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(proof, root, account), "You're not on the VIP list.");
        
        _;
    }

    function whitelistMint(uint256 _mintAmount, bytes32[] memory proof) public payable  nonReentrant whitelister(proof)  mintComp(_mintAmount, true) {
        claimed[_msgSender()] = true;
        _safeMint(msg.sender, _mintAmount);
    }

    function WLValid(bytes32[] memory proof, address _account) external view returns(bool) {
        bytes32 account = keccak256(abi.encodePacked(_account));
        return MerkleProof.verify(proof, root, account);
    }

    function mint(uint256 _mintAmount) public payable mintComp(_mintAmount, false){
        require(_msgSender() == tx.origin);    
        _safeMint(msg.sender, _mintAmount);    
    }

    // =================== Orange Functions (Owner Only) ===============

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

    function safeMint(address to, uint256 quantity) public onlyOwner {
        require(totalSupply() + quantity <= _maxSupply, "Max supply exceeded!");
        _safeMint(to, quantity);
    }
    
    function setHiddenURL(string memory uri) public onlyOwner {
        HiddenURL = uri;
    }
    
    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }
    
    function setbaseURL(string memory uri) public onlyOwner{
        baseURL = uri;
    }

    function setExtensionURL(string memory uri) public onlyOwner{
        ExtensionURL = uri;
    }

    function setCostPrice(uint256 _cost) public onlyOwner{
        price = _cost;
    } 

    function setSupply(uint256 supply) public onlyOwner{
        _maxSupply = supply;
    }

    
    function setRoot(bytes32 _root) external onlyOwner {
        root = _root;
    }
    
    function setWLStatus(bool _open) external onlyOwner {
        wlOpen = _open;
    }
    
    function Phases(uint256 _phases, uint256 _cap) external onlyOwner {
        require(_phases > phase.currentPhase, "This phase has already passed.");
        require(totalSupply() + _cap <= _maxSupply, "Max supply exceeded!");

        previousPhases[phase.currentPhase] = phase.cap;

        phase.currentPhase = _phases;
        phase.cap += _cap;
    }

    // ================================ Withdraw Function ====================

    function withdraw() public onlyOwner nonReentrant{
        (bool os, ) = payable(Jabs).call{value: address(this).balance}("");
        require(os);
    }

    // =================== Blue Functions (View Only) ====================

    function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory){

        require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token");
        
        if (revealed == false) {
        return HiddenURL;
        }
        
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ExtensionURL))
            : '';
    }

    function _startTokenId() internal view virtual override(ERC721A) returns (uint256){
        return 1;
    }

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

    function maxSupply() public view returns (uint256){
        return _maxSupply;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"bytes32","name":"_root","type":"bytes32"},{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_phases","type":"uint256"},{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"Phases","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"address","name":"_account","type":"address"}],"name":"WLValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase","outputs":[{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"currentPhase","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setExtensionURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setHiddenURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_open","type":"bool"}],"name":"setWLStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setbaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

608060405267011c37937e080000600a55612710600b55600a600c55600a600d5573cec4cef7646fc987769aa5765dcdf6c89eaba3f6600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060109080519060200190620000c2929190620003a8565b50736769d86f9c430f5ac6d9c861a0173613f1c5544c601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180604001604052806101f4815260200160018152506014600082015181600001556020820151816001015550506001601760006101000a81548160ff0219169083151502179055506001601960006101000a81548160ff0219169083151502179055503480156200018b57600080fd5b50604051620044bf380380620044bf8339818101604052810190620001b19190620004ed565b6040518060400160405280600e81526020017f4b6f616c61204e465420436c75620000000000000000000000000000000000008152506040518060400160405280600381526020017f4b4e430000000000000000000000000000000000000000000000000000000000815250816002908051906020019062000235929190620003a8565b5080600390805190602001906200024e929190620003a8565b506200025f620002d160201b60201c565b6000819055505050620002876200027b620002da60201b60201c565b620002e260201b60201c565b60016009819055508260119080519060200190620002a7929190620003a8565b508160168190555080600f9080519060200190620002c7929190620003a8565b505050506200072f565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003b69062000626565b90600052602060002090601f016020900481019282620003da576000855562000426565b82601f10620003f557805160ff191683800117855562000426565b8280016001018555821562000426579182015b828111156200042557825182559160200191906001019062000408565b5b50905062000435919062000439565b5090565b5b80821115620004545760008160009055506001016200043a565b5090565b60006200046f6200046984620005b0565b62000587565b9050828152602081018484840111156200048e576200048d620006f5565b5b6200049b848285620005f0565b509392505050565b600081519050620004b48162000715565b92915050565b600082601f830112620004d257620004d1620006f0565b5b8151620004e484826020860162000458565b91505092915050565b600080600060608486031215620005095762000508620006ff565b5b600084015167ffffffffffffffff8111156200052a5762000529620006fa565b5b6200053886828701620004ba565b93505060206200054b86828701620004a3565b925050604084015167ffffffffffffffff8111156200056f576200056e620006fa565b5b6200057d86828701620004ba565b9150509250925092565b600062000593620005a6565b9050620005a182826200065c565b919050565b6000604051905090565b600067ffffffffffffffff821115620005ce57620005cd620006c1565b5b620005d98262000704565b9050602081019050919050565b6000819050919050565b60005b8381101562000610578082015181840152602081019050620005f3565b8381111562000620576000848401525b50505050565b600060028204905060018216806200063f57607f821691505b6020821081141562000656576200065562000692565b5b50919050565b620006678262000704565b810181811067ffffffffffffffff82111715620006895762000688620006c1565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200072081620005e6565b81146200072c57600080fd5b50565b613d80806200073f6000396000f3fe6080604052600436106102465760003560e01c8063715018a611610139578063b1c9fe6e116100b6578063dab5f3401161007a578063dab5f34014610807578063e0a8085314610830578063e48af2cc14610859578063e532bb0014610882578063e985e9c5146108ab578063f2fde38b146108e857610246565b8063b1c9fe6e1461073b578063b88d4fde14610767578063c87b56dd14610783578063d2cab056146107c0578063d5abeb01146107dc57610246565b806395d89b41116100fd57806395d89b4114610677578063a035b1fe146106a2578063a0712d68146106cd578063a1448194146106e9578063a22cb4651461071257610246565b8063715018a6146105a45780637bad0bad146105bb57806387572836146105f85780638da5cb5b1461062157806394354fd01461064c57610246565b80633ccfd60b116101c75780635c975abb1161018b5780635c975abb146104ad578063626ab3b8146104d85780636352211e14610501578063676f26021461053e57806370a082311461056757610246565b80633ccfd60b146103fb57806340c84b0e1461041257806342842e0e1461043d5780634d534a7d14610459578063518302271461048257610246565b806318160ddd1161020e57806318160ddd146103355780631a904acb1461036057806322f4596f1461038b57806323b872dd146103b65780633b4c4b25146103d257610246565b806301ffc9a71461024b57806302329a291461028857806306fdde03146102b1578063081812fc146102dc578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190612e2c565b610911565b60405161027f919061338d565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190612dd2565b6109a3565b005b3480156102bd57600080fd5b506102c66109c8565b6040516102d391906133a8565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190612ecf565b610a5a565b6040516103109190613326565b60405180910390f35b610333600480360381019061032e9190612d36565b610ad9565b005b34801561034157600080fd5b5061034a610c1d565b604051610357919061354a565b60405180910390f35b34801561036c57600080fd5b50610375610c34565b604051610382919061338d565b60405180910390f35b34801561039757600080fd5b506103a0610c47565b6040516103ad919061354a565b60405180910390f35b6103d060048036038101906103cb9190612c20565b610c4d565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612ecf565b610f72565b005b34801561040757600080fd5b50610410610f84565b005b34801561041e57600080fd5b5061042761107d565b60405161043491906133a8565b60405180910390f35b61045760048036038101906104529190612c20565b61110b565b005b34801561046557600080fd5b50610480600480360381019061047b9190612e86565b61112b565b005b34801561048e57600080fd5b5061049761114d565b6040516104a4919061338d565b60405180910390f35b3480156104b957600080fd5b506104c2611160565b6040516104cf919061338d565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa9190612e86565b611173565b005b34801561050d57600080fd5b5061052860048036038101906105239190612ecf565b611195565b6040516105359190613326565b60405180910390f35b34801561054a57600080fd5b5061056560048036038101906105609190612ecf565b6111a7565b005b34801561057357600080fd5b5061058e60048036038101906105899190612bb3565b6111b9565b60405161059b919061354a565b60405180910390f35b3480156105b057600080fd5b506105b9611272565b005b3480156105c757600080fd5b506105e260048036038101906105dd9190612d76565b611286565b6040516105ef919061338d565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190612e86565b6112c8565b005b34801561062d57600080fd5b506106366112ea565b6040516106439190613326565b60405180910390f35b34801561065857600080fd5b50610661611314565b60405161066e919061354a565b60405180910390f35b34801561068357600080fd5b5061068c61131a565b60405161069991906133a8565b60405180910390f35b3480156106ae57600080fd5b506106b76113ac565b6040516106c4919061354a565b60405180910390f35b6106e760048036038101906106e29190612ecf565b6113b2565b005b3480156106f557600080fd5b50610710600480360381019061070b9190612d36565b611614565b005b34801561071e57600080fd5b5061073960048036038101906107349190612cf6565b611681565b005b34801561074757600080fd5b5061075061178c565b60405161075e929190613565565b60405180910390f35b610781600480360381019061077c9190612c73565b61179e565b005b34801561078f57600080fd5b506107aa60048036038101906107a59190612ecf565b611811565b6040516107b791906133a8565b60405180910390f35b6107da60048036038101906107d59190612efc565b61196a565b005b3480156107e857600080fd5b506107f1611cbd565b6040516107fe919061354a565b60405180910390f35b34801561081357600080fd5b5061082e60048036038101906108299190612dff565b611cc7565b005b34801561083c57600080fd5b5061085760048036038101906108529190612dd2565b611cd9565b005b34801561086557600080fd5b50610880600480360381019061087b9190612f58565b611cfe565b005b34801561088e57600080fd5b506108a960048036038101906108a49190612dd2565b611df0565b005b3480156108b757600080fd5b506108d260048036038101906108cd9190612be0565b611e15565b6040516108df919061338d565b60405180910390f35b3480156108f457600080fd5b5061090f600480360381019061090a9190612bb3565b611ea9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6109ab611f2d565b80601960006101000a81548160ff02191690831515021790555050565b6060600280546109d790613879565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0390613879565b8015610a505780601f10610a2557610100808354040283529160200191610a50565b820191906000526020600020905b815481529060010190602001808311610a3357829003601f168201915b5050505050905090565b6000610a6582611fab565b610a9b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae482611195565b90508073ffffffffffffffffffffffffffffffffffffffff16610b0561200a565b73ffffffffffffffffffffffffffffffffffffffff1614610b6857610b3181610b2c61200a565b611e15565b610b67576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c27612012565b6001546000540303905090565b601760009054906101000a900460ff1681565b600b5481565b6000610c588261201b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cbf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ccb846120e9565b91509150610ce18187610cdc61200a565b612110565b610d2d57610cf686610cf161200a565b611e15565b610d2c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d94576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610da18686866001612154565b8015610dac57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e7a85610e5688888761215a565b7c020000000000000000000000000000000000000000000000000000000017612182565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f02576000600185019050600060046000838152602001908152602001600020541415610f00576000548114610eff578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f6a86868660016121ad565b505050505050565b610f7a611f2d565b80600b8190555050565b610f8c611f2d565b60026009541415610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc99061352a565b60405180910390fd5b60026009819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161102290613311565b60006040518083038185875af1925050503d806000811461105f576040519150601f19603f3d011682016040523d82523d6000602084013e611064565b606091505b505090508061107257600080fd5b506001600981905550565b600f805461108a90613879565b80601f01602080910402602001604051908101604052809291908181526020018280546110b690613879565b80156111035780601f106110d857610100808354040283529160200191611103565b820191906000526020600020905b8154815290600101906020018083116110e657829003601f168201915b505050505081565b6111268383836040518060200160405280600081525061179e565b505050565b611133611f2d565b8060109080519060200190611149929190612914565b5050565b601960019054906101000a900460ff1681565b601960009054906101000a900460ff1681565b61117b611f2d565b80600f9080519060200190611191929190612914565b5050565b60006111a08261201b565b9050919050565b6111af611f2d565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611221576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61127a611f2d565b61128460006121b3565b565b6000808260405160200161129a91906132c5565b6040516020818303038152906040528051906020012090506112bf8460165483612279565b91505092915050565b6112d0611f2d565b80601190805190602001906112e6929190612914565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b60606003805461132990613879565b80601f016020809104026020016040519081016040528092919081815260200182805461135590613879565b80156113a25780601f10611377576101008083540402835291602001916113a2565b820191906000526020600020905b81548152906001019060200180831161138557829003601f168201915b5050505050905090565b600a5481565b8060008061140f57601960009054906101000a900460ff161561140a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611401906134aa565b60405180910390fd5b61145f565b601760009054906101000a900460ff1661145e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611455906133ea565b60405180910390fd5b5b6000611469610c1d565b905060008311801561147d5750600c548311155b6114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b39061344a565b60405180910390fd5b600b5483826114cb91906136a4565b111561150c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611503906134ea565b60405180910390fd5b600a548361151a919061372b565b34101561152657600080fd5b601460000154838261153891906136a4565b1115611579576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115709061346a565b60405180910390fd5b600d54611585336111b9565b106115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc9061342a565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff166115e4612290565b73ffffffffffffffffffffffffffffffffffffffff161461160457600080fd5b61160e3385612298565b50505050565b61161c611f2d565b600b5481611628610c1d565b61163291906136a4565b1115611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a906134ea565b60405180910390fd5b61167d8282612298565b5050565b806007600061168e61200a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661173b61200a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611780919061338d565b60405180910390a35050565b60148060000154908060010154905082565b6117a9848484610c4d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461180b576117d4848484846122b6565b61180a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061181c82611fab565b61185b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611852906134ca565b60405180910390fd5b60001515601960019054906101000a900460ff1615151415611909576011805461188490613879565b80601f01602080910402602001604051908101604052809291908181526020018280546118b090613879565b80156118fd5780601f106118d2576101008083540402835291602001916118fd565b820191906000526020600020905b8154815290600101906020018083116118e057829003601f168201915b50505050509050611965565b6000611913612416565b905060008151116119335760405180602001604052806000815250611961565b8061193d846124a8565b6010604051602001611951939291906132e0565b6040516020818303038152906040525b9150505b919050565b600260095414156119b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a79061352a565b60405180910390fd5b6002600981905550806000336040516020016119cc91906132c5565b6040516020818303038152906040528051906020012090506119f18260165483612279565b611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a27906133ca565b60405180910390fd5b83600180611a8d57601960009054906101000a900460ff1615611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f906134aa565b60405180910390fd5b611add565b601760009054906101000a900460ff16611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad3906133ea565b60405180910390fd5b5b6000611ae7610c1d565b9050600083118015611afb5750600c548311155b611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b319061344a565b60405180910390fd5b600b548382611b4991906136a4565b1115611b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b81906134ea565b60405180910390fd5b600a5483611b98919061372b565b341015611ba457600080fd5b6014600001548382611bb691906136a4565b1115611bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bee9061346a565b60405180910390fd5b600d54611c03336111b9565b10611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a9061342a565b60405180910390fd5b600160186000611c51612290565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611cac3388612298565b505050505060016009819055505050565b6000600b54905090565b611ccf611f2d565b8060168190555050565b611ce1611f2d565b80601960016101000a81548160ff02191690831515021790555050565b611d06611f2d565b6014600101548211611d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d449061350a565b60405180910390fd5b600b5481611d59610c1d565b611d6391906136a4565b1115611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b906134ea565b60405180910390fd5b60146000015460136000601460010154815260200190815260200160002081905550816014600101819055508060146000016000828254611de591906136a4565b925050819055505050565b611df8611f2d565b80601760006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eb1611f2d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f189061340a565b60405180910390fd5b611f2a816121b3565b50565b611f35612290565b73ffffffffffffffffffffffffffffffffffffffff16611f536112ea565b73ffffffffffffffffffffffffffffffffffffffff1614611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa09061348a565b60405180910390fd5b565b600081611fb6612012565b11158015611fc5575060005482105b8015612003575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061202a612012565b116120b2576000548110156120b15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156120af575b60008114156120a557600460008360019003935083815260200190815260200160002054905061207a565b80925050506120e4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612171868684612609565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826122868584612612565b1490509392505050565b600033905090565b6122b2828260405180602001604052806000815250612668565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122dc61200a565b8786866040518563ffffffff1660e01b81526004016122fe9493929190613341565b602060405180830381600087803b15801561231857600080fd5b505af192505050801561234957506040513d601f19601f820116820180604052508101906123469190612e59565b60015b6123c3573d8060008114612379576040519150601f19603f3d011682016040523d82523d6000602084013e61237e565b606091505b506000815114156123bb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f805461242590613879565b80601f016020809104026020016040519081016040528092919081815260200182805461245190613879565b801561249e5780601f106124735761010080835404028352916020019161249e565b820191906000526020600020905b81548152906001019060200180831161248157829003601f168201915b5050505050905090565b606060008214156124f0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612604565b600082905060005b6000821461252257808061250b906138dc565b915050600a8261251b91906136fa565b91506124f8565b60008167ffffffffffffffff81111561253e5761253d613a36565b5b6040519080825280601f01601f1916602001820160405280156125705781602001600182028036833780820191505090505b5090505b600085146125fd576001826125899190613785565b9150600a856125989190613949565b60306125a491906136a4565b60f81b8183815181106125ba576125b9613a07565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125f691906136fa565b9450612574565b8093505050505b919050565b60009392505050565b60008082905060005b845181101561265d576126488286838151811061263b5761263a613a07565b5b6020026020010151612705565b91508080612655906138dc565b91505061261b565b508091505092915050565b6126728383612730565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461270057600080549050600083820390505b6126b260008683806001019450866122b6565b6126e8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061269f5781600054146126fd57600080fd5b50505b505050565b600081831061271d5761271882846128ed565b612728565b61272783836128ed565b5b905092915050565b6000805490506000821415612771576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61277e6000848385612154565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127f5836127e6600086600061215a565b6127ef85612904565b17612182565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461289657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061285b565b5060008214156128d2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128e860008483856121ad565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b82805461292090613879565b90600052602060002090601f0160209004810192826129425760008555612989565b82601f1061295b57805160ff1916838001178555612989565b82800160010185558215612989579182015b8281111561298857825182559160200191906001019061296d565b5b509050612996919061299a565b5090565b5b808211156129b357600081600090555060010161299b565b5090565b60006129ca6129c5846135b3565b61358e565b905080838252602082019050828560208602820111156129ed576129ec613a6a565b5b60005b85811015612a1d5781612a038882612b03565b8452602084019350602083019250506001810190506129f0565b5050509392505050565b6000612a3a612a35846135df565b61358e565b905082815260208101848484011115612a5657612a55613a6f565b5b612a61848285613837565b509392505050565b6000612a7c612a7784613610565b61358e565b905082815260208101848484011115612a9857612a97613a6f565b5b612aa3848285613837565b509392505050565b600081359050612aba81613cd7565b92915050565b600082601f830112612ad557612ad4613a65565b5b8135612ae58482602086016129b7565b91505092915050565b600081359050612afd81613cee565b92915050565b600081359050612b1281613d05565b92915050565b600081359050612b2781613d1c565b92915050565b600081519050612b3c81613d1c565b92915050565b600082601f830112612b5757612b56613a65565b5b8135612b67848260208601612a27565b91505092915050565b600082601f830112612b8557612b84613a65565b5b8135612b95848260208601612a69565b91505092915050565b600081359050612bad81613d33565b92915050565b600060208284031215612bc957612bc8613a79565b5b6000612bd784828501612aab565b91505092915050565b60008060408385031215612bf757612bf6613a79565b5b6000612c0585828601612aab565b9250506020612c1685828601612aab565b9150509250929050565b600080600060608486031215612c3957612c38613a79565b5b6000612c4786828701612aab565b9350506020612c5886828701612aab565b9250506040612c6986828701612b9e565b9150509250925092565b60008060008060808587031215612c8d57612c8c613a79565b5b6000612c9b87828801612aab565b9450506020612cac87828801612aab565b9350506040612cbd87828801612b9e565b925050606085013567ffffffffffffffff811115612cde57612cdd613a74565b5b612cea87828801612b42565b91505092959194509250565b60008060408385031215612d0d57612d0c613a79565b5b6000612d1b85828601612aab565b9250506020612d2c85828601612aee565b9150509250929050565b60008060408385031215612d4d57612d4c613a79565b5b6000612d5b85828601612aab565b9250506020612d6c85828601612b9e565b9150509250929050565b60008060408385031215612d8d57612d8c613a79565b5b600083013567ffffffffffffffff811115612dab57612daa613a74565b5b612db785828601612ac0565b9250506020612dc885828601612aab565b9150509250929050565b600060208284031215612de857612de7613a79565b5b6000612df684828501612aee565b91505092915050565b600060208284031215612e1557612e14613a79565b5b6000612e2384828501612b03565b91505092915050565b600060208284031215612e4257612e41613a79565b5b6000612e5084828501612b18565b91505092915050565b600060208284031215612e6f57612e6e613a79565b5b6000612e7d84828501612b2d565b91505092915050565b600060208284031215612e9c57612e9b613a79565b5b600082013567ffffffffffffffff811115612eba57612eb9613a74565b5b612ec684828501612b70565b91505092915050565b600060208284031215612ee557612ee4613a79565b5b6000612ef384828501612b9e565b91505092915050565b60008060408385031215612f1357612f12613a79565b5b6000612f2185828601612b9e565b925050602083013567ffffffffffffffff811115612f4257612f41613a74565b5b612f4e85828601612ac0565b9150509250929050565b60008060408385031215612f6f57612f6e613a79565b5b6000612f7d85828601612b9e565b9250506020612f8e85828601612b9e565b9150509250929050565b612fa1816137b9565b82525050565b612fb8612fb3826137b9565b613925565b82525050565b612fc7816137cb565b82525050565b6000612fd882613656565b612fe2818561366c565b9350612ff2818560208601613846565b612ffb81613a7e565b840191505092915050565b600061301182613661565b61301b8185613688565b935061302b818560208601613846565b61303481613a7e565b840191505092915050565b600061304a82613661565b6130548185613699565b9350613064818560208601613846565b80840191505092915050565b6000815461307d81613879565b6130878186613699565b945060018216600081146130a257600181146130b3576130e6565b60ff198316865281860193506130e6565b6130bc85613641565b60005b838110156130de578154818901526001820191506020810190506130bf565b838801955050505b50505092915050565b60006130fc601b83613688565b915061310782613a9c565b602082019050919050565b600061311f601a83613688565b915061312a82613ac5565b602082019050919050565b6000613142602683613688565b915061314d82613aee565b604082019050919050565b6000613165601783613688565b915061317082613b3d565b602082019050919050565b6000613188601483613688565b915061319382613b66565b602082019050919050565b60006131ab601683613688565b91506131b682613b8f565b602082019050919050565b60006131ce602083613688565b91506131d982613bb8565b602082019050919050565b60006131f1601783613688565b91506131fc82613be1565b602082019050919050565b6000613214602f83613688565b915061321f82613c0a565b604082019050919050565b600061323760008361367d565b915061324282613c59565b600082019050919050565b600061325a601483613688565b915061326582613c5c565b602082019050919050565b600061327d601e83613688565b915061328882613c85565b602082019050919050565b60006132a0601f83613688565b91506132ab82613cae565b602082019050919050565b6132bf8161382d565b82525050565b60006132d18284612fa7565b60148201915081905092915050565b60006132ec828661303f565b91506132f8828561303f565b91506133048284613070565b9150819050949350505050565b600061331c8261322a565b9150819050919050565b600060208201905061333b6000830184612f98565b92915050565b60006080820190506133566000830187612f98565b6133636020830186612f98565b61337060408301856132b6565b81810360608301526133828184612fcd565b905095945050505050565b60006020820190506133a26000830184612fbe565b92915050565b600060208201905081810360008301526133c28184613006565b905092915050565b600060208201905081810360008301526133e3816130ef565b9050919050565b6000602082019050818103600083015261340381613112565b9050919050565b6000602082019050818103600083015261342381613135565b9050919050565b6000602082019050818103600083015261344381613158565b9050919050565b600060208201905081810360008301526134638161317b565b9050919050565b600060208201905081810360008301526134838161319e565b9050919050565b600060208201905081810360008301526134a3816131c1565b9050919050565b600060208201905081810360008301526134c3816131e4565b9050919050565b600060208201905081810360008301526134e381613207565b9050919050565b600060208201905081810360008301526135038161324d565b9050919050565b6000602082019050818103600083015261352381613270565b9050919050565b6000602082019050818103600083015261354381613293565b9050919050565b600060208201905061355f60008301846132b6565b92915050565b600060408201905061357a60008301856132b6565b61358760208301846132b6565b9392505050565b60006135986135a9565b90506135a482826138ab565b919050565b6000604051905090565b600067ffffffffffffffff8211156135ce576135cd613a36565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156135fa576135f9613a36565b5b61360382613a7e565b9050602081019050919050565b600067ffffffffffffffff82111561362b5761362a613a36565b5b61363482613a7e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136af8261382d565b91506136ba8361382d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136ef576136ee61397a565b5b828201905092915050565b60006137058261382d565b91506137108361382d565b9250826137205761371f6139a9565b5b828204905092915050565b60006137368261382d565b91506137418361382d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561377a5761377961397a565b5b828202905092915050565b60006137908261382d565b915061379b8361382d565b9250828210156137ae576137ad61397a565b5b828203905092915050565b60006137c48261380d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613864578082015181840152602081019050613849565b83811115613873576000848401525b50505050565b6000600282049050600182168061389157607f821691505b602082108114156138a5576138a46139d8565b5b50919050565b6138b482613a7e565b810181811067ffffffffffffffff821117156138d3576138d2613a36565b5b80604052505050565b60006138e78261382d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561391a5761391961397a565b5b600182019050919050565b600061393082613937565b9050919050565b600061394282613a8f565b9050919050565b60006139548261382d565b915061395f8361382d565b92508261396f5761396e6139a9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f596f75277265206e6f74206f6e2074686520564950206c6973742e0000000000600082015250565b7f57686974656c697374206d696e74206973206e6f74206f70656e000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f75206861766520746f6f206d616e79204e4654732e000000000000000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f506861736520737570706c792065786365656465642100000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f546869732070686173652068617320616c7265616479207061737365642e0000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613ce0816137b9565b8114613ceb57600080fd5b50565b613cf7816137cb565b8114613d0257600080fd5b50565b613d0e816137d7565b8114613d1957600080fd5b50565b613d25816137e1565b8114613d3057600080fd5b50565b613d3c8161382d565b8114613d4757600080fd5b5056fea2646970667358221220492590123e664309d47748fb382bcabc1c353e6710363c96630a1993d696681b64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000060c2ddf095491426f7b62aa2ec4139714d8182d66ca035a25e4b05443f7551ad7f00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f697066732e696f2f697066732f516d5877726b6b586e39336f76546456595a3743415952557731584b4b566a45784b3568487a56474e4c41784b552f707265766965772e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043687474703a2f2f697066732e696f2f697066732f516d51784a7964453752674c38673867795558644b3343586f5464484635633436366d38663848355844617678552f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063715018a611610139578063b1c9fe6e116100b6578063dab5f3401161007a578063dab5f34014610807578063e0a8085314610830578063e48af2cc14610859578063e532bb0014610882578063e985e9c5146108ab578063f2fde38b146108e857610246565b8063b1c9fe6e1461073b578063b88d4fde14610767578063c87b56dd14610783578063d2cab056146107c0578063d5abeb01146107dc57610246565b806395d89b41116100fd57806395d89b4114610677578063a035b1fe146106a2578063a0712d68146106cd578063a1448194146106e9578063a22cb4651461071257610246565b8063715018a6146105a45780637bad0bad146105bb57806387572836146105f85780638da5cb5b1461062157806394354fd01461064c57610246565b80633ccfd60b116101c75780635c975abb1161018b5780635c975abb146104ad578063626ab3b8146104d85780636352211e14610501578063676f26021461053e57806370a082311461056757610246565b80633ccfd60b146103fb57806340c84b0e1461041257806342842e0e1461043d5780634d534a7d14610459578063518302271461048257610246565b806318160ddd1161020e57806318160ddd146103355780631a904acb1461036057806322f4596f1461038b57806323b872dd146103b65780633b4c4b25146103d257610246565b806301ffc9a71461024b57806302329a291461028857806306fdde03146102b1578063081812fc146102dc578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190612e2c565b610911565b60405161027f919061338d565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190612dd2565b6109a3565b005b3480156102bd57600080fd5b506102c66109c8565b6040516102d391906133a8565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190612ecf565b610a5a565b6040516103109190613326565b60405180910390f35b610333600480360381019061032e9190612d36565b610ad9565b005b34801561034157600080fd5b5061034a610c1d565b604051610357919061354a565b60405180910390f35b34801561036c57600080fd5b50610375610c34565b604051610382919061338d565b60405180910390f35b34801561039757600080fd5b506103a0610c47565b6040516103ad919061354a565b60405180910390f35b6103d060048036038101906103cb9190612c20565b610c4d565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612ecf565b610f72565b005b34801561040757600080fd5b50610410610f84565b005b34801561041e57600080fd5b5061042761107d565b60405161043491906133a8565b60405180910390f35b61045760048036038101906104529190612c20565b61110b565b005b34801561046557600080fd5b50610480600480360381019061047b9190612e86565b61112b565b005b34801561048e57600080fd5b5061049761114d565b6040516104a4919061338d565b60405180910390f35b3480156104b957600080fd5b506104c2611160565b6040516104cf919061338d565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa9190612e86565b611173565b005b34801561050d57600080fd5b5061052860048036038101906105239190612ecf565b611195565b6040516105359190613326565b60405180910390f35b34801561054a57600080fd5b5061056560048036038101906105609190612ecf565b6111a7565b005b34801561057357600080fd5b5061058e60048036038101906105899190612bb3565b6111b9565b60405161059b919061354a565b60405180910390f35b3480156105b057600080fd5b506105b9611272565b005b3480156105c757600080fd5b506105e260048036038101906105dd9190612d76565b611286565b6040516105ef919061338d565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190612e86565b6112c8565b005b34801561062d57600080fd5b506106366112ea565b6040516106439190613326565b60405180910390f35b34801561065857600080fd5b50610661611314565b60405161066e919061354a565b60405180910390f35b34801561068357600080fd5b5061068c61131a565b60405161069991906133a8565b60405180910390f35b3480156106ae57600080fd5b506106b76113ac565b6040516106c4919061354a565b60405180910390f35b6106e760048036038101906106e29190612ecf565b6113b2565b005b3480156106f557600080fd5b50610710600480360381019061070b9190612d36565b611614565b005b34801561071e57600080fd5b5061073960048036038101906107349190612cf6565b611681565b005b34801561074757600080fd5b5061075061178c565b60405161075e929190613565565b60405180910390f35b610781600480360381019061077c9190612c73565b61179e565b005b34801561078f57600080fd5b506107aa60048036038101906107a59190612ecf565b611811565b6040516107b791906133a8565b60405180910390f35b6107da60048036038101906107d59190612efc565b61196a565b005b3480156107e857600080fd5b506107f1611cbd565b6040516107fe919061354a565b60405180910390f35b34801561081357600080fd5b5061082e60048036038101906108299190612dff565b611cc7565b005b34801561083c57600080fd5b5061085760048036038101906108529190612dd2565b611cd9565b005b34801561086557600080fd5b50610880600480360381019061087b9190612f58565b611cfe565b005b34801561088e57600080fd5b506108a960048036038101906108a49190612dd2565b611df0565b005b3480156108b757600080fd5b506108d260048036038101906108cd9190612be0565b611e15565b6040516108df919061338d565b60405180910390f35b3480156108f457600080fd5b5061090f600480360381019061090a9190612bb3565b611ea9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6109ab611f2d565b80601960006101000a81548160ff02191690831515021790555050565b6060600280546109d790613879565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0390613879565b8015610a505780601f10610a2557610100808354040283529160200191610a50565b820191906000526020600020905b815481529060010190602001808311610a3357829003601f168201915b5050505050905090565b6000610a6582611fab565b610a9b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae482611195565b90508073ffffffffffffffffffffffffffffffffffffffff16610b0561200a565b73ffffffffffffffffffffffffffffffffffffffff1614610b6857610b3181610b2c61200a565b611e15565b610b67576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c27612012565b6001546000540303905090565b601760009054906101000a900460ff1681565b600b5481565b6000610c588261201b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cbf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ccb846120e9565b91509150610ce18187610cdc61200a565b612110565b610d2d57610cf686610cf161200a565b611e15565b610d2c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d94576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610da18686866001612154565b8015610dac57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e7a85610e5688888761215a565b7c020000000000000000000000000000000000000000000000000000000017612182565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f02576000600185019050600060046000838152602001908152602001600020541415610f00576000548114610eff578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f6a86868660016121ad565b505050505050565b610f7a611f2d565b80600b8190555050565b610f8c611f2d565b60026009541415610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc99061352a565b60405180910390fd5b60026009819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161102290613311565b60006040518083038185875af1925050503d806000811461105f576040519150601f19603f3d011682016040523d82523d6000602084013e611064565b606091505b505090508061107257600080fd5b506001600981905550565b600f805461108a90613879565b80601f01602080910402602001604051908101604052809291908181526020018280546110b690613879565b80156111035780601f106110d857610100808354040283529160200191611103565b820191906000526020600020905b8154815290600101906020018083116110e657829003601f168201915b505050505081565b6111268383836040518060200160405280600081525061179e565b505050565b611133611f2d565b8060109080519060200190611149929190612914565b5050565b601960019054906101000a900460ff1681565b601960009054906101000a900460ff1681565b61117b611f2d565b80600f9080519060200190611191929190612914565b5050565b60006111a08261201b565b9050919050565b6111af611f2d565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611221576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61127a611f2d565b61128460006121b3565b565b6000808260405160200161129a91906132c5565b6040516020818303038152906040528051906020012090506112bf8460165483612279565b91505092915050565b6112d0611f2d565b80601190805190602001906112e6929190612914565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b60606003805461132990613879565b80601f016020809104026020016040519081016040528092919081815260200182805461135590613879565b80156113a25780601f10611377576101008083540402835291602001916113a2565b820191906000526020600020905b81548152906001019060200180831161138557829003601f168201915b5050505050905090565b600a5481565b8060008061140f57601960009054906101000a900460ff161561140a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611401906134aa565b60405180910390fd5b61145f565b601760009054906101000a900460ff1661145e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611455906133ea565b60405180910390fd5b5b6000611469610c1d565b905060008311801561147d5750600c548311155b6114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b39061344a565b60405180910390fd5b600b5483826114cb91906136a4565b111561150c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611503906134ea565b60405180910390fd5b600a548361151a919061372b565b34101561152657600080fd5b601460000154838261153891906136a4565b1115611579576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115709061346a565b60405180910390fd5b600d54611585336111b9565b106115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc9061342a565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff166115e4612290565b73ffffffffffffffffffffffffffffffffffffffff161461160457600080fd5b61160e3385612298565b50505050565b61161c611f2d565b600b5481611628610c1d565b61163291906136a4565b1115611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a906134ea565b60405180910390fd5b61167d8282612298565b5050565b806007600061168e61200a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661173b61200a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611780919061338d565b60405180910390a35050565b60148060000154908060010154905082565b6117a9848484610c4d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461180b576117d4848484846122b6565b61180a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061181c82611fab565b61185b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611852906134ca565b60405180910390fd5b60001515601960019054906101000a900460ff1615151415611909576011805461188490613879565b80601f01602080910402602001604051908101604052809291908181526020018280546118b090613879565b80156118fd5780601f106118d2576101008083540402835291602001916118fd565b820191906000526020600020905b8154815290600101906020018083116118e057829003601f168201915b50505050509050611965565b6000611913612416565b905060008151116119335760405180602001604052806000815250611961565b8061193d846124a8565b6010604051602001611951939291906132e0565b6040516020818303038152906040525b9150505b919050565b600260095414156119b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a79061352a565b60405180910390fd5b6002600981905550806000336040516020016119cc91906132c5565b6040516020818303038152906040528051906020012090506119f18260165483612279565b611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a27906133ca565b60405180910390fd5b83600180611a8d57601960009054906101000a900460ff1615611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f906134aa565b60405180910390fd5b611add565b601760009054906101000a900460ff16611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad3906133ea565b60405180910390fd5b5b6000611ae7610c1d565b9050600083118015611afb5750600c548311155b611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b319061344a565b60405180910390fd5b600b548382611b4991906136a4565b1115611b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b81906134ea565b60405180910390fd5b600a5483611b98919061372b565b341015611ba457600080fd5b6014600001548382611bb691906136a4565b1115611bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bee9061346a565b60405180910390fd5b600d54611c03336111b9565b10611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a9061342a565b60405180910390fd5b600160186000611c51612290565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611cac3388612298565b505050505060016009819055505050565b6000600b54905090565b611ccf611f2d565b8060168190555050565b611ce1611f2d565b80601960016101000a81548160ff02191690831515021790555050565b611d06611f2d565b6014600101548211611d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d449061350a565b60405180910390fd5b600b5481611d59610c1d565b611d6391906136a4565b1115611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b906134ea565b60405180910390fd5b60146000015460136000601460010154815260200190815260200160002081905550816014600101819055508060146000016000828254611de591906136a4565b925050819055505050565b611df8611f2d565b80601760006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eb1611f2d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f189061340a565b60405180910390fd5b611f2a816121b3565b50565b611f35612290565b73ffffffffffffffffffffffffffffffffffffffff16611f536112ea565b73ffffffffffffffffffffffffffffffffffffffff1614611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa09061348a565b60405180910390fd5b565b600081611fb6612012565b11158015611fc5575060005482105b8015612003575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061202a612012565b116120b2576000548110156120b15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156120af575b60008114156120a557600460008360019003935083815260200190815260200160002054905061207a565b80925050506120e4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612171868684612609565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826122868584612612565b1490509392505050565b600033905090565b6122b2828260405180602001604052806000815250612668565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122dc61200a565b8786866040518563ffffffff1660e01b81526004016122fe9493929190613341565b602060405180830381600087803b15801561231857600080fd5b505af192505050801561234957506040513d601f19601f820116820180604052508101906123469190612e59565b60015b6123c3573d8060008114612379576040519150601f19603f3d011682016040523d82523d6000602084013e61237e565b606091505b506000815114156123bb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f805461242590613879565b80601f016020809104026020016040519081016040528092919081815260200182805461245190613879565b801561249e5780601f106124735761010080835404028352916020019161249e565b820191906000526020600020905b81548152906001019060200180831161248157829003601f168201915b5050505050905090565b606060008214156124f0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612604565b600082905060005b6000821461252257808061250b906138dc565b915050600a8261251b91906136fa565b91506124f8565b60008167ffffffffffffffff81111561253e5761253d613a36565b5b6040519080825280601f01601f1916602001820160405280156125705781602001600182028036833780820191505090505b5090505b600085146125fd576001826125899190613785565b9150600a856125989190613949565b60306125a491906136a4565b60f81b8183815181106125ba576125b9613a07565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125f691906136fa565b9450612574565b8093505050505b919050565b60009392505050565b60008082905060005b845181101561265d576126488286838151811061263b5761263a613a07565b5b6020026020010151612705565b91508080612655906138dc565b91505061261b565b508091505092915050565b6126728383612730565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461270057600080549050600083820390505b6126b260008683806001019450866122b6565b6126e8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061269f5781600054146126fd57600080fd5b50505b505050565b600081831061271d5761271882846128ed565b612728565b61272783836128ed565b5b905092915050565b6000805490506000821415612771576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61277e6000848385612154565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127f5836127e6600086600061215a565b6127ef85612904565b17612182565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461289657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061285b565b5060008214156128d2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128e860008483856121ad565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b82805461292090613879565b90600052602060002090601f0160209004810192826129425760008555612989565b82601f1061295b57805160ff1916838001178555612989565b82800160010185558215612989579182015b8281111561298857825182559160200191906001019061296d565b5b509050612996919061299a565b5090565b5b808211156129b357600081600090555060010161299b565b5090565b60006129ca6129c5846135b3565b61358e565b905080838252602082019050828560208602820111156129ed576129ec613a6a565b5b60005b85811015612a1d5781612a038882612b03565b8452602084019350602083019250506001810190506129f0565b5050509392505050565b6000612a3a612a35846135df565b61358e565b905082815260208101848484011115612a5657612a55613a6f565b5b612a61848285613837565b509392505050565b6000612a7c612a7784613610565b61358e565b905082815260208101848484011115612a9857612a97613a6f565b5b612aa3848285613837565b509392505050565b600081359050612aba81613cd7565b92915050565b600082601f830112612ad557612ad4613a65565b5b8135612ae58482602086016129b7565b91505092915050565b600081359050612afd81613cee565b92915050565b600081359050612b1281613d05565b92915050565b600081359050612b2781613d1c565b92915050565b600081519050612b3c81613d1c565b92915050565b600082601f830112612b5757612b56613a65565b5b8135612b67848260208601612a27565b91505092915050565b600082601f830112612b8557612b84613a65565b5b8135612b95848260208601612a69565b91505092915050565b600081359050612bad81613d33565b92915050565b600060208284031215612bc957612bc8613a79565b5b6000612bd784828501612aab565b91505092915050565b60008060408385031215612bf757612bf6613a79565b5b6000612c0585828601612aab565b9250506020612c1685828601612aab565b9150509250929050565b600080600060608486031215612c3957612c38613a79565b5b6000612c4786828701612aab565b9350506020612c5886828701612aab565b9250506040612c6986828701612b9e565b9150509250925092565b60008060008060808587031215612c8d57612c8c613a79565b5b6000612c9b87828801612aab565b9450506020612cac87828801612aab565b9350506040612cbd87828801612b9e565b925050606085013567ffffffffffffffff811115612cde57612cdd613a74565b5b612cea87828801612b42565b91505092959194509250565b60008060408385031215612d0d57612d0c613a79565b5b6000612d1b85828601612aab565b9250506020612d2c85828601612aee565b9150509250929050565b60008060408385031215612d4d57612d4c613a79565b5b6000612d5b85828601612aab565b9250506020612d6c85828601612b9e565b9150509250929050565b60008060408385031215612d8d57612d8c613a79565b5b600083013567ffffffffffffffff811115612dab57612daa613a74565b5b612db785828601612ac0565b9250506020612dc885828601612aab565b9150509250929050565b600060208284031215612de857612de7613a79565b5b6000612df684828501612aee565b91505092915050565b600060208284031215612e1557612e14613a79565b5b6000612e2384828501612b03565b91505092915050565b600060208284031215612e4257612e41613a79565b5b6000612e5084828501612b18565b91505092915050565b600060208284031215612e6f57612e6e613a79565b5b6000612e7d84828501612b2d565b91505092915050565b600060208284031215612e9c57612e9b613a79565b5b600082013567ffffffffffffffff811115612eba57612eb9613a74565b5b612ec684828501612b70565b91505092915050565b600060208284031215612ee557612ee4613a79565b5b6000612ef384828501612b9e565b91505092915050565b60008060408385031215612f1357612f12613a79565b5b6000612f2185828601612b9e565b925050602083013567ffffffffffffffff811115612f4257612f41613a74565b5b612f4e85828601612ac0565b9150509250929050565b60008060408385031215612f6f57612f6e613a79565b5b6000612f7d85828601612b9e565b9250506020612f8e85828601612b9e565b9150509250929050565b612fa1816137b9565b82525050565b612fb8612fb3826137b9565b613925565b82525050565b612fc7816137cb565b82525050565b6000612fd882613656565b612fe2818561366c565b9350612ff2818560208601613846565b612ffb81613a7e565b840191505092915050565b600061301182613661565b61301b8185613688565b935061302b818560208601613846565b61303481613a7e565b840191505092915050565b600061304a82613661565b6130548185613699565b9350613064818560208601613846565b80840191505092915050565b6000815461307d81613879565b6130878186613699565b945060018216600081146130a257600181146130b3576130e6565b60ff198316865281860193506130e6565b6130bc85613641565b60005b838110156130de578154818901526001820191506020810190506130bf565b838801955050505b50505092915050565b60006130fc601b83613688565b915061310782613a9c565b602082019050919050565b600061311f601a83613688565b915061312a82613ac5565b602082019050919050565b6000613142602683613688565b915061314d82613aee565b604082019050919050565b6000613165601783613688565b915061317082613b3d565b602082019050919050565b6000613188601483613688565b915061319382613b66565b602082019050919050565b60006131ab601683613688565b91506131b682613b8f565b602082019050919050565b60006131ce602083613688565b91506131d982613bb8565b602082019050919050565b60006131f1601783613688565b91506131fc82613be1565b602082019050919050565b6000613214602f83613688565b915061321f82613c0a565b604082019050919050565b600061323760008361367d565b915061324282613c59565b600082019050919050565b600061325a601483613688565b915061326582613c5c565b602082019050919050565b600061327d601e83613688565b915061328882613c85565b602082019050919050565b60006132a0601f83613688565b91506132ab82613cae565b602082019050919050565b6132bf8161382d565b82525050565b60006132d18284612fa7565b60148201915081905092915050565b60006132ec828661303f565b91506132f8828561303f565b91506133048284613070565b9150819050949350505050565b600061331c8261322a565b9150819050919050565b600060208201905061333b6000830184612f98565b92915050565b60006080820190506133566000830187612f98565b6133636020830186612f98565b61337060408301856132b6565b81810360608301526133828184612fcd565b905095945050505050565b60006020820190506133a26000830184612fbe565b92915050565b600060208201905081810360008301526133c28184613006565b905092915050565b600060208201905081810360008301526133e3816130ef565b9050919050565b6000602082019050818103600083015261340381613112565b9050919050565b6000602082019050818103600083015261342381613135565b9050919050565b6000602082019050818103600083015261344381613158565b9050919050565b600060208201905081810360008301526134638161317b565b9050919050565b600060208201905081810360008301526134838161319e565b9050919050565b600060208201905081810360008301526134a3816131c1565b9050919050565b600060208201905081810360008301526134c3816131e4565b9050919050565b600060208201905081810360008301526134e381613207565b9050919050565b600060208201905081810360008301526135038161324d565b9050919050565b6000602082019050818103600083015261352381613270565b9050919050565b6000602082019050818103600083015261354381613293565b9050919050565b600060208201905061355f60008301846132b6565b92915050565b600060408201905061357a60008301856132b6565b61358760208301846132b6565b9392505050565b60006135986135a9565b90506135a482826138ab565b919050565b6000604051905090565b600067ffffffffffffffff8211156135ce576135cd613a36565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156135fa576135f9613a36565b5b61360382613a7e565b9050602081019050919050565b600067ffffffffffffffff82111561362b5761362a613a36565b5b61363482613a7e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136af8261382d565b91506136ba8361382d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136ef576136ee61397a565b5b828201905092915050565b60006137058261382d565b91506137108361382d565b9250826137205761371f6139a9565b5b828204905092915050565b60006137368261382d565b91506137418361382d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561377a5761377961397a565b5b828202905092915050565b60006137908261382d565b915061379b8361382d565b9250828210156137ae576137ad61397a565b5b828203905092915050565b60006137c48261380d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613864578082015181840152602081019050613849565b83811115613873576000848401525b50505050565b6000600282049050600182168061389157607f821691505b602082108114156138a5576138a46139d8565b5b50919050565b6138b482613a7e565b810181811067ffffffffffffffff821117156138d3576138d2613a36565b5b80604052505050565b60006138e78261382d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561391a5761391961397a565b5b600182019050919050565b600061393082613937565b9050919050565b600061394282613a8f565b9050919050565b60006139548261382d565b915061395f8361382d565b92508261396f5761396e6139a9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f596f75277265206e6f74206f6e2074686520564950206c6973742e0000000000600082015250565b7f57686974656c697374206d696e74206973206e6f74206f70656e000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f75206861766520746f6f206d616e79204e4654732e000000000000000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f506861736520737570706c792065786365656465642100000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f546869732070686173652068617320616c7265616479207061737365642e0000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613ce0816137b9565b8114613ceb57600080fd5b50565b613cf7816137cb565b8114613d0257600080fd5b50565b613d0e816137d7565b8114613d1957600080fd5b50565b613d25816137e1565b8114613d3057600080fd5b50565b613d3c8161382d565b8114613d4757600080fd5b5056fea2646970667358221220492590123e664309d47748fb382bcabc1c353e6710363c96630a1993d696681b64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000060c2ddf095491426f7b62aa2ec4139714d8182d66ca035a25e4b05443f7551ad7f00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f697066732e696f2f697066732f516d5877726b6b586e39336f76546456595a3743415952557731584b4b566a45784b3568487a56474e4c41784b552f707265766965772e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043687474703a2f2f697066732e696f2f697066732f516d51784a7964453752674c38673867795558644b3343586f5464484635633436366d38663848355844617678552f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initNotRevealedUri (string): https://ipfs.io/ipfs/QmXwrkkXn93ovTdVYZ7CAYRUw1XKKVjExK5hHzVGNLAxKU/preview.json
Arg [1] : _root (bytes32): 0xc2ddf095491426f7b62aa2ec4139714d8182d66ca035a25e4b05443f7551ad7f
Arg [2] : _uri (string): http://ipfs.io/ipfs/QmQxJydE7RgL8g8gyUXdK3CXoTdHF5c466m8f8H5XDavxU/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : c2ddf095491426f7b62aa2ec4139714d8182d66ca035a25e4b05443f7551ad7f
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [4] : 68747470733a2f2f697066732e696f2f697066732f516d5877726b6b586e3933
Arg [5] : 6f76546456595a3743415952557731584b4b566a45784b3568487a56474e4c41
Arg [6] : 784b552f707265766965772e6a736f6e00000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 687474703a2f2f697066732e696f2f697066732f516d51784a7964453752674c
Arg [9] : 38673867795558644b3343586f5464484635633436366d386638483558446176
Arg [10] : 78552f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

80510:5477:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43817:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83400:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44719:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51210:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50643:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40470:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81335:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80680:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54849:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84183:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84929:156;;;;;;;;;;;;;:::i;:::-;;80892:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57770:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83984:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81474:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81442:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83889:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46112:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84089:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41654:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79624:103;;;;;;;;;;;;;:::i;:::-;;82905:219;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83686:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78976:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80720:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44895:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80640:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83132:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83485:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51768:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81224:55;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;58561:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85171:486;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82660:237;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85898:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84286:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83790:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84477:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84380:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52159:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79882:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43817:639;43902:4;44241:10;44226:25;;:11;:25;;;;:102;;;;44318:10;44303:25;;:11;:25;;;;44226:102;:179;;;;44395:10;44380:25;;:11;:25;;;;44226:179;44206:199;;43817:639;;;:::o;83400:77::-;78862:13;:11;:13::i;:::-;83464:5:::1;83455:6;;:14;;;;;;;;;;;;;;;;;;83400:77:::0;:::o;44719:100::-;44773:13;44806:5;44799:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44719:100;:::o;51210:218::-;51286:7;51311:16;51319:7;51311;:16::i;:::-;51306:64;;51336:34;;;;;;;;;;;;;;51306:64;51390:15;:24;51406:7;51390:24;;;;;;;;;;;:30;;;;;;;;;;;;51383:37;;51210:218;;;:::o;50643:408::-;50732:13;50748:16;50756:7;50748;:16::i;:::-;50732:32;;50804:5;50781:28;;:19;:17;:19::i;:::-;:28;;;50777:175;;50829:44;50846:5;50853:19;:17;:19::i;:::-;50829:16;:44::i;:::-;50824:128;;50901:35;;;;;;;;;;;;;;50824:128;50777:175;50997:2;50964:15;:24;50980:7;50964:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;51035:7;51031:2;51015:28;;51024:5;51015:28;;;;;;;;;;;;50721:330;50643:408;;:::o;40470:323::-;40531:7;40759:15;:13;:15::i;:::-;40744:12;;40728:13;;:28;:46;40721:53;;40470:323;:::o;81335:25::-;;;;;;;;;;;;;:::o;80680:33::-;;;;:::o;54849:2825::-;54991:27;55021;55040:7;55021:18;:27::i;:::-;54991:57;;55106:4;55065:45;;55081:19;55065:45;;;55061:86;;55119:28;;;;;;;;;;;;;;55061:86;55161:27;55190:23;55217:35;55244:7;55217:26;:35::i;:::-;55160:92;;;;55352:68;55377:15;55394:4;55400:19;:17;:19::i;:::-;55352:24;:68::i;:::-;55347:180;;55440:43;55457:4;55463:19;:17;:19::i;:::-;55440:16;:43::i;:::-;55435:92;;55492:35;;;;;;;;;;;;;;55435:92;55347:180;55558:1;55544:16;;:2;:16;;;55540:52;;;55569:23;;;;;;;;;;;;;;55540:52;55605:43;55627:4;55633:2;55637:7;55646:1;55605:21;:43::i;:::-;55741:15;55738:160;;;55881:1;55860:19;55853:30;55738:160;56278:18;:24;56297:4;56278:24;;;;;;;;;;;;;;;;56276:26;;;;;;;;;;;;56347:18;:22;56366:2;56347:22;;;;;;;;;;;;;;;;56345:24;;;;;;;;;;;56669:146;56706:2;56755:45;56770:4;56776:2;56780:19;56755:14;:45::i;:::-;36869:8;56727:73;56669:18;:146::i;:::-;56640:17;:26;56658:7;56640:26;;;;;;;;;;;:175;;;;56986:1;36869:8;56935:19;:47;:52;56931:627;;;57008:19;57040:1;57030:7;:11;57008:33;;57197:1;57163:17;:30;57181:11;57163:30;;;;;;;;;;;;:35;57159:384;;;57301:13;;57286:11;:28;57282:242;;57481:19;57448:17;:30;57466:11;57448:30;;;;;;;;;;;:52;;;;57282:242;57159:384;56989:569;56931:627;57605:7;57601:2;57586:27;;57595:4;57586:27;;;;;;;;;;;;57624:42;57645:4;57651:2;57655:7;57664:1;57624:20;:42::i;:::-;54980:2694;;;54849:2825;;;:::o;84183:89::-;78862:13;:11;:13::i;:::-;84258:6:::1;84245:10;:19;;;;84183:89:::0;:::o;84929:156::-;78862:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;84990:7:::2;85011:4;;;;;;;;;;;85003:18;;85029:21;85003:52;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84989:66;;;85074:2;85066:11;;;::::0;::::2;;84978:107;1768:1:::1;2722:7;:22;;;;84929:156::o:0;80892:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57770:193::-;57916:39;57933:4;57939:2;57943:7;57916:39;;;;;;;;;;;;:16;:39::i;:::-;57770:193;;;:::o;83984:97::-;78862:13;:11;:13::i;:::-;84070:3:::1;84055:12;:18;;;;;;;;;;;;:::i;:::-;;83984:97:::0;:::o;81474:20::-;;;;;;;;;;;;;:::o;81442:25::-;;;;;;;;;;;;;:::o;83889:87::-;78862:13;:11;:13::i;:::-;83965:3:::1;83955:7;:13;;;;;;;;;;;;:::i;:::-;;83889:87:::0;:::o;46112:152::-;46184:7;46227:27;46246:7;46227:18;:27::i;:::-;46204:52;;46112:152;;;:::o;84089:85::-;78862:13;:11;:13::i;:::-;84161:5:::1;84153;:13;;;;84089:85:::0;:::o;41654:233::-;41726:7;41767:1;41750:19;;:5;:19;;;41746:60;;;41778:28;;;;;;;;;;;;;;41746:60;35813:13;41824:18;:25;41843:5;41824:25;;;;;;;;;;;;;;;;:55;41817:62;;41654:233;;;:::o;79624:103::-;78862:13;:11;:13::i;:::-;79689:30:::1;79716:1;79689:18;:30::i;:::-;79624:103::o:0;82905:219::-;82986:4;83003:15;83048:8;83031:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;83021:37;;;;;;83003:55;;83076:40;83095:5;83102:4;;83108:7;83076:18;:40::i;:::-;83069:47;;;82905:219;;;;:::o;83686:92::-;78862:13;:11;:13::i;:::-;83767:3:::1;83755:9;:15;;;;;;;;;;;;:::i;:::-;;83686:92:::0;:::o;78976:87::-;79022:7;79049:6;;;;;;;;;;;79042:13;;78976:87;:::o;80720:38::-;;;;:::o;44895:104::-;44951:13;44984:7;44977:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44895:104;:::o;80640:33::-;;;;:::o;83132:184::-;83191:11;83204:5;81851:4;:97;;81914:6;;;;;;;;;;;81913:7;81905:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;81851:97;;;81866:6;;;;;;;;;;;81858:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;81851:97;81959:15;81977:13;:11;:13::i;:::-;81959:31;;82023:1;82009:11;:15;:52;;;;;82043:18;;82028:11;:33;;82009:52;82001:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;82130:10;;82115:11;82105:7;:21;;;;:::i;:::-;:35;;82097:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;82211:5;;82197:11;:19;;;;:::i;:::-;82184:9;:32;;82176:41;;;;;;82261:5;:9;;;82246:11;82236:7;:21;;;;:::i;:::-;:34;;82228:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;82340:22;;82316:21;82326:10;82316:9;:21::i;:::-;:46;82308:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;83245:9:::1;83229:25;;:12;:10;:12::i;:::-;:25;;;83221:34;;;::::0;::::1;;83270;83280:10;83292:11;83270:9;:34::i;:::-;81840:570:::0;83132:184;;;:::o;83485:189::-;78862:13;:11;:13::i;:::-;83597:10:::1;;83585:8;83569:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;83561:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;83643:23;83653:2;83657:8;83643:9;:23::i;:::-;83485:189:::0;;:::o;51768:234::-;51915:8;51863:18;:39;51882:19;:17;:19::i;:::-;51863:39;;;;;;;;;;;;;;;:49;51903:8;51863:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;51975:8;51939:55;;51954:19;:17;:19::i;:::-;51939:55;;;51985:8;51939:55;;;;;;:::i;:::-;;;;;;;;51768:234;;:::o;81224:55::-;;;;;;;;;;;;;;:::o;58561:407::-;58736:31;58749:4;58755:2;58759:7;58736:12;:31::i;:::-;58800:1;58782:2;:14;;;:19;58778:183;;58821:56;58852:4;58858:2;58862:7;58871:5;58821:30;:56::i;:::-;58816:145;;58905:40;;;;;;;;;;;;;;58816:145;58778:183;58561:407;;;;:::o;85171:486::-;85245:13;85280:16;85288:7;85280;:16::i;:::-;85272:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;85384:5;85372:17;;:8;;;;;;;;;;;:17;;;85368:62;;;85409:9;85402:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85368:62;85450:28;85481:10;:8;:10::i;:::-;85450:41;;85540:1;85515:14;85509:28;:32;:140;;;;;;;;;;;;;;;;;85581:14;85597:18;:7;:16;:18::i;:::-;85617:12;85564:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;85509:140;85502:147;;;85171:486;;;;:::o;82660:237::-;1812:1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;82769:5:::1;82474:15;82519:10;82502:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;82492:39;;;;;;82474:57;;82550:40;82569:5;82576:4;;82582:7;82550:18;:40::i;:::-;82542:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;82786:11:::2;82799:4;81851;:97;;81914:6;;;;;;;;;;;81913:7;81905:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;81851:97;;;81866:6;;;;;;;;;;;81858:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;81851:97;81959:15;81977:13;:11;:13::i;:::-;81959:31;;82023:1;82009:11;:15;:52;;;;;82043:18;;82028:11;:33;;82009:52;82001:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;82130:10;;82115:11;82105:7;:21;;;;:::i;:::-;:35;;82097:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;82211:5;;82197:11;:19;;;;:::i;:::-;82184:9;:32;;82176:41;;;::::0;::::2;;82261:5;:9;;;82246:11;82236:7;:21;;;;:::i;:::-;:34;;82228:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;82340:22;;82316:21;82326:10;82316:9;:21::i;:::-;:46;82308:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;82840:4:::3;82816:7;:21;82824:12;:10;:12::i;:::-;82816:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;82855:34;82865:10;82877:11;82855:9;:34::i;:::-;81840:570:::2;82643:1;;82463:189:::1;2574:1;1768::::0;2722:7;:22;;;;82660:237;;:::o;85898:86::-;85940:7;85966:10;;85959:17;;85898:86;:::o;84286:82::-;78862:13;:11;:13::i;:::-;84355:5:::1;84348:4;:12;;;;84286:82:::0;:::o;83790:87::-;78862:13;:11;:13::i;:::-;83863:6:::1;83852:8;;:17;;;;;;;;;;;;;;;;;;83790:87:::0;:::o;84477:362::-;78862:13;:11;:13::i;:::-;84572:5:::1;:18;;;84562:7;:28;84554:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;84668:10;;84660:4;84644:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:34;;84636:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;84753:5;:9;;;84716:14;:34;84731:5;:18;;;84716:34;;;;;;;;;;;:46;;;;84796:7;84775:5;:18;;:28;;;;84827:4;84814:5;:9;;;:17;;;;;;;:::i;:::-;;;;;;;;84477:362:::0;;:::o;84380:85::-;78862:13;:11;:13::i;:::-;84452:5:::1;84443:6;;:14;;;;;;;;;;;;;;;;;;84380:85:::0;:::o;52159:164::-;52256:4;52280:18;:25;52299:5;52280:25;;;;;;;;;;;;;;;:35;52306:8;52280:35;;;;;;;;;;;;;;;;;;;;;;;;;52273:42;;52159:164;;;;:::o;79882:201::-;78862:13;:11;:13::i;:::-;79991:1:::1;79971:22;;:8;:22;;;;79963:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;80047:28;80066:8;80047:18;:28::i;:::-;79882:201:::0;:::o;79141:132::-;79216:12;:10;:12::i;:::-;79205:23;;:7;:5;:7::i;:::-;:23;;;79197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79141:132::o;52581:282::-;52646:4;52702:7;52683:15;:13;:15::i;:::-;:26;;:66;;;;;52736:13;;52726:7;:23;52683:66;:153;;;;;52835:1;36589:8;52787:17;:26;52805:7;52787:26;;;;;;;;;;;;:44;:49;52683:153;52663:173;;52581:282;;;:::o;74889:105::-;74949:7;74976:10;74969:17;;74889:105;:::o;85665:109::-;85739:7;85765:1;85758:8;;85665:109;:::o;47267:1275::-;47334:7;47354:12;47369:7;47354:22;;47437:4;47418:15;:13;:15::i;:::-;:23;47414:1061;;47471:13;;47464:4;:20;47460:1015;;;47509:14;47526:17;:23;47544:4;47526:23;;;;;;;;;;;;47509:40;;47643:1;36589:8;47615:6;:24;:29;47611:845;;;48280:113;48297:1;48287:6;:11;48280:113;;;48340:17;:25;48358:6;;;;;;;48340:25;;;;;;;;;;;;48331:34;;48280:113;;;48426:6;48419:13;;;;;;47611:845;47486:989;47460:1015;47414:1061;48503:31;;;;;;;;;;;;;;47267:1275;;;;:::o;53744:485::-;53846:27;53875:23;53916:38;53957:15;:24;53973:7;53957:24;;;;;;;;;;;53916:65;;54134:18;54111:41;;54191:19;54185:26;54166:45;;54096:126;53744:485;;;:::o;52972:659::-;53121:11;53286:16;53279:5;53275:28;53266:37;;53446:16;53435:9;53431:32;53418:45;;53596:15;53585:9;53582:30;53574:5;53563:9;53560:20;53557:56;53547:66;;52972:659;;;;;:::o;59630:159::-;;;;;:::o;74198:311::-;74333:7;74353:16;36993:3;74379:19;:41;;74353:68;;36993:3;74447:31;74458:4;74464:2;74468:9;74447:10;:31::i;:::-;74439:40;;:62;;74432:69;;;74198:311;;;;;:::o;49090:450::-;49170:14;49338:16;49331:5;49327:28;49318:37;;49515:5;49501:11;49476:23;49472:41;49469:52;49462:5;49459:63;49449:73;;49090:450;;;;:::o;60454:158::-;;;;;:::o;80243:191::-;80317:16;80336:6;;;;;;;;;;;80317:25;;80362:8;80353:6;;:17;;;;;;;;;;;;;;;;;;80417:8;80386:40;;80407:8;80386:40;;;;;;;;;;;;80306:128;80243:191;:::o;3978:190::-;4103:4;4156;4127:25;4140:5;4147:4;4127:12;:25::i;:::-;:33;4120:40;;3978:190;;;;;:::o;77527:98::-;77580:7;77607:10;77600:17;;77527:98;:::o;68721:112::-;68798:27;68808:2;68812:8;68798:27;;;;;;;;;;;;:9;:27::i;:::-;68721:112;;:::o;61052:716::-;61215:4;61261:2;61236:45;;;61282:19;:17;:19::i;:::-;61303:4;61309:7;61318:5;61236:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;61232:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61536:1;61519:6;:13;:18;61515:235;;;61565:40;;;;;;;;;;;;;;61515:235;61708:6;61702:13;61693:6;61689:2;61685:15;61678:38;61232:529;61405:54;;;61395:64;;;:6;:64;;;;61388:71;;;61052:716;;;;;;:::o;85782:108::-;85842:13;85875:7;85868:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85782:108;:::o;23346:723::-;23402:13;23632:1;23623:5;:10;23619:53;;;23650:10;;;;;;;;;;;;;;;;;;;;;23619:53;23682:12;23697:5;23682:20;;23713:14;23738:78;23753:1;23745:4;:9;23738:78;;23771:8;;;;;:::i;:::-;;;;23802:2;23794:10;;;;;:::i;:::-;;;23738:78;;;23826:19;23858:6;23848:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23826:39;;23876:154;23892:1;23883:5;:10;23876:154;;23920:1;23910:11;;;;;:::i;:::-;;;23987:2;23979:5;:10;;;;:::i;:::-;23966:2;:24;;;;:::i;:::-;23953:39;;23936:6;23943;23936:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;24016:2;24007:11;;;;;:::i;:::-;;;23876:154;;;24054:6;24040:21;;;;;23346:723;;;;:::o;73899:147::-;74036:6;73899:147;;;;;:::o;4845:296::-;4928:7;4948:20;4971:4;4948:27;;4991:9;4986:118;5010:5;:12;5006:1;:16;4986:118;;;5059:33;5069:12;5083:5;5089:1;5083:8;;;;;;;;:::i;:::-;;;;;;;;5059:9;:33::i;:::-;5044:48;;5024:3;;;;;:::i;:::-;;;;4986:118;;;;5121:12;5114:19;;;4845:296;;;;:::o;67948:689::-;68079:19;68085:2;68089:8;68079:5;:19::i;:::-;68158:1;68140:2;:14;;;:19;68136:483;;68180:11;68194:13;;68180:27;;68226:13;68248:8;68242:3;:14;68226:30;;68275:233;68306:62;68345:1;68349:2;68353:7;;;;;;68362:5;68306:30;:62::i;:::-;68301:167;;68404:40;;;;;;;;;;;;;;68301:167;68503:3;68495:5;:11;68275:233;;68590:3;68573:13;;:20;68569:34;;68595:8;;;68569:34;68161:458;;68136:483;67948:689;;;:::o;11052:149::-;11115:7;11146:1;11142;:5;:51;;11173:20;11188:1;11191;11173:14;:20::i;:::-;11142:51;;;11150:20;11165:1;11168;11150:14;:20::i;:::-;11142:51;11135:58;;11052:149;;;;:::o;62230:2966::-;62303:20;62326:13;;62303:36;;62366:1;62354:8;:13;62350:44;;;62376:18;;;;;;;;;;;;;;62350:44;62407:61;62437:1;62441:2;62445:12;62459:8;62407:21;:61::i;:::-;62951:1;35951:2;62921:1;:26;;62920:32;62908:8;:45;62882:18;:22;62901:2;62882:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;63230:139;63267:2;63321:33;63344:1;63348:2;63352:1;63321:14;:33::i;:::-;63288:30;63309:8;63288:20;:30::i;:::-;:66;63230:18;:139::i;:::-;63196:17;:31;63214:12;63196:31;;;;;;;;;;;:173;;;;63386:16;63417:11;63446:8;63431:12;:23;63417:37;;63967:16;63963:2;63959:25;63947:37;;64339:12;64299:8;64258:1;64196:25;64137:1;64076;64049:335;64710:1;64696:12;64692:20;64650:346;64751:3;64742:7;64739:16;64650:346;;64969:7;64959:8;64956:1;64929:25;64926:1;64923;64918:59;64804:1;64795:7;64791:15;64780:26;;64650:346;;;64654:77;65041:1;65029:8;:13;65025:45;;;65051:19;;;;;;;;;;;;;;65025:45;65103:3;65087:13;:19;;;;62656:2462;;65128:60;65157:1;65161:2;65165:12;65179:8;65128:20;:60::i;:::-;62292:2904;62230:2966;;:::o;11209:268::-;11277:13;11384:1;11378:4;11371:15;11413:1;11407:4;11400:15;11454:4;11448;11438:21;11429:30;;11209:268;;;;:::o;49642:324::-;49712:14;49945:1;49935:8;49932:15;49906:24;49902:46;49892:56;;49642:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:139::-;2309:5;2347:6;2334:20;2325:29;;2363:33;2390:5;2363:33;:::i;:::-;2263:139;;;;:::o;2408:137::-;2453:5;2491:6;2478:20;2469:29;;2507:32;2533:5;2507:32;:::i;:::-;2408:137;;;;:::o;2551:141::-;2607:5;2638:6;2632:13;2623:22;;2654:32;2680:5;2654:32;:::i;:::-;2551:141;;;;:::o;2711:338::-;2766:5;2815:3;2808:4;2800:6;2796:17;2792:27;2782:122;;2823:79;;:::i;:::-;2782:122;2940:6;2927:20;2965:78;3039:3;3031:6;3024:4;3016:6;3012:17;2965:78;:::i;:::-;2956:87;;2772:277;2711:338;;;;:::o;3069:340::-;3125:5;3174:3;3167:4;3159:6;3155:17;3151:27;3141:122;;3182:79;;:::i;:::-;3141:122;3299:6;3286:20;3324:79;3399:3;3391:6;3384:4;3376:6;3372:17;3324:79;:::i;:::-;3315:88;;3131:278;3069:340;;;;:::o;3415:139::-;3461:5;3499:6;3486:20;3477:29;;3515:33;3542:5;3515:33;:::i;:::-;3415:139;;;;:::o;3560:329::-;3619:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:119;;;3674:79;;:::i;:::-;3636:119;3794:1;3819:53;3864:7;3855:6;3844:9;3840:22;3819:53;:::i;:::-;3809:63;;3765:117;3560:329;;;;:::o;3895:474::-;3963:6;3971;4020:2;4008:9;3999:7;3995:23;3991:32;3988:119;;;4026:79;;:::i;:::-;3988:119;4146:1;4171:53;4216:7;4207:6;4196:9;4192:22;4171:53;:::i;:::-;4161:63;;4117:117;4273:2;4299:53;4344:7;4335:6;4324:9;4320:22;4299:53;:::i;:::-;4289:63;;4244:118;3895:474;;;;;:::o;4375:619::-;4452:6;4460;4468;4517:2;4505:9;4496:7;4492:23;4488:32;4485:119;;;4523:79;;:::i;:::-;4485:119;4643:1;4668:53;4713:7;4704:6;4693:9;4689:22;4668:53;:::i;:::-;4658:63;;4614:117;4770:2;4796:53;4841:7;4832:6;4821:9;4817:22;4796:53;:::i;:::-;4786:63;;4741:118;4898:2;4924:53;4969:7;4960:6;4949:9;4945:22;4924:53;:::i;:::-;4914:63;;4869:118;4375:619;;;;;:::o;5000:943::-;5095:6;5103;5111;5119;5168:3;5156:9;5147:7;5143:23;5139:33;5136:120;;;5175:79;;:::i;:::-;5136:120;5295:1;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5266:117;5422:2;5448:53;5493:7;5484:6;5473:9;5469:22;5448:53;:::i;:::-;5438:63;;5393:118;5550:2;5576:53;5621:7;5612:6;5601:9;5597:22;5576:53;:::i;:::-;5566:63;;5521:118;5706:2;5695:9;5691:18;5678:32;5737:18;5729:6;5726:30;5723:117;;;5759:79;;:::i;:::-;5723:117;5864:62;5918:7;5909:6;5898:9;5894:22;5864:62;:::i;:::-;5854:72;;5649:287;5000:943;;;;;;;:::o;5949:468::-;6014:6;6022;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:53;6267:7;6258:6;6247:9;6243:22;6222:53;:::i;:::-;6212:63;;6168:117;6324:2;6350:50;6392:7;6383:6;6372:9;6368:22;6350:50;:::i;:::-;6340:60;;6295:115;5949:468;;;;;:::o;6423:474::-;6491:6;6499;6548:2;6536:9;6527:7;6523:23;6519:32;6516:119;;;6554:79;;:::i;:::-;6516:119;6674:1;6699:53;6744:7;6735:6;6724:9;6720:22;6699:53;:::i;:::-;6689:63;;6645:117;6801:2;6827:53;6872:7;6863:6;6852:9;6848:22;6827:53;:::i;:::-;6817:63;;6772:118;6423:474;;;;;:::o;6903:684::-;6996:6;7004;7053:2;7041:9;7032:7;7028:23;7024:32;7021:119;;;7059:79;;:::i;:::-;7021:119;7207:1;7196:9;7192:17;7179:31;7237:18;7229:6;7226:30;7223:117;;;7259:79;;:::i;:::-;7223:117;7364:78;7434:7;7425:6;7414:9;7410:22;7364:78;:::i;:::-;7354:88;;7150:302;7491:2;7517:53;7562:7;7553:6;7542:9;7538:22;7517:53;:::i;:::-;7507:63;;7462:118;6903:684;;;;;:::o;7593:323::-;7649:6;7698:2;7686:9;7677:7;7673:23;7669:32;7666:119;;;7704:79;;:::i;:::-;7666:119;7824:1;7849:50;7891:7;7882:6;7871:9;7867:22;7849:50;:::i;:::-;7839:60;;7795:114;7593:323;;;;:::o;7922:329::-;7981:6;8030:2;8018:9;8009:7;8005:23;8001:32;7998:119;;;8036:79;;:::i;:::-;7998:119;8156:1;8181:53;8226:7;8217:6;8206:9;8202:22;8181:53;:::i;:::-;8171:63;;8127:117;7922:329;;;;:::o;8257:327::-;8315:6;8364:2;8352:9;8343:7;8339:23;8335:32;8332:119;;;8370:79;;:::i;:::-;8332:119;8490:1;8515:52;8559:7;8550:6;8539:9;8535:22;8515:52;:::i;:::-;8505:62;;8461:116;8257:327;;;;:::o;8590:349::-;8659:6;8708:2;8696:9;8687:7;8683:23;8679:32;8676:119;;;8714:79;;:::i;:::-;8676:119;8834:1;8859:63;8914:7;8905:6;8894:9;8890:22;8859:63;:::i;:::-;8849:73;;8805:127;8590:349;;;;:::o;8945:509::-;9014:6;9063:2;9051:9;9042:7;9038:23;9034:32;9031:119;;;9069:79;;:::i;:::-;9031:119;9217:1;9206:9;9202:17;9189:31;9247:18;9239:6;9236:30;9233:117;;;9269:79;;:::i;:::-;9233:117;9374:63;9429:7;9420:6;9409:9;9405:22;9374:63;:::i;:::-;9364:73;;9160:287;8945:509;;;;:::o;9460:329::-;9519:6;9568:2;9556:9;9547:7;9543:23;9539:32;9536:119;;;9574:79;;:::i;:::-;9536:119;9694:1;9719:53;9764:7;9755:6;9744:9;9740:22;9719:53;:::i;:::-;9709:63;;9665:117;9460:329;;;;:::o;9795:684::-;9888:6;9896;9945:2;9933:9;9924:7;9920:23;9916:32;9913:119;;;9951:79;;:::i;:::-;9913:119;10071:1;10096:53;10141:7;10132:6;10121:9;10117:22;10096:53;:::i;:::-;10086:63;;10042:117;10226:2;10215:9;10211:18;10198:32;10257:18;10249:6;10246:30;10243:117;;;10279:79;;:::i;:::-;10243:117;10384:78;10454:7;10445:6;10434:9;10430:22;10384:78;:::i;:::-;10374:88;;10169:303;9795:684;;;;;:::o;10485:474::-;10553:6;10561;10610:2;10598:9;10589:7;10585:23;10581:32;10578:119;;;10616:79;;:::i;:::-;10578:119;10736:1;10761:53;10806:7;10797:6;10786:9;10782:22;10761:53;:::i;:::-;10751:63;;10707:117;10863:2;10889:53;10934:7;10925:6;10914:9;10910:22;10889:53;:::i;:::-;10879:63;;10834:118;10485:474;;;;;:::o;10965:118::-;11052:24;11070:5;11052:24;:::i;:::-;11047:3;11040:37;10965:118;;:::o;11089:157::-;11194:45;11214:24;11232:5;11214:24;:::i;:::-;11194:45;:::i;:::-;11189:3;11182:58;11089:157;;:::o;11252:109::-;11333:21;11348:5;11333:21;:::i;:::-;11328:3;11321:34;11252:109;;:::o;11367:360::-;11453:3;11481:38;11513:5;11481:38;:::i;:::-;11535:70;11598:6;11593:3;11535:70;:::i;:::-;11528:77;;11614:52;11659:6;11654:3;11647:4;11640:5;11636:16;11614:52;:::i;:::-;11691:29;11713:6;11691:29;:::i;:::-;11686:3;11682:39;11675:46;;11457:270;11367:360;;;;:::o;11733:364::-;11821:3;11849:39;11882:5;11849:39;:::i;:::-;11904:71;11968:6;11963:3;11904:71;:::i;:::-;11897:78;;11984:52;12029:6;12024:3;12017:4;12010:5;12006:16;11984:52;:::i;:::-;12061:29;12083:6;12061:29;:::i;:::-;12056:3;12052:39;12045:46;;11825:272;11733:364;;;;:::o;12103:377::-;12209:3;12237:39;12270:5;12237:39;:::i;:::-;12292:89;12374:6;12369:3;12292:89;:::i;:::-;12285:96;;12390:52;12435:6;12430:3;12423:4;12416:5;12412:16;12390:52;:::i;:::-;12467:6;12462:3;12458:16;12451:23;;12213:267;12103:377;;;;:::o;12510:845::-;12613:3;12650:5;12644:12;12679:36;12705:9;12679:36;:::i;:::-;12731:89;12813:6;12808:3;12731:89;:::i;:::-;12724:96;;12851:1;12840:9;12836:17;12867:1;12862:137;;;;13013:1;13008:341;;;;12829:520;;12862:137;12946:4;12942:9;12931;12927:25;12922:3;12915:38;12982:6;12977:3;12973:16;12966:23;;12862:137;;13008:341;13075:38;13107:5;13075:38;:::i;:::-;13135:1;13149:154;13163:6;13160:1;13157:13;13149:154;;;13237:7;13231:14;13227:1;13222:3;13218:11;13211:35;13287:1;13278:7;13274:15;13263:26;;13185:4;13182:1;13178:12;13173:17;;13149:154;;;13332:6;13327:3;13323:16;13316:23;;13015:334;;12829:520;;12617:738;;12510:845;;;;:::o;13361:366::-;13503:3;13524:67;13588:2;13583:3;13524:67;:::i;:::-;13517:74;;13600:93;13689:3;13600:93;:::i;:::-;13718:2;13713:3;13709:12;13702:19;;13361:366;;;:::o;13733:::-;13875:3;13896:67;13960:2;13955:3;13896:67;:::i;:::-;13889:74;;13972:93;14061:3;13972:93;:::i;:::-;14090:2;14085:3;14081:12;14074:19;;13733:366;;;:::o;14105:::-;14247:3;14268:67;14332:2;14327:3;14268:67;:::i;:::-;14261:74;;14344:93;14433:3;14344:93;:::i;:::-;14462:2;14457:3;14453:12;14446:19;;14105:366;;;:::o;14477:::-;14619:3;14640:67;14704:2;14699:3;14640:67;:::i;:::-;14633:74;;14716:93;14805:3;14716:93;:::i;:::-;14834:2;14829:3;14825:12;14818:19;;14477:366;;;:::o;14849:::-;14991:3;15012:67;15076:2;15071:3;15012:67;:::i;:::-;15005:74;;15088:93;15177:3;15088:93;:::i;:::-;15206:2;15201:3;15197:12;15190:19;;14849:366;;;:::o;15221:::-;15363:3;15384:67;15448:2;15443:3;15384:67;:::i;:::-;15377:74;;15460:93;15549:3;15460:93;:::i;:::-;15578:2;15573:3;15569:12;15562:19;;15221:366;;;:::o;15593:::-;15735:3;15756:67;15820:2;15815:3;15756:67;:::i;:::-;15749:74;;15832:93;15921:3;15832:93;:::i;:::-;15950:2;15945:3;15941:12;15934:19;;15593:366;;;:::o;15965:::-;16107:3;16128:67;16192:2;16187:3;16128:67;:::i;:::-;16121:74;;16204:93;16293:3;16204:93;:::i;:::-;16322:2;16317:3;16313:12;16306:19;;15965:366;;;:::o;16337:::-;16479:3;16500:67;16564:2;16559:3;16500:67;:::i;:::-;16493:74;;16576:93;16665:3;16576:93;:::i;:::-;16694:2;16689:3;16685:12;16678:19;;16337:366;;;:::o;16709:398::-;16868:3;16889:83;16970:1;16965:3;16889:83;:::i;:::-;16882:90;;16981:93;17070:3;16981:93;:::i;:::-;17099:1;17094:3;17090:11;17083:18;;16709:398;;;:::o;17113:366::-;17255:3;17276:67;17340:2;17335:3;17276:67;:::i;:::-;17269:74;;17352:93;17441:3;17352:93;:::i;:::-;17470:2;17465:3;17461:12;17454:19;;17113:366;;;:::o;17485:::-;17627:3;17648:67;17712:2;17707:3;17648:67;:::i;:::-;17641:74;;17724:93;17813:3;17724:93;:::i;:::-;17842:2;17837:3;17833:12;17826:19;;17485:366;;;:::o;17857:::-;17999:3;18020:67;18084:2;18079:3;18020:67;:::i;:::-;18013:74;;18096:93;18185:3;18096:93;:::i;:::-;18214:2;18209:3;18205:12;18198:19;;17857:366;;;:::o;18229:118::-;18316:24;18334:5;18316:24;:::i;:::-;18311:3;18304:37;18229:118;;:::o;18353:256::-;18465:3;18480:75;18551:3;18542:6;18480:75;:::i;:::-;18580:2;18575:3;18571:12;18564:19;;18600:3;18593:10;;18353:256;;;;:::o;18615:589::-;18840:3;18862:95;18953:3;18944:6;18862:95;:::i;:::-;18855:102;;18974:95;19065:3;19056:6;18974:95;:::i;:::-;18967:102;;19086:92;19174:3;19165:6;19086:92;:::i;:::-;19079:99;;19195:3;19188:10;;18615:589;;;;;;:::o;19210:379::-;19394:3;19416:147;19559:3;19416:147;:::i;:::-;19409:154;;19580:3;19573:10;;19210:379;;;:::o;19595:222::-;19688:4;19726:2;19715:9;19711:18;19703:26;;19739:71;19807:1;19796:9;19792:17;19783:6;19739:71;:::i;:::-;19595:222;;;;:::o;19823:640::-;20018:4;20056:3;20045:9;20041:19;20033:27;;20070:71;20138:1;20127:9;20123:17;20114:6;20070:71;:::i;:::-;20151:72;20219:2;20208:9;20204:18;20195:6;20151:72;:::i;:::-;20233;20301:2;20290:9;20286:18;20277:6;20233:72;:::i;:::-;20352:9;20346:4;20342:20;20337:2;20326:9;20322:18;20315:48;20380:76;20451:4;20442:6;20380:76;:::i;:::-;20372:84;;19823:640;;;;;;;:::o;20469:210::-;20556:4;20594:2;20583:9;20579:18;20571:26;;20607:65;20669:1;20658:9;20654:17;20645:6;20607:65;:::i;:::-;20469:210;;;;:::o;20685:313::-;20798:4;20836:2;20825:9;20821:18;20813:26;;20885:9;20879:4;20875:20;20871:1;20860:9;20856:17;20849:47;20913:78;20986:4;20977:6;20913:78;:::i;:::-;20905:86;;20685:313;;;;:::o;21004:419::-;21170:4;21208:2;21197:9;21193:18;21185:26;;21257:9;21251:4;21247:20;21243:1;21232:9;21228:17;21221:47;21285:131;21411:4;21285:131;:::i;:::-;21277:139;;21004:419;;;:::o;21429:::-;21595:4;21633:2;21622:9;21618:18;21610:26;;21682:9;21676:4;21672:20;21668:1;21657:9;21653:17;21646:47;21710:131;21836:4;21710:131;:::i;:::-;21702:139;;21429:419;;;:::o;21854:::-;22020:4;22058:2;22047:9;22043:18;22035:26;;22107:9;22101:4;22097:20;22093:1;22082:9;22078:17;22071:47;22135:131;22261:4;22135:131;:::i;:::-;22127:139;;21854:419;;;:::o;22279:::-;22445:4;22483:2;22472:9;22468:18;22460:26;;22532:9;22526:4;22522:20;22518:1;22507:9;22503:17;22496:47;22560:131;22686:4;22560:131;:::i;:::-;22552:139;;22279:419;;;:::o;22704:::-;22870:4;22908:2;22897:9;22893:18;22885:26;;22957:9;22951:4;22947:20;22943:1;22932:9;22928:17;22921:47;22985:131;23111:4;22985:131;:::i;:::-;22977:139;;22704:419;;;:::o;23129:::-;23295:4;23333:2;23322:9;23318:18;23310:26;;23382:9;23376:4;23372:20;23368:1;23357:9;23353:17;23346:47;23410:131;23536:4;23410:131;:::i;:::-;23402:139;;23129:419;;;:::o;23554:::-;23720:4;23758:2;23747:9;23743:18;23735:26;;23807:9;23801:4;23797:20;23793:1;23782:9;23778:17;23771:47;23835:131;23961:4;23835:131;:::i;:::-;23827:139;;23554:419;;;:::o;23979:::-;24145:4;24183:2;24172:9;24168:18;24160:26;;24232:9;24226:4;24222:20;24218:1;24207:9;24203:17;24196:47;24260:131;24386:4;24260:131;:::i;:::-;24252:139;;23979:419;;;:::o;24404:::-;24570:4;24608:2;24597:9;24593:18;24585:26;;24657:9;24651:4;24647:20;24643:1;24632:9;24628:17;24621:47;24685:131;24811:4;24685:131;:::i;:::-;24677:139;;24404:419;;;:::o;24829:::-;24995:4;25033:2;25022:9;25018:18;25010:26;;25082:9;25076:4;25072:20;25068:1;25057:9;25053:17;25046:47;25110:131;25236:4;25110:131;:::i;:::-;25102:139;;24829:419;;;:::o;25254:::-;25420:4;25458:2;25447:9;25443:18;25435:26;;25507:9;25501:4;25497:20;25493:1;25482:9;25478:17;25471:47;25535:131;25661:4;25535:131;:::i;:::-;25527:139;;25254:419;;;:::o;25679:::-;25845:4;25883:2;25872:9;25868:18;25860:26;;25932:9;25926:4;25922:20;25918:1;25907:9;25903:17;25896:47;25960:131;26086:4;25960:131;:::i;:::-;25952:139;;25679:419;;;:::o;26104:222::-;26197:4;26235:2;26224:9;26220:18;26212:26;;26248:71;26316:1;26305:9;26301:17;26292:6;26248:71;:::i;:::-;26104:222;;;;:::o;26332:332::-;26453:4;26491:2;26480:9;26476:18;26468:26;;26504:71;26572:1;26561:9;26557:17;26548:6;26504:71;:::i;:::-;26585:72;26653:2;26642:9;26638:18;26629:6;26585:72;:::i;:::-;26332:332;;;;;:::o;26670:129::-;26704:6;26731:20;;:::i;:::-;26721:30;;26760:33;26788:4;26780:6;26760:33;:::i;:::-;26670:129;;;:::o;26805:75::-;26838:6;26871:2;26865:9;26855:19;;26805:75;:::o;26886:311::-;26963:4;27053:18;27045:6;27042:30;27039:56;;;27075:18;;:::i;:::-;27039:56;27125:4;27117:6;27113:17;27105:25;;27185:4;27179;27175:15;27167:23;;26886:311;;;:::o;27203:307::-;27264:4;27354:18;27346:6;27343:30;27340:56;;;27376:18;;:::i;:::-;27340:56;27414:29;27436:6;27414:29;:::i;:::-;27406:37;;27498:4;27492;27488:15;27480:23;;27203:307;;;:::o;27516:308::-;27578:4;27668:18;27660:6;27657:30;27654:56;;;27690:18;;:::i;:::-;27654:56;27728:29;27750:6;27728:29;:::i;:::-;27720:37;;27812:4;27806;27802:15;27794:23;;27516:308;;;:::o;27830:141::-;27879:4;27902:3;27894:11;;27925:3;27922:1;27915:14;27959:4;27956:1;27946:18;27938:26;;27830:141;;;:::o;27977:98::-;28028:6;28062:5;28056:12;28046:22;;27977:98;;;:::o;28081:99::-;28133:6;28167:5;28161:12;28151:22;;28081:99;;;:::o;28186:168::-;28269:11;28303:6;28298:3;28291:19;28343:4;28338:3;28334:14;28319:29;;28186:168;;;;:::o;28360:147::-;28461:11;28498:3;28483:18;;28360:147;;;;:::o;28513:169::-;28597:11;28631:6;28626:3;28619:19;28671:4;28666:3;28662:14;28647:29;;28513:169;;;;:::o;28688:148::-;28790:11;28827:3;28812:18;;28688:148;;;;:::o;28842:305::-;28882:3;28901:20;28919:1;28901:20;:::i;:::-;28896:25;;28935:20;28953:1;28935:20;:::i;:::-;28930:25;;29089:1;29021:66;29017:74;29014:1;29011:81;29008:107;;;29095:18;;:::i;:::-;29008:107;29139:1;29136;29132:9;29125:16;;28842:305;;;;:::o;29153:185::-;29193:1;29210:20;29228:1;29210:20;:::i;:::-;29205:25;;29244:20;29262:1;29244:20;:::i;:::-;29239:25;;29283:1;29273:35;;29288:18;;:::i;:::-;29273:35;29330:1;29327;29323:9;29318:14;;29153:185;;;;:::o;29344:348::-;29384:7;29407:20;29425:1;29407:20;:::i;:::-;29402:25;;29441:20;29459:1;29441:20;:::i;:::-;29436:25;;29629:1;29561:66;29557:74;29554:1;29551:81;29546:1;29539:9;29532:17;29528:105;29525:131;;;29636:18;;:::i;:::-;29525:131;29684:1;29681;29677:9;29666:20;;29344:348;;;;:::o;29698:191::-;29738:4;29758:20;29776:1;29758:20;:::i;:::-;29753:25;;29792:20;29810:1;29792:20;:::i;:::-;29787:25;;29831:1;29828;29825:8;29822:34;;;29836:18;;:::i;:::-;29822:34;29881:1;29878;29874:9;29866:17;;29698:191;;;;:::o;29895:96::-;29932:7;29961:24;29979:5;29961:24;:::i;:::-;29950:35;;29895:96;;;:::o;29997:90::-;30031:7;30074:5;30067:13;30060:21;30049:32;;29997:90;;;:::o;30093:77::-;30130:7;30159:5;30148:16;;30093:77;;;:::o;30176:149::-;30212:7;30252:66;30245:5;30241:78;30230:89;;30176:149;;;:::o;30331:126::-;30368:7;30408:42;30401:5;30397:54;30386:65;;30331:126;;;:::o;30463:77::-;30500:7;30529:5;30518:16;;30463:77;;;:::o;30546:154::-;30630:6;30625:3;30620;30607:30;30692:1;30683:6;30678:3;30674:16;30667:27;30546:154;;;:::o;30706:307::-;30774:1;30784:113;30798:6;30795:1;30792:13;30784:113;;;30883:1;30878:3;30874:11;30868:18;30864:1;30859:3;30855:11;30848:39;30820:2;30817:1;30813:10;30808:15;;30784:113;;;30915:6;30912:1;30909:13;30906:101;;;30995:1;30986:6;30981:3;30977:16;30970:27;30906:101;30755:258;30706:307;;;:::o;31019:320::-;31063:6;31100:1;31094:4;31090:12;31080:22;;31147:1;31141:4;31137:12;31168:18;31158:81;;31224:4;31216:6;31212:17;31202:27;;31158:81;31286:2;31278:6;31275:14;31255:18;31252:38;31249:84;;;31305:18;;:::i;:::-;31249:84;31070:269;31019:320;;;:::o;31345:281::-;31428:27;31450:4;31428:27;:::i;:::-;31420:6;31416:40;31558:6;31546:10;31543:22;31522:18;31510:10;31507:34;31504:62;31501:88;;;31569:18;;:::i;:::-;31501:88;31609:10;31605:2;31598:22;31388:238;31345:281;;:::o;31632:233::-;31671:3;31694:24;31712:5;31694:24;:::i;:::-;31685:33;;31740:66;31733:5;31730:77;31727:103;;;31810:18;;:::i;:::-;31727:103;31857:1;31850:5;31846:13;31839:20;;31632:233;;;:::o;31871:100::-;31910:7;31939:26;31959:5;31939:26;:::i;:::-;31928:37;;31871:100;;;:::o;31977:94::-;32016:7;32045:20;32059:5;32045:20;:::i;:::-;32034:31;;31977:94;;;:::o;32077:176::-;32109:1;32126:20;32144:1;32126:20;:::i;:::-;32121:25;;32160:20;32178:1;32160:20;:::i;:::-;32155:25;;32199:1;32189:35;;32204:18;;:::i;:::-;32189:35;32245:1;32242;32238:9;32233:14;;32077:176;;;;:::o;32259:180::-;32307:77;32304:1;32297:88;32404:4;32401:1;32394:15;32428:4;32425:1;32418:15;32445:180;32493:77;32490:1;32483:88;32590:4;32587:1;32580:15;32614:4;32611:1;32604:15;32631:180;32679:77;32676:1;32669:88;32776:4;32773:1;32766:15;32800:4;32797:1;32790:15;32817:180;32865:77;32862:1;32855:88;32962:4;32959:1;32952:15;32986:4;32983:1;32976:15;33003:180;33051:77;33048:1;33041:88;33148:4;33145:1;33138:15;33172:4;33169:1;33162:15;33189:117;33298:1;33295;33288:12;33312:117;33421:1;33418;33411:12;33435:117;33544:1;33541;33534:12;33558:117;33667:1;33664;33657:12;33681:117;33790:1;33787;33780:12;33804:102;33845:6;33896:2;33892:7;33887:2;33880:5;33876:14;33872:28;33862:38;;33804:102;;;:::o;33912:94::-;33945:8;33993:5;33989:2;33985:14;33964:35;;33912:94;;;:::o;34012:177::-;34152:29;34148:1;34140:6;34136:14;34129:53;34012:177;:::o;34195:176::-;34335:28;34331:1;34323:6;34319:14;34312:52;34195:176;:::o;34377:225::-;34517:34;34513:1;34505:6;34501:14;34494:58;34586:8;34581:2;34573:6;34569:15;34562:33;34377:225;:::o;34608:173::-;34748:25;34744:1;34736:6;34732:14;34725:49;34608:173;:::o;34787:170::-;34927:22;34923:1;34915:6;34911:14;34904:46;34787:170;:::o;34963:172::-;35103:24;35099:1;35091:6;35087:14;35080:48;34963:172;:::o;35141:182::-;35281:34;35277:1;35269:6;35265:14;35258:58;35141:182;:::o;35329:173::-;35469:25;35465:1;35457:6;35453:14;35446:49;35329:173;:::o;35508:234::-;35648:34;35644:1;35636:6;35632:14;35625:58;35717:17;35712:2;35704:6;35700:15;35693:42;35508:234;:::o;35748:114::-;;:::o;35868:170::-;36008:22;36004:1;35996:6;35992:14;35985:46;35868:170;:::o;36044:180::-;36184:32;36180:1;36172:6;36168:14;36161:56;36044:180;:::o;36230:181::-;36370:33;36366:1;36358:6;36354:14;36347:57;36230:181;:::o;36417:122::-;36490:24;36508:5;36490:24;:::i;:::-;36483:5;36480:35;36470:63;;36529:1;36526;36519:12;36470:63;36417:122;:::o;36545:116::-;36615:21;36630:5;36615:21;:::i;:::-;36608:5;36605:32;36595:60;;36651:1;36648;36641:12;36595:60;36545:116;:::o;36667:122::-;36740:24;36758:5;36740:24;:::i;:::-;36733:5;36730:35;36720:63;;36779:1;36776;36769:12;36720:63;36667:122;:::o;36795:120::-;36867:23;36884:5;36867:23;:::i;:::-;36860:5;36857:34;36847:62;;36905:1;36902;36895:12;36847:62;36795:120;:::o;36921:122::-;36994:24;37012:5;36994:24;:::i;:::-;36987:5;36984:35;36974:63;;37033:1;37030;37023:12;36974:63;36921:122;:::o

Swarm Source

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