ETH Price: $3,291.34 (+1.12%)
Gas: 5 Gwei

Token

CLIQU3 (C3)
 

Overview

Max Total Supply

333 C3

Holders

151

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 C3
0xe87e9d2bf3e5f52a21626e8d310472d22f1286b9
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:
CLIQU3

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-27
*/

// SPDX-License-Identifier: MIT 
// File: contracts/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: contracts/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: contracts/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * 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.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
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 simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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 sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _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}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _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) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

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

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

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

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

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

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

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

    // =============================================================
    //                        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 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 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);
        validating(from, to, tokenId);
        // 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  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  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 {}

    function validating(
        address from,
        address to,
        uint256 token) 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: contracts/CLIQU3.sol


pragma solidity ^0.8.17;








//    ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡟⣫⣿⣿⣿⣿
//    ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⢿⠛⣩⣾⣿⣿⣿⣿⣿
//    ⣿⣿⣿⣿⣿⣿⣿⣿⡛⠛⠛⠛⠛⠛⠛⢿⢻⣿⡿⠟⠋⣴⣾⣿⣿⣿⣿⣿⣿⣿
//    ⣿⣿⣿⣿⡿⢛⣋⠉⠁⠄⢀⠠⠄⠄⠄⠈⠄⠋⡂⠠⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
//    ⣿⣿⣿⣛⣛⣉⠄⢀⡤⠊⠁⠄⠄⠄⢀⠄⠄⠄⠄⠲⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿
//    ⣿⡿⠟⠋⠄⠄⡠⠊⠄⠄⠄⠄⠄⣀⣼⣤⣤⣤⣀⠄⠸⣿⣿⣿⣿⣿⣿⣿⣿⣿
//    ⣿⠛⣁⡀⠄⡠⠄⠄⠄⠄⠄⠄⢠⣿⣿⣿⣿⣿⣿⣷⣶⣿⣿⣿⣿⣿⣿⣿⣿⣿
//    ⣿⠿⢟⡉⠰⠁⠄⠄⠄⠄⠄⠄⠄⠙⠿⠿⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
//    ⡇⠄⠄⠙⠃⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠈⠉⠉⠛⠛⠛⠻⢿⣿⣿⣿⣿
//    ⣇⠄⢰⣄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠉⠻⣿⣿
//    ⣿⠄⠈⠻⣦⣤⡀⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⣦⠙⣿
//    ⣿⣄⠄⠚⢿⣿⡟⠄⠄⠄⢀⡀⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⢀⣿⣧⠸
//    ⣿⣿⣆⠄⢸⡿⠄⠄⢀⣴⣿⣿⣿⣿⣷⣶⣶⣶⣶⠄⠄⠄⠄⠄⠄⢀⣾⣿⣿⠄
//    ⣿⣿⣿⣷⡞⠁⢀⣴⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣧⡀⠄⠄⣠⣾⣿⣿⣿⣿⢀
//    ⣿⣿⣿⡿⠁⢠⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠄⠄⠘⣿⣿⡿⠟⢃⣼
//    ⣿⣿⠏⠄⠠⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠛⠉⢀⡠⢄⡠⡭⠄⣠⢠⣾⣿
//    ⠏⠄⠄⣸⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⡟⠁⠄⢀⣦⣒⣁⣒⣩⣄⣃⢀⣮⣥⣼⣿
//    ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿



contract CLIQU3 is ERC721A, DefaultOperatorFilterer, Ownable  {
    using Strings for uint256;

    uint256 public maxSupply = 3333;
    uint256 public maxMintPerAddressLimit = 1;
    uint256 public percentPerTransfer = 10;
    uint256 public wl333Counter = 0;
    uint256 public wl3000Counter = 0;
    uint256 public seed;
    uint256 public publicCost = 0.036 ether;
    uint256 public wl333Cost = 0.033 ether;
    uint256 public wl3000Cost = 0.033 ether;

    bytes32 public merkleRoot333;
    bytes32 public merkleRoot3000;
    
    string public notRevealedUri;
    string public prefix = "https://ipfs.io/ipfs/";
    string [] public collections;

    bool public pausedPublic = true;
    bool public pausedWL3000 = true;
    bool public pausedWL333 = true;
    bool public pausedTeamMint = true;
    bool public pausedBurn = true;
    bool public revealed = false;
    
    address public previosCollection = 0x6411eD216ef6243d115Ac074c20C434D6892c99A;
    address public royaltiesAddress = 0x73F52CacA22C867c4CbB6f1e923AA203B4552d77;
    address private otherContract;   
    address [] public teamList;

    mapping(uint256 => uint256) public tokenView;
    mapping(uint256 => bool) public upgradeable;
    mapping(uint256 => bool) public blacklistNFTs;
    mapping(address => uint256) public mintedInWhichWl;

    event ChangeView(uint256 tokenId, uint256 value);
    event Upgraded(uint256 tokenId);

    constructor(
        string memory _name,
        string memory _symbol,
        address _initOtherContract,
        string memory _initNotRevealedUri,
        bytes32 _initMerkleRoot333,
        bytes32 _initMerkleRoot3000
        
    ) ERC721A(_name, _symbol) {
        seed = block.timestamp % 100;
        setOtherContractAddress(_initOtherContract);
        setNotRevealedURI(_initNotRevealedUri); 
        setMerkleRootes(_initMerkleRoot3000, _initMerkleRoot333);
        teamList = [
        0xc2f71aA2763996e89484a9BFEDbFD204C89Ba5Cf, 
        0xEb2C0650121D4918FF4b2fE05fc015b68A011108, 
        0xdF50e44B6ee419E5a6870643f97EDdB4CFFa5211, 
        0x81243fA8910C238f1f87c5C6c9e66320aec7405C,
        0xACd6c2F22493DF8afF4771cd2F85CccC0fd2b2dF,
        0x4Fe55865a637dF7F56a197EFa580f5AE0B7c3be8,
        0x7823d83BEf4ab60cF64868de44BAE1fd5Fa1Be0b,
        0x8c94fa6143BD430Fa114b60CF5A3EEB5B6C88D2f,
        0x1Bd4f4ae1Ebc651168D02416D1814eAE6D2A352E,
        0x6d3A97448829acD2670BC979b063B99405861fa5,
        0xd5a4cDe2De16d084cd51c24b6169cF07Dd28bC0D,
        0x6564cBe29eeabA8b1eee4DF183068B1122097277,
        0x9043f28E48a278D24B70b056209BD019b1b07003,
        0x404AA2D581598A25FFf9C100566205d7337d5E94
        ];
        
    }


    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }

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

    function calcWorth(uint256 quantity, bytes32[] calldata _merkleProof) internal returns(uint) {
       
        if(_merkleProof.length > 0) {
            
            require(quantity == 1, "For each wl max quantity is 1");
            require(_numberMinted(msg.sender) < 2, "Reached limit of two wls");
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            
            if(mintedInWhichWl[msg.sender] == 3000){
                    require(MerkleProof.verify(_merkleProof, merkleRoot333, leaf), "Exceeded the limit for wl");
                    require(!pausedWL333, "WL minting is paused");
                    require(wl333Counter + quantity <= 333, "Reached limit of 333 tokens");

                    wl333Counter = wl333Counter + quantity;
                    return wl333Cost;
                    
            } else if(mintedInWhichWl[msg.sender] == 333){
                    require(MerkleProof.verify(_merkleProof, merkleRoot3000, leaf),"Exceeded the limit for wl");
                    require(!pausedWL3000, "WL minting is paused");
                    require(wl3000Counter + quantity <= 3000, "Reached limit of 3000 tokens");

                    wl3000Counter = wl3000Counter + quantity;
                    return wl3000Cost;
                    
            } else {

                if(MerkleProof.verify(_merkleProof, merkleRoot3000, leaf)){
                    require(!pausedWL3000, "WL minting is paused");
                    require(wl3000Counter + quantity <= 3000, "Reached limit of 3000 tokens");

                    wl3000Counter = wl3000Counter + quantity;
                    mintedInWhichWl[msg.sender] = 3000;
                    return wl3000Cost;

                } else if(MerkleProof.verify(_merkleProof, merkleRoot333, leaf)){
                    require(!pausedWL333, "WL minting is paused");
                    require(wl333Counter + quantity <= 333, "Reached limit of 333 tokens");

                    wl333Counter = wl333Counter + quantity;
                    mintedInWhichWl[msg.sender] = 333;
                    return wl333Cost;

                } else {
                    revert("You arent registered in wl");
                }
            }
            
        }
        
        require(!pausedPublic, "Public minting is paused");
        (,bytes memory response) = previosCollection.call(abi.encodeWithSignature("balanceOf(address)", msg.sender, msg.sender));

        uint256 res = abi.decode(response, (uint256));

        if(res > 0 && _numberMinted(msg.sender) + quantity <= res){
            return 0;
        }

        return publicCost;
    }

    function mint(uint256 quantity, bytes32[] calldata _merkleProof) external payable notContract{
        require(quantity > 0 && quantity <= 6, "Invalid mint amount! (max 6)");
        require(totalSupply() + quantity <= maxSupply, "Not enough tokens left");

        require(msg.value >= calcWorth(quantity, _merkleProof), "Not enough ethers paid");

        _safeMint(msg.sender, quantity);
        
    }

    function teamMint(uint256 quantity) external {
        if(msg.sender != owner()){
            require(_numberMinted(msg.sender) + quantity <= 1, "Exceeded the limit for team mint");
            require(!pausedTeamMint, "Team mint paused");
            uint256 k = 0;
            
            for (uint i = 0; i < teamList.length; i++) {
                if(teamList[i] == msg.sender){
                    k = 1;
                    }
                }

            require(k == 1, "You arent registered in team list");
        }
        
        require(totalSupply() + quantity <= maxSupply, "Not enough tokens left");
        
        _safeMint(msg.sender, quantity);

    }

    function validating(address from, address to, uint256 tokenId) internal virtual override {
        bool isContract = _isContract(to);
        if(!revealed && isContract){
            blacklistNFTs[tokenId] = true;
        }
        if(upgradeable[tokenId] != true && from != address(0)){
                (,bytes memory response) = otherContract.call(abi.encodeWithSignature("isValid(address,uint256)", to, tokenId, msg.sender));

                bool res = abi.decode(response, (bool));
                if(res == true){
                    seed = (seed + block.timestamp) % 100;
                    if(seed <= percentPerTransfer){
                        upgradeable[tokenId] = true;
                        blacklistNFTs[tokenId] = false;
                        tokenView[tokenId] = 1;
                        emit ChangeView(tokenId, 1);
                        emit Upgraded(tokenId);
                    }
                }

        }
        
    }

    function upgrade(uint256 tokenId) external {
        require(revealed, "No access to upgrade until reveal");
        require(blacklistNFTs[tokenId] == false, "Token was traded until reveal");
        upgradeable[tokenId] = true;
        tokenView[tokenId] = 1;
        emit ChangeView(tokenId, 1);
        emit Upgraded(tokenId);
    }

    function switchView(uint256 tokenId, uint256 num) external {
        require(num - 1 <= collections.length, "Invalid collection number");
        if(num == 1){
            require(upgradeable[tokenId]== true, "Token not upgraded");
        }
        tokenView[tokenId] = num;
        emit ChangeView(tokenId, num);
    }

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

        if(revealed == false) {
            return string(abi.encodePacked(prefix, notRevealedUri));
        }

        return string(abi.encodePacked(prefix, collections[tokenView[tokenId]], "/", tokenId.toString(), ".json"));

    }

    function pauseTeamMint(bool _state) public onlyOwner{
        pausedTeamMint = _state;
    }

    function setMerkleRootes(bytes32 _newMerkleRoot3000, bytes32 _newMerkleRoot333) public onlyOwner {
        merkleRoot3000 = _newMerkleRoot3000;
        merkleRoot333 = _newMerkleRoot333;
    }

    function setCost(uint256 _newPublicCost, uint256 _newWl333Cost, uint256 _newWl3000Cost) public onlyOwner {
        publicCost = _newPublicCost;
        wl333Cost = _newWl333Cost;
        wl3000Cost = _newWl3000Cost;
    }

    function setRoyaltiesAddress(address _newAddress) public onlyOwner {
        royaltiesAddress = _newAddress;
    }

    function setPreviousCollectionAddress(address _newAddress) public onlyOwner {
        previosCollection = _newAddress;
    }

    function setOtherContractAddress(address _newOtherContract) public onlyOwner {
        otherContract = _newOtherContract;
    }

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

    function setUpTeam(address[] memory _newTeam) public onlyOwner {
        teamList = _newTeam;
    }

    function addCollection(string memory _newCollection) public onlyOwner{
        collections.push(_newCollection);
    }

    function modifyCollection(string memory _modified, uint256 indx) public onlyOwner{
        collections[indx] = _modified;
    }

    function reveal() public onlyOwner {
        revealed = true;
    }

    function pausePublicMint(bool _state) public onlyOwner {
        pausedPublic = _state;
    }

    function pauseWl3000(bool _state) public onlyOwner {
        pausedWL3000 = _state;
    }

    function pauseWl333(bool _state) public onlyOwner {
        pausedWL333 = _state;
    }

    function pauseBurn(bool _state) public onlyOwner {
        pausedBurn = _state; 
    }

    function burn(uint256 from, uint256 to) public onlyOwner{
        require(!pausedBurn, "Burn is paused");
        for(uint256 i = from; i <= to; i++){
            require(ownerOf(i) == msg.sender, "Not allowed");
            _burn(i);
        }
    }

    modifier notContract() {
        require(!_isContract(msg.sender), "Contract not allowed");
        _;
    }

    function _isContract(address _addr) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(_addr)
        }
        if(size > 0 || msg.sender != tx.origin){
            return true;
        } else {
            return false;
        }
    }
    
    function withdraw(address payable _to) external onlyOwner {
        uint256 balance = address(this).balance;
        uint256 royaltis = address(this).balance / 10;
        _to.transfer(balance - royaltis);
        payable(royaltiesAddress).transfer(royaltis);
    }

    receive() external payable {

    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_initOtherContract","type":"address"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"bytes32","name":"_initMerkleRoot333","type":"bytes32"},{"internalType":"bytes32","name":"_initMerkleRoot3000","type":"bytes32"}],"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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"ChangeView","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_newCollection","type":"string"}],"name":"addCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"blacklistNFTs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"from","type":"uint256"},{"internalType":"uint256","name":"to","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"collections","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":"maxMintPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot3000","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot333","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedInWhichWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_modified","type":"string"},{"internalType":"uint256","name":"indx","type":"uint256"}],"name":"modifyCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pauseBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pausePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pauseTeamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pauseWl3000","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pauseWl333","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pausedBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausedPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausedTeamMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausedWL3000","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausedWL333","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentPerTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"previosCollection","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltiesAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"seed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicCost","type":"uint256"},{"internalType":"uint256","name":"_newWl333Cost","type":"uint256"},{"internalType":"uint256","name":"_newWl3000Cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot3000","type":"bytes32"},{"internalType":"bytes32","name":"_newMerkleRoot333","type":"bytes32"}],"name":"setMerkleRootes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOtherContract","type":"address"}],"name":"setOtherContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setPreviousCollectionAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setRoyaltiesAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_newTeam","type":"address[]"}],"name":"setUpTeam","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"switchView","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"teamList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenView","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"upgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"upgradeable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wl3000Cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wl3000Counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wl333Cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wl333Counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

610d056009556001600a908155600b556000600c819055600d55667fe5cf2bea0000600f5566753d533d968000601081905560115560c0604052601560808181527f68747470733a2f2f697066732e696f2f697066732f000000000000000000000060a05262000070908262000687565b5060178054796411ed216ef6243d115ac074c20c434d6892c99a0001010101016001600160d01b0319909116179055601880546001600160a01b0319167373f52caca22c867c4cbb6f1e923aa203b4552d77179055348015620000d257600080fd5b506040516200406e3803806200406e833981016040819052620000f59162000802565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001878760026200011c838262000687565b5060036200012b828262000687565b50600160005550506daaeb6d7670e522a718067333cd4e3b1562000278578015620001c657604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620001a757600080fd5b505af1158015620001bc573d6000803e3d6000fd5b5050505062000278565b6001600160a01b03821615620002175760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200018c565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200025e57600080fd5b505af115801562000273573d6000803e3d6000fd5b505050505b506200028690503362000451565b62000293606442620008c7565b600e55620002a184620004a3565b620002ac83620004cf565b620002b88183620004eb565b604080516101c08101825273c2f71aa2763996e89484a9bfedbfd204c89ba5cf815273eb2c0650121d4918ff4b2fe05fc015b68a011108602082015273df50e44b6ee419e5a6870643f97eddb4cffa5211918101919091527381243fa8910c238f1f87c5c6c9e66320aec7405c606082015273acd6c2f22493df8aff4771cd2f85cccc0fd2b2df6080820152734fe55865a637df7f56a197efa580f5ae0b7c3be860a0820152737823d83bef4ab60cf64868de44bae1fd5fa1be0b60c0820152738c94fa6143bd430fa114b60cf5a3eeb5b6c88d2f60e0820152731bd4f4ae1ebc651168d02416d1814eae6d2a352e610100820152736d3a97448829acd2670bc979b063b99405861fa561012082015273d5a4cde2de16d084cd51c24b6169cf07dd28bc0d610140820152736564cbe29eeaba8b1eee4df183068b1122097277610160820152739043f28e48a278d24b70b056209bd019b1b0700361018082015273404aa2d581598a25fff9c100566205d7337d5e946101a08201526200044490601a90600e62000561565b50505050505050620008ea565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620004ad62000500565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b620004d962000500565b6014620004e7828262000687565b5050565b620004f562000500565b601391909155601255565b6008546001600160a01b031633146200055f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054828255906000526020600020908101928215620005b9579160200282015b82811115620005b957825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000582565b50620005c7929150620005cb565b5090565b5b80821115620005c75760008155600101620005cc565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200060d57607f821691505b6020821081036200062e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200068257600081815260208120601f850160051c810160208610156200065d5750805b601f850160051c820191505b818110156200067e5782815560010162000669565b5050505b505050565b81516001600160401b03811115620006a357620006a3620005e2565b620006bb81620006b48454620005f8565b8462000634565b602080601f831160018114620006f35760008415620006da5750858301515b600019600386901b1c1916600185901b1785556200067e565b600085815260208120601f198616915b82811015620007245788860151825594840194600190910190840162000703565b5085821015620007435787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200076557600080fd5b81516001600160401b0380821115620007825762000782620005e2565b604051601f8301601f19908116603f01168101908282118183101715620007ad57620007ad620005e2565b81604052838152602092508683858801011115620007ca57600080fd5b600091505b83821015620007ee5785820183015181830184015290820190620007cf565b600093810190920192909252949350505050565b60008060008060008060c087890312156200081c57600080fd5b86516001600160401b03808211156200083457600080fd5b620008428a838b0162000753565b975060208901519150808211156200085957600080fd5b620008678a838b0162000753565b60408a015190975091506001600160a01b03821682146200088757600080fd5b6060890151919550808211156200089d57600080fd5b50620008ac89828a0162000753565b9350506080870151915060a087015190509295509295509295565b600082620008e557634e487b7160e01b600052601260045260246000fd5b500690565b61377480620008fa6000396000f3fe6080604052600436106103dd5760003560e01c8063770777ee116101fd578063b7bf941811610118578063d5abeb01116100ab578063f2c4ce1e1161007a578063f2c4ce1e14610b4e578063f2fde38b14610b6e578063f8dd8be614610b8e578063fbec0c6914610ba4578063fdbda0ec14610bd157600080fd5b8063d5abeb0114610ad8578063dc95c4a714610aee578063e667f50814610b0e578063e985e9c514610b2e57600080fd5b8063c9759564116100e7578063c975956414610a6d578063ce56115214610a83578063d23e091d14610aa3578063d4bfb84c14610ab957600080fd5b8063b7bf941814610a04578063b88d4fde14610a1a578063ba41b0c614610a3a578063c87b56dd14610a4d57600080fd5b80638d7f0a8511610190578063a475b5dd1161015f578063a475b5dd1461098f578063b0c78e4f146109a4578063b19c92a2146109c4578063b390c0ab146109e457600080fd5b80638d7f0a851461090f5780638da5cb5b1461093c57806395d89b411461095a578063a22cb4651461096f57600080fd5b80638693da20116101cc5780638693da20146108a357806387e71673146108b95780638bfce124146108d95780638c30ffe6146108ef57600080fd5b8063770777ee146108265780637d94792a1461083c57806380bc89651461085257806384e850d91461087357600080fd5b806332882535116102f857806357cef3db1161028b5780635e0ffccd1161025a5780635e0ffccd1461079c5780636352211e146107bc57806370a08231146107dc578063715018a6146107fc57806375dadb321461081157600080fd5b806357cef3db1461071457806358d12f9814610736578063592e03551461074c5780635977ed281461076c57600080fd5b806345977d03116102c757806345977d03146106935780634cdf0317146106b357806351830227146106d357806351cff8d9146106f457600080fd5b8063328825351461061157806341c425e01461063157806341f434341461065157806342842e0e1461067357600080fd5b8063167706db116103705780631be8db961161033f5780631be8db961461059757806323b872dd146105b757806324bb7c26146105d75780632fbba115146105f157600080fd5b8063167706db1461051357806318160ddd1461053357806319aa69b91461055057806319d96b081461057057600080fd5b8063095ea7b3116103ac578063095ea7b31461048d5780630e80378f146104af57806315893952146104cf578063165d80e8146104f357600080fd5b806301ffc9a7146103e957806306fdde031461041e578063081812fc14610440578063081c8c441461047857600080fd5b366103e457005b600080fd5b3480156103f557600080fd5b50610409610404366004612e89565b610bf1565b60405190151581526020015b60405180910390f35b34801561042a57600080fd5b50610433610c43565b6040516104159190612ef6565b34801561044c57600080fd5b5061046061045b366004612f09565b610cd5565b6040516001600160a01b039091168152602001610415565b34801561048457600080fd5b50610433610d19565b34801561049957600080fd5b506104ad6104a8366004612f37565b610da7565b005b3480156104bb57600080fd5b506104ad6104ca366004612f71565b610dc0565b3480156104db57600080fd5b506104e560105481565b604051908152602001610415565b3480156104ff57600080fd5b506017546104099062010000900460ff1681565b34801561051f57600080fd5b506104ad61052e366004612fd5565b610de2565b34801561053f57600080fd5b5060015460005403600019016104e5565b34801561055c57600080fd5b5061046061056b366004612f09565b610e01565b34801561057c57600080fd5b5060175461046090600160301b90046001600160a01b031681565b3480156105a357600080fd5b506104ad6105b2366004612f71565b610e2b565b3480156105c357600080fd5b506104ad6105d2366004613087565b610e53565b3480156105e357600080fd5b506017546104099060ff1681565b3480156105fd57600080fd5b506104ad61060c366004612f09565b610e7e565b34801561061d57600080fd5b50601854610460906001600160a01b031681565b34801561063d57600080fd5b506104ad61064c3660046130c8565b61106e565b34801561065d57600080fd5b506104606daaeb6d7670e522a718067333cd4e81565b34801561067f57600080fd5b506104ad61068e366004613087565b611081565b34801561069f57600080fd5b506104ad6106ae366004612f09565b6110a6565b3480156106bf57600080fd5b506104ad6106ce366004612f71565b6111ff565b3480156106df57600080fd5b5060175461040990600160281b900460ff1681565b34801561070057600080fd5b506104ad61070f3660046130ea565b611223565b34801561072057600080fd5b5060175461040990640100000000900460ff1681565b34801561074257600080fd5b506104e5600a5481565b34801561075857600080fd5b506104ad61076736600461317f565b6112b5565b34801561077857600080fd5b50610409610787366004612f09565b601c6020526000908152604090205460ff1681565b3480156107a857600080fd5b506104ad6107b73660046130ea565b6112f9565b3480156107c857600080fd5b506104606107d7366004612f09565b611330565b3480156107e857600080fd5b506104e56107f73660046130ea565b61133b565b34801561080857600080fd5b506104ad61138a565b34801561081d57600080fd5b5061043361139e565b34801561083257600080fd5b506104e560125481565b34801561084857600080fd5b506104e5600e5481565b34801561085e57600080fd5b50601754610409906301000000900460ff1681565b34801561087f57600080fd5b5061040961088e366004612f09565b601d6020526000908152604090205460ff1681565b3480156108af57600080fd5b506104e5600f5481565b3480156108c557600080fd5b506104ad6108d43660046131b4565b6113ab565b3480156108e557600080fd5b506104e560135481565b3480156108fb57600080fd5b506104ad61090a3660046130ea565b6113c1565b34801561091b57600080fd5b506104e561092a3660046130ea565b601e6020526000908152604090205481565b34801561094857600080fd5b506008546001600160a01b0316610460565b34801561096657600080fd5b506104336113eb565b34801561097b57600080fd5b506104ad61098a3660046131e0565b6113fa565b34801561099b57600080fd5b506104ad61140e565b3480156109b057600080fd5b506104ad6109bf366004613219565b61142d565b3480156109d057600080fd5b506104ad6109df366004612f71565b61145f565b3480156109f057600080fd5b506104ad6109ff3660046130c8565b61147a565b348015610a1057600080fd5b506104e5600c5481565b348015610a2657600080fd5b506104ad610a3536600461325e565b611540565b6104ad610a483660046132de565b61156d565b348015610a5957600080fd5b50610433610a68366004612f09565b6116d6565b348015610a7957600080fd5b506104e5600b5481565b348015610a8f57600080fd5b506104ad610a9e3660046130c8565b6117b8565b348015610aaf57600080fd5b506104e5600d5481565b348015610ac557600080fd5b5060175461040990610100900460ff1681565b348015610ae457600080fd5b506104e560095481565b348015610afa57600080fd5b506104ad610b093660046130ea565b6118c3565b348015610b1a57600080fd5b506104ad610b29366004612f71565b6118ed565b348015610b3a57600080fd5b50610409610b4936600461335d565b611913565b348015610b5a57600080fd5b506104ad610b6936600461317f565b611941565b348015610b7a57600080fd5b506104ad610b893660046130ea565b611955565b348015610b9a57600080fd5b506104e560115481565b348015610bb057600080fd5b506104e5610bbf366004612f09565b601b6020526000908152604090205481565b348015610bdd57600080fd5b50610433610bec366004612f09565b6119cb565b60006301ffc9a760e01b6001600160e01b031983161480610c2257506380ac58cd60e01b6001600160e01b03198316145b80610c3d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610c529061338b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7e9061338b565b8015610ccb5780601f10610ca057610100808354040283529160200191610ccb565b820191906000526020600020905b815481529060010190602001808311610cae57829003601f168201915b5050505050905090565b6000610ce0826119f6565b610cfd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60148054610d269061338b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d529061338b565b8015610d9f5780601f10610d7457610100808354040283529160200191610d9f565b820191906000526020600020905b815481529060010190602001808311610d8257829003601f168201915b505050505081565b81610db181611a2b565b610dbb8383611ae4565b505050565b610dc8611b84565b601780549115156101000261ff0019909216919091179055565b610dea611b84565b8051610dfd90601a906020840190612df9565b5050565b601a8181548110610e1157600080fd5b6000918252602090912001546001600160a01b0316905081565b610e33611b84565b601780549115156401000000000264ff0000000019909216919091179055565b826001600160a01b0381163314610e6d57610e6d33611a2b565b610e78848484611bde565b50505050565b6008546001600160a01b03163314610fff57600181610e9c33611d7a565b610ea691906133d5565b1115610ef95760405162461bcd60e51b815260206004820181905260248201527f457863656564656420746865206c696d697420666f72207465616d206d696e7460448201526064015b60405180910390fd5b6017546301000000900460ff1615610f465760405162461bcd60e51b815260206004820152601060248201526f1519585b481b5a5b9d081c185d5cd95960821b6044820152606401610ef0565b6000805b601a54811015610fa257336001600160a01b0316601a8281548110610f7157610f716133e8565b6000918252602090912001546001600160a01b031603610f9057600191505b80610f9a816133fe565b915050610f4a565b5080600114610ffd5760405162461bcd60e51b815260206004820152602160248201527f596f75206172656e74207265676973746572656420696e207465616d206c69736044820152601d60fa1b6064820152608401610ef0565b505b600954600154600054839190036000190161101a91906133d5565b11156110615760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610ef0565b61106b3382611da3565b50565b611076611b84565b601391909155601255565b826001600160a01b038116331461109b5761109b33611a2b565b610e78848484611dbd565b601754600160281b900460ff166111095760405162461bcd60e51b815260206004820152602160248201527f4e6f2061636365737320746f207570677261646520756e74696c2072657665616044820152601b60fa1b6064820152608401610ef0565b6000818152601d602052604090205460ff16156111685760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e207761732074726164656420756e74696c2072657665616c0000006044820152606401610ef0565b6000818152601c60209081526040808320805460ff19166001908117909155601b8352928190208390558051848152918201929092527fc6a609fa88ccb3d0851f89d1e8828b6ac3bf4117a167daecab8511586f0f0e7b910160405180910390a16040518181527f65a5e70879738a94a00f00947edae8111ae0aed9175ce342db680bf1e0fb87fc9060200160405180910390a150565b611207611b84565b60178054911515620100000262ff000019909216919091179055565b61122b611b84565b476000611239600a4761342d565b90506001600160a01b0383166108fc6112528385613441565b6040518115909202916000818181858888f1935050505015801561127a573d6000803e3d6000fd5b506018546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610e78573d6000803e3d6000fd5b6112bd611b84565b601680546001810182556000919091527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b512428901610dfd828261349a565b611301611b84565b601780546001600160a01b03909216600160301b026601000000000000600160d01b0319909216919091179055565b6000610c3d82611dd8565b60006001600160a01b038216611364576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b611392611b84565b61139c6000611e4e565b565b60158054610d269061338b565b6113b3611b84565b600f92909255601055601155565b6113c9611b84565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610c529061338b565b8161140481611a2b565b610dbb8383611ea0565b611416611b84565b6017805465ff00000000001916600160281b179055565b611435611b84565b8160168281548110611449576114496133e8565b906000526020600020019081610dbb919061349a565b611467611b84565b6017805460ff1916911515919091179055565b611482611b84565b601754640100000000900460ff16156114ce5760405162461bcd60e51b815260206004820152600e60248201526d109d5c9b881a5cc81c185d5cd95960921b6044820152606401610ef0565b815b818111610dbb57336114e182611330565b6001600160a01b0316146115255760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b6044820152606401610ef0565b61152e81611f0c565b80611538816133fe565b9150506114d0565b836001600160a01b038116331461155a5761155a33611a2b565b61156685858585611f17565b5050505050565b61157633611f5b565b156115ba5760405162461bcd60e51b815260206004820152601460248201527310dbdb9d1c9858dd081b9bdd08185b1b1bddd95960621b6044820152606401610ef0565b6000831180156115cb575060068311155b6116175760405162461bcd60e51b815260206004820152601c60248201527f496e76616c6964206d696e7420616d6f756e742120286d6178203629000000006044820152606401610ef0565b600954600154600054859190036000190161163291906133d5565b11156116795760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610ef0565b611684838383611f8a565b3410156116cc5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da08195d1a195c9cc81c185a5960521b6044820152606401610ef0565b610dbb3384611da3565b60606116e1826119f6565b61172d5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610ef0565b601754600160281b900460ff16151560000361176e57601560146040516020016117589291906135cd565b6040516020818303038152906040529050919050565b6000828152601b602052604090205460168054601592908110611793576117936133e8565b906000526020600020016117a68461268c565b604051602001611758939291906135e2565b6016546117c6600183613441565b11156118145760405162461bcd60e51b815260206004820152601960248201527f496e76616c696420636f6c6c656374696f6e206e756d626572000000000000006044820152606401610ef0565b80600103611874576000828152601c602052604090205460ff1615156001146118745760405162461bcd60e51b8152602060048201526012602482015271151bdad95b881b9bdd081d5c19dc9859195960721b6044820152606401610ef0565b6000828152601b602090815260409182902083905581518481529081018390527fc6a609fa88ccb3d0851f89d1e8828b6ac3bf4117a167daecab8511586f0f0e7b910160405180910390a15050565b6118cb611b84565b601880546001600160a01b0319166001600160a01b0392909216919091179055565b6118f5611b84565b6017805491151563010000000263ff00000019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b611949611b84565b6014610dfd828261349a565b61195d611b84565b6001600160a01b0381166119c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ef0565b61106b81611e4e565b601681815481106119db57600080fd5b906000526020600020016000915090508054610d269061338b565b600081600111158015611a0a575060005482105b8015610c3d575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b1561106b57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611a98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abc9190613630565b61106b57604051633b79c77360e21b81526001600160a01b0382166004820152602401610ef0565b6000611aef82611330565b9050336001600160a01b03821614611b2857611b0b8133611913565b611b28576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0316331461139c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef0565b6000611be982611dd8565b9050836001600160a01b0316816001600160a01b031614611c1c5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054611c488187335b6001600160a01b039081169116811491141790565b611c7357611c568633611913565b611c7357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516611c9a57604051633a954ecd60e21b815260040160405180910390fd5b611ca586868661271f565b8015611cb057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611d4257600184016000818152600460205260408120549003611d40576000548114611d405760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061371f83398151915260405160405180910390a45b505050505050565b6001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b610dfd82826040518060200160405280600081525061292e565b610dbb83838360405180602001604052806000815250611540565b60008180600111611e3557600054811015611e355760008181526004602052604081205490600160e01b82169003611e33575b80600003611e2c575060001901600081815260046020526040902054611e0b565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61106b816000612994565b611f22848484610e53565b6001600160a01b0383163b15610e7857611f3e84848484612acc565b610e78576040516368d2bf6b60e11b815260040160405180910390fd5b6000813b80151580611f6d5750333214155b15611f7b5750600192915050565b50600092915050565b50919050565b6000811561253c5783600114611fe25760405162461bcd60e51b815260206004820152601d60248201527f466f72206561636820776c206d6178207175616e7469747920697320310000006044820152606401610ef0565b6002611fed33611d7a565b1061203a5760405162461bcd60e51b815260206004820152601860248201527f52656163686564206c696d6974206f662074776f20776c7300000000000000006044820152606401610ef0565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160408051601f198184030181529181528151602092830120336000908152601e909352912054909150610bb8036121b8576120cd848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050612bb8565b6121155760405162461bcd60e51b8152602060048201526019602482015278115e18d959591959081d1a19481b1a5b5a5d08199bdc881ddb603a1b6044820152606401610ef0565b60175462010000900460ff161561213e5760405162461bcd60e51b8152600401610ef09061364d565b61014d85600c5461214f91906133d5565b111561219d5760405162461bcd60e51b815260206004820152601b60248201527f52656163686564206c696d6974206f662033333320746f6b656e7300000000006044820152606401610ef0565b84600c546121ab91906133d5565b600c555050601054611e2c565b336000908152601e602052604090205461014d036122fb57612211848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050612bb8565b6122595760405162461bcd60e51b8152602060048201526019602482015278115e18d959591959081d1a19481b1a5b5a5d08199bdc881ddb603a1b6044820152606401610ef0565b601754610100900460ff16156122815760405162461bcd60e51b8152600401610ef09061364d565b610bb885600d5461229291906133d5565b11156122e05760405162461bcd60e51b815260206004820152601c60248201527f52656163686564206c696d6974206f66203330303020746f6b656e73000000006044820152606401610ef0565b84600d546122ee91906133d5565b600d555050601154611e2c565b61233c848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050612bb8565b156123f757601754610100900460ff16156123695760405162461bcd60e51b8152600401610ef09061364d565b610bb885600d5461237a91906133d5565b11156123c85760405162461bcd60e51b815260206004820152601c60248201527f52656163686564206c696d6974206f66203330303020746f6b656e73000000006044820152606401610ef0565b84600d546123d691906133d5565b600d555050336000908152601e60205260409020610bb89055601154611e2c565b612438848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050612bb8565b156124f45760175462010000900460ff16156124665760405162461bcd60e51b8152600401610ef09061364d565b61014d85600c5461247791906133d5565b11156124c55760405162461bcd60e51b815260206004820152601b60248201527f52656163686564206c696d6974206f662033333320746f6b656e7300000000006044820152606401610ef0565b84600c546124d391906133d5565b600c555050336000908152601e6020526040902061014d9055601054611e2c565b60405162461bcd60e51b815260206004820152601a60248201527f596f75206172656e74207265676973746572656420696e20776c0000000000006044820152606401610ef0565b60175460ff161561258f5760405162461bcd60e51b815260206004820152601860248201527f5075626c6963206d696e74696e672069732070617573656400000000000000006044820152606401610ef0565b60175460405133602482018190526044820152600091600160301b90046001600160a01b03169060640160408051601f198184030181529181526020820180516001600160e01b03166370a0823160e01b179052516125ee919061367b565b6000604051808303816000865af19150503d806000811461262b576040519150601f19603f3d011682016040523d82523d6000602084013e612630565b606091505b5091505060008180602001905181019061264a9190613697565b905060008111801561266f5750808661266233611d7a565b61266c91906133d5565b11155b1561267f57600092505050611e2c565b5050600f54949350505050565b6060600061269983612bce565b600101905060008167ffffffffffffffff8111156126b9576126b9612f8e565b6040519080825280601f01601f1916602001820160405280156126e3576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846126ed57509392505050565b600061272a83611f5b565b601754909150600160281b900460ff161580156127445750805b15612763576000828152601d60205260409020805460ff191660011790555b6000828152601c602052604090205460ff16151560011480159061278f57506001600160a01b03841615155b15610e78576019546040516001600160a01b03858116602483015260448201859052336064830152600092169060840160408051601f198184030181529181526020820180516001600160e01b03166316591e6160e21b179052516127f4919061367b565b6000604051808303816000865af19150503d8060008114612831576040519150601f19603f3d011682016040523d82523d6000602084013e612836565b606091505b509150506000818060200190518101906128509190613630565b9050801515600103611d7257606442600e5461286c91906133d5565b61287691906136b0565b600e819055600b5410611d72576000848152601c602090815260408083208054600160ff199182168117909255601d845282852080549091169055601b8352928190208390558051878152918201929092527fc6a609fa88ccb3d0851f89d1e8828b6ac3bf4117a167daecab8511586f0f0e7b910160405180910390a16040518481527f65a5e70879738a94a00f00947edae8111ae0aed9175ce342db680bf1e0fb87fc9060200160405180910390a1505050505050565b6129388383612ca6565b6001600160a01b0383163b15610dbb576000548281035b6129626000868380600101945086612acc565b61297f576040516368d2bf6b60e11b815260040160405180910390fd5b81811061294f57816000541461156657600080fd5b600061299f83611dd8565b9050806000806129bd86600090815260066020526040902080549091565b9150915084156129fd576129d2818433611c33565b6129fd576129e08333611913565b6129fd57604051632ce44b5f60e11b815260040160405180910390fd5b8015612a0857600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003612a9657600186016000818152600460205260408120549003612a94576000548114612a945760008181526004602052604090208590555b505b60405186906000906001600160a01b0386169060008051602061371f833981519152908390a45050600180548101905550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612b019033908990889088906004016136c4565b6020604051808303816000875af1925050508015612b3c575060408051601f3d908101601f19168201909252612b3991810190613701565b60015b612b9a573d808015612b6a576040519150601f19603f3d011682016040523d82523d6000602084013e612b6f565b606091505b508051600003612b92576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600082612bc58584612d80565b14949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310612c0d5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612c39576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612c5757662386f26fc10000830492506010015b6305f5e1008310612c6f576305f5e100830492506008015b6127108310612c8357612710830492506004015b60648310612c95576064830492506002015b600a8310610c3d5760010192915050565b6000805490829003612ccb5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b1783179055828401908390839060008051602061371f8339815191528180a4600183015b818114612d56578083600060008051602061371f833981519152600080a4600101612d30565b5081600003612d7757604051622e076360e81b815260040160405180910390fd5b60005550505050565b600081815b8451811015612dc557612db182868381518110612da457612da46133e8565b6020026020010151612dcd565b915080612dbd816133fe565b915050612d85565b509392505050565b6000818310612de9576000828152602084905260409020611e2c565b5060009182526020526040902090565b828054828255906000526020600020908101928215612e4e579160200282015b82811115612e4e57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612e19565b50612e5a929150612e5e565b5090565b5b80821115612e5a5760008155600101612e5f565b6001600160e01b03198116811461106b57600080fd5b600060208284031215612e9b57600080fd5b8135611e2c81612e73565b60005b83811015612ec1578181015183820152602001612ea9565b50506000910152565b60008151808452612ee2816020860160208601612ea6565b601f01601f19169290920160200192915050565b602081526000611e2c6020830184612eca565b600060208284031215612f1b57600080fd5b5035919050565b6001600160a01b038116811461106b57600080fd5b60008060408385031215612f4a57600080fd5b8235612f5581612f22565b946020939093013593505050565b801515811461106b57600080fd5b600060208284031215612f8357600080fd5b8135611e2c81612f63565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612fcd57612fcd612f8e565b604052919050565b60006020808385031215612fe857600080fd5b823567ffffffffffffffff8082111561300057600080fd5b818501915085601f83011261301457600080fd5b81358181111561302657613026612f8e565b8060051b9150613037848301612fa4565b818152918301840191848101908884111561305157600080fd5b938501935b8385101561307b578435925061306b83612f22565b8282529385019390850190613056565b98975050505050505050565b60008060006060848603121561309c57600080fd5b83356130a781612f22565b925060208401356130b781612f22565b929592945050506040919091013590565b600080604083850312156130db57600080fd5b50508035926020909101359150565b6000602082840312156130fc57600080fd5b8135611e2c81612f22565b600067ffffffffffffffff83111561312157613121612f8e565b613134601f8401601f1916602001612fa4565b905082815283838301111561314857600080fd5b828260208301376000602084830101529392505050565b600082601f83011261317057600080fd5b611e2c83833560208501613107565b60006020828403121561319157600080fd5b813567ffffffffffffffff8111156131a857600080fd5b612bb08482850161315f565b6000806000606084860312156131c957600080fd5b505081359360208301359350604090920135919050565b600080604083850312156131f357600080fd5b82356131fe81612f22565b9150602083013561320e81612f63565b809150509250929050565b6000806040838503121561322c57600080fd5b823567ffffffffffffffff81111561324357600080fd5b61324f8582860161315f565b95602094909401359450505050565b6000806000806080858703121561327457600080fd5b843561327f81612f22565b9350602085013561328f81612f22565b925060408501359150606085013567ffffffffffffffff8111156132b257600080fd5b8501601f810187136132c357600080fd5b6132d287823560208401613107565b91505092959194509250565b6000806000604084860312156132f357600080fd5b83359250602084013567ffffffffffffffff8082111561331257600080fd5b818601915086601f83011261332657600080fd5b81358181111561333557600080fd5b8760208260051b850101111561334a57600080fd5b6020830194508093505050509250925092565b6000806040838503121561337057600080fd5b823561337b81612f22565b9150602083013561320e81612f22565b600181811c9082168061339f57607f821691505b602082108103611f8457634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b80820180821115610c3d57610c3d6133bf565b634e487b7160e01b600052603260045260246000fd5b600060018201613410576134106133bf565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261343c5761343c613417565b500490565b81810381811115610c3d57610c3d6133bf565b601f821115610dbb57600081815260208120601f850160051c8101602086101561347b5750805b601f850160051c820191505b81811015611d7257828155600101613487565b815167ffffffffffffffff8111156134b4576134b4612f8e565b6134c8816134c2845461338b565b84613454565b602080601f8311600181146134fd57600084156134e55750858301515b600019600386901b1c1916600185901b178555611d72565b600085815260208120601f198616915b8281101561352c5788860151825594840194600190910190840161350d565b508582101561354a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600081546135678161338b565b6001828116801561357f5760018114613594576135c3565b60ff19841687528215158302870194506135c3565b8560005260208060002060005b858110156135ba5781548a8201529084019082016135a1565b50505082870194505b5050505092915050565b6000612bb06135dc838661355a565b8461355a565b60006135f76135f1838761355a565b8561355a565b602f60f81b81528351613611816001840160208801612ea6565b64173539b7b760d91b6001929091019182015260060195945050505050565b60006020828403121561364257600080fd5b8151611e2c81612f63565b60208082526014908201527315d3081b5a5b9d1a5b99c81a5cc81c185d5cd95960621b604082015260600190565b6000825161368d818460208701612ea6565b9190910192915050565b6000602082840312156136a957600080fd5b5051919050565b6000826136bf576136bf613417565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906136f790830184612eca565b9695505050505050565b60006020828403121561371357600080fd5b8151611e2c81612e7356feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212200476b7b680c191e6cd36d03ef14b90d7a846beb0f061343da777352f7d81450d64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000009ec745a993ce5cca07e0b56af93827d7dd30f8c100000000000000000000000000000000000000000000000000000000000001409e84f612ebd6f790738dc3661df81f2856aad86df567f5812384c8f37e8c22f3df9caaa2ca1442e346952c7a1739ad4286a8bb379eb2d75221c88c1257d317480000000000000000000000000000000000000000000000000000000000000006434c49515533000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024333000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5441736b6e52324364626f4d4c4b79344879336f694b42465a6f5176444a5556357059366345716752314658000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103dd5760003560e01c8063770777ee116101fd578063b7bf941811610118578063d5abeb01116100ab578063f2c4ce1e1161007a578063f2c4ce1e14610b4e578063f2fde38b14610b6e578063f8dd8be614610b8e578063fbec0c6914610ba4578063fdbda0ec14610bd157600080fd5b8063d5abeb0114610ad8578063dc95c4a714610aee578063e667f50814610b0e578063e985e9c514610b2e57600080fd5b8063c9759564116100e7578063c975956414610a6d578063ce56115214610a83578063d23e091d14610aa3578063d4bfb84c14610ab957600080fd5b8063b7bf941814610a04578063b88d4fde14610a1a578063ba41b0c614610a3a578063c87b56dd14610a4d57600080fd5b80638d7f0a8511610190578063a475b5dd1161015f578063a475b5dd1461098f578063b0c78e4f146109a4578063b19c92a2146109c4578063b390c0ab146109e457600080fd5b80638d7f0a851461090f5780638da5cb5b1461093c57806395d89b411461095a578063a22cb4651461096f57600080fd5b80638693da20116101cc5780638693da20146108a357806387e71673146108b95780638bfce124146108d95780638c30ffe6146108ef57600080fd5b8063770777ee146108265780637d94792a1461083c57806380bc89651461085257806384e850d91461087357600080fd5b806332882535116102f857806357cef3db1161028b5780635e0ffccd1161025a5780635e0ffccd1461079c5780636352211e146107bc57806370a08231146107dc578063715018a6146107fc57806375dadb321461081157600080fd5b806357cef3db1461071457806358d12f9814610736578063592e03551461074c5780635977ed281461076c57600080fd5b806345977d03116102c757806345977d03146106935780634cdf0317146106b357806351830227146106d357806351cff8d9146106f457600080fd5b8063328825351461061157806341c425e01461063157806341f434341461065157806342842e0e1461067357600080fd5b8063167706db116103705780631be8db961161033f5780631be8db961461059757806323b872dd146105b757806324bb7c26146105d75780632fbba115146105f157600080fd5b8063167706db1461051357806318160ddd1461053357806319aa69b91461055057806319d96b081461057057600080fd5b8063095ea7b3116103ac578063095ea7b31461048d5780630e80378f146104af57806315893952146104cf578063165d80e8146104f357600080fd5b806301ffc9a7146103e957806306fdde031461041e578063081812fc14610440578063081c8c441461047857600080fd5b366103e457005b600080fd5b3480156103f557600080fd5b50610409610404366004612e89565b610bf1565b60405190151581526020015b60405180910390f35b34801561042a57600080fd5b50610433610c43565b6040516104159190612ef6565b34801561044c57600080fd5b5061046061045b366004612f09565b610cd5565b6040516001600160a01b039091168152602001610415565b34801561048457600080fd5b50610433610d19565b34801561049957600080fd5b506104ad6104a8366004612f37565b610da7565b005b3480156104bb57600080fd5b506104ad6104ca366004612f71565b610dc0565b3480156104db57600080fd5b506104e560105481565b604051908152602001610415565b3480156104ff57600080fd5b506017546104099062010000900460ff1681565b34801561051f57600080fd5b506104ad61052e366004612fd5565b610de2565b34801561053f57600080fd5b5060015460005403600019016104e5565b34801561055c57600080fd5b5061046061056b366004612f09565b610e01565b34801561057c57600080fd5b5060175461046090600160301b90046001600160a01b031681565b3480156105a357600080fd5b506104ad6105b2366004612f71565b610e2b565b3480156105c357600080fd5b506104ad6105d2366004613087565b610e53565b3480156105e357600080fd5b506017546104099060ff1681565b3480156105fd57600080fd5b506104ad61060c366004612f09565b610e7e565b34801561061d57600080fd5b50601854610460906001600160a01b031681565b34801561063d57600080fd5b506104ad61064c3660046130c8565b61106e565b34801561065d57600080fd5b506104606daaeb6d7670e522a718067333cd4e81565b34801561067f57600080fd5b506104ad61068e366004613087565b611081565b34801561069f57600080fd5b506104ad6106ae366004612f09565b6110a6565b3480156106bf57600080fd5b506104ad6106ce366004612f71565b6111ff565b3480156106df57600080fd5b5060175461040990600160281b900460ff1681565b34801561070057600080fd5b506104ad61070f3660046130ea565b611223565b34801561072057600080fd5b5060175461040990640100000000900460ff1681565b34801561074257600080fd5b506104e5600a5481565b34801561075857600080fd5b506104ad61076736600461317f565b6112b5565b34801561077857600080fd5b50610409610787366004612f09565b601c6020526000908152604090205460ff1681565b3480156107a857600080fd5b506104ad6107b73660046130ea565b6112f9565b3480156107c857600080fd5b506104606107d7366004612f09565b611330565b3480156107e857600080fd5b506104e56107f73660046130ea565b61133b565b34801561080857600080fd5b506104ad61138a565b34801561081d57600080fd5b5061043361139e565b34801561083257600080fd5b506104e560125481565b34801561084857600080fd5b506104e5600e5481565b34801561085e57600080fd5b50601754610409906301000000900460ff1681565b34801561087f57600080fd5b5061040961088e366004612f09565b601d6020526000908152604090205460ff1681565b3480156108af57600080fd5b506104e5600f5481565b3480156108c557600080fd5b506104ad6108d43660046131b4565b6113ab565b3480156108e557600080fd5b506104e560135481565b3480156108fb57600080fd5b506104ad61090a3660046130ea565b6113c1565b34801561091b57600080fd5b506104e561092a3660046130ea565b601e6020526000908152604090205481565b34801561094857600080fd5b506008546001600160a01b0316610460565b34801561096657600080fd5b506104336113eb565b34801561097b57600080fd5b506104ad61098a3660046131e0565b6113fa565b34801561099b57600080fd5b506104ad61140e565b3480156109b057600080fd5b506104ad6109bf366004613219565b61142d565b3480156109d057600080fd5b506104ad6109df366004612f71565b61145f565b3480156109f057600080fd5b506104ad6109ff3660046130c8565b61147a565b348015610a1057600080fd5b506104e5600c5481565b348015610a2657600080fd5b506104ad610a3536600461325e565b611540565b6104ad610a483660046132de565b61156d565b348015610a5957600080fd5b50610433610a68366004612f09565b6116d6565b348015610a7957600080fd5b506104e5600b5481565b348015610a8f57600080fd5b506104ad610a9e3660046130c8565b6117b8565b348015610aaf57600080fd5b506104e5600d5481565b348015610ac557600080fd5b5060175461040990610100900460ff1681565b348015610ae457600080fd5b506104e560095481565b348015610afa57600080fd5b506104ad610b093660046130ea565b6118c3565b348015610b1a57600080fd5b506104ad610b29366004612f71565b6118ed565b348015610b3a57600080fd5b50610409610b4936600461335d565b611913565b348015610b5a57600080fd5b506104ad610b6936600461317f565b611941565b348015610b7a57600080fd5b506104ad610b893660046130ea565b611955565b348015610b9a57600080fd5b506104e560115481565b348015610bb057600080fd5b506104e5610bbf366004612f09565b601b6020526000908152604090205481565b348015610bdd57600080fd5b50610433610bec366004612f09565b6119cb565b60006301ffc9a760e01b6001600160e01b031983161480610c2257506380ac58cd60e01b6001600160e01b03198316145b80610c3d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610c529061338b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7e9061338b565b8015610ccb5780601f10610ca057610100808354040283529160200191610ccb565b820191906000526020600020905b815481529060010190602001808311610cae57829003601f168201915b5050505050905090565b6000610ce0826119f6565b610cfd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60148054610d269061338b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d529061338b565b8015610d9f5780601f10610d7457610100808354040283529160200191610d9f565b820191906000526020600020905b815481529060010190602001808311610d8257829003601f168201915b505050505081565b81610db181611a2b565b610dbb8383611ae4565b505050565b610dc8611b84565b601780549115156101000261ff0019909216919091179055565b610dea611b84565b8051610dfd90601a906020840190612df9565b5050565b601a8181548110610e1157600080fd5b6000918252602090912001546001600160a01b0316905081565b610e33611b84565b601780549115156401000000000264ff0000000019909216919091179055565b826001600160a01b0381163314610e6d57610e6d33611a2b565b610e78848484611bde565b50505050565b6008546001600160a01b03163314610fff57600181610e9c33611d7a565b610ea691906133d5565b1115610ef95760405162461bcd60e51b815260206004820181905260248201527f457863656564656420746865206c696d697420666f72207465616d206d696e7460448201526064015b60405180910390fd5b6017546301000000900460ff1615610f465760405162461bcd60e51b815260206004820152601060248201526f1519585b481b5a5b9d081c185d5cd95960821b6044820152606401610ef0565b6000805b601a54811015610fa257336001600160a01b0316601a8281548110610f7157610f716133e8565b6000918252602090912001546001600160a01b031603610f9057600191505b80610f9a816133fe565b915050610f4a565b5080600114610ffd5760405162461bcd60e51b815260206004820152602160248201527f596f75206172656e74207265676973746572656420696e207465616d206c69736044820152601d60fa1b6064820152608401610ef0565b505b600954600154600054839190036000190161101a91906133d5565b11156110615760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610ef0565b61106b3382611da3565b50565b611076611b84565b601391909155601255565b826001600160a01b038116331461109b5761109b33611a2b565b610e78848484611dbd565b601754600160281b900460ff166111095760405162461bcd60e51b815260206004820152602160248201527f4e6f2061636365737320746f207570677261646520756e74696c2072657665616044820152601b60fa1b6064820152608401610ef0565b6000818152601d602052604090205460ff16156111685760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e207761732074726164656420756e74696c2072657665616c0000006044820152606401610ef0565b6000818152601c60209081526040808320805460ff19166001908117909155601b8352928190208390558051848152918201929092527fc6a609fa88ccb3d0851f89d1e8828b6ac3bf4117a167daecab8511586f0f0e7b910160405180910390a16040518181527f65a5e70879738a94a00f00947edae8111ae0aed9175ce342db680bf1e0fb87fc9060200160405180910390a150565b611207611b84565b60178054911515620100000262ff000019909216919091179055565b61122b611b84565b476000611239600a4761342d565b90506001600160a01b0383166108fc6112528385613441565b6040518115909202916000818181858888f1935050505015801561127a573d6000803e3d6000fd5b506018546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610e78573d6000803e3d6000fd5b6112bd611b84565b601680546001810182556000919091527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b512428901610dfd828261349a565b611301611b84565b601780546001600160a01b03909216600160301b026601000000000000600160d01b0319909216919091179055565b6000610c3d82611dd8565b60006001600160a01b038216611364576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b611392611b84565b61139c6000611e4e565b565b60158054610d269061338b565b6113b3611b84565b600f92909255601055601155565b6113c9611b84565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610c529061338b565b8161140481611a2b565b610dbb8383611ea0565b611416611b84565b6017805465ff00000000001916600160281b179055565b611435611b84565b8160168281548110611449576114496133e8565b906000526020600020019081610dbb919061349a565b611467611b84565b6017805460ff1916911515919091179055565b611482611b84565b601754640100000000900460ff16156114ce5760405162461bcd60e51b815260206004820152600e60248201526d109d5c9b881a5cc81c185d5cd95960921b6044820152606401610ef0565b815b818111610dbb57336114e182611330565b6001600160a01b0316146115255760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b6044820152606401610ef0565b61152e81611f0c565b80611538816133fe565b9150506114d0565b836001600160a01b038116331461155a5761155a33611a2b565b61156685858585611f17565b5050505050565b61157633611f5b565b156115ba5760405162461bcd60e51b815260206004820152601460248201527310dbdb9d1c9858dd081b9bdd08185b1b1bddd95960621b6044820152606401610ef0565b6000831180156115cb575060068311155b6116175760405162461bcd60e51b815260206004820152601c60248201527f496e76616c6964206d696e7420616d6f756e742120286d6178203629000000006044820152606401610ef0565b600954600154600054859190036000190161163291906133d5565b11156116795760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610ef0565b611684838383611f8a565b3410156116cc5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da08195d1a195c9cc81c185a5960521b6044820152606401610ef0565b610dbb3384611da3565b60606116e1826119f6565b61172d5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610ef0565b601754600160281b900460ff16151560000361176e57601560146040516020016117589291906135cd565b6040516020818303038152906040529050919050565b6000828152601b602052604090205460168054601592908110611793576117936133e8565b906000526020600020016117a68461268c565b604051602001611758939291906135e2565b6016546117c6600183613441565b11156118145760405162461bcd60e51b815260206004820152601960248201527f496e76616c696420636f6c6c656374696f6e206e756d626572000000000000006044820152606401610ef0565b80600103611874576000828152601c602052604090205460ff1615156001146118745760405162461bcd60e51b8152602060048201526012602482015271151bdad95b881b9bdd081d5c19dc9859195960721b6044820152606401610ef0565b6000828152601b602090815260409182902083905581518481529081018390527fc6a609fa88ccb3d0851f89d1e8828b6ac3bf4117a167daecab8511586f0f0e7b910160405180910390a15050565b6118cb611b84565b601880546001600160a01b0319166001600160a01b0392909216919091179055565b6118f5611b84565b6017805491151563010000000263ff00000019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b611949611b84565b6014610dfd828261349a565b61195d611b84565b6001600160a01b0381166119c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ef0565b61106b81611e4e565b601681815481106119db57600080fd5b906000526020600020016000915090508054610d269061338b565b600081600111158015611a0a575060005482105b8015610c3d575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b1561106b57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611a98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abc9190613630565b61106b57604051633b79c77360e21b81526001600160a01b0382166004820152602401610ef0565b6000611aef82611330565b9050336001600160a01b03821614611b2857611b0b8133611913565b611b28576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0316331461139c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef0565b6000611be982611dd8565b9050836001600160a01b0316816001600160a01b031614611c1c5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054611c488187335b6001600160a01b039081169116811491141790565b611c7357611c568633611913565b611c7357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516611c9a57604051633a954ecd60e21b815260040160405180910390fd5b611ca586868661271f565b8015611cb057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611d4257600184016000818152600460205260408120549003611d40576000548114611d405760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061371f83398151915260405160405180910390a45b505050505050565b6001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b610dfd82826040518060200160405280600081525061292e565b610dbb83838360405180602001604052806000815250611540565b60008180600111611e3557600054811015611e355760008181526004602052604081205490600160e01b82169003611e33575b80600003611e2c575060001901600081815260046020526040902054611e0b565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61106b816000612994565b611f22848484610e53565b6001600160a01b0383163b15610e7857611f3e84848484612acc565b610e78576040516368d2bf6b60e11b815260040160405180910390fd5b6000813b80151580611f6d5750333214155b15611f7b5750600192915050565b50600092915050565b50919050565b6000811561253c5783600114611fe25760405162461bcd60e51b815260206004820152601d60248201527f466f72206561636820776c206d6178207175616e7469747920697320310000006044820152606401610ef0565b6002611fed33611d7a565b1061203a5760405162461bcd60e51b815260206004820152601860248201527f52656163686564206c696d6974206f662074776f20776c7300000000000000006044820152606401610ef0565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160408051601f198184030181529181528151602092830120336000908152601e909352912054909150610bb8036121b8576120cd848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050612bb8565b6121155760405162461bcd60e51b8152602060048201526019602482015278115e18d959591959081d1a19481b1a5b5a5d08199bdc881ddb603a1b6044820152606401610ef0565b60175462010000900460ff161561213e5760405162461bcd60e51b8152600401610ef09061364d565b61014d85600c5461214f91906133d5565b111561219d5760405162461bcd60e51b815260206004820152601b60248201527f52656163686564206c696d6974206f662033333320746f6b656e7300000000006044820152606401610ef0565b84600c546121ab91906133d5565b600c555050601054611e2c565b336000908152601e602052604090205461014d036122fb57612211848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050612bb8565b6122595760405162461bcd60e51b8152602060048201526019602482015278115e18d959591959081d1a19481b1a5b5a5d08199bdc881ddb603a1b6044820152606401610ef0565b601754610100900460ff16156122815760405162461bcd60e51b8152600401610ef09061364d565b610bb885600d5461229291906133d5565b11156122e05760405162461bcd60e51b815260206004820152601c60248201527f52656163686564206c696d6974206f66203330303020746f6b656e73000000006044820152606401610ef0565b84600d546122ee91906133d5565b600d555050601154611e2c565b61233c848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050612bb8565b156123f757601754610100900460ff16156123695760405162461bcd60e51b8152600401610ef09061364d565b610bb885600d5461237a91906133d5565b11156123c85760405162461bcd60e51b815260206004820152601c60248201527f52656163686564206c696d6974206f66203330303020746f6b656e73000000006044820152606401610ef0565b84600d546123d691906133d5565b600d555050336000908152601e60205260409020610bb89055601154611e2c565b612438848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050612bb8565b156124f45760175462010000900460ff16156124665760405162461bcd60e51b8152600401610ef09061364d565b61014d85600c5461247791906133d5565b11156124c55760405162461bcd60e51b815260206004820152601b60248201527f52656163686564206c696d6974206f662033333320746f6b656e7300000000006044820152606401610ef0565b84600c546124d391906133d5565b600c555050336000908152601e6020526040902061014d9055601054611e2c565b60405162461bcd60e51b815260206004820152601a60248201527f596f75206172656e74207265676973746572656420696e20776c0000000000006044820152606401610ef0565b60175460ff161561258f5760405162461bcd60e51b815260206004820152601860248201527f5075626c6963206d696e74696e672069732070617573656400000000000000006044820152606401610ef0565b60175460405133602482018190526044820152600091600160301b90046001600160a01b03169060640160408051601f198184030181529181526020820180516001600160e01b03166370a0823160e01b179052516125ee919061367b565b6000604051808303816000865af19150503d806000811461262b576040519150601f19603f3d011682016040523d82523d6000602084013e612630565b606091505b5091505060008180602001905181019061264a9190613697565b905060008111801561266f5750808661266233611d7a565b61266c91906133d5565b11155b1561267f57600092505050611e2c565b5050600f54949350505050565b6060600061269983612bce565b600101905060008167ffffffffffffffff8111156126b9576126b9612f8e565b6040519080825280601f01601f1916602001820160405280156126e3576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846126ed57509392505050565b600061272a83611f5b565b601754909150600160281b900460ff161580156127445750805b15612763576000828152601d60205260409020805460ff191660011790555b6000828152601c602052604090205460ff16151560011480159061278f57506001600160a01b03841615155b15610e78576019546040516001600160a01b03858116602483015260448201859052336064830152600092169060840160408051601f198184030181529181526020820180516001600160e01b03166316591e6160e21b179052516127f4919061367b565b6000604051808303816000865af19150503d8060008114612831576040519150601f19603f3d011682016040523d82523d6000602084013e612836565b606091505b509150506000818060200190518101906128509190613630565b9050801515600103611d7257606442600e5461286c91906133d5565b61287691906136b0565b600e819055600b5410611d72576000848152601c602090815260408083208054600160ff199182168117909255601d845282852080549091169055601b8352928190208390558051878152918201929092527fc6a609fa88ccb3d0851f89d1e8828b6ac3bf4117a167daecab8511586f0f0e7b910160405180910390a16040518481527f65a5e70879738a94a00f00947edae8111ae0aed9175ce342db680bf1e0fb87fc9060200160405180910390a1505050505050565b6129388383612ca6565b6001600160a01b0383163b15610dbb576000548281035b6129626000868380600101945086612acc565b61297f576040516368d2bf6b60e11b815260040160405180910390fd5b81811061294f57816000541461156657600080fd5b600061299f83611dd8565b9050806000806129bd86600090815260066020526040902080549091565b9150915084156129fd576129d2818433611c33565b6129fd576129e08333611913565b6129fd57604051632ce44b5f60e11b815260040160405180910390fd5b8015612a0857600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003612a9657600186016000818152600460205260408120549003612a94576000548114612a945760008181526004602052604090208590555b505b60405186906000906001600160a01b0386169060008051602061371f833981519152908390a45050600180548101905550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612b019033908990889088906004016136c4565b6020604051808303816000875af1925050508015612b3c575060408051601f3d908101601f19168201909252612b3991810190613701565b60015b612b9a573d808015612b6a576040519150601f19603f3d011682016040523d82523d6000602084013e612b6f565b606091505b508051600003612b92576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600082612bc58584612d80565b14949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310612c0d5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612c39576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612c5757662386f26fc10000830492506010015b6305f5e1008310612c6f576305f5e100830492506008015b6127108310612c8357612710830492506004015b60648310612c95576064830492506002015b600a8310610c3d5760010192915050565b6000805490829003612ccb5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b1783179055828401908390839060008051602061371f8339815191528180a4600183015b818114612d56578083600060008051602061371f833981519152600080a4600101612d30565b5081600003612d7757604051622e076360e81b815260040160405180910390fd5b60005550505050565b600081815b8451811015612dc557612db182868381518110612da457612da46133e8565b6020026020010151612dcd565b915080612dbd816133fe565b915050612d85565b509392505050565b6000818310612de9576000828152602084905260409020611e2c565b5060009182526020526040902090565b828054828255906000526020600020908101928215612e4e579160200282015b82811115612e4e57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612e19565b50612e5a929150612e5e565b5090565b5b80821115612e5a5760008155600101612e5f565b6001600160e01b03198116811461106b57600080fd5b600060208284031215612e9b57600080fd5b8135611e2c81612e73565b60005b83811015612ec1578181015183820152602001612ea9565b50506000910152565b60008151808452612ee2816020860160208601612ea6565b601f01601f19169290920160200192915050565b602081526000611e2c6020830184612eca565b600060208284031215612f1b57600080fd5b5035919050565b6001600160a01b038116811461106b57600080fd5b60008060408385031215612f4a57600080fd5b8235612f5581612f22565b946020939093013593505050565b801515811461106b57600080fd5b600060208284031215612f8357600080fd5b8135611e2c81612f63565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612fcd57612fcd612f8e565b604052919050565b60006020808385031215612fe857600080fd5b823567ffffffffffffffff8082111561300057600080fd5b818501915085601f83011261301457600080fd5b81358181111561302657613026612f8e565b8060051b9150613037848301612fa4565b818152918301840191848101908884111561305157600080fd5b938501935b8385101561307b578435925061306b83612f22565b8282529385019390850190613056565b98975050505050505050565b60008060006060848603121561309c57600080fd5b83356130a781612f22565b925060208401356130b781612f22565b929592945050506040919091013590565b600080604083850312156130db57600080fd5b50508035926020909101359150565b6000602082840312156130fc57600080fd5b8135611e2c81612f22565b600067ffffffffffffffff83111561312157613121612f8e565b613134601f8401601f1916602001612fa4565b905082815283838301111561314857600080fd5b828260208301376000602084830101529392505050565b600082601f83011261317057600080fd5b611e2c83833560208501613107565b60006020828403121561319157600080fd5b813567ffffffffffffffff8111156131a857600080fd5b612bb08482850161315f565b6000806000606084860312156131c957600080fd5b505081359360208301359350604090920135919050565b600080604083850312156131f357600080fd5b82356131fe81612f22565b9150602083013561320e81612f63565b809150509250929050565b6000806040838503121561322c57600080fd5b823567ffffffffffffffff81111561324357600080fd5b61324f8582860161315f565b95602094909401359450505050565b6000806000806080858703121561327457600080fd5b843561327f81612f22565b9350602085013561328f81612f22565b925060408501359150606085013567ffffffffffffffff8111156132b257600080fd5b8501601f810187136132c357600080fd5b6132d287823560208401613107565b91505092959194509250565b6000806000604084860312156132f357600080fd5b83359250602084013567ffffffffffffffff8082111561331257600080fd5b818601915086601f83011261332657600080fd5b81358181111561333557600080fd5b8760208260051b850101111561334a57600080fd5b6020830194508093505050509250925092565b6000806040838503121561337057600080fd5b823561337b81612f22565b9150602083013561320e81612f22565b600181811c9082168061339f57607f821691505b602082108103611f8457634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b80820180821115610c3d57610c3d6133bf565b634e487b7160e01b600052603260045260246000fd5b600060018201613410576134106133bf565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261343c5761343c613417565b500490565b81810381811115610c3d57610c3d6133bf565b601f821115610dbb57600081815260208120601f850160051c8101602086101561347b5750805b601f850160051c820191505b81811015611d7257828155600101613487565b815167ffffffffffffffff8111156134b4576134b4612f8e565b6134c8816134c2845461338b565b84613454565b602080601f8311600181146134fd57600084156134e55750858301515b600019600386901b1c1916600185901b178555611d72565b600085815260208120601f198616915b8281101561352c5788860151825594840194600190910190840161350d565b508582101561354a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600081546135678161338b565b6001828116801561357f5760018114613594576135c3565b60ff19841687528215158302870194506135c3565b8560005260208060002060005b858110156135ba5781548a8201529084019082016135a1565b50505082870194505b5050505092915050565b6000612bb06135dc838661355a565b8461355a565b60006135f76135f1838761355a565b8561355a565b602f60f81b81528351613611816001840160208801612ea6565b64173539b7b760d91b6001929091019182015260060195945050505050565b60006020828403121561364257600080fd5b8151611e2c81612f63565b60208082526014908201527315d3081b5a5b9d1a5b99c81a5cc81c185d5cd95960621b604082015260600190565b6000825161368d818460208701612ea6565b9190910192915050565b6000602082840312156136a957600080fd5b5051919050565b6000826136bf576136bf613417565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906136f790830184612eca565b9695505050505050565b60006020828403121561371357600080fd5b8151611e2c81612e7356feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212200476b7b680c191e6cd36d03ef14b90d7a846beb0f061343da777352f7d81450d64736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000009ec745a993ce5cca07e0b56af93827d7dd30f8c100000000000000000000000000000000000000000000000000000000000001409e84f612ebd6f790738dc3661df81f2856aad86df567f5812384c8f37e8c22f3df9caaa2ca1442e346952c7a1739ad4286a8bb379eb2d75221c88c1257d317480000000000000000000000000000000000000000000000000000000000000006434c49515533000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024333000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5441736b6e52324364626f4d4c4b79344879336f694b42465a6f5176444a5556357059366345716752314658000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): CLIQU3
Arg [1] : _symbol (string): C3
Arg [2] : _initOtherContract (address): 0x9ec745a993cE5CcA07E0B56af93827D7DD30f8c1
Arg [3] : _initNotRevealedUri (string): QmTAsknR2CdboMLKy4Hy3oiKBFZoQvDJUV5pY6cEqgR1FX
Arg [4] : _initMerkleRoot333 (bytes32): 0x9e84f612ebd6f790738dc3661df81f2856aad86df567f5812384c8f37e8c22f3
Arg [5] : _initMerkleRoot3000 (bytes32): 0xdf9caaa2ca1442e346952c7a1739ad4286a8bb379eb2d75221c88c1257d31748

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000009ec745a993ce5cca07e0b56af93827d7dd30f8c1
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 9e84f612ebd6f790738dc3661df81f2856aad86df567f5812384c8f37e8c22f3
Arg [5] : df9caaa2ca1442e346952c7a1739ad4286a8bb379eb2d75221c88c1257d31748
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 434c495155330000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [9] : 4333000000000000000000000000000000000000000000000000000000000000
Arg [10] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [11] : 516d5441736b6e52324364626f4d4c4b79344879336f694b42465a6f5176444a
Arg [12] : 5556357059366345716752314658000000000000000000000000000000000000


