ETH Price: $2,523.76 (-0.03%)

Token

The Witcher Gang (TWG)
 

Overview

Max Total Supply

221 TWG

Holders

169

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TWG
0xE361af6C334dC55D6B416E8d3cEe4f52ca4fF1A1
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:
TheWitcherGang

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-14
*/

// 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/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

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


// OpenZeppelin Contracts (last updated v4.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/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 payable;

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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

// File: contracts/The Witcher Gang.sol



pragma solidity >=0.8.9 <0.9.0;







contract TheWitcherGang is ERC721A, Ownable, ReentrancyGuard {

   using Strings for uint256;

  mapping(address => uint256) public mintCounter;
  mapping (address => uint256) public WalletMint;  

  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.0035 ether; 
  uint public freeMint = 1;
  uint256 public maxSupply;
  uint256 public maxMintAmountPerTx;
  uint256 public maxMintAmountPerW; 
  
  bool public publicM = false;
  bool public revealed = false;
  

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    uint256 _maxSupply,
    uint256 _maxMintAmountPerTx,
    uint256 _maxMintAmountPerW,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    maxSupply = _maxSupply;
    setMaxMintAmountPerTx(_maxMintAmountPerTx);
    setMaxMintAmountPerW(_maxMintAmountPerW);
    setHiddenMetadataUri(_hiddenMetadataUri);
  }


modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(
        mintCounter[_msgSender()] + _mintAmount <= maxMintAmountPerW,
        "exceeds max per address"
        );
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    mintCounter[_msgSender()] = mintCounter[_msgSender()] + _mintAmount;
    _;
}


modifier onlyAccounts () {
    require(msg.sender == tx.origin, "Not allowed origin");
    _;   
}


function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(publicM, "PublicSale is OFF");
    if(WalletMint[_msgSender()] < freeMint) 
        {
            if(_mintAmount < freeMint) _mintAmount = freeMint;
           require(msg.value >= (_mintAmount - freeMint) * cost,"Notice:Claim Free NFT");
            WalletMint[_msgSender()] += _mintAmount;
           _safeMint(_msgSender(), _mintAmount);
        }
        else
        {
           require(msg.value >= _mintAmount * cost,"Notice:Fund not enough");
            WalletMint[_msgSender()] += _mintAmount;
         _safeMint(_msgSender(), _mintAmount);
    }
}
  
function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= maxSupply, "reached Max Supply");
    _safeMint(_receiver, _mintAmount);
}

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

function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
}

function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
}

function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
}
function setMaxMintAmountPerW(uint256 _maxMintAmountPerW) public onlyOwner {
      maxMintAmountPerW = _maxMintAmountPerW;
}
function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
}

function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
}

function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
}

function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
}