Deployed Bytecode Sourcemap

87131:12580:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52131:639;;;;;;;;;;-1:-1:-1;52131:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;52131:639:0;;;;;;;;53033:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;59516:218::-;;;;;;;;;;-1:-1:-1;59516:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;59516:218:0;1533:203:1;87684:28:0;;;;;;;;;;;;;:::i;90058:157::-;;;;;;;;;;-1:-1:-1;90058:157:0;;;;;:::i;:::-;;:::i;:::-;;98407:91;;;;;;;;;;-1:-1:-1;98407:91:0;;;;;:::i;:::-;;:::i;87514:38::-;;;;;;;;;;;;;;;;;;;2712:25:1;;;2700:2;2685:18;87514:38:0;2566:177:1;87885:30:0;;;;;;;;;;-1:-1:-1;87885:30:0;;;;;;;;;;;97853:101;;;;;;;;;;-1:-1:-1;97853:101:0;;;;;:::i;:::-;;:::i;48784:323::-;;;;;;;;;;-1:-1:-1;90868:1:0;49058:12;48845:7;49042:13;:28;-1:-1:-1;;49042:46:0;48784:323;;88245:26;;;;;;;;;;-1:-1:-1;88245:26:0;;;;;:::i;:::-;;:::i;88039:77::-;;;;;;;;;;-1:-1:-1;88039:77:0;;;;-1:-1:-1;;;88039:77:0;;-1:-1:-1;;;;;88039:77:0;;;98603:88;;;;;;;;;;-1:-1:-1;98603:88:0;;;;;:::i;:::-;;:::i;90223:163::-;;;;;;;;;;-1:-1:-1;90223:163:0;;;;;:::i;:::-;;:::i;87809:31::-;;;;;;;;;;-1:-1:-1;87809:31:0;;;;;;;;94003:694;;;;;;;;;;-1:-1:-1;94003:694:0;;;;;:::i;:::-;;:::i;88123:76::-;;;;;;;;;;-1:-1:-1;88123:76:0;;;;-1:-1:-1;;;;;88123:76:0;;;96888:195;;;;;;;;;;-1:-1:-1;96888:195:0;;;;;:::i;:::-;;:::i;2923:143::-;;;;;;;;;;;;3023:42;2923:143;;90394:171;;;;;;;;;;-1:-1:-1;90394:171:0;;;;;:::i;:::-;;:::i;95689:342::-;;;;;;;;;;-1:-1:-1;95689:342:0;;;;;:::i;:::-;;:::i;98506:89::-;;;;;;;;;;-1:-1:-1;98506:89:0;;;;;:::i;:::-;;:::i;87998:28::-;;;;;;;;;;-1:-1:-1;87998:28:0;;;;-1:-1:-1;;;87998:28:0;;;;;;99393:270;;;;;;;;;;-1:-1:-1;99393:270:0;;;;;:::i;:::-;;:::i;87962:29::-;;;;;;;;;;-1:-1:-1;87962:29:0;;;;;;;;;;;87272:41;;;;;;;;;;;;;;;;97962:120;;;;;;;;;;-1:-1:-1;97962:120:0;;;;;:::i;:::-;;:::i;88331:43::-;;;;;;;;;;-1:-1:-1;88331:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;97448:126;;;;;;;;;;-1:-1:-1;97448:126:0;;;;;:::i;:::-;;:::i;54426:152::-;;;;;;;;;;-1:-1:-1;54426:152:0;;;;;:::i;:::-;;:::i;49968:233::-;;;;;;;;;;-1:-1:-1;49968:233:0;;;;;:::i;:::-;;:::i;32938:103::-;;;;;;;;;;;;;:::i;87719:46::-;;;;;;;;;;;;;:::i;87607:28::-;;;;;;;;;;;;;;;;87442:19;;;;;;;;;;;;;;;;87922:33;;;;;;;;;;-1:-1:-1;87922:33:0;;;;;;;;;;;88381:45;;;;;;;;;;-1:-1:-1;88381:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;87468:39;;;;;;;;;;;;;;;;97091:225;;;;;;;;;;-1:-1:-1;97091:225:0;;;;;:::i;:::-;;:::i;87642:29::-;;;;;;;;;;;;;;;;97582:129;;;;;;;;;;-1:-1:-1;97582:129:0;;;;;:::i;:::-;;:::i;88433:50::-;;;;;;;;;;-1:-1:-1;88433:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;32290:87;;;;;;;;;;-1:-1:-1;32363:6:0;;-1:-1:-1;;;;;32363:6:0;32290:87;;53209:104;;;;;;;;;;;;;:::i;89874:176::-;;;;;;;;;;-1:-1:-1;89874:176:0;;;;;:::i;:::-;;:::i;98227:69::-;;;;;;;;;;;;;:::i;98090:129::-;;;;;;;;;;-1:-1:-1;98090:129:0;;;;;:::i;:::-;;:::i;98304:95::-;;;;;;;;;;-1:-1:-1;98304:95:0;;;;;:::i;:::-;;:::i;98699:256::-;;;;;;;;;;-1:-1:-1;98699:256:0;;;;;:::i;:::-;;:::i;87365:31::-;;;;;;;;;;;;;;;;90573:196;;;;;;;;;;-1:-1:-1;90573:196:0;;;;;:::i;:::-;;:::i;93582:413::-;;;;;;:::i;:::-;;:::i;96374:404::-;;;;;;;;;;-1:-1:-1;96374:404:0;;;;;:::i;:::-;;:::i;87320:38::-;;;;;;;;;;;;;;;;96039:327;;;;;;;;;;-1:-1:-1;96039:327:0;;;;;:::i;:::-;;:::i;87403:32::-;;;;;;;;;;;;;;;;87847:31;;;;;;;;;;-1:-1:-1;87847:31:0;;;;;;;;;;;87234;;;;;;;;;;;;;;;;97324:116;;;;;;;;;;-1:-1:-1;97324:116:0;;;;;:::i;:::-;;:::i;96786:94::-;;;;;;;;;;-1:-1:-1;96786:94:0;;;;;:::i;:::-;;:::i;60465:164::-;;;;;;;;;;-1:-1:-1;60465:164:0;;;;;:::i;:::-;;:::i;97719:126::-;;;;;;;;;;-1:-1:-1;97719:126:0;;;;;:::i;:::-;;:::i;33196:201::-;;;;;;;;;;-1:-1:-1;33196:201:0;;;;;:::i;:::-;;:::i;87559:39::-;;;;;;;;;;;;;;;;88280:44;;;;;;;;;;-1:-1:-1;88280:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;87772:28;;;;;;;;;;-1:-1:-1;87772:28:0;;;;;:::i;:::-;;:::i;52131:639::-;52216:4;-1:-1:-1;;;;;;;;;52540:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;52617:25:0;;;52540:102;:179;;;-1:-1:-1;;;;;;;;;;52694:25:0;;;52540:179;52520:199;52131:639;-1:-1:-1;;52131:639:0:o;53033:100::-;53087:13;53120:5;53113:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53033:100;:::o;59516:218::-;59592:7;59617:16;59625:7;59617;:16::i;:::-;59612:64;;59642:34;;-1:-1:-1;;;59642:34:0;;;;;;;;;;;59612:64;-1:-1:-1;59696:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;59696:30:0;;59516:218::o;87684:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;90058:157::-;90154:8;4444:30;4465:8;4444:20;:30::i;:::-;90175:32:::1;90189:8;90199:7;90175:13;:32::i;:::-;90058:157:::0;;;:::o;98407:91::-;32176:13;:11;:13::i;:::-;98469:12:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;98469:21:0;;::::1;::::0;;;::::1;::::0;;98407:91::o;97853:101::-;32176:13;:11;:13::i;:::-;97927:19;;::::1;::::0;:8:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;97853:101:::0;:::o;88245:26::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;88245:26:0;;-1:-1:-1;88245:26:0;:::o;98603:88::-;32176:13;:11;:13::i;:::-;98663:10:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;98663:19:0;;::::1;::::0;;;::::1;::::0;;98603:88::o;90223:163::-;90324:4;-1:-1:-1;;;;;4264:18:0;;4272:10;4264:18;4260:83;;4299:32;4320:10;4299:20;:32::i;:::-;90341:37:::1;90360:4;90366:2;90370:7;90341:18;:37::i;:::-;90223:163:::0;;;;:::o;94003:694::-;32363:6;;-1:-1:-1;;;;;32363:6:0;94062:10;:21;94059:484;;94147:1;94135:8;94107:25;94121:10;94107:13;:25::i;:::-;:36;;;;:::i;:::-;:41;;94099:86;;;;-1:-1:-1;;;94099:86:0;;10885:2:1;94099:86:0;;;10867:21:1;;;10904:18;;;10897:30;10963:34;10943:18;;;10936:62;11015:18;;94099:86:0;;;;;;;;;94209:14;;;;;;;94208:15;94200:44;;;;-1:-1:-1;;;94200:44:0;;11246:2:1;94200:44:0;;;11228:21:1;11285:2;11265:18;;;11258:30;-1:-1:-1;;;11304:18:1;;;11297:46;11360:18;;94200:44:0;11044:340:1;94200:44:0;94259:9;94306:6;94301:162;94322:8;:15;94318:19;;94301:162;;;94381:10;-1:-1:-1;;;;;94366:25:0;:8;94375:1;94366:11;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;94366:11:0;:25;94363:81;;94419:1;94415:5;;94363:81;94339:3;;;;:::i;:::-;;;;94301:162;;;;94487:1;94492;94487:6;94479:52;;;;-1:-1:-1;;;94479:52:0;;11863:2:1;94479:52:0;;;11845:21:1;11902:2;11882:18;;;11875:30;11941:34;11921:18;;;11914:62;-1:-1:-1;;;11992:18:1;;;11985:31;12033:19;;94479:52:0;11661:397:1;94479:52:0;94084:459;94059:484;94599:9;;90868:1;49058:12;48845:7;49042:13;94587:8;;49042:28;;-1:-1:-1;;49042:46:0;94571:24;;;;:::i;:::-;:37;;94563:72;;;;-1:-1:-1;;;94563:72:0;;12265:2:1;94563:72:0;;;12247:21:1;12304:2;12284:18;;;12277:30;-1:-1:-1;;;12323:18:1;;;12316:52;12385:18;;94563:72:0;12063:346:1;94563:72:0;94656:31;94666:10;94678:8;94656:9;:31::i;:::-;94003:694;:::o;96888:195::-;32176:13;:11;:13::i;:::-;96996:14:::1;:35:::0;;;;97042:13:::1;:33:::0;96888:195::o;90394:171::-;90499:4;-1:-1:-1;;;;;4264:18:0;;4272:10;4264:18;4260:83;;4299:32;4320:10;4299:20;:32::i;:::-;90516:41:::1;90539:4;90545:2;90549:7;90516:22;:41::i;95689:342::-:0;95751:8;;-1:-1:-1;;;95751:8:0;;;;95743:54;;;;-1:-1:-1;;;95743:54:0;;12616:2:1;95743:54:0;;;12598:21:1;12655:2;12635:18;;;12628:30;12694:34;12674:18;;;12667:62;-1:-1:-1;;;12745:18:1;;;12738:31;12786:19;;95743:54:0;12414:397:1;95743:54:0;95816:22;;;;:13;:22;;;;;;;;:31;95808:73;;;;-1:-1:-1;;;95808:73:0;;13018:2:1;95808:73:0;;;13000:21:1;13057:2;13037:18;;;13030:30;13096:31;13076:18;;;13069:59;13145:18;;95808:73:0;12816:353:1;95808:73:0;95892:20;;;;:11;:20;;;;;;;;:27;;-1:-1:-1;;95892:27:0;95915:4;95892:27;;;;;;95930:9;:18;;;;;;:22;;;95968;;13356:25:1;;;13397:18;;;13390:34;;;;95968:22:0;;13329:18:1;95968:22:0;;;;;;;96006:17;;2712:25:1;;;96006:17:0;;2700:2:1;2685:18;96006:17:0;;;;;;;95689:342;:::o;98506:89::-;32176:13;:11;:13::i;:::-;98567:11:::1;:20:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;98567:20:0;;::::1;::::0;;;::::1;::::0;;98506:89::o;99393:270::-;32176:13;:11;:13::i;:::-;99480:21:::1;99462:15;99531:26;99555:2;99531:21;:26;:::i;:::-;99512:45:::0;-1:-1:-1;;;;;;99568:12:0;::::1;:32;99581:18;99512:45:::0;99581:7;:18:::1;:::i;:::-;99568:32;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;99619:16:0::1;::::0;99611:44:::1;::::0;-1:-1:-1;;;;;99619:16:0;;::::1;::::0;99611:44;::::1;;;::::0;99646:8;;99619:16:::1;99611:44:::0;99619:16;99611:44;99646:8;99619:16;99611:44;::::1;;;;;;;;;;;;;::::0;::::1;;;;97962:120:::0;32176:13;:11;:13::i;:::-;98042:11:::1;:32:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;98042:32:0;;;;;::::1;;98059:14:::0;98042:32;::::1;:::i;97448:126::-:0;32176:13;:11;:13::i;:::-;97535:17:::1;:31:::0;;-1:-1:-1;;;;;97535:31:0;;::::1;-1:-1:-1::0;;;97535:31:0::1;-1:-1:-1::0;;;;;;97535:31:0;;::::1;::::0;;;::::1;::::0;;97448:126::o;54426:152::-;54498:7;54541:27;54560:7;54541:18;:27::i;49968:233::-;50040:7;-1:-1:-1;;;;;50064:19:0;;50060:60;;50092:28;;-1:-1:-1;;;50092:28:0;;;;;;;;;;;50060:60;-1:-1:-1;;;;;;50138:25:0;;;;;:18;:25;;;;;;44127:13;50138:55;;49968:233::o;32938:103::-;32176:13;:11;:13::i;:::-;33003:30:::1;33030:1;33003:18;:30::i;:::-;32938:103::o:0;87719:46::-;;;;;;;:::i;97091:225::-;32176:13;:11;:13::i;:::-;97207:10:::1;:27:::0;;;;97245:9:::1;:25:::0;97281:10:::1;:27:::0;97091:225::o;97582:129::-;32176:13;:11;:13::i;:::-;97670::::1;:33:::0;;-1:-1:-1;;;;;;97670:33:0::1;-1:-1:-1::0;;;;;97670:33:0;;;::::1;::::0;;;::::1;::::0;;97582:129::o;53209:104::-;53265:13;53298:7;53291:14;;;;;:::i;89874:176::-;89978:8;4444:30;4465:8;4444:20;:30::i;:::-;89999:43:::1;90023:8;90033;89999:23;:43::i;98227:69::-:0;32176:13;:11;:13::i;:::-;98273:8:::1;:15:::0;;-1:-1:-1;;98273:15:0::1;-1:-1:-1::0;;;98273:15:0::1;::::0;;98227:69::o;98090:129::-;32176:13;:11;:13::i;:::-;98202:9:::1;98182:11;98194:4;98182:17;;;;;;;;:::i;:::-;;;;;;;;:29;;;;;;:::i;98304:95::-:0;32176:13;:11;:13::i;:::-;98370:12:::1;:21:::0;;-1:-1:-1;;98370:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;98304:95::o;98699:256::-;32176:13;:11;:13::i;:::-;98775:10:::1;::::0;;;::::1;;;98774:11;98766:38;;;::::0;-1:-1:-1;;;98766:38:0;;16231:2:1;98766:38:0::1;::::0;::::1;16213:21:1::0;16270:2;16250:18;;;16243:30;-1:-1:-1;;;16289:18:1;;;16282:44;16343:18;;98766:38:0::1;16029:338:1::0;98766:38:0::1;98831:4:::0;98815:133:::1;98842:2;98837:1;:7;98815:133;;98887:10;98873;98881:1:::0;98873:7:::1;:10::i;:::-;-1:-1:-1::0;;;;;98873:24:0::1;;98865:48;;;::::0;-1:-1:-1;;;98865:48:0;;16574:2:1;98865:48:0::1;::::0;::::1;16556:21:1::0;16613:2;16593:18;;;16586:30;-1:-1:-1;;;16632:18:1;;;16625:41;16683:18;;98865:48:0::1;16372:335:1::0;98865:48:0::1;98928:8;98934:1;98928:5;:8::i;:::-;98846:3:::0;::::1;::::0;::::1;:::i;:::-;;;;98815:133;;90573:196:::0;90697:4;-1:-1:-1;;;;;4264:18:0;;4272:10;4264:18;4260:83;;4299:32;4320:10;4299:20;:32::i;:::-;90714:47:::1;90737:4;90743:2;90747:7;90756:4;90714:22;:47::i;:::-;90573:196:::0;;;;;:::o;93582:413::-;99006:23;99018:10;99006:11;:23::i;:::-;99005:24;98997:57;;;;-1:-1:-1;;;98997:57:0;;16914:2:1;98997:57:0;;;16896:21:1;16953:2;16933:18;;;16926:30;-1:-1:-1;;;16972:18:1;;;16965:50;17032:18;;98997:57:0;16712:344:1;98997:57:0;93705:1:::1;93694:8;:12;:29;;;;;93722:1;93710:8;:13;;93694:29;93686:70;;;::::0;-1:-1:-1;;;93686:70:0;;17263:2:1;93686:70:0::1;::::0;::::1;17245:21:1::0;17302:2;17282:18;;;17275:30;17341;17321:18;;;17314:58;17389:18;;93686:70:0::1;17061:352:1::0;93686:70:0::1;93803:9;::::0;90868:1;49058:12;48845:7;49042:13;93791:8;;49042:28;;-1:-1:-1;;49042:46:0;93775:24:::1;;;;:::i;:::-;:37;;93767:72;;;::::0;-1:-1:-1;;;93767:72:0;;12265:2:1;93767:72:0::1;::::0;::::1;12247:21:1::0;12304:2;12284:18;;;12277:30;-1:-1:-1;;;12323:18:1;;;12316:52;12385:18;;93767:72:0::1;12063:346:1::0;93767:72:0::1;93873:33;93883:8;93893:12;;93873:9;:33::i;:::-;93860:9;:46;;93852:81;;;::::0;-1:-1:-1;;;93852:81:0;;17620:2:1;93852:81:0::1;::::0;::::1;17602:21:1::0;17659:2;17639:18;;;17632:30;-1:-1:-1;;;17678:18:1;;;17671:52;17740:18;;93852:81:0::1;17418:346:1::0;93852:81:0::1;93946:31;93956:10;93968:8;93946:9;:31::i;96374:404::-:0;96447:13;96481:16;96489:7;96481;:16::i;:::-;96473:60;;;;-1:-1:-1;;;96473:60:0;;17971:2:1;96473:60:0;;;17953:21:1;18010:2;17990:18;;;17983:30;18049:33;18029:18;;;18022:61;18100:18;;96473:60:0;17769:355:1;96473:60:0;96549:8;;-1:-1:-1;;;96549:8:0;;;;:17;;96561:5;96549:17;96546:104;;96614:6;96622:14;96597:40;;;;;;;;;:::i;:::-;;;;;;;;;;;;;96583:55;;96374:404;;;:::o;96546:104::-;96713:18;;;;:9;:18;;;;;;96701:11;:31;;96693:6;;96713:18;96701:31;;;;;;:::i;:::-;;;;;;;;96739:18;:7;:16;:18::i;:::-;96676:91;;;;;;;;;;:::i;96039:327::-;96128:11;:18;96117:7;96123:1;96117:3;:7;:::i;:::-;:29;;96109:67;;;;-1:-1:-1;;;96109:67:0;;20113:2:1;96109:67:0;;;20095:21:1;20152:2;20132:18;;;20125:30;20191:27;20171:18;;;20164:55;20236:18;;96109:67:0;19911:349:1;96109:67:0;96190:3;96197:1;96190:8;96187:97;;96222:20;;;;:11;:20;;;;;;;;:27;;:20;:27;96214:58;;;;-1:-1:-1;;;96214:58:0;;20467:2:1;96214:58:0;;;20449:21:1;20506:2;20486:18;;;20479:30;-1:-1:-1;;;20525:18:1;;;20518:48;20583:18;;96214:58:0;20265:342:1;96214:58:0;96294:18;;;;:9;:18;;;;;;;;;:24;;;96334;;13356:25:1;;;13397:18;;;13390:34;;;96334:24:0;;13329:18:1;96334:24:0;;;;;;;96039:327;;:::o;97324:116::-;32176:13;:11;:13::i;:::-;97402:16:::1;:30:::0;;-1:-1:-1;;;;;;97402:30:0::1;-1:-1:-1::0;;;;;97402:30:0;;;::::1;::::0;;;::::1;::::0;;97324:116::o;96786:94::-;32176:13;:11;:13::i;:::-;96849:14:::1;:23:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;96849:23:0;;::::1;::::0;;;::::1;::::0;;96786:94::o;60465:164::-;-1:-1:-1;;;;;60586:25:0;;;60562:4;60586:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;60465:164::o;97719:126::-;32176:13;:11;:13::i;:::-;97805:14:::1;:32;97822:15:::0;97805:14;:32:::1;:::i;33196:201::-:0;32176:13;:11;:13::i;:::-;-1:-1:-1;;;;;33285:22:0;::::1;33277:73;;;::::0;-1:-1:-1;;;33277:73:0;;21067:2:1;33277:73:0::1;::::0;::::1;21049:21:1::0;21106:2;21086:18;;;21079:30;21145:34;21125:18;;;21118:62;-1:-1:-1;;;21196:18:1;;;21189:36;21242:19;;33277:73:0::1;20865:402:1::0;33277:73:0::1;33361:28;33380:8;33361:18;:28::i;87772:::-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;60887:282::-;60952:4;61008:7;90868:1;60989:26;;:66;;;;;61042:13;;61032:7;:23;60989:66;:153;;;;-1:-1:-1;;61093:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;61093:44:0;:49;;60887:282::o;4502:419::-;3023:42;4693:45;:49;4689:225;;4764:67;;-1:-1:-1;;;4764:67:0;;4815:4;4764:67;;;21484:34:1;-1:-1:-1;;;;;21554:15:1;;21534:18;;;21527:43;3023:42:0;;4764;;21419:18:1;;4764:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4759:144;;4859:28;;-1:-1:-1;;;4859:28:0;;-1:-1:-1;;;;;1697:32:1;;4859:28:0;;;1679:51:1;1652:18;;4859:28:0;1533:203:1;58957:400:0;59038:13;59054:16;59062:7;59054;:16::i;:::-;59038:32;-1:-1:-1;83412:10:0;-1:-1:-1;;;;;59087:28:0;;;59083:175;;59135:44;59152:5;83412:10;60465:164;:::i;59135:44::-;59130:128;;59207:35;;-1:-1:-1;;;59207:35:0;;;;;;;;;;;59130:128;59270:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;59270:35:0;-1:-1:-1;;;;;59270:35:0;;;;;;;;;59321:28;;59270:24;;59321:28;;;;;;;59027:330;58957:400;;:::o;32455:132::-;32363:6;;-1:-1:-1;;;;;32363:6:0;83412:10;32519:23;32511:68;;;;-1:-1:-1;;;32511:68:0;;22033:2:1;32511:68:0;;;22015:21:1;;;22052:18;;;22045:30;22111:34;22091:18;;;22084:62;22163:18;;32511:68:0;21831:356:1;63155:2855:0;63289:27;63319;63338:7;63319:18;:27::i;:::-;63289:57;;63404:4;-1:-1:-1;;;;;63363:45:0;63379:19;-1:-1:-1;;;;;63363:45:0;;63359:86;;63417:28;;-1:-1:-1;;;63417:28:0;;;;;;;;;;;63359:86;63459:27;62263:24;;;:15;:24;;;;;62491:26;;63650:68;62491:26;63692:4;83412:10;63698:19;-1:-1:-1;;;;;61737:32:0;;;61581:28;;61866:20;;61888:30;;61863:56;;61278:659;63650:68;63645:180;;63738:43;63755:4;83412:10;60465:164;:::i;63738:43::-;63733:92;;63790:35;;-1:-1:-1;;;63790:35:0;;;;;;;;;;;63733:92;-1:-1:-1;;;;;63842:16:0;;63838:52;;63867:23;;-1:-1:-1;;;63867:23:0;;;;;;;;;;;63838:52;63957:29;63968:4;63974:2;63978:7;63957:10;:29::i;:::-;64077:15;64074:160;;;64217:1;64196:19;64189:30;64074:160;-1:-1:-1;;;;;64614:24:0;;;;;;;:18;:24;;;;;;64612:26;;-1:-1:-1;;64612:26:0;;;64683:22;;;;;;;;;64681:24;;-1:-1:-1;64681:24:0;;;57815:11;57790:23;57786:41;57773:63;-1:-1:-1;;;57773:63:0;64976:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;65271:47:0;;:52;;65267:627;;65376:1;65366:11;;65344:19;65499:30;;;:17;:30;;;;;;:35;;65495:384;;65637:13;;65622:11;:28;65618:242;;65784:30;;;;:17;:30;;;;;:52;;;65618:242;65325:569;65267:627;65941:7;65937:2;-1:-1:-1;;;;;65922:27:0;65931:4;-1:-1:-1;;;;;65922:27:0;-1:-1:-1;;;;;;;;;;;65922:27:0;;;;;;;;;65960:42;63278:2732;;;63155:2855;;;:::o;50283:178::-;-1:-1:-1;;;;;50372:25:0;50344:7;50372:25;;;:18;:25;;44265:2;50372:25;;;;;:50;;44127:13;50371:82;;50283:178::o;77157:112::-;77234:27;77244:2;77248:8;77234:27;;;;;;;;;;;;:9;:27::i;66106:186::-;66245:39;66262:4;66268:2;66272:7;66245:39;;;;;;;;;;;;:16;:39::i;55581:1275::-;55648:7;55683;;90868:1;55732:23;55728:1061;;55785:13;;55778:4;:20;55774:1015;;;55823:14;55840:23;;;:17;:23;;;;;;;-1:-1:-1;;;55929:24:0;;:29;;55925:845;;56594:113;56601:6;56611:1;56601:11;56594:113;;-1:-1:-1;;;56672:6:0;56654:25;;;;:17;:25;;;;;;56594:113;;;56740:6;55581:1275;-1:-1:-1;;;55581:1275:0:o;55925:845::-;55800:989;55774:1015;56817:31;;-1:-1:-1;;;56817:31:0;;;;;;;;;;;33557:191;33650:6;;;-1:-1:-1;;;;;33667:17:0;;;-1:-1:-1;;;;;;33667:17:0;;;;;;;33700:40;;33650:6;;;33667:17;33650:6;;33700:40;;33631:16;;33700:40;33620:128;33557:191;:::o;60074:234::-;83412:10;60169:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;60169:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;60169:60:0;;;;;;;;;;60245:55;;540:41:1;;;60169:49:0;;83412:10;60245:55;;513:18:1;60245:55:0;;;;;;;60074:234;;:::o;77536:89::-;77596:21;77602:7;77611:5;77596;:21::i;66890:400::-;67058:31;67071:4;67077:2;67081:7;67058:12;:31::i;:::-;-1:-1:-1;;;;;67104:14:0;;;:19;67100:183;;67143:56;67174:4;67180:2;67184:7;67193:5;67143:30;:56::i;:::-;67138:145;;67227:40;;-1:-1:-1;;;67227:40:0;;;;;;;;;;;99082:299;99141:4;99213:18;;99255:8;;;;:35;;-1:-1:-1;99267:10:0;99281:9;99267:23;;99255:35;99252:122;;;-1:-1:-1;99313:4:0;;99082:299;-1:-1:-1;;99082:299:0:o;99252:122::-;-1:-1:-1;99357:5:0;;99082:299;-1:-1:-1;;99082:299:0:o;99252:122::-;99147:234;99082:299;;;:::o;90885:2689::-;90972:4;91001:23;;90998:2174;;91063:8;91075:1;91063:13;91055:55;;;;-1:-1:-1;;;91055:55:0;;22394:2:1;91055:55:0;;;22376:21:1;22433:2;22413:18;;;22406:30;22472:31;22452:18;;;22445:59;22521:18;;91055:55:0;22192:353:1;91055:55:0;91161:1;91133:25;91147:10;91133:13;:25::i;:::-;:29;91125:66;;;;-1:-1:-1;;;91125:66:0;;22752:2:1;91125:66:0;;;22734:21:1;22791:2;22771:18;;;22764:30;22830:26;22810:18;;;22803:54;22874:18;;91125:66:0;22550:348:1;91125:66:0;91231:28;;-1:-1:-1;;91248:10:0;23052:2:1;23048:15;23044:53;91231:28:0;;;23032:66:1;91206:12:0;;23114::1;;91231:28:0;;;-1:-1:-1;;91231:28:0;;;;;;;;;91221:39;;91231:28;91221:39;;;;91308:10;91292:27;;;;:15;:27;;;;;;91221:39;;-1:-1:-1;91323:4:0;91292:35;91289:1858;;91359:53;91378:12;;91359:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;91392:13:0;;;-1:-1:-1;91407:4:0;;-1:-1:-1;91359:18:0;:53::i;:::-;91351:91;;;;-1:-1:-1;;;91351:91:0;;23339:2:1;91351:91:0;;;23321:21:1;23378:2;23358:18;;;23351:30;-1:-1:-1;;;23397:18:1;;;23390:55;23462:18;;91351:91:0;23137:349:1;91351:91:0;91474:11;;;;;;;91473:12;91465:45;;;;-1:-1:-1;;;91465:45:0;;;;;;;:::i;:::-;91568:3;91556:8;91541:12;;:23;;;;:::i;:::-;:30;;91533:70;;;;-1:-1:-1;;;91533:70:0;;24042:2:1;91533:70:0;;;24024:21:1;24081:2;24061:18;;;24054:30;24120:29;24100:18;;;24093:57;24167:18;;91533:70:0;23840:351:1;91533:70:0;91658:8;91643:12;;:23;;;;:::i;:::-;91628:12;:38;-1:-1:-1;;91696:9:0;;91689:16;;91289:1858;91768:10;91752:27;;;;:15;:27;;;;;;91783:3;91752:34;91749:1398;;91818:54;91837:12;;91818:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;91851:14:0;;;-1:-1:-1;91867:4:0;;-1:-1:-1;91818:18:0;:54::i;:::-;91810:91;;;;-1:-1:-1;;;91810:91:0;;23339:2:1;91810:91:0;;;23321:21:1;23378:2;23358:18;;;23351:30;-1:-1:-1;;;23397:18:1;;;23390:55;23462:18;;91810:91:0;23137:349:1;91810:91:0;91933:12;;;;;;;91932:13;91924:46;;;;-1:-1:-1;;;91924:46:0;;;;;;;:::i;:::-;92029:4;92017:8;92001:13;;:24;;;;:::i;:::-;:32;;91993:73;;;;-1:-1:-1;;;91993:73:0;;24398:2:1;91993:73:0;;;24380:21:1;24437:2;24417:18;;;24410:30;24476;24456:18;;;24449:58;24524:18;;91993:73:0;24196:352:1;91993:73:0;92123:8;92107:13;;:24;;;;:::i;:::-;92091:13;:40;-1:-1:-1;;92161:10:0;;92154:17;;91749:1398;92239:54;92258:12;;92239:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;92272:14:0;;;-1:-1:-1;92288:4:0;;-1:-1:-1;92239:18:0;:54::i;:::-;92236:896;;;92326:12;;;;;;;92325:13;92317:46;;;;-1:-1:-1;;;92317:46:0;;;;;;;:::i;:::-;92422:4;92410:8;92394:13;;:24;;;;:::i;:::-;:32;;92386:73;;;;-1:-1:-1;;;92386:73:0;;24398:2:1;92386:73:0;;;24380:21:1;24437:2;24417:18;;;24410:30;24476;24456:18;;;24449:58;24524:18;;92386:73:0;24196:352:1;92386:73:0;92516:8;92500:13;;:24;;;;:::i;:::-;92484:13;:40;-1:-1:-1;;92563:10:0;92547:27;;;;:15;:27;;;;;92577:4;92547:34;;92611:10;;92604:17;;92236:896;92652:53;92671:12;;92652:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;92685:13:0;;;-1:-1:-1;92700:4:0;;-1:-1:-1;92652:18:0;:53::i;:::-;92649:483;;;92738:11;;;;;;;92737:12;92729:45;;;;-1:-1:-1;;;92729:45:0;;;;;;;:::i;:::-;92832:3;92820:8;92805:12;;:23;;;;:::i;:::-;:30;;92797:70;;;;-1:-1:-1;;;92797:70:0;;24042:2:1;92797:70:0;;;24024:21:1;24081:2;24061:18;;;24054:30;24120:29;24100:18;;;24093:57;24167:18;;92797:70:0;23840:351:1;92797:70:0;92922:8;92907:12;;:23;;;;:::i;:::-;92892:12;:38;-1:-1:-1;;92969:10:0;92953:27;;;;:15;:27;;;;;92983:3;92953:33;;93016:9;;93009:16;;92649:483;93076:36;;-1:-1:-1;;;93076:36:0;;24755:2:1;93076:36:0;;;24737:21:1;24794:2;24774:18;;;24767:30;24833:28;24813:18;;;24806:56;24879:18;;93076:36:0;24553:350:1;90998:2174:0;93201:12;;;;93200:13;93192:50;;;;-1:-1:-1;;;93192:50:0;;25110:2:1;93192:50:0;;;25092:21:1;25149:2;25129:18;;;25122:30;25188:26;25168:18;;;25161:54;25232:18;;93192:50:0;24908:348:1;93192:50:0;93280:17;;93303:69;;93349:10;93303:69;;;21484:34:1;;;21534:18;;;21527:43;93255:21:0;;-1:-1:-1;;;93280:17:0;;-1:-1:-1;;;;;93280:17:0;;21419:18:1;;93303:69:0;;;-1:-1:-1;;93303:69:0;;;;;;;;;;;;;;-1:-1:-1;;;;;93303:69:0;-1:-1:-1;;;93303:69:0;;;93280:93;;;93303:69;93280:93;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93253:120;;;93386:11;93411:8;93400:31;;;;;;;;;;;;:::i;:::-;93386:45;;93453:1;93447:3;:7;:54;;;;;93498:3;93486:8;93458:25;93472:10;93458:13;:25::i;:::-;:36;;;;:::i;:::-;:43;;93447:54;93444:93;;;93524:1;93517:8;;;;;;93444:93;-1:-1:-1;;93556:10:0;;;90885:2689;-1:-1:-1;;;;90885:2689:0:o;28268:716::-;28324:13;28375:14;28392:17;28403:5;28392:10;:17::i;:::-;28412:1;28392:21;28375:38;;28428:20;28462:6;28451:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28451:18:0;-1:-1:-1;28428:41:0;-1:-1:-1;28593:28:0;;;28609:2;28593:28;28650:288;-1:-1:-1;;28682:5:0;-1:-1:-1;;;28819:2:0;28808:14;;28803:30;28682:5;28790:44;28880:2;28871:11;;;-1:-1:-1;28901:21:0;28650:288;28901:21;-1:-1:-1;28959:6:0;28268:716;-1:-1:-1;;;28268:716:0:o;94705:976::-;94805:15;94823;94835:2;94823:11;:15::i;:::-;94853:8;;94805:33;;-1:-1:-1;;;;94853:8:0;;;;94852:9;:23;;;;;94865:10;94852:23;94849:83;;;94891:22;;;;:13;:22;;;;;:29;;-1:-1:-1;;94891:29:0;94916:4;94891:29;;;94849:83;94945:20;;;;:11;:20;;;;;;;;:28;;:20;:28;;;;:50;;-1:-1:-1;;;;;;94977:18:0;;;;94945:50;94942:722;;;95042:13;;95061:76;;-1:-1:-1;;;;;26000:15:1;;;95061:76:0;;;25982:34:1;26032:18;;;26025:34;;;95126:10:0;26075:18:1;;;26068:43;95017:21:0;;95042:13;;25917:18:1;;95061:76:0;;;-1:-1:-1;;95061:76:0;;;;;;;;;;;;;;-1:-1:-1;;;;;95061:76:0;-1:-1:-1;;;95061:76:0;;;95042:96;;;95061:76;95042:96;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95015:123;;;95159:8;95181;95170:28;;;;;;;;;;;;:::i;:::-;95159:39;-1:-1:-1;95220:11:0;;;95227:4;95220:11;95217:434;;95289:3;95270:15;95263:4;;:22;;;;:::i;:::-;95262:30;;;;:::i;:::-;95255:4;:37;;;95326:18;;-1:-1:-1;95315:317:0;;95372:20;;;;:11;:20;;;;;;;;:27;;95395:4;-1:-1:-1;;95372:27:0;;;;;;;;95426:13;:22;;;;;:30;;;;;;;95483:9;:18;;;;;;:22;;;95537;;13356:25:1;;;13397:18;;;13390:34;;;;95537:22:0;;13329:18:1;95537:22:0;;;;;;;95591:17;;2712:25:1;;;95591:17:0;;2700:2:1;2685:18;95591:17:0;;;;;;;94996:668;;94794:887;94705:976;;;:::o;76384:689::-;76515:19;76521:2;76525:8;76515:5;:19::i;:::-;-1:-1:-1;;;;;76576:14:0;;;:19;76572:483;;76616:11;76630:13;76678:14;;;76711:233;76742:62;76781:1;76785:2;76789:7;;;;;;76798:5;76742:30;:62::i;:::-;76737:167;;76840:40;;-1:-1:-1;;;76840:40:0;;;;;;;;;;;76737:167;76939:3;76931:5;:11;76711:233;;77026:3;77009:13;;:20;77005:34;;77031:8;;;77854:3081;77934:27;77964;77983:7;77964:18;:27::i;:::-;77934:57;-1:-1:-1;77934:57:0;78004:12;;78126:35;78153:7;62152:27;62263:24;;;:15;:24;;;;;62491:26;;62263:24;;62050:485;78126:35;78069:92;;;;78178:13;78174:316;;;78299:68;78324:15;78341:4;83412:10;78347:19;83325:105;78299:68;78294:184;;78391:43;78408:4;83412:10;60465:164;:::i;78391:43::-;78386:92;;78443:35;;-1:-1:-1;;;78443:35:0;;;;;;;;;;;78386:92;78646:15;78643:160;;;78786:1;78765:19;78758:30;78643:160;-1:-1:-1;;;;;79405:24:0;;;;;;:18;:24;;;;;:60;;79433:32;79405:60;;;57815:11;57790:23;57786:41;57773:63;-1:-1:-1;;;57773:63:0;79703:26;;;;:17;:26;;;;;:205;;;;-1:-1:-1;;;80028:47:0;;:52;;80024:627;;80133:1;80123:11;;80101:19;80256:30;;;:17;:30;;;;;;:35;;80252:384;;80394:13;;80379:11;:28;80375:242;;80541:30;;;;:17;:30;;;;;:52;;;80375:242;80082:569;80024:627;80679:35;;80706:7;;80702:1;;-1:-1:-1;;;;;80679:35:0;;;-1:-1:-1;;;;;;;;;;;80679:35:0;80702:1;;80679:35;-1:-1:-1;;80902:12:0;:14;;;;;;-1:-1:-1;;;;77854:3081:0:o;69488:716::-;69672:88;;-1:-1:-1;;;69672:88:0;;69651:4;;-1:-1:-1;;;;;69672:45:0;;;;;:88;;83412:10;;69739:4;;69745:7;;69754:5;;69672:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69672:88:0;;;;;;;;-1:-1:-1;;69672:88:0;;;;;;;;;;;;:::i;:::-;;;69668:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69955:6;:13;69972:1;69955:18;69951:235;;70001:40;;-1:-1:-1;;;70001:40:0;;;;;;;;;;;69951:235;70144:6;70138:13;70129:6;70125:2;70121:15;70114:38;69668:529;-1:-1:-1;;;;;;69831:64:0;-1:-1:-1;;;69831:64:0;;-1:-1:-1;69668:529:0;69488:716;;;;;;:::o;6624:190::-;6749:4;6802;6773:25;6786:5;6793:4;6773:12;:25::i;:::-;:33;;6624:190;-1:-1:-1;;;;6624:190:0:o;25134:922::-;25187:7;;-1:-1:-1;;;25265:15:0;;25261:102;;-1:-1:-1;;;25301:15:0;;;-1:-1:-1;25345:2:0;25335:12;25261:102;25390:6;25381:5;:15;25377:102;;25426:6;25417:15;;;-1:-1:-1;25461:2:0;25451:12;25377:102;25506:6;25497:5;:15;25493:102;;25542:6;25533:15;;;-1:-1:-1;25577:2:0;25567:12;25493:102;25622:5;25613;:14;25609:99;;25657:5;25648:14;;;-1:-1:-1;25691:1:0;25681:11;25609:99;25735:5;25726;:14;25722:99;;25770:5;25761:14;;;-1:-1:-1;25804:1:0;25794:11;25722:99;25848:5;25839;:14;25835:99;;25883:5;25874:14;;;-1:-1:-1;25917:1:0;25907:11;25835:99;25961:5;25952;:14;25948:66;;25997:1;25987:11;26042:6;25134:922;-1:-1:-1;;25134:922:0:o;70666:2966::-;70739:20;70762:13;;;70790;;;70786:44;;70812:18;;-1:-1:-1;;;70812:18:0;;;;;;;;;;;70786:44;-1:-1:-1;;;;;71318:22:0;;;;;;:18;:22;;;;44265:2;71318:22;;;:71;;71356:32;71344:45;;71318:71;;;71632:31;;;:17;:31;;;;;-1:-1:-1;58246:15:0;;58220:24;58216:46;57815:11;57790:23;57786:41;57783:52;57773:63;;71632:173;;71867:23;;;;71632:31;;71318:22;;-1:-1:-1;;;;;;;;;;;71318:22:0;;72485:335;73146:1;73132:12;73128:20;73086:346;73187:3;73178:7;73175:16;73086:346;;73405:7;73395:8;73392:1;-1:-1:-1;;;;;;;;;;;73362:1:0;73359;73354:59;73240:1;73227:15;73086:346;;;73090:77;73465:8;73477:1;73465:13;73461:45;;73487:19;;-1:-1:-1;;;73487:19:0;;;;;;;;;;;73461:45;73523:13;:19;-1:-1:-1;90058:157:0;;;:::o;7491:296::-;7574:7;7617:4;7574:7;7632:118;7656:5;:12;7652:1;:16;7632:118;;;7705:33;7715:12;7729:5;7735:1;7729:8;;;;;;;;:::i;:::-;;;;;;;7705:9;:33::i;:::-;7690:48;-1:-1:-1;7670:3:0;;;;:::i;:::-;;;;7632:118;;;-1:-1:-1;7767:12:0;7491:296;-1:-1:-1;;;7491:296:0:o;14531:149::-;14594:7;14625:1;14621;:5;:51;;14756:13;14850:15;;;14886:4;14879:15;;;14933:4;14917:21;;14621:51;;;-1:-1:-1;14756:13:0;14850:15;;;14886:4;14879:15;14933:4;14917:21;;;14531:149::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:131::-;-1:-1:-1;;;;;1816:31:1;;1806:42;;1796:70;;1862:1;1859;1852:12;1877:315;1945:6;1953;2006:2;1994:9;1985:7;1981:23;1977:32;1974:52;;;2022:1;2019;2012:12;1974:52;2061:9;2048:23;2080:31;2105:5;2080:31;:::i;:::-;2130:5;2182:2;2167:18;;;;2154:32;;-1:-1:-1;;;1877:315:1:o;2197:118::-;2283:5;2276:13;2269:21;2262:5;2259:32;2249:60;;2305:1;2302;2295:12;2320:241;2376:6;2429:2;2417:9;2408:7;2404:23;2400:32;2397:52;;;2445:1;2442;2435:12;2397:52;2484:9;2471:23;2503:28;2525:5;2503:28;:::i;2748:127::-;2809:10;2804:3;2800:20;2797:1;2790:31;2840:4;2837:1;2830:15;2864:4;2861:1;2854:15;2880:275;2951:2;2945:9;3016:2;2997:13;;-1:-1:-1;;2993:27:1;2981:40;;3051:18;3036:34;;3072:22;;;3033:62;3030:88;;;3098:18;;:::i;:::-;3134:2;3127:22;2880:275;;-1:-1:-1;2880:275:1:o;3160:1021::-;3244:6;3275:2;3318;3306:9;3297:7;3293:23;3289:32;3286:52;;;3334:1;3331;3324:12;3286:52;3374:9;3361:23;3403:18;3444:2;3436:6;3433:14;3430:34;;;3460:1;3457;3450:12;3430:34;3498:6;3487:9;3483:22;3473:32;;3543:7;3536:4;3532:2;3528:13;3524:27;3514:55;;3565:1;3562;3555:12;3514:55;3601:2;3588:16;3623:2;3619;3616:10;3613:36;;;3629:18;;:::i;:::-;3675:2;3672:1;3668:10;3658:20;;3698:28;3722:2;3718;3714:11;3698:28;:::i;:::-;3760:15;;;3830:11;;;3826:20;;;3791:12;;;;3858:19;;;3855:39;;;3890:1;3887;3880:12;3855:39;3914:11;;;;3934:217;3950:6;3945:3;3942:15;3934:217;;;4030:3;4017:17;4004:30;;4047:31;4072:5;4047:31;:::i;:::-;4091:18;;;3967:12;;;;4129;;;;3934:217;;;4170:5;3160:1021;-1:-1:-1;;;;;;;;3160:1021:1:o;4186:456::-;4263:6;4271;4279;4332:2;4320:9;4311:7;4307:23;4303:32;4300:52;;;4348:1;4345;4338:12;4300:52;4387:9;4374:23;4406:31;4431:5;4406:31;:::i;:::-;4456:5;-1:-1:-1;4513:2:1;4498:18;;4485:32;4526:33;4485:32;4526:33;:::i;:::-;4186:456;;4578:7;;-1:-1:-1;;;4632:2:1;4617:18;;;;4604:32;;4186:456::o;4647:248::-;4715:6;4723;4776:2;4764:9;4755:7;4751:23;4747:32;4744:52;;;4792:1;4789;4782:12;4744:52;-1:-1:-1;;4815:23:1;;;4885:2;4870:18;;;4857:32;;-1:-1:-1;4647:248:1:o;5139:255::-;5206:6;5259:2;5247:9;5238:7;5234:23;5230:32;5227:52;;;5275:1;5272;5265:12;5227:52;5314:9;5301:23;5333:31;5358:5;5333:31;:::i;5399:407::-;5464:5;5498:18;5490:6;5487:30;5484:56;;;5520:18;;:::i;:::-;5558:57;5603:2;5582:15;;-1:-1:-1;;5578:29:1;5609:4;5574:40;5558:57;:::i;:::-;5549:66;;5638:6;5631:5;5624:21;5678:3;5669:6;5664:3;5660:16;5657:25;5654:45;;;5695:1;5692;5685:12;5654:45;5744:6;5739:3;5732:4;5725:5;5721:16;5708:43;5798:1;5791:4;5782:6;5775:5;5771:18;5767:29;5760:40;5399:407;;;;;:::o;5811:222::-;5854:5;5907:3;5900:4;5892:6;5888:17;5884:27;5874:55;;5925:1;5922;5915:12;5874:55;5947:80;6023:3;6014:6;6001:20;5994:4;5986:6;5982:17;5947:80;:::i;6038:322::-;6107:6;6160:2;6148:9;6139:7;6135:23;6131:32;6128:52;;;6176:1;6173;6166:12;6128:52;6216:9;6203:23;6249:18;6241:6;6238:30;6235:50;;;6281:1;6278;6271:12;6235:50;6304;6346:7;6337:6;6326:9;6322:22;6304:50;:::i;6799:316::-;6876:6;6884;6892;6945:2;6933:9;6924:7;6920:23;6916:32;6913:52;;;6961:1;6958;6951:12;6913:52;-1:-1:-1;;6984:23:1;;;7054:2;7039:18;;7026:32;;-1:-1:-1;7105:2:1;7090:18;;;7077:32;;6799:316;-1:-1:-1;6799:316:1:o;7120:382::-;7185:6;7193;7246:2;7234:9;7225:7;7221:23;7217:32;7214:52;;;7262:1;7259;7252:12;7214:52;7301:9;7288:23;7320:31;7345:5;7320:31;:::i;:::-;7370:5;-1:-1:-1;7427:2:1;7412:18;;7399:32;7440:30;7399:32;7440:30;:::i;:::-;7489:7;7479:17;;;7120:382;;;;;:::o;7507:390::-;7585:6;7593;7646:2;7634:9;7625:7;7621:23;7617:32;7614:52;;;7662:1;7659;7652:12;7614:52;7702:9;7689:23;7735:18;7727:6;7724:30;7721:50;;;7767:1;7764;7757:12;7721:50;7790;7832:7;7823:6;7812:9;7808:22;7790:50;:::i;:::-;7780:60;7887:2;7872:18;;;;7859:32;;-1:-1:-1;;;;7507:390:1:o;8155:795::-;8250:6;8258;8266;8274;8327:3;8315:9;8306:7;8302:23;8298:33;8295:53;;;8344:1;8341;8334:12;8295:53;8383:9;8370:23;8402:31;8427:5;8402:31;:::i;:::-;8452:5;-1:-1:-1;8509:2:1;8494:18;;8481:32;8522:33;8481:32;8522:33;:::i;:::-;8574:7;-1:-1:-1;8628:2:1;8613:18;;8600:32;;-1:-1:-1;8683:2:1;8668:18;;8655:32;8710:18;8699:30;;8696:50;;;8742:1;8739;8732:12;8696:50;8765:22;;8818:4;8810:13;;8806:27;-1:-1:-1;8796:55:1;;8847:1;8844;8837:12;8796:55;8870:74;8936:7;8931:2;8918:16;8913:2;8909;8905:11;8870:74;:::i;:::-;8860:84;;;8155:795;;;;;;;:::o;8955:683::-;9050:6;9058;9066;9119:2;9107:9;9098:7;9094:23;9090:32;9087:52;;;9135:1;9132;9125:12;9087:52;9171:9;9158:23;9148:33;;9232:2;9221:9;9217:18;9204:32;9255:18;9296:2;9288:6;9285:14;9282:34;;;9312:1;9309;9302:12;9282:34;9350:6;9339:9;9335:22;9325:32;;9395:7;9388:4;9384:2;9380:13;9376:27;9366:55;;9417:1;9414;9407:12;9366:55;9457:2;9444:16;9483:2;9475:6;9472:14;9469:34;;;9499:1;9496;9489:12;9469:34;9552:7;9547:2;9537:6;9534:1;9530:14;9526:2;9522:23;9518:32;9515:45;9512:65;;;9573:1;9570;9563:12;9512:65;9604:2;9600;9596:11;9586:21;;9626:6;9616:16;;;;;8955:683;;;;;:::o;9643:388::-;9711:6;9719;9772:2;9760:9;9751:7;9747:23;9743:32;9740:52;;;9788:1;9785;9778:12;9740:52;9827:9;9814:23;9846:31;9871:5;9846:31;:::i;:::-;9896:5;-1:-1:-1;9953:2:1;9938:18;;9925:32;9966:33;9925:32;9966:33;:::i;10036:380::-;10115:1;10111:12;;;;10158;;;10179:61;;10233:4;10225:6;10221:17;10211:27;;10179:61;10286:2;10278:6;10275:14;10255:18;10252:38;10249:161;;10332:10;10327:3;10323:20;10320:1;10313:31;10367:4;10364:1;10357:15;10395:4;10392:1;10385:15;10421:127;10482:10;10477:3;10473:20;10470:1;10463:31;10513:4;10510:1;10503:15;10537:4;10534:1;10527:15;10553:125;10618:9;;;10639:10;;;10636:36;;;10652:18;;:::i;11389:127::-;11450:10;11445:3;11441:20;11438:1;11431:31;11481:4;11478:1;11471:15;11505:4;11502:1;11495:15;11521:135;11560:3;11581:17;;;11578:43;;11601:18;;:::i;:::-;-1:-1:-1;11648:1:1;11637:13;;11521:135::o;13435:127::-;13496:10;13491:3;13487:20;13484:1;13477:31;13527:4;13524:1;13517:15;13551:4;13548:1;13541:15;13567:120;13607:1;13633;13623:35;;13638:18;;:::i;:::-;-1:-1:-1;13672:9:1;;13567:120::o;13692:128::-;13759:9;;;13780:11;;;13777:37;;;13794:18;;:::i;13951:545::-;14053:2;14048:3;14045:11;14042:448;;;14089:1;14114:5;14110:2;14103:17;14159:4;14155:2;14145:19;14229:2;14217:10;14213:19;14210:1;14206:27;14200:4;14196:38;14265:4;14253:10;14250:20;14247:47;;;-1:-1:-1;14288:4:1;14247:47;14343:2;14338:3;14334:12;14331:1;14327:20;14321:4;14317:31;14307:41;;14398:82;14416:2;14409:5;14406:13;14398:82;;;14461:17;;;14442:1;14431:13;14398:82;;14672:1352;14798:3;14792:10;14825:18;14817:6;14814:30;14811:56;;;14847:18;;:::i;:::-;14876:97;14966:6;14926:38;14958:4;14952:11;14926:38;:::i;:::-;14920:4;14876:97;:::i;:::-;15028:4;;15092:2;15081:14;;15109:1;15104:663;;;;15811:1;15828:6;15825:89;;;-1:-1:-1;15880:19:1;;;15874:26;15825:89;-1:-1:-1;;14629:1:1;14625:11;;;14621:24;14617:29;14607:40;14653:1;14649:11;;;14604:57;15927:81;;15074:944;;15104:663;13898:1;13891:14;;;13935:4;13922:18;;-1:-1:-1;;15140:20:1;;;15258:236;15272:7;15269:1;15266:14;15258:236;;;15361:19;;;15355:26;15340:42;;15453:27;;;;15421:1;15409:14;;;;15288:19;;15258:236;;;15262:3;15522:6;15513:7;15510:19;15507:201;;;15583:19;;;15577:26;-1:-1:-1;;15666:1:1;15662:14;;;15678:3;15658:24;15654:37;15650:42;15635:58;15620:74;;15507:201;-1:-1:-1;;;;;15754:1:1;15738:14;;;15734:22;15721:36;;-1:-1:-1;14672:1352:1:o;18129:722::-;18179:3;18220:5;18214:12;18249:36;18275:9;18249:36;:::i;:::-;18304:1;18321:18;;;18348:133;;;;18495:1;18490:355;;;;18314:531;;18348:133;-1:-1:-1;;18381:24:1;;18369:37;;18454:14;;18447:22;18435:35;;18426:45;;;-1:-1:-1;18348:133:1;;18490:355;18521:5;18518:1;18511:16;18550:4;18595:2;18592:1;18582:16;18620:1;18634:165;18648:6;18645:1;18642:13;18634:165;;;18726:14;;18713:11;;;18706:35;18769:16;;;;18663:10;;18634:165;;;18638:3;;;18828:6;18823:3;18819:16;18812:23;;18314:531;;;;;18129:722;;;;:::o;18856:277::-;19029:3;19054:73;19088:38;19122:3;19114:6;19088:38;:::i;:::-;19080:6;19054:73;:::i;19138:768::-;19561:3;19589:73;19623:38;19657:3;19649:6;19623:38;:::i;:::-;19615:6;19589:73;:::i;:::-;-1:-1:-1;;;19678:2:1;19671:15;19715:6;19709:13;19731:73;19797:6;19793:1;19789:2;19785:10;19778:4;19770:6;19766:17;19731:73;:::i;:::-;-1:-1:-1;;;19862:1:1;19823:15;;;;19854:10;;;19847:27;19898:1;19890:10;;19138:768;-1:-1:-1;;;;;19138:768:1:o;21581:245::-;21648:6;21701:2;21689:9;21680:7;21676:23;21672:32;21669:52;;;21717:1;21714;21707:12;21669:52;21749:9;21743:16;21768:28;21790:5;21768:28;:::i;23491:344::-;23693:2;23675:21;;;23732:2;23712:18;;;23705:30;-1:-1:-1;;;23766:2:1;23751:18;;23744:50;23826:2;23811:18;;23491:344::o;25261:287::-;25390:3;25428:6;25422:13;25444:66;25503:6;25498:3;25491:4;25483:6;25479:17;25444:66;:::i;:::-;25526:16;;;;;25261:287;-1:-1:-1;;25261:287:1:o;25553:184::-;25623:6;25676:2;25664:9;25655:7;25651:23;25647:32;25644:52;;;25692:1;25689;25682:12;25644:52;-1:-1:-1;25715:16:1;;25553:184;-1:-1:-1;25553:184:1:o;26122:112::-;26154:1;26180;26170:35;;26185:18;;:::i;:::-;-1:-1:-1;26219:9:1;;26122:112::o;26239:489::-;-1:-1:-1;;;;;26508:15:1;;;26490:34;;26560:15;;26555:2;26540:18;;26533:43;26607:2;26592:18;;26585:34;;;26655:3;26650:2;26635:18;;26628:31;;;26433:4;;26676:46;;26702:19;;26694:6;26676:46;:::i;:::-;26668:54;26239:489;-1:-1:-1;;;;;;26239:489:1:o;26733:249::-;26802:6;26855:2;26843:9;26834:7;26830:23;26826:32;26823:52;;;26871:1;26868;26861:12;26823:52;26903:9;26897:16;26922:30;26946:5;26922:30;:::i

Swarm Source

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