function togglePublicSale() public onlyOwner {
    publicM = !publicM;
}

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerW","type":"uint256"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WalletMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerW","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicM","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerW","type":"uint256"}],"name":"setMaxMintAmountPerW","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSale","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600c90805190602001906200002b9291906200039f565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000799291906200039f565b50660c6f3b40b6c000600f5560016010556000601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff021916908315150217905550348015620000cd57600080fd5b5060405162004004380380620040048339818101604052810190620000f3919062000627565b858581600290805190602001906200010d9291906200039f565b508060039080519060200190620001269291906200039f565b5062000137620001ad60201b60201c565b60008190555050506200015f62000153620001b660201b60201c565b620001be60201b60201c565b6001600981905550836011819055506200017f836200028460201b60201c565b62000190826200029e60201b60201c565b620001a181620002b860201b60201c565b50505050505062000808565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000294620002e460201b60201c565b8060128190555050565b620002ae620002e460201b60201c565b8060138190555050565b620002c8620002e460201b60201c565b80600e9080519060200190620002e09291906200039f565b5050565b620002f4620001b660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200031a6200037560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000373576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036a9062000781565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003ad90620007d2565b90600052602060002090601f016020900481019282620003d157600085556200041d565b82601f10620003ec57805160ff19168380011785556200041d565b828001600101855582156200041d579182015b828111156200041c578251825591602001919060010190620003ff565b5b5090506200042c919062000430565b5090565b5b808211156200044b57600081600090555060010162000431565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004b8826200046d565b810181811067ffffffffffffffff82111715620004da57620004d96200047e565b5b80604052505050565b6000620004ef6200044f565b9050620004fd8282620004ad565b919050565b600067ffffffffffffffff82111562000520576200051f6200047e565b5b6200052b826200046d565b9050602081019050919050565b60005b83811015620005585780820151818401526020810190506200053b565b8381111562000568576000848401525b50505050565b6000620005856200057f8462000502565b620004e3565b905082815260208101848484011115620005a457620005a362000468565b5b620005b184828562000538565b509392505050565b600082601f830112620005d157620005d062000463565b5b8151620005e38482602086016200056e565b91505092915050565b6000819050919050565b6200060181620005ec565b81146200060d57600080fd5b50565b6000815190506200062181620005f6565b92915050565b60008060008060008060c0878903121562000647576200064662000459565b5b600087015167ffffffffffffffff8111156200066857620006676200045e565b5b6200067689828a01620005b9565b965050602087015167ffffffffffffffff8111156200069a57620006996200045e565b5b620006a889828a01620005b9565b9550506040620006bb89828a0162000610565b9450506060620006ce89828a0162000610565b9350506080620006e189828a0162000610565b92505060a087015167ffffffffffffffff8111156200070557620007046200045e565b5b6200071389828a01620005b9565b9150509295509295509295565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200076960208362000720565b9150620007768262000731565b602082019050919050565b600060208201905081810360008301526200079c816200075a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007eb57607f821691505b60208210811415620008025762000801620007a3565b5b50919050565b6137ec80620008186000396000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063b071401b116100ab578063e222c7f91161006f578063e222c7f91461080a578063e645f70814610821578063e985e9c51461085e578063efbd73f41461089b578063f2fde38b146108c45761023b565b8063b071401b14610734578063b88d4fde1461075d578063c87b56dd14610779578063d5abeb01146107b6578063e0a80853146107e15761023b565b806395d89b41116100f257806395d89b411461066e578063a0712d6814610699578063a22cb465146106b5578063a45063c0146106de578063a45ba8e7146107095761023b565b8063715018a6146105ad5780637ec4a659146105c4578063867cb30e146105ed5780638da5cb5b1461061857806394354fd0146106435761023b565b80633ccfd60b116101bc5780635503a0e8116101805780635503a0e8146104b25780635b70ea9f146104dd57806362b99ad4146105085780636352211e1461053357806370a08231146105705761023b565b80633ccfd60b1461040257806342842e0e1461041957806344a0d68a146104355780634fdd43cb1461045e57806351830227146104875761023b565b806316ba10e01161020357806316ba10e01461032c57806318160ddd146103555780631cdce9fe1461038057806323b872dd146103bd57806326b092df146103d95761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede614610301575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061284b565b6108ed565b6040516102749190612893565b60405180910390f35b34801561028957600080fd5b5061029261097f565b60405161029f9190612947565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061299f565b610a11565b6040516102dc9190612a0d565b60405180910390f35b6102ff60048036038101906102fa9190612a54565b610a90565b005b34801561030d57600080fd5b50610316610bd4565b6040516103239190612aa3565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612bf3565b610bda565b005b34801561036157600080fd5b5061036a610bfc565b6040516103779190612aa3565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190612c3c565b610c13565b6040516103b49190612aa3565b60405180910390f35b6103d760048036038101906103d29190612c69565b610c2b565b005b3480156103e557600080fd5b5061040060048036038101906103fb919061299f565b610f50565b005b34801561040e57600080fd5b50610417610f62565b005b610433600480360381019061042e9190612c69565b610ffa565b005b34801561044157600080fd5b5061045c6004803603810190610457919061299f565b61101a565b005b34801561046a57600080fd5b5061048560048036038101906104809190612bf3565b61102c565b005b34801561049357600080fd5b5061049c61104e565b6040516104a99190612893565b60405180910390f35b3480156104be57600080fd5b506104c7611061565b6040516104d49190612947565b60405180910390f35b3480156104e957600080fd5b506104f26110ef565b6040516104ff9190612aa3565b60405180910390f35b34801561051457600080fd5b5061051d6110f5565b60405161052a9190612947565b60405180910390f35b34801561053f57600080fd5b5061055a6004803603810190610555919061299f565b611183565b6040516105679190612a0d565b60405180910390f35b34801561057c57600080fd5b5061059760048036038101906105929190612c3c565b611195565b6040516105a49190612aa3565b60405180910390f35b3480156105b957600080fd5b506105c261124e565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190612bf3565b611262565b005b3480156105f957600080fd5b50610602611284565b60405161060f9190612aa3565b60405180910390f35b34801561062457600080fd5b5061062d61128a565b60405161063a9190612a0d565b60405180910390f35b34801561064f57600080fd5b506106586112b4565b6040516106659190612aa3565b60405180910390f35b34801561067a57600080fd5b506106836112ba565b6040516106909190612947565b60405180910390f35b6106b360048036038101906106ae919061299f565b61134c565b005b3480156106c157600080fd5b506106dc60048036038101906106d79190612ce8565b611769565b005b3480156106ea57600080fd5b506106f3611874565b6040516107009190612893565b60405180910390f35b34801561071557600080fd5b5061071e611887565b60405161072b9190612947565b60405180910390f35b34801561074057600080fd5b5061075b6004803603810190610756919061299f565b611915565b005b61077760048036038101906107729190612dc9565b611927565b005b34801561078557600080fd5b506107a0600480360381019061079b919061299f565b61199a565b6040516107ad9190612947565b60405180910390f35b3480156107c257600080fd5b506107cb611af3565b6040516107d89190612aa3565b60405180910390f35b3480156107ed57600080fd5b5061080860048036038101906108039190612e4c565b611af9565b005b34801561081657600080fd5b5061081f611b1e565b005b34801561082d57600080fd5b5061084860048036038101906108439190612c3c565b611b52565b6040516108559190612aa3565b60405180910390f35b34801561086a57600080fd5b5061088560048036038101906108809190612e79565b611b6a565b6040516108929190612893565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190612eb9565b611bfe565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190612c3c565b611c6b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109785750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461098e90612f28565b80601f01602080910402602001604051908101604052809291908181526020018280546109ba90612f28565b8015610a075780601f106109dc57610100808354040283529160200191610a07565b820191906000526020600020905b8154815290600101906020018083116109ea57829003601f168201915b5050505050905090565b6000610a1c82611cef565b610a52576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9b82611183565b90508073ffffffffffffffffffffffffffffffffffffffff16610abc611d4e565b73ffffffffffffffffffffffffffffffffffffffff1614610b1f57610ae881610ae3611d4e565b611b6a565b610b1e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b610be2611d56565b80600d9080519060200190610bf892919061273c565b5050565b6000610c06611dd4565b6001546000540303905090565b600a6020528060005260406000206000915090505481565b6000610c3682611ddd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c9d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ca984611eab565b91509150610cbf8187610cba611d4e565b611ed2565b610d0b57610cd486610ccf611d4e565b611b6a565b610d0a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d72576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d7f8686866001611f16565b8015610d8a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5885610e34888887611f1c565b7c020000000000000000000000000000000000000000000000000000000017611f44565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ee0576000600185019050600060046000838152602001908152602001600020541415610ede576000548114610edd578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f488686866001611f6f565b505050505050565b610f58611d56565b8060138190555050565b610f6a611d56565b610f72611f75565b6000610f7c61128a565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f9f90612f8b565b60006040518083038185875af1925050503d8060008114610fdc576040519150601f19603f3d011682016040523d82523d6000602084013e610fe1565b606091505b5050905080610fef57600080fd5b50610ff8611fc5565b565b61101583838360405180602001604052806000815250611927565b505050565b611022611d56565b80600f8190555050565b611034611d56565b80600e908051906020019061104a92919061273c565b5050565b601460019054906101000a900460ff1681565b600d805461106e90612f28565b80601f016020809104026020016040519081016040528092919081815260200182805461109a90612f28565b80156110e75780601f106110bc576101008083540402835291602001916110e7565b820191906000526020600020905b8154815290600101906020018083116110ca57829003601f168201915b505050505081565b60105481565b600c805461110290612f28565b80601f016020809104026020016040519081016040528092919081815260200182805461112e90612f28565b801561117b5780601f106111505761010080835404028352916020019161117b565b820191906000526020600020905b81548152906001019060200180831161115e57829003601f168201915b505050505081565b600061118e82611ddd565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111fd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611256611d56565b6112606000611fcf565b565b61126a611d56565b80600c908051906020019061128092919061273c565b5050565b60135481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b6060600380546112c990612f28565b80601f01602080910402602001604051908101604052809291908181526020018280546112f590612f28565b80156113425780601f1061131757610100808354040283529160200191611342565b820191906000526020600020905b81548152906001019060200180831161132557829003601f168201915b5050505050905090565b8060008111801561135f57506012548111155b61139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590612fec565b60405180910390fd5b60135481600a60006113ae612095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f3919061303b565b1115611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b906130dd565b60405180910390fd5b60115481611440610bfc565b61144a919061303b565b111561148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290613149565b60405180910390fd5b80600a6000611498612095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114dd919061303b565b600a60006114e9612095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601460009054906101000a900460ff16611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d906131b5565b60405180910390fd5b601054600b6000611585612095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156116a6576010548210156115d65760105491505b600f54601054836115e791906131d5565b6115f19190613209565b341015611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a906132af565b60405180910390fd5b81600b6000611640612095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611689919061303b565b925050819055506116a161169b612095565b8361209d565b611765565b600f54826116b49190613209565b3410156116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed9061331b565b60405180910390fd5b81600b6000611703612095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461174c919061303b565b9250508190555061176461175e612095565b8361209d565b5b5050565b8060076000611776611d4e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611823611d4e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118689190612893565b60405180910390a35050565b601460009054906101000a900460ff1681565b600e805461189490612f28565b80601f01602080910402602001604051908101604052809291908181526020018280546118c090612f28565b801561190d5780601f106118e25761010080835404028352916020019161190d565b820191906000526020600020905b8154815290600101906020018083116118f057829003601f168201915b505050505081565b61191d611d56565b8060128190555050565b611932848484610c2b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119945761195d848484846120bb565b611993576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606119a582611cef565b6119e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119db906133ad565b60405180910390fd5b60001515601460019054906101000a900460ff1615151415611a9257600e8054611a0d90612f28565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3990612f28565b8015611a865780601f10611a5b57610100808354040283529160200191611a86565b820191906000526020600020905b815481529060010190602001808311611a6957829003601f168201915b50505050509050611aee565b6000611a9c61220c565b90506000815111611abc5760405180602001604052806000815250611aea565b80611ac68461229e565b600d604051602001611ada9392919061349d565b6040516020818303038152906040525b9150505b919050565b60115481565b611b01611d56565b80601460016101000a81548160ff02191690831515021790555050565b611b26611d56565b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b600b6020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c06611d56565b60115482611c12610bfc565b611c1c919061303b565b1115611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c549061351a565b60405180910390fd5b611c67818361209d565b5050565b611c73611d56565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda906135ac565b60405180910390fd5b611cec81611fcf565b50565b600081611cfa611dd4565b11158015611d09575060005482105b8015611d47575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611d5e612095565b73ffffffffffffffffffffffffffffffffffffffff16611d7c61128a565b73ffffffffffffffffffffffffffffffffffffffff1614611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc990613618565b60405180910390fd5b565b60006001905090565b60008082905080611dec611dd4565b11611e7457600054811015611e735760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e71575b6000811415611e67576004600083600190039350838152602001908152602001600020549050611e3c565b8092505050611ea6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f33868684612376565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60026009541415611fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb290613684565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6120b782826040518060200160405280600081525061237f565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120e1611d4e565b8786866040518563ffffffff1660e01b815260040161210394939291906136f9565b6020604051808303816000875af192505050801561213f57506040513d601f19601f8201168201806040525081019061213c919061375a565b60015b6121b9573d806000811461216f576040519150601f19603f3d011682016040523d82523d6000602084013e612174565b606091505b506000815114156121b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461221b90612f28565b80601f016020809104026020016040519081016040528092919081815260200182805461224790612f28565b80156122945780601f1061226957610100808354040283529160200191612294565b820191906000526020600020905b81548152906001019060200180831161227757829003601f168201915b5050505050905090565b6060600060016122ad8461241c565b01905060008167ffffffffffffffff8111156122cc576122cb612ac8565b5b6040519080825280601f01601f1916602001820160405280156122fe5781602001600182028036833780820191505090505b509050600082602001820190505b60011561236b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161235557612354613787565b5b04945060008514156123665761236b565b61230c565b819350505050919050565b60009392505050565b612389838361256f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461241757600080549050600083820390505b6123c960008683806001019450866120bb565b6123ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123b657816000541461241457600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061247a577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816124705761246f613787565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106124b7576d04ee2d6d415b85acef810000000083816124ad576124ac613787565b5b0492506020810190505b662386f26fc1000083106124e657662386f26fc1000083816124dc576124db613787565b5b0492506010810190505b6305f5e100831061250f576305f5e100838161250557612504613787565b5b0492506008810190505b612710831061253457612710838161252a57612529613787565b5b0492506004810190505b60648310612557576064838161254d5761254c613787565b5b0492506002810190505b600a8310612566576001810190505b80915050919050565b60008054905060008214156125b0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125bd6000848385611f16565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612634836126256000866000611f1c565b61262e8561272c565b17611f44565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126d557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061269a565b506000821415612711576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127276000848385611f6f565b505050565b60006001821460e11b9050919050565b82805461274890612f28565b90600052602060002090601f01602090048101928261276a57600085556127b1565b82601f1061278357805160ff19168380011785556127b1565b828001600101855582156127b1579182015b828111156127b0578251825591602001919060010190612795565b5b5090506127be91906127c2565b5090565b5b808211156127db5760008160009055506001016127c3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612828816127f3565b811461283357600080fd5b50565b6000813590506128458161281f565b92915050565b600060208284031215612861576128606127e9565b5b600061286f84828501612836565b91505092915050565b60008115159050919050565b61288d81612878565b82525050565b60006020820190506128a86000830184612884565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128e85780820151818401526020810190506128cd565b838111156128f7576000848401525b50505050565b6000601f19601f8301169050919050565b6000612919826128ae565b61292381856128b9565b93506129338185602086016128ca565b61293c816128fd565b840191505092915050565b60006020820190508181036000830152612961818461290e565b905092915050565b6000819050919050565b61297c81612969565b811461298757600080fd5b50565b60008135905061299981612973565b92915050565b6000602082840312156129b5576129b46127e9565b5b60006129c38482850161298a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129f7826129cc565b9050919050565b612a07816129ec565b82525050565b6000602082019050612a2260008301846129fe565b92915050565b612a31816129ec565b8114612a3c57600080fd5b50565b600081359050612a4e81612a28565b92915050565b60008060408385031215612a6b57612a6a6127e9565b5b6000612a7985828601612a3f565b9250506020612a8a8582860161298a565b9150509250929050565b612a9d81612969565b82525050565b6000602082019050612ab86000830184612a94565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b00826128fd565b810181811067ffffffffffffffff82111715612b1f57612b1e612ac8565b5b80604052505050565b6000612b326127df565b9050612b3e8282612af7565b919050565b600067ffffffffffffffff821115612b5e57612b5d612ac8565b5b612b67826128fd565b9050602081019050919050565b82818337600083830152505050565b6000612b96612b9184612b43565b612b28565b905082815260208101848484011115612bb257612bb1612ac3565b5b612bbd848285612b74565b509392505050565b600082601f830112612bda57612bd9612abe565b5b8135612bea848260208601612b83565b91505092915050565b600060208284031215612c0957612c086127e9565b5b600082013567ffffffffffffffff811115612c2757612c266127ee565b5b612c3384828501612bc5565b91505092915050565b600060208284031215612c5257612c516127e9565b5b6000612c6084828501612a3f565b91505092915050565b600080600060608486031215612c8257612c816127e9565b5b6000612c9086828701612a3f565b9350506020612ca186828701612a3f565b9250506040612cb28682870161298a565b9150509250925092565b612cc581612878565b8114612cd057600080fd5b50565b600081359050612ce281612cbc565b92915050565b60008060408385031215612cff57612cfe6127e9565b5b6000612d0d85828601612a3f565b9250506020612d1e85828601612cd3565b9150509250929050565b600067ffffffffffffffff821115612d4357612d42612ac8565b5b612d4c826128fd565b9050602081019050919050565b6000612d6c612d6784612d28565b612b28565b905082815260208101848484011115612d8857612d87612ac3565b5b612d93848285612b74565b509392505050565b600082601f830112612db057612daf612abe565b5b8135612dc0848260208601612d59565b91505092915050565b60008060008060808587031215612de357612de26127e9565b5b6000612df187828801612a3f565b9450506020612e0287828801612a3f565b9350506040612e138782880161298a565b925050606085013567ffffffffffffffff811115612e3457612e336127ee565b5b612e4087828801612d9b565b91505092959194509250565b600060208284031215612e6257612e616127e9565b5b6000612e7084828501612cd3565b91505092915050565b60008060408385031215612e9057612e8f6127e9565b5b6000612e9e85828601612a3f565b9250506020612eaf85828601612a3f565b9150509250929050565b60008060408385031215612ed057612ecf6127e9565b5b6000612ede8582860161298a565b9250506020612eef85828601612a3f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f4057607f821691505b60208210811415612f5457612f53612ef9565b5b50919050565b600081905092915050565b50565b6000612f75600083612f5a565b9150612f8082612f65565b600082019050919050565b6000612f9682612f68565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612fd66014836128b9565b9150612fe182612fa0565b602082019050919050565b6000602082019050818103600083015261300581612fc9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061304682612969565b915061305183612969565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130865761308561300c565b5b828201905092915050565b7f65786365656473206d6178207065722061646472657373000000000000000000600082015250565b60006130c76017836128b9565b91506130d282613091565b602082019050919050565b600060208201905081810360008301526130f6816130ba565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006131336014836128b9565b915061313e826130fd565b602082019050919050565b6000602082019050818103600083015261316281613126565b9050919050565b7f5075626c696353616c65206973204f4646000000000000000000000000000000600082015250565b600061319f6011836128b9565b91506131aa82613169565b602082019050919050565b600060208201905081810360008301526131ce81613192565b9050919050565b60006131e082612969565b91506131eb83612969565b9250828210156131fe576131fd61300c565b5b828203905092915050565b600061321482612969565b915061321f83612969565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132585761325761300c565b5b828202905092915050565b7f4e6f746963653a436c61696d2046726565204e46540000000000000000000000600082015250565b60006132996015836128b9565b91506132a482613263565b602082019050919050565b600060208201905081810360008301526132c88161328c565b9050919050565b7f4e6f746963653a46756e64206e6f7420656e6f75676800000000000000000000600082015250565b60006133056016836128b9565b9150613310826132cf565b602082019050919050565b60006020820190508181036000830152613334816132f8565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613397602f836128b9565b91506133a28261333b565b604082019050919050565b600060208201905081810360008301526133c68161338a565b9050919050565b600081905092915050565b60006133e3826128ae565b6133ed81856133cd565b93506133fd8185602086016128ca565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461342b81612f28565b61343581866133cd565b94506001821660008114613450576001811461346157613494565b60ff19831686528186019350613494565b61346a85613409565b60005b8381101561348c5781548189015260018201915060208101905061346d565b838801955050505b50505092915050565b60006134a982866133d8565b91506134b582856133d8565b91506134c1828461341e565b9150819050949350505050565b7f72656163686564204d617820537570706c790000000000000000000000000000600082015250565b60006135046012836128b9565b915061350f826134ce565b602082019050919050565b60006020820190508181036000830152613533816134f7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135966026836128b9565b91506135a18261353a565b604082019050919050565b600060208201905081810360008301526135c581613589565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136026020836128b9565b915061360d826135cc565b602082019050919050565b60006020820190508181036000830152613631816135f5565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061366e601f836128b9565b915061367982613638565b602082019050919050565b6000602082019050818103600083015261369d81613661565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136cb826136a4565b6136d581856136af565b93506136e58185602086016128ca565b6136ee816128fd565b840191505092915050565b600060808201905061370e60008301876129fe565b61371b60208301866129fe565b6137286040830185612a94565b818103606083015261373a81846136c0565b905095945050505050565b6000815190506137548161281f565b92915050565b6000602082840312156137705761376f6127e9565b5b600061377e84828501613745565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220409aa8842e52f71fbed574fffea7e56e7f8d81d6449356c81fbfa8d6f020cdcc64736f6c634300080a003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000115c000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000001054686520576974636865722047616e6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354574700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d596f7078324c52563348666f524e6645316967764775705170444b6638734a3737755a3174696b76657177452f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063715018a61161012e578063b071401b116100ab578063e222c7f91161006f578063e222c7f91461080a578063e645f70814610821578063e985e9c51461085e578063efbd73f41461089b578063f2fde38b146108c45761023b565b8063b071401b14610734578063b88d4fde1461075d578063c87b56dd14610779578063d5abeb01146107b6578063e0a80853146107e15761023b565b806395d89b41116100f257806395d89b411461066e578063a0712d6814610699578063a22cb465146106b5578063a45063c0146106de578063a45ba8e7146107095761023b565b8063715018a6146105ad5780637ec4a659146105c4578063867cb30e146105ed5780638da5cb5b1461061857806394354fd0146106435761023b565b80633ccfd60b116101bc5780635503a0e8116101805780635503a0e8146104b25780635b70ea9f146104dd57806362b99ad4146105085780636352211e1461053357806370a08231146105705761023b565b80633ccfd60b1461040257806342842e0e1461041957806344a0d68a146104355780634fdd43cb1461045e57806351830227146104875761023b565b806316ba10e01161020357806316ba10e01461032c57806318160ddd146103555780631cdce9fe1461038057806323b872dd146103bd57806326b092df146103d95761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede614610301575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061284b565b6108ed565b6040516102749190612893565b60405180910390f35b34801561028957600080fd5b5061029261097f565b60405161029f9190612947565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061299f565b610a11565b6040516102dc9190612a0d565b60405180910390f35b6102ff60048036038101906102fa9190612a54565b610a90565b005b34801561030d57600080fd5b50610316610bd4565b6040516103239190612aa3565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612bf3565b610bda565b005b34801561036157600080fd5b5061036a610bfc565b6040516103779190612aa3565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190612c3c565b610c13565b6040516103b49190612aa3565b60405180910390f35b6103d760048036038101906103d29190612c69565b610c2b565b005b3480156103e557600080fd5b5061040060048036038101906103fb919061299f565b610f50565b005b34801561040e57600080fd5b50610417610f62565b005b610433600480360381019061042e9190612c69565b610ffa565b005b34801561044157600080fd5b5061045c6004803603810190610457919061299f565b61101a565b005b34801561046a57600080fd5b5061048560048036038101906104809190612bf3565b61102c565b005b34801561049357600080fd5b5061049c61104e565b6040516104a99190612893565b60405180910390f35b3480156104be57600080fd5b506104c7611061565b6040516104d49190612947565b60405180910390f35b3480156104e957600080fd5b506104f26110ef565b6040516104ff9190612aa3565b60405180910390f35b34801561051457600080fd5b5061051d6110f5565b60405161052a9190612947565b60405180910390f35b34801561053f57600080fd5b5061055a6004803603810190610555919061299f565b611183565b6040516105679190612a0d565b60405180910390f35b34801561057c57600080fd5b5061059760048036038101906105929190612c3c565b611195565b6040516105a49190612aa3565b60405180910390f35b3480156105b957600080fd5b506105c261124e565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190612bf3565b611262565b005b3480156105f957600080fd5b50610602611284565b60405161060f9190612aa3565b60405180910390f35b34801561062457600080fd5b5061062d61128a565b60405161063a9190612a0d565b60405180910390f35b34801561064f57600080fd5b506106586112b4565b6040516106659190612aa3565b60405180910390f35b34801561067a57600080fd5b506106836112ba565b6040516106909190612947565b60405180910390f35b6106b360048036038101906106ae919061299f565b61134c565b005b3480156106c157600080fd5b506106dc60048036038101906106d79190612ce8565b611769565b005b3480156106ea57600080fd5b506106f3611874565b6040516107009190612893565b60405180910390f35b34801561071557600080fd5b5061071e611887565b60405161072b9190612947565b60405180910390f35b34801561074057600080fd5b5061075b6004803603810190610756919061299f565b611915565b005b61077760048036038101906107729190612dc9565b611927565b005b34801561078557600080fd5b506107a0600480360381019061079b919061299f565b61199a565b6040516107ad9190612947565b60405180910390f35b3480156107c257600080fd5b506107cb611af3565b6040516107d89190612aa3565b60405180910390f35b3480156107ed57600080fd5b5061080860048036038101906108039190612e4c565b611af9565b005b34801561081657600080fd5b5061081f611b1e565b005b34801561082d57600080fd5b5061084860048036038101906108439190612c3c565b611b52565b6040516108559190612aa3565b60405180910390f35b34801561086a57600080fd5b5061088560048036038101906108809190612e79565b611b6a565b6040516108929190612893565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190612eb9565b611bfe565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190612c3c565b611c6b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109785750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461098e90612f28565b80601f01602080910402602001604051908101604052809291908181526020018280546109ba90612f28565b8015610a075780601f106109dc57610100808354040283529160200191610a07565b820191906000526020600020905b8154815290600101906020018083116109ea57829003601f168201915b5050505050905090565b6000610a1c82611cef565b610a52576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9b82611183565b90508073ffffffffffffffffffffffffffffffffffffffff16610abc611d4e565b73ffffffffffffffffffffffffffffffffffffffff1614610b1f57610ae881610ae3611d4e565b611b6a565b610b1e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b610be2611d56565b80600d9080519060200190610bf892919061273c565b5050565b6000610c06611dd4565b6001546000540303905090565b600a6020528060005260406000206000915090505481565b6000610c3682611ddd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c9d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ca984611eab565b91509150610cbf8187610cba611d4e565b611ed2565b610d0b57610cd486610ccf611d4e565b611b6a565b610d0a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d72576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d7f8686866001611f16565b8015610d8a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5885610e34888887611f1c565b7c020000000000000000000000000000000000000000000000000000000017611f44565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ee0576000600185019050600060046000838152602001908152602001600020541415610ede576000548114610edd578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f488686866001611f6f565b505050505050565b610f58611d56565b8060138190555050565b610f6a611d56565b610f72611f75565b6000610f7c61128a565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f9f90612f8b565b60006040518083038185875af1925050503d8060008114610fdc576040519150601f19603f3d011682016040523d82523d6000602084013e610fe1565b606091505b5050905080610fef57600080fd5b50610ff8611fc5565b565b61101583838360405180602001604052806000815250611927565b505050565b611022611d56565b80600f8190555050565b611034611d56565b80600e908051906020019061104a92919061273c565b5050565b601460019054906101000a900460ff1681565b600d805461106e90612f28565b80601f016020809104026020016040519081016040528092919081815260200182805461109a90612f28565b80156110e75780601f106110bc576101008083540402835291602001916110e7565b820191906000526020600020905b8154815290600101906020018083116110ca57829003601f168201915b505050505081565b60105481565b600c805461110290612f28565b80601f016020809104026020016040519081016040528092919081815260200182805461112e90612f28565b801561117b5780601f106111505761010080835404028352916020019161117b565b820191906000526020600020905b81548152906001019060200180831161115e57829003601f168201915b505050505081565b600061118e82611ddd565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111fd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611256611d56565b6112606000611fcf565b565b61126a611d56565b80600c908051906020019061128092919061273c565b5050565b60135481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b6060600380546112c990612f28565b80601f01602080910402602001604051908101604052809291908181526020018280546112f590612f28565b80156113425780601f1061131757610100808354040283529160200191611342565b820191906000526020600020905b81548152906001019060200180831161132557829003601f168201915b5050505050905090565b8060008111801561135f57506012548111155b61139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590612fec565b60405180910390fd5b60135481600a60006113ae612095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f3919061303b565b1115611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b906130dd565b60405180910390fd5b60115481611440610bfc565b61144a919061303b565b111561148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290613149565b60405180910390fd5b80600a6000611498612095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114dd919061303b565b600a60006114e9612095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601460009054906101000a900460ff16611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d906131b5565b60405180910390fd5b601054600b6000611585612095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156116a6576010548210156115d65760105491505b600f54601054836115e791906131d5565b6115f19190613209565b341015611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a906132af565b60405180910390fd5b81600b6000611640612095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611689919061303b565b925050819055506116a161169b612095565b8361209d565b611765565b600f54826116b49190613209565b3410156116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed9061331b565b60405180910390fd5b81600b6000611703612095565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461174c919061303b565b9250508190555061176461175e612095565b8361209d565b5b5050565b8060076000611776611d4e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611823611d4e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118689190612893565b60405180910390a35050565b601460009054906101000a900460ff1681565b600e805461189490612f28565b80601f01602080910402602001604051908101604052809291908181526020018280546118c090612f28565b801561190d5780601f106118e25761010080835404028352916020019161190d565b820191906000526020600020905b8154815290600101906020018083116118f057829003601f168201915b505050505081565b61191d611d56565b8060128190555050565b611932848484610c2b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119945761195d848484846120bb565b611993576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606119a582611cef565b6119e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119db906133ad565b60405180910390fd5b60001515601460019054906101000a900460ff1615151415611a9257600e8054611a0d90612f28565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3990612f28565b8015611a865780601f10611a5b57610100808354040283529160200191611a86565b820191906000526020600020905b815481529060010190602001808311611a6957829003601f168201915b50505050509050611aee565b6000611a9c61220c565b90506000815111611abc5760405180602001604052806000815250611aea565b80611ac68461229e565b600d604051602001611ada9392919061349d565b6040516020818303038152906040525b9150505b919050565b60115481565b611b01611d56565b80601460016101000a81548160ff02191690831515021790555050565b611b26611d56565b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b600b6020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c06611d56565b60115482611c12610bfc565b611c1c919061303b565b1115611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c549061351a565b60405180910390fd5b611c67818361209d565b5050565b611c73611d56565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda906135ac565b60405180910390fd5b611cec81611fcf565b50565b600081611cfa611dd4565b11158015611d09575060005482105b8015611d47575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611d5e612095565b73ffffffffffffffffffffffffffffffffffffffff16611d7c61128a565b73ffffffffffffffffffffffffffffffffffffffff1614611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc990613618565b60405180910390fd5b565b60006001905090565b60008082905080611dec611dd4565b11611e7457600054811015611e735760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e71575b6000811415611e67576004600083600190039350838152602001908152602001600020549050611e3c565b8092505050611ea6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f33868684612376565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60026009541415611fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb290613684565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6120b782826040518060200160405280600081525061237f565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120e1611d4e565b8786866040518563ffffffff1660e01b815260040161210394939291906136f9565b6020604051808303816000875af192505050801561213f57506040513d601f19601f8201168201806040525081019061213c919061375a565b60015b6121b9573d806000811461216f576040519150601f19603f3d011682016040523d82523d6000602084013e612174565b606091505b506000815114156121b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461221b90612f28565b80601f016020809104026020016040519081016040528092919081815260200182805461224790612f28565b80156122945780601f1061226957610100808354040283529160200191612294565b820191906000526020600020905b81548152906001019060200180831161227757829003601f168201915b5050505050905090565b6060600060016122ad8461241c565b01905060008167ffffffffffffffff8111156122cc576122cb612ac8565b5b6040519080825280601f01601f1916602001820160405280156122fe5781602001600182028036833780820191505090505b509050600082602001820190505b60011561236b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161235557612354613787565b5b04945060008514156123665761236b565b61230c565b819350505050919050565b60009392505050565b612389838361256f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461241757600080549050600083820390505b6123c960008683806001019450866120bb565b6123ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123b657816000541461241457600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061247a577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816124705761246f613787565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106124b7576d04ee2d6d415b85acef810000000083816124ad576124ac613787565b5b0492506020810190505b662386f26fc1000083106124e657662386f26fc1000083816124dc576124db613787565b5b0492506010810190505b6305f5e100831061250f576305f5e100838161250557612504613787565b5b0492506008810190505b612710831061253457612710838161252a57612529613787565b5b0492506004810190505b60648310612557576064838161254d5761254c613787565b5b0492506002810190505b600a8310612566576001810190505b80915050919050565b60008054905060008214156125b0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125bd6000848385611f16565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612634836126256000866000611f1c565b61262e8561272c565b17611f44565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126d557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061269a565b506000821415612711576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127276000848385611f6f565b505050565b60006001821460e11b9050919050565b82805461274890612f28565b90600052602060002090601f01602090048101928261276a57600085556127b1565b82601f1061278357805160ff19168380011785556127b1565b828001600101855582156127b1579182015b828111156127b0578251825591602001919060010190612795565b5b5090506127be91906127c2565b5090565b5b808211156127db5760008160009055506001016127c3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612828816127f3565b811461283357600080fd5b50565b6000813590506128458161281f565b92915050565b600060208284031215612861576128606127e9565b5b600061286f84828501612836565b91505092915050565b60008115159050919050565b61288d81612878565b82525050565b60006020820190506128a86000830184612884565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128e85780820151818401526020810190506128cd565b838111156128f7576000848401525b50505050565b6000601f19601f8301169050919050565b6000612919826128ae565b61292381856128b9565b93506129338185602086016128ca565b61293c816128fd565b840191505092915050565b60006020820190508181036000830152612961818461290e565b905092915050565b6000819050919050565b61297c81612969565b811461298757600080fd5b50565b60008135905061299981612973565b92915050565b6000602082840312156129b5576129b46127e9565b5b60006129c38482850161298a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129f7826129cc565b9050919050565b612a07816129ec565b82525050565b6000602082019050612a2260008301846129fe565b92915050565b612a31816129ec565b8114612a3c57600080fd5b50565b600081359050612a4e81612a28565b92915050565b60008060408385031215612a6b57612a6a6127e9565b5b6000612a7985828601612a3f565b9250506020612a8a8582860161298a565b9150509250929050565b612a9d81612969565b82525050565b6000602082019050612ab86000830184612a94565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b00826128fd565b810181811067ffffffffffffffff82111715612b1f57612b1e612ac8565b5b80604052505050565b6000612b326127df565b9050612b3e8282612af7565b919050565b600067ffffffffffffffff821115612b5e57612b5d612ac8565b5b612b67826128fd565b9050602081019050919050565b82818337600083830152505050565b6000612b96612b9184612b43565b612b28565b905082815260208101848484011115612bb257612bb1612ac3565b5b612bbd848285612b74565b509392505050565b600082601f830112612bda57612bd9612abe565b5b8135612bea848260208601612b83565b91505092915050565b600060208284031215612c0957612c086127e9565b5b600082013567ffffffffffffffff811115612c2757612c266127ee565b5b612c3384828501612bc5565b91505092915050565b600060208284031215612c5257612c516127e9565b5b6000612c6084828501612a3f565b91505092915050565b600080600060608486031215612c8257612c816127e9565b5b6000612c9086828701612a3f565b9350506020612ca186828701612a3f565b9250506040612cb28682870161298a565b9150509250925092565b612cc581612878565b8114612cd057600080fd5b50565b600081359050612ce281612cbc565b92915050565b60008060408385031215612cff57612cfe6127e9565b5b6000612d0d85828601612a3f565b9250506020612d1e85828601612cd3565b9150509250929050565b600067ffffffffffffffff821115612d4357612d42612ac8565b5b612d4c826128fd565b9050602081019050919050565b6000612d6c612d6784612d28565b612b28565b905082815260208101848484011115612d8857612d87612ac3565b5b612d93848285612b74565b509392505050565b600082601f830112612db057612daf612abe565b5b8135612dc0848260208601612d59565b91505092915050565b60008060008060808587031215612de357612de26127e9565b5b6000612df187828801612a3f565b9450506020612e0287828801612a3f565b9350506040612e138782880161298a565b925050606085013567ffffffffffffffff811115612e3457612e336127ee565b5b612e4087828801612d9b565b91505092959194509250565b600060208284031215612e6257612e616127e9565b5b6000612e7084828501612cd3565b91505092915050565b60008060408385031215612e9057612e8f6127e9565b5b6000612e9e85828601612a3f565b9250506020612eaf85828601612a3f565b9150509250929050565b60008060408385031215612ed057612ecf6127e9565b5b6000612ede8582860161298a565b9250506020612eef85828601612a3f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f4057607f821691505b60208210811415612f5457612f53612ef9565b5b50919050565b600081905092915050565b50565b6000612f75600083612f5a565b9150612f8082612f65565b600082019050919050565b6000612f9682612f68565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612fd66014836128b9565b9150612fe182612fa0565b602082019050919050565b6000602082019050818103600083015261300581612fc9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061304682612969565b915061305183612969565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130865761308561300c565b5b828201905092915050565b7f65786365656473206d6178207065722061646472657373000000000000000000600082015250565b60006130c76017836128b9565b91506130d282613091565b602082019050919050565b600060208201905081810360008301526130f6816130ba565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006131336014836128b9565b915061313e826130fd565b602082019050919050565b6000602082019050818103600083015261316281613126565b9050919050565b7f5075626c696353616c65206973204f4646000000000000000000000000000000600082015250565b600061319f6011836128b9565b91506131aa82613169565b602082019050919050565b600060208201905081810360008301526131ce81613192565b9050919050565b60006131e082612969565b91506131eb83612969565b9250828210156131fe576131fd61300c565b5b828203905092915050565b600061321482612969565b915061321f83612969565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132585761325761300c565b5b828202905092915050565b7f4e6f746963653a436c61696d2046726565204e46540000000000000000000000600082015250565b60006132996015836128b9565b91506132a482613263565b602082019050919050565b600060208201905081810360008301526132c88161328c565b9050919050565b7f4e6f746963653a46756e64206e6f7420656e6f75676800000000000000000000600082015250565b60006133056016836128b9565b9150613310826132cf565b602082019050919050565b60006020820190508181036000830152613334816132f8565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613397602f836128b9565b91506133a28261333b565b604082019050919050565b600060208201905081810360008301526133c68161338a565b9050919050565b600081905092915050565b60006133e3826128ae565b6133ed81856133cd565b93506133fd8185602086016128ca565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461342b81612f28565b61343581866133cd565b94506001821660008114613450576001811461346157613494565b60ff19831686528186019350613494565b61346a85613409565b60005b8381101561348c5781548189015260018201915060208101905061346d565b838801955050505b50505092915050565b60006134a982866133d8565b91506134b582856133d8565b91506134c1828461341e565b9150819050949350505050565b7f72656163686564204d617820537570706c790000000000000000000000000000600082015250565b60006135046012836128b9565b915061350f826134ce565b602082019050919050565b60006020820190508181036000830152613533816134f7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135966026836128b9565b91506135a18261353a565b604082019050919050565b600060208201905081810360008301526135c581613589565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136026020836128b9565b915061360d826135cc565b602082019050919050565b60006020820190508181036000830152613631816135f5565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061366e601f836128b9565b915061367982613638565b602082019050919050565b6000602082019050818103600083015261369d81613661565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136cb826136a4565b6136d581856136af565b93506136e58185602086016128ca565b6136ee816128fd565b840191505092915050565b600060808201905061370e60008301876129fe565b61371b60208301866129fe565b6137286040830185612a94565b818103606083015261373a81846136c0565b905095945050505050565b6000815190506137548161281f565b92915050565b6000602082840312156137705761376f6127e9565b5b600061377e84828501613745565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220409aa8842e52f71fbed574fffea7e56e7f8d81d6449356c81fbfa8d6f020cdcc64736f6c634300080a0033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000115c000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000001054686520576974636865722047616e6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354574700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d596f7078324c52563348666f524e6645316967764775705170444b6638734a3737755a3174696b76657177452f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): The Witcher Gang
Arg [1] : _tokenSymbol (string): TWG
Arg [2] : _maxSupply (uint256): 4444
Arg [3] : _maxMintAmountPerTx (uint256): 3
Arg [4] : _maxMintAmountPerW (uint256): 3
Arg [5] : _hiddenMetadataUri (string): ipfs://QmYopx2LRV3HfoRNfE1igvGupQpDKf8sJ77uZ1tikveqwE/hidden.json

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 000000000000000000000000000000000000000000000000000000000000115c
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [7] : 54686520576974636865722047616e6700000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 5457470000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [11] : 697066733a2f2f516d596f7078324c52563348666f524e664531696776477570
Arg [12] : 5170444b6638734a3737755a3174696b76657177452f68696464656e2e6a736f
Arg [13] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

82828:4065:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49703:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50605:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57096:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56529:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83146:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86449:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46356:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82929:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60735:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85953:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86631:153;;;;;;;;;;;;;:::i;:::-;;63656:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85879:72;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86213:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83356:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83068:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83186:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83035:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51998:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47540:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30482:103;;;;;;;;;;;;;:::i;:::-;;86347:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83282:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29834:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83244:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50781:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84373:666;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57654:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83324:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83106:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86081:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64447:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85349:443;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83215:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85796:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86553:74;;;;;;;;;;;;;:::i;:::-;;82980:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58045:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85045:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30740:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49703:639;49788:4;50127:10;50112:25;;:11;:25;;;;:102;;;;50204:10;50189:25;;:11;:25;;;;50112:102;:179;;;;50281:10;50266:25;;:11;:25;;;;50112:179;50092:199;;49703:639;;;:::o;50605:100::-;50659:13;50692:5;50685:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50605:100;:::o;57096:218::-;57172:7;57197:16;57205:7;57197;:16::i;:::-;57192:64;;57222:34;;;;;;;;;;;;;;57192:64;57276:15;:24;57292:7;57276:24;;;;;;;;;;;:30;;;;;;;;;;;;57269:37;;57096:218;;;:::o;56529:408::-;56618:13;56634:16;56642:7;56634;:16::i;:::-;56618:32;;56690:5;56667:28;;:19;:17;:19::i;:::-;:28;;;56663:175;;56715:44;56732:5;56739:19;:17;:19::i;:::-;56715:16;:44::i;:::-;56710:128;;56787:35;;;;;;;;;;;;;;56710:128;56663:175;56883:2;56850:15;:24;56866:7;56850:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;56921:7;56917:2;56901:28;;56910:5;56901:28;;;;;;;;;;;;56607:330;56529:408;;:::o;83146:34::-;;;;:::o;86449:98::-;29720:13;:11;:13::i;:::-;86533:10:::1;86521:9;:22;;;;;;;;;;;;:::i;:::-;;86449:98:::0;:::o;46356:323::-;46417:7;46645:15;:13;:15::i;:::-;46630:12;;46614:13;;:28;:46;46607:53;;46356:323;:::o;82929:46::-;;;;;;;;;;;;;;;;;:::o;60735:2825::-;60877:27;60907;60926:7;60907:18;:27::i;:::-;60877:57;;60992:4;60951:45;;60967:19;60951:45;;;60947:86;;61005:28;;;;;;;;;;;;;;60947:86;61047:27;61076:23;61103:35;61130:7;61103:26;:35::i;:::-;61046:92;;;;61238:68;61263:15;61280:4;61286:19;:17;:19::i;:::-;61238:24;:68::i;:::-;61233:180;;61326:43;61343:4;61349:19;:17;:19::i;:::-;61326:16;:43::i;:::-;61321:92;;61378:35;;;;;;;;;;;;;;61321:92;61233:180;61444:1;61430:16;;:2;:16;;;61426:52;;;61455:23;;;;;;;;;;;;;;61426:52;61491:43;61513:4;61519:2;61523:7;61532:1;61491:21;:43::i;:::-;61627:15;61624:160;;;61767:1;61746:19;61739:30;61624:160;62164:18;:24;62183:4;62164:24;;;;;;;;;;;;;;;;62162:26;;;;;;;;;;;;62233:18;:22;62252:2;62233:22;;;;;;;;;;;;;;;;62231:24;;;;;;;;;;;62555:146;62592:2;62641:45;62656:4;62662:2;62666:19;62641:14;:45::i;:::-;42755:8;62613:73;62555:18;:146::i;:::-;62526:17;:26;62544:7;62526:26;;;;;;;;;;;:175;;;;62872:1;42755:8;62821:19;:47;:52;62817:627;;;62894:19;62926:1;62916:7;:11;62894:33;;63083:1;63049:17;:30;63067:11;63049:30;;;;;;;;;;;;:35;63045:384;;;63187:13;;63172:11;:28;63168:242;;63367:19;63334:17;:30;63352:11;63334:30;;;;;;;;;;;:52;;;;63168:242;63045:384;62875:569;62817:627;63491:7;63487:2;63472:27;;63481:4;63472:27;;;;;;;;;;;;63510:42;63531:4;63537:2;63541:7;63550:1;63510:20;:42::i;:::-;60866:2694;;;60735:2825;;;:::o;85953:126::-;29720:13;:11;:13::i;:::-;86057:18:::1;86037:17;:38;;;;85953:126:::0;:::o;86631:153::-;29720:13;:11;:13::i;:::-;17544:21:::1;:19;:21::i;:::-;86694:7:::2;86715;:5;:7::i;:::-;86707:21;;86736;86707:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86693:69;;;86777:2;86769:11;;;::::0;::::2;;86681:103;17588:20:::1;:18;:20::i;:::-;86631:153::o:0;63656:193::-;63802:39;63819:4;63825:2;63829:7;63802:39;;;;;;;;;;;;:16;:39::i;:::-;63656:193;;;:::o;85879:72::-;29720:13;:11;:13::i;:::-;85942:5:::1;85935:4;:12;;;;85879:72:::0;:::o;86213:130::-;29720:13;:11;:13::i;:::-;86321:18:::1;86301:17;:38;;;;;;;;;;;;:::i;:::-;;86213:130:::0;:::o;83356:28::-;;;;;;;;;;;;;:::o;83068:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;83186:24::-;;;;:::o;83035:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51998:152::-;52070:7;52113:27;52132:7;52113:18;:27::i;:::-;52090:52;;51998:152;;;:::o;47540:233::-;47612:7;47653:1;47636:19;;:5;:19;;;47632:60;;;47664:28;;;;;;;;;;;;;;47632:60;41699:13;47710:18;:25;47729:5;47710:25;;;;;;;;;;;;;;;;:55;47703:62;;47540:233;;;:::o;30482:103::-;29720:13;:11;:13::i;:::-;30547:30:::1;30574:1;30547:18;:30::i;:::-;30482:103::o:0;86347:98::-;29720:13;:11;:13::i;:::-;86431:10:::1;86419:9;:22;;;;;;;;;;;;:::i;:::-;;86347:98:::0;:::o;83282:32::-;;;;:::o;29834:87::-;29880:7;29907:6;;;;;;;;;;;29900:13;;29834:87;:::o;83244:33::-;;;;:::o;50781:104::-;50837:13;50870:7;50863:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50781:104;:::o;84373:666::-;84438:11;83899:1;83885:11;:15;:52;;;;;83919:18;;83904:11;:33;;83885:52;83877:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;84030:17;;84015:11;83987;:25;83999:12;:10;:12::i;:::-;83987:25;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:60;;83969:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;84140:9;;84125:11;84109:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;84101:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;84237:11;84209;:25;84221:12;:10;:12::i;:::-;84209:25;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;84181:11;:25;84193:12;:10;:12::i;:::-;84181:25;;;;;;;;;;;;;;;:67;;;;84466:7:::1;;;;;;;;;;;84458:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;84532:8;;84505:10;:24;84516:12;:10;:12::i;:::-;84505:24;;;;;;;;;;;;;;;;:35;84502:534;;;84584:8;;84570:11;:22;84567:49;;;84608:8;;84594:22;;84567:49;84678:4;;84666:8;;84652:11;:22;;;;:::i;:::-;84651:31;;;;:::i;:::-;84638:9;:44;;84630:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;84750:11;84722:10;:24;84733:12;:10;:12::i;:::-;84722:24;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;84775:36;84785:12;:10;:12::i;:::-;84799:11;84775:9;:36::i;:::-;84502:534;;;84896:4;;84882:11;:18;;;;:::i;:::-;84869:9;:31;;84861:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;84969:11;84941:10;:24;84952:12;:10;:12::i;:::-;84941:24;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;84992:36;85002:12;:10;:12::i;:::-;85016:11;84992:9;:36::i;:::-;84502:534;84373:666:::0;;:::o;57654:234::-;57801:8;57749:18;:39;57768:19;:17;:19::i;:::-;57749:39;;;;;;;;;;;;;;;:49;57789:8;57749:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;57861:8;57825:55;;57840:19;:17;:19::i;:::-;57825:55;;;57871:8;57825:55;;;;;;:::i;:::-;;;;;;;;57654:234;;:::o;83324:27::-;;;;;;;;;;;;;:::o;83106:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;86081:128::-;29720:13;:11;:13::i;:::-;86186:19:::1;86165:18;:40;;;;86081:128:::0;:::o;64447:407::-;64622:31;64635:4;64641:2;64645:7;64622:12;:31::i;:::-;64686:1;64668:2;:14;;;:19;64664:183;;64707:56;64738:4;64744:2;64748:7;64757:5;64707:30;:56::i;:::-;64702:145;;64791:40;;;;;;;;;;;;;;64702:145;64664:183;64447:407;;;;:::o;85349:443::-;85423:13;85453:17;85461:8;85453:7;:17::i;:::-;85445:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;85547:5;85535:17;;:8;;;;;;;;;;;:17;;;85531:64;;;85570:17;85563:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85531:64;85603:28;85634:10;:8;:10::i;:::-;85603:41;;85689:1;85664:14;85658:28;:32;:130;;;;;;;;;;;;;;;;;85726:14;85742:19;:8;:17;:19::i;:::-;85763:9;85709:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;85658:130;85651:137;;;85349:443;;;;:::o;83215:24::-;;;;:::o;85796:79::-;29720:13;:11;:13::i;:::-;85865:6:::1;85854:8;;:17;;;;;;;;;;;;;;;;;;85796:79:::0;:::o;86553:74::-;29720:13;:11;:13::i;:::-;86616:7:::1;;;;;;;;;;;86615:8;86605:7;;:18;;;;;;;;;;;;;;;;;;86553:74::o:0;82980:46::-;;;;;;;;;;;;;;;;;:::o;58045:164::-;58142:4;58166:18;:25;58185:5;58166:25;;;;;;;;;;;;;;;:35;58192:8;58166:35;;;;;;;;;;;;;;;;;;;;;;;;;58159:42;;58045:164;;;;:::o;85045:203::-;29720:13;:11;:13::i;:::-;85172:9:::1;;85157:11;85141:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;85133:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;85211:33;85221:9;85232:11;85211:9;:33::i;:::-;85045:203:::0;;:::o;30740:201::-;29720:13;:11;:13::i;:::-;30849:1:::1;30829:22;;:8;:22;;;;30821:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30905:28;30924:8;30905:18;:28::i;:::-;30740:201:::0;:::o;58467:282::-;58532:4;58588:7;58569:15;:13;:15::i;:::-;:26;;:66;;;;;58622:13;;58612:7;:23;58569:66;:153;;;;;58721:1;42475:8;58673:17;:26;58691:7;58673:26;;;;;;;;;;;;:44;:49;58569:153;58549:173;;58467:282;;;:::o;80775:105::-;80835:7;80862:10;80855:17;;80775:105;:::o;29999:132::-;30074:12;:10;:12::i;:::-;30063:23;;:7;:5;:7::i;:::-;:23;;;30055:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29999:132::o;85252:93::-;85317:7;85340:1;85333:8;;85252:93;:::o;53153:1275::-;53220:7;53240:12;53255:7;53240:22;;53323:4;53304:15;:13;:15::i;:::-;:23;53300:1061;;53357:13;;53350:4;:20;53346:1015;;;53395:14;53412:17;:23;53430:4;53412:23;;;;;;;;;;;;53395:40;;53529:1;42475:8;53501:6;:24;:29;53497:845;;;54166:113;54183:1;54173:6;:11;54166:113;;;54226:17;:25;54244:6;;;;;;;54226:25;;;;;;;;;;;;54217:34;;54166:113;;;54312:6;54305:13;;;;;;53497:845;53372:989;53346:1015;53300:1061;54389:31;;;;;;;;;;;;;;53153:1275;;;;:::o;59630:485::-;59732:27;59761:23;59802:38;59843:15;:24;59859:7;59843:24;;;;;;;;;;;59802:65;;60020:18;59997:41;;60077:19;60071:26;60052:45;;59982:126;59630:485;;;:::o;58858:659::-;59007:11;59172:16;59165:5;59161:28;59152:37;;59332:16;59321:9;59317:32;59304:45;;59482:15;59471:9;59468:30;59460:5;59449:9;59446:20;59443:56;59433:66;;58858:659;;;;;:::o;65516:159::-;;;;;:::o;80084:311::-;80219:7;80239:16;42879:3;80265:19;:41;;80239:68;;42879:3;80333:31;80344:4;80350:2;80354:9;80333:10;:31::i;:::-;80325:40;;:62;;80318:69;;;80084:311;;;;;:::o;54976:450::-;55056:14;55224:16;55217:5;55213:28;55204:37;;55401:5;55387:11;55362:23;55358:41;55355:52;55348:5;55345:63;55335:73;;54976:450;;;;:::o;66340:158::-;;;;;:::o;17624:293::-;17026:1;17758:7;;:19;;17750:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;17026:1;17891:7;:18;;;;17624:293::o;17925:213::-;16982:1;18108:7;:22;;;;17925:213::o;31101:191::-;31175:16;31194:6;;;;;;;;;;;31175:25;;31220:8;31211:6;;:17;;;;;;;;;;;;;;;;;;31275:8;31244:40;;31265:8;31244:40;;;;;;;;;;;;31164:128;31101:191;:::o;28385:98::-;28438:7;28465:10;28458:17;;28385:98;:::o;74607:112::-;74684:27;74694:2;74698:8;74684:27;;;;;;;;;;;;:9;:27::i;:::-;74607:112;;:::o;66938:716::-;67101:4;67147:2;67122:45;;;67168:19;:17;:19::i;:::-;67189:4;67195:7;67204:5;67122:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;67118:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67422:1;67405:6;:13;:18;67401:235;;;67451:40;;;;;;;;;;;;;;67401:235;67594:6;67588:13;67579:6;67575:2;67571:15;67564:38;67118:529;67291:54;;;67281:64;;;:6;:64;;;;67274:71;;;66938:716;;;;;;:::o;86788:102::-;86848:13;86877:9;86870:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86788:102;:::o;13305:716::-;13361:13;13412:14;13449:1;13429:17;13440:5;13429:10;:17::i;:::-;:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:41;;13521:11;13650:6;13646:2;13642:15;13634:6;13630:28;13623:35;;13687:288;13694:4;13687:288;;;13719:5;;;;;;;;13861:8;13856:2;13849:5;13845:14;13840:30;13835:3;13827:44;13917:2;13908:11;;;;;;:::i;:::-;;;;;13951:1;13942:5;:10;13938:21;;;13954:5;;13938:21;13687:288;;;13996:6;13989:13;;;;;13305:716;;;:::o;79785:147::-;79922:6;79785:147;;;;;:::o;73834:689::-;73965:19;73971:2;73975:8;73965:5;:19::i;:::-;74044:1;74026:2;:14;;;:19;74022:483;;74066:11;74080:13;;74066:27;;74112:13;74134:8;74128:3;:14;74112:30;;74161:233;74192:62;74231:1;74235:2;74239:7;;;;;;74248:5;74192:30;:62::i;:::-;74187:167;;74290:40;;;;;;;;;;;;;;74187:167;74389:3;74381:5;:11;74161:233;;74476:3;74459:13;;:20;74455:34;;74481:8;;;74455:34;74047:458;;74022:483;73834:689;;;:::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;:::i;:::-;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;:::i;:::-;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;:::i;:::-;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;:::i;:::-;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;:::i;:::-;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;:::i;:::-;;;;;10954:1;10944:11;;;;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;;;;10985:66;11079:6;11072:13;;;10171:922;;;:::o;68116:2966::-;68189:20;68212:13;;68189:36;;68252:1;68240:8;:13;68236:44;;;68262:18;;;;;;;;;;;;;;68236:44;68293:61;68323:1;68327:2;68331:12;68345:8;68293:21;:61::i;:::-;68837:1;41837:2;68807:1;:26;;68806:32;68794:8;:45;68768:18;:22;68787:2;68768:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;69116:139;69153:2;69207:33;69230:1;69234:2;69238:1;69207:14;:33::i;:::-;69174:30;69195:8;69174:20;:30::i;:::-;:66;69116:18;:139::i;:::-;69082:17;:31;69100:12;69082:31;;;;;;;;;;;:173;;;;69272:16;69303:11;69332:8;69317:12;:23;69303:37;;69853:16;69849:2;69845:25;69833:37;;70225:12;70185:8;70144:1;70082:25;70023:1;69962;69935:335;70596:1;70582:12;70578:20;70536:346;70637:3;70628:7;70625:16;70536:346;;70855:7;70845:8;70842:1;70815:25;70812:1;70809;70804:59;70690:1;70681:7;70677:15;70666:26;;70536:346;;;70540:77;70927:1;70915:8;:13;70911:45;;;70937:19;;;;;;;;;;;;;;70911:45;70989:3;70973:13;:19;;;;68542:2462;;71014:60;71043:1;71047:2;71051:12;71065:8;71014:20;:60::i;:::-;68178:2904;68116:2966;;:::o;55528:324::-;55598:14;55831:1;55821:8;55818:15;55792:24;55788:46;55778:56;;55528:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:329::-;7970:6;8019:2;8007:9;7998:7;7994:23;7990:32;7987:119;;;8025:79;;:::i;:::-;7987:119;8145:1;8170:53;8215:7;8206:6;8195:9;8191:22;8170:53;:::i;:::-;8160:63;;8116:117;7911:329;;;;:::o;8246:619::-;8323:6;8331;8339;8388:2;8376:9;8367:7;8363:23;8359:32;8356:119;;;8394:79;;:::i;:::-;8356:119;8514:1;8539:53;8584:7;8575:6;8564:9;8560:22;8539:53;:::i;:::-;8529:63;;8485:117;8641:2;8667:53;8712:7;8703:6;8692:9;8688:22;8667:53;:::i;:::-;8657:63;;8612:118;8769:2;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8740:118;8246:619;;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:323::-;11697:6;11746:2;11734:9;11725:7;11721:23;11717:32;11714:119;;;11752:79;;:::i;:::-;11714:119;11872:1;11897:50;11939:7;11930:6;11919:9;11915:22;11897:50;:::i;:::-;11887:60;;11843:114;11641:323;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:::-;12518:6;12526;12575:2;12563:9;12554:7;12550:23;12546:32;12543:119;;;12581:79;;:::i;:::-;12543:119;12701:1;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12672:117;12828:2;12854:53;12899:7;12890:6;12879:9;12875:22;12854:53;:::i;:::-;12844:63;;12799:118;12450:474;;;;;:::o;12930:180::-;12978:77;12975:1;12968:88;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13116:320;13160:6;13197:1;13191:4;13187:12;13177:22;;13244:1;13238:4;13234:12;13265:18;13255:81;;13321:4;13313:6;13309:17;13299:27;;13255:81;13383:2;13375:6;13372:14;13352:18;13349:38;13346:84;;;13402:18;;:::i;:::-;13346:84;13167:269;13116:320;;;:::o;13442:147::-;13543:11;13580:3;13565:18;;13442:147;;;;:::o;13595:114::-;;:::o;13715:398::-;13874:3;13895:83;13976:1;13971:3;13895:83;:::i;:::-;13888:90;;13987:93;14076:3;13987:93;:::i;:::-;14105:1;14100:3;14096:11;14089:18;;13715:398;;;:::o;14119:379::-;14303:3;14325:147;14468:3;14325:147;:::i;:::-;14318:154;;14489:3;14482:10;;14119:379;;;:::o;14504:170::-;14644:22;14640:1;14632:6;14628:14;14621:46;14504:170;:::o;14680:366::-;14822:3;14843:67;14907:2;14902:3;14843:67;:::i;:::-;14836:74;;14919:93;15008:3;14919:93;:::i;:::-;15037:2;15032:3;15028:12;15021:19;;14680:366;;;:::o;15052:419::-;15218:4;15256:2;15245:9;15241:18;15233:26;;15305:9;15299:4;15295:20;15291:1;15280:9;15276:17;15269:47;15333:131;15459:4;15333:131;:::i;:::-;15325:139;;15052:419;;;:::o;15477:180::-;15525:77;15522:1;15515:88;15622:4;15619:1;15612:15;15646:4;15643:1;15636:15;15663:305;15703:3;15722:20;15740:1;15722:20;:::i;:::-;15717:25;;15756:20;15774:1;15756:20;:::i;:::-;15751:25;;15910:1;15842:66;15838:74;15835:1;15832:81;15829:107;;;15916:18;;:::i;:::-;15829:107;15960:1;15957;15953:9;15946:16;;15663:305;;;;:::o;15974:173::-;16114:25;16110:1;16102:6;16098:14;16091:49;15974:173;:::o;16153:366::-;16295:3;16316:67;16380:2;16375:3;16316:67;:::i;:::-;16309:74;;16392:93;16481:3;16392:93;:::i;:::-;16510:2;16505:3;16501:12;16494:19;;16153:366;;;:::o;16525:419::-;16691:4;16729:2;16718:9;16714:18;16706:26;;16778:9;16772:4;16768:20;16764:1;16753:9;16749:17;16742:47;16806:131;16932:4;16806:131;:::i;:::-;16798:139;;16525:419;;;:::o;16950:170::-;17090:22;17086:1;17078:6;17074:14;17067:46;16950:170;:::o;17126:366::-;17268:3;17289:67;17353:2;17348:3;17289:67;:::i;:::-;17282:74;;17365:93;17454:3;17365:93;:::i;:::-;17483:2;17478:3;17474:12;17467:19;;17126:366;;;:::o;17498:419::-;17664:4;17702:2;17691:9;17687:18;17679:26;;17751:9;17745:4;17741:20;17737:1;17726:9;17722:17;17715:47;17779:131;17905:4;17779:131;:::i;:::-;17771:139;;17498:419;;;:::o;17923:167::-;18063:19;18059:1;18051:6;18047:14;18040:43;17923:167;:::o;18096:366::-;18238:3;18259:67;18323:2;18318:3;18259:67;:::i;:::-;18252:74;;18335:93;18424:3;18335:93;:::i;:::-;18453:2;18448:3;18444:12;18437:19;;18096:366;;;:::o;18468:419::-;18634:4;18672:2;18661:9;18657:18;18649:26;;18721:9;18715:4;18711:20;18707:1;18696:9;18692:17;18685:47;18749:131;18875:4;18749:131;:::i;:::-;18741:139;;18468:419;;;:::o;18893:191::-;18933:4;18953:20;18971:1;18953:20;:::i;:::-;18948:25;;18987:20;19005:1;18987:20;:::i;:::-;18982:25;;19026:1;19023;19020:8;19017:34;;;19031:18;;:::i;:::-;19017:34;19076:1;19073;19069:9;19061:17;;18893:191;;;;:::o;19090:348::-;19130:7;19153:20;19171:1;19153:20;:::i;:::-;19148:25;;19187:20;19205:1;19187:20;:::i;:::-;19182:25;;19375:1;19307:66;19303:74;19300:1;19297:81;19292:1;19285:9;19278:17;19274:105;19271:131;;;19382:18;;:::i;:::-;19271:131;19430:1;19427;19423:9;19412:20;;19090:348;;;;:::o;19444:171::-;19584:23;19580:1;19572:6;19568:14;19561:47;19444:171;:::o;19621:366::-;19763:3;19784:67;19848:2;19843:3;19784:67;:::i;:::-;19777:74;;19860:93;19949:3;19860:93;:::i;:::-;19978:2;19973:3;19969:12;19962:19;;19621:366;;;:::o;19993:419::-;20159:4;20197:2;20186:9;20182:18;20174:26;;20246:9;20240:4;20236:20;20232:1;20221:9;20217:17;20210:47;20274:131;20400:4;20274:131;:::i;:::-;20266:139;;19993:419;;;:::o;20418:172::-;20558:24;20554:1;20546:6;20542:14;20535:48;20418:172;:::o;20596:366::-;20738:3;20759:67;20823:2;20818:3;20759:67;:::i;:::-;20752:74;;20835:93;20924:3;20835:93;:::i;:::-;20953:2;20948:3;20944:12;20937:19;;20596:366;;;:::o;20968:419::-;21134:4;21172:2;21161:9;21157:18;21149:26;;21221:9;21215:4;21211:20;21207:1;21196:9;21192:17;21185:47;21249:131;21375:4;21249:131;:::i;:::-;21241:139;;20968:419;;;:::o;21393:234::-;21533:34;21529:1;21521:6;21517:14;21510:58;21602:17;21597:2;21589:6;21585:15;21578:42;21393:234;:::o;21633:366::-;21775:3;21796:67;21860:2;21855:3;21796:67;:::i;:::-;21789:74;;21872:93;21961:3;21872:93;:::i;:::-;21990:2;21985:3;21981:12;21974:19;;21633:366;;;:::o;22005:419::-;22171:4;22209:2;22198:9;22194:18;22186:26;;22258:9;22252:4;22248:20;22244:1;22233:9;22229:17;22222:47;22286:131;22412:4;22286:131;:::i;:::-;22278:139;;22005:419;;;:::o;22430:148::-;22532:11;22569:3;22554:18;;22430:148;;;;:::o;22584:377::-;22690:3;22718:39;22751:5;22718:39;:::i;:::-;22773:89;22855:6;22850:3;22773:89;:::i;:::-;22766:96;;22871:52;22916:6;22911:3;22904:4;22897:5;22893:16;22871:52;:::i;:::-;22948:6;22943:3;22939:16;22932:23;;22694:267;22584:377;;;;:::o;22967:141::-;23016:4;23039:3;23031:11;;23062:3;23059:1;23052:14;23096:4;23093:1;23083:18;23075:26;;22967:141;;;:::o;23138:845::-;23241:3;23278:5;23272:12;23307:36;23333:9;23307:36;:::i;:::-;23359:89;23441:6;23436:3;23359:89;:::i;:::-;23352:96;;23479:1;23468:9;23464:17;23495:1;23490:137;;;;23641:1;23636:341;;;;23457:520;;23490:137;23574:4;23570:9;23559;23555:25;23550:3;23543:38;23610:6;23605:3;23601:16;23594:23;;23490:137;;23636:341;23703:38;23735:5;23703:38;:::i;:::-;23763:1;23777:154;23791:6;23788:1;23785:13;23777:154;;;23865:7;23859:14;23855:1;23850:3;23846:11;23839:35;23915:1;23906:7;23902:15;23891:26;;23813:4;23810:1;23806:12;23801:17;;23777:154;;;23960:6;23955:3;23951:16;23944:23;;23643:334;;23457:520;;23245:738;;23138:845;;;;:::o;23989:589::-;24214:3;24236:95;24327:3;24318:6;24236:95;:::i;:::-;24229:102;;24348:95;24439:3;24430:6;24348:95;:::i;:::-;24341:102;;24460:92;24548:3;24539:6;24460:92;:::i;:::-;24453:99;;24569:3;24562:10;;23989:589;;;;;;:::o;24584:168::-;24724:20;24720:1;24712:6;24708:14;24701:44;24584:168;:::o;24758:366::-;24900:3;24921:67;24985:2;24980:3;24921:67;:::i;:::-;24914:74;;24997:93;25086:3;24997:93;:::i;:::-;25115:2;25110:3;25106:12;25099:19;;24758:366;;;:::o;25130:419::-;25296:4;25334:2;25323:9;25319:18;25311:26;;25383:9;25377:4;25373:20;25369:1;25358:9;25354:17;25347:47;25411:131;25537:4;25411:131;:::i;:::-;25403:139;;25130:419;;;:::o;25555:225::-;25695:34;25691:1;25683:6;25679:14;25672:58;25764:8;25759:2;25751:6;25747:15;25740:33;25555:225;:::o;25786:366::-;25928:3;25949:67;26013:2;26008:3;25949:67;:::i;:::-;25942:74;;26025:93;26114:3;26025:93;:::i;:::-;26143:2;26138:3;26134:12;26127:19;;25786:366;;;:::o;26158:419::-;26324:4;26362:2;26351:9;26347:18;26339:26;;26411:9;26405:4;26401:20;26397:1;26386:9;26382:17;26375:47;26439:131;26565:4;26439:131;:::i;:::-;26431:139;;26158:419;;;:::o;26583:182::-;26723:34;26719:1;26711:6;26707:14;26700:58;26583:182;:::o;26771:366::-;26913:3;26934:67;26998:2;26993:3;26934:67;:::i;:::-;26927:74;;27010:93;27099:3;27010:93;:::i;:::-;27128:2;27123:3;27119:12;27112:19;;26771:366;;;:::o;27143:419::-;27309:4;27347:2;27336:9;27332:18;27324:26;;27396:9;27390:4;27386:20;27382:1;27371:9;27367:17;27360:47;27424:131;27550:4;27424:131;:::i;:::-;27416:139;;27143:419;;;:::o;27568:181::-;27708:33;27704:1;27696:6;27692:14;27685:57;27568:181;:::o;27755:366::-;27897:3;27918:67;27982:2;27977:3;27918:67;:::i;:::-;27911:74;;27994:93;28083:3;27994:93;:::i;:::-;28112:2;28107:3;28103:12;28096:19;;27755:366;;;:::o;28127:419::-;28293:4;28331:2;28320:9;28316:18;28308:26;;28380:9;28374:4;28370:20;28366:1;28355:9;28351:17;28344:47;28408:131;28534:4;28408:131;:::i;:::-;28400:139;;28127:419;;;:::o;28552:98::-;28603:6;28637:5;28631:12;28621:22;;28552:98;;;:::o;28656:168::-;28739:11;28773:6;28768:3;28761:19;28813:4;28808:3;28804:14;28789:29;;28656:168;;;;:::o;28830:360::-;28916:3;28944:38;28976:5;28944:38;:::i;:::-;28998:70;29061:6;29056:3;28998:70;:::i;:::-;28991:77;;29077:52;29122:6;29117:3;29110:4;29103:5;29099:16;29077:52;:::i;:::-;29154:29;29176:6;29154:29;:::i;:::-;29149:3;29145:39;29138:46;;28920:270;28830:360;;;;:::o;29196:640::-;29391:4;29429:3;29418:9;29414:19;29406:27;;29443:71;29511:1;29500:9;29496:17;29487:6;29443:71;:::i;:::-;29524:72;29592:2;29581:9;29577:18;29568:6;29524:72;:::i;:::-;29606;29674:2;29663:9;29659:18;29650:6;29606:72;:::i;:::-;29725:9;29719:4;29715:20;29710:2;29699:9;29695:18;29688:48;29753:76;29824:4;29815:6;29753:76;:::i;:::-;29745:84;;29196:640;;;;;;;:::o;29842:141::-;29898:5;29929:6;29923:13;29914:22;;29945:32;29971:5;29945:32;:::i;:::-;29842:141;;;;:::o;29989:349::-;30058:6;30107:2;30095:9;30086:7;30082:23;30078:32;30075:119;;;30113:79;;:::i;:::-;30075:119;30233:1;30258:63;30313:7;30304:6;30293:9;30289:22;30258:63;:::i;:::-;30248:73;;30204:127;29989:349;;;;:::o;30344:180::-;30392:77;30389:1;30382:88;30489:4;30486:1;30479:15;30513:4;30510:1;30503:15

Swarm Source

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