ETH Price: $3,467.83 (+2.17%)
Gas: 10 Gwei

Token

Crypto Dziki (CD)
 

Overview

Max Total Supply

469 CD

Holders

283

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 CD
0x2bb0131f561df1a69b49da3d26c8501710327dc1
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:
CryptoDziki

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-25
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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


pragma solidity ^0.8.9;



contract DigitalSignatureWhitelistContract is Ownable {
    using ECDSA for bytes32;

    /**
     * @notice Used to validate whitelist addresses
               Replace this wallet address to your own!
     */
    address private signerAddress = 0x806e3e6CA5C952EE6F8e0A5C06fcC08b032103EE; 

    /**
     * @notice Verify signature
     */
    function verifyAddressSigner(
        bytes memory signature
    ) public view returns (bool) {
        bytes32 messageHash = keccak256(abi.encodePacked(msg.sender));
        return
            signerAddress ==
            messageHash.toEthSignedMessageHash().recover(signature);
    }
}

// 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/CryptoDziki.sol


pragma solidity ^0.8.9;




contract CryptoDziki is
    Ownable,
    ERC721A,
    DigitalSignatureWhitelistContract
{
    uint16 constant public TOTAL_SUPPLY = 1337;
    
    uint16 public currentSupply = 500;
    uint16 public maxCurrentMintAmount = 10;

    uint256 public mintPrice = 0 ether;

    string public baseTokenURI;
    bool public isMintPaused = false;

    constructor() ERC721A("Crypto Dziki", "CD") {
        baseTokenURI = "ipfs://bafybeibcgnljdvk2g6zvk7xa4xk3t55ymkuogmqjdwygj7bpjnnsopcrzm/";
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function mint(bytes memory signature) public payable {
        require(!isMintPaused, "MINT_IS_CURRENTLY_PAUSED");
        require(
            DigitalSignatureWhitelistContract.verifyAddressSigner(signature),
            "SIGNATURE_VALIDATION_FAILED"
        );
        require(totalSupply() + maxCurrentMintAmount <= TOTAL_SUPPLY, "REQUESTED_MINT_OVER_MAX_SUPPLY");
        require(totalSupply() + maxCurrentMintAmount <= currentSupply, "REQUESTED_MINT_OVER_CURRENT_SUPPLY");
        require(numberMinted(msg.sender) < maxCurrentMintAmount, "ADDRESS_ALREADY_MINTED_TOKENS");
        require(msg.value == mintPrice, "ETH_AMOUNT_INVALID");

        _safeMint(msg.sender, maxCurrentMintAmount);
    }

    function adminMint(uint16 amount) public onlyOwner {
        require(totalSupply() <= TOTAL_SUPPLY, "TOTAL_SUPPLY_REACHED");
        require(totalSupply() <= currentSupply, "CURRENT_SUPPLY_EXCEEDED");

        _safeMint(msg.sender, amount);
    }

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

    function setBaseTokenURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function setIsMintPaused(bool _isMintPaused) public onlyOwner {
        isMintPaused = _isMintPaused;
    }

    function setMaxMintCount(uint8 _maxMintCount) public onlyOwner {
        maxCurrentMintAmount = _maxMintCount;
    }

    function setCurrentSupply(uint16 _currentSupply) public onlyOwner {
        require(
            _currentSupply <= TOTAL_SUPPLY,
            "CURRENT_SUPPLY_BIGGER_THAN_TOTAL_SUPPLY"
        );
        currentSupply = _currentSupply;
    }

    function setMintPrice(uint256 _mintPrice) public onlyOwner {
        mintPrice = _mintPrice;
    }

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

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

        string memory currentBaseURI = _baseURI();

        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        Strings.toString(tokenId),
                        ".json"
                    )
                )
                : "";
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxCurrentMintAmount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_currentSupply","type":"uint16"}],"name":"setCurrentSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isMintPaused","type":"bool"}],"name":"setIsMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxMintCount","type":"uint8"}],"name":"setMaxMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"verifyAddressSigner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273806e3e6ca5c952ee6f8e0a5c06fcc08b032103ee600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101f4600960146101000a81548161ffff021916908361ffff160217905550600a600960166101000a81548161ffff021916908361ffff1602179055506000600a556000600c60006101000a81548160ff021916908315150217905550348015620000c357600080fd5b506040518060400160405280600c81526020017f43727970746f20447a696b6900000000000000000000000000000000000000008152506040518060400160405280600281526020017f43440000000000000000000000000000000000000000000000000000000000008152506200015062000144620001bd60201b60201c565b620001c560201b60201c565b81600390816200016191906200050c565b5080600490816200017391906200050c565b50620001846200028960201b60201c565b60018190555050506040518060800160405280604381526020016200419a60439139600b9081620001b691906200050c565b50620005f3565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200031457607f821691505b6020821081036200032a5762000329620002cc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003947fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000355565b620003a0868362000355565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003ed620003e7620003e184620003b8565b620003c2565b620003b8565b9050919050565b6000819050919050565b6200040983620003cc565b620004216200041882620003f4565b84845462000362565b825550505050565b600090565b6200043862000429565b62000445818484620003fe565b505050565b5b818110156200046d57620004616000826200042e565b6001810190506200044b565b5050565b601f821115620004bc57620004868162000330565b620004918462000345565b81016020851015620004a1578190505b620004b9620004b08562000345565b8301826200044a565b50505b505050565b600082821c905092915050565b6000620004e160001984600802620004c1565b1980831691505092915050565b6000620004fc8383620004ce565b9150826002028217905092915050565b620005178262000292565b67ffffffffffffffff8111156200053357620005326200029d565b5b6200053f8254620002fb565b6200054c82828562000471565b600060209050601f8311600181146200058457600084156200056f578287015190505b6200057b8582620004ee565b865550620005eb565b601f198416620005948662000330565b60005b82811015620005be5784890151825560018201915060208501945060208101905062000597565b86831015620005de5784890151620005da601f891682620004ce565b8355505b6001600288020188555050505b505050505050565b613b9780620006036000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063b031623e116100a0578063d547cfb71161006f578063d547cfb714610694578063dc33e681146106bf578063e985e9c5146106fc578063f2fde38b14610739578063f4a0a52814610762576101ee565b8063b031623e146105e9578063b73d6e9114610612578063b88d4fde1461063b578063c87b56dd14610657576101ee565b80638da5cb5b116100dc5780638da5cb5b1461053f578063902d55a51461056a57806395d89b4114610595578063a22cb465146105c0576101ee565b806370a08231146104a4578063715018a6146104e1578063771282f6146104f85780637ba0e2e714610523576101ee565b806323b872dd1161018557806342842e0e1161015457806342842e0e146103f757806363059ca1146104135780636352211e1461043c5780636817c76c14610479576101ee565b806323b872dd1461035e57806330176e131461037a57806330df3200146103a35780633ccfd60b146103e0576101ee565b806315683fcf116101c157806315683fcf146102b457806315839b30146102dd57806315c063631461030857806318160ddd14610333576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061260e565b61078b565b6040516102279190612656565b60405180910390f35b34801561023c57600080fd5b5061024561081d565b6040516102529190612701565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612759565b6108af565b60405161028f91906127c7565b60405180910390f35b6102b260048036038101906102ad919061280e565b61092e565b005b3480156102c057600080fd5b506102db60048036038101906102d69190612887565b610a72565b005b3480156102e957600080fd5b506102f2610a9d565b6040516102ff9190612656565b60405180910390f35b34801561031457600080fd5b5061031d610ab0565b60405161032a91906128d1565b60405180910390f35b34801561033f57600080fd5b50610348610ac4565b60405161035591906128fb565b60405180910390f35b61037860048036038101906103739190612916565b610adb565b005b34801561038657600080fd5b506103a1600480360381019061039c9190612a9e565b610dfd565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612b88565b610e18565b6040516103d79190612656565b60405180910390f35b3480156103ec57600080fd5b506103f5610eb7565b005b610411600480360381019061040c9190612916565b610f08565b005b34801561041f57600080fd5b5061043a60048036038101906104359190612bfd565b610f28565b005b34801561044857600080fd5b50610463600480360381019061045e9190612759565b610f9d565b60405161047091906127c7565b60405180910390f35b34801561048557600080fd5b5061048e610faf565b60405161049b91906128fb565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190612c2a565b610fb5565b6040516104d891906128fb565b60405180910390f35b3480156104ed57600080fd5b506104f661106d565b005b34801561050457600080fd5b5061050d611081565b60405161051a91906128d1565b60405180910390f35b61053d60048036038101906105389190612b88565b611095565b005b34801561054b57600080fd5b506105546112dc565b60405161056191906127c7565b60405180910390f35b34801561057657600080fd5b5061057f611305565b60405161058c91906128d1565b60405180910390f35b3480156105a157600080fd5b506105aa61130b565b6040516105b79190612701565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190612c83565b61139d565b005b3480156105f557600080fd5b50610610600480360381019061060b9190612cc3565b6114a8565b005b34801561061e57600080fd5b5061063960048036038101906106349190612bfd565b6114cd565b005b61065560048036038101906106509190612cf0565b611594565b005b34801561066357600080fd5b5061067e60048036038101906106799190612759565b611607565b60405161068b9190612701565b60405180910390f35b3480156106a057600080fd5b506106a96116ae565b6040516106b69190612701565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190612c2a565b61173c565b6040516106f391906128fb565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190612d73565b61174e565b6040516107309190612656565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190612c2a565b6117e2565b005b34801561076e57600080fd5b5061078960048036038101906107849190612759565b611865565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108165750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461082c90612de2565b80601f016020809104026020016040519081016040528092919081815260200182805461085890612de2565b80156108a55780601f1061087a576101008083540402835291602001916108a5565b820191906000526020600020905b81548152906001019060200180831161088857829003601f168201915b5050505050905090565b60006108ba82611877565b6108f0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093982610f9d565b90508073ffffffffffffffffffffffffffffffffffffffff1661095a6118d6565b73ffffffffffffffffffffffffffffffffffffffff16146109bd57610986816109816118d6565b61174e565b6109bc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a7a6118de565b8060ff16600960166101000a81548161ffff021916908361ffff16021790555050565b600c60009054906101000a900460ff1681565b600960169054906101000a900461ffff1681565b6000610ace61195c565b6002546001540303905090565b6000610ae682611965565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b4d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b5984611a31565b91509150610b6f8187610b6a6118d6565b611a58565b610bbb57610b8486610b7f6118d6565b61174e565b610bba576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c21576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c2e8686866001611a9c565b8015610c3957600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d0785610ce3888887611aa2565b7c020000000000000000000000000000000000000000000000000000000017611aca565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d8d5760006001850190506000600560008381526020019081526020016000205403610d8b576001548114610d8a578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610df58686866001611af5565b505050505050565b610e056118de565b80600b9081610e149190612fbf565b5050565b60008033604051602001610e2c91906130d9565b604051602081830303815290604052805190602001209050610e5f83610e5183611afb565b611b2b90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050919050565b610ebf6118de565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f05573d6000803e3d6000fd5b50565b610f2383838360405180602001604052806000815250611594565b505050565b610f306118de565b61053961ffff168161ffff161115610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490613166565b60405180910390fd5b80600960146101000a81548161ffff021916908361ffff16021790555050565b6000610fa882611965565b9050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361101c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110756118de565b61107f6000611b52565b565b600960149054906101000a900461ffff1681565b600c60009054906101000a900460ff16156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906131d2565b60405180910390fd5b6110ee81610e18565b61112d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111249061323e565b60405180910390fd5b61053961ffff16600960169054906101000a900461ffff1661ffff16611151610ac4565b61115b919061328d565b111561119c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111939061330d565b60405180910390fd5b600960149054906101000a900461ffff1661ffff16600960169054906101000a900461ffff1661ffff166111ce610ac4565b6111d8919061328d565b1115611219576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112109061339f565b60405180910390fd5b600960169054906101000a900461ffff1661ffff166112373361173c565b10611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e9061340b565b60405180910390fd5b600a5434146112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b290613477565b60405180910390fd5b6112d933600960169054906101000a900461ffff1661ffff16611c16565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61053981565b60606004805461131a90612de2565b80601f016020809104026020016040519081016040528092919081815260200182805461134690612de2565b80156113935780601f1061136857610100808354040283529160200191611393565b820191906000526020600020905b81548152906001019060200180831161137657829003601f168201915b5050505050905090565b80600860006113aa6118d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114576118d6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161149c9190612656565b60405180910390a35050565b6114b06118de565b80600c60006101000a81548160ff02191690831515021790555050565b6114d56118de565b61053961ffff166114e4610ac4565b1115611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c906134e3565b60405180910390fd5b600960149054906101000a900461ffff1661ffff16611542610ac4565b1115611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a9061354f565b60405180910390fd5b611591338261ffff16611c16565b50565b61159f848484610adb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611601576115ca84848484611c34565b611600576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061161282611877565b611651576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611648906135e1565b60405180910390fd5b600061165b611d84565b9050600081511161167b57604051806020016040528060008152506116a6565b8061168584611e16565b604051602001611696929190613689565b6040516020818303038152906040525b915050919050565b600b80546116bb90612de2565b80601f01602080910402602001604051908101604052809291908181526020018280546116e790612de2565b80156117345780601f1061170957610100808354040283529160200191611734565b820191906000526020600020905b81548152906001019060200180831161171757829003601f168201915b505050505081565b600061174782611ee4565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117ea6118de565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611859576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118509061372a565b60405180910390fd5b61186281611b52565b50565b61186d6118de565b80600a8190555050565b60008161188261195c565b11158015611891575060015482105b80156118cf575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b6118e6611f3b565b73ffffffffffffffffffffffffffffffffffffffff166119046112dc565b73ffffffffffffffffffffffffffffffffffffffff161461195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190613796565b60405180910390fd5b565b60006001905090565b6000808290508061197461195c565b116119fa576001548110156119f95760006005600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036119f7575b600081036119ed5760056000836001900393508381526020019081526020016000205490506119c3565b8092505050611a2c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ab9868684611f43565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600081604051602001611b0e919061382d565b604051602081830303815290604052805190602001209050919050565b6000806000611b3a8585611f4c565b91509150611b4781611f9d565b819250505092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c30828260405180602001604052806000815250612103565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c5a6118d6565b8786866040518563ffffffff1660e01b8152600401611c7c94939291906138a8565b6020604051808303816000875af1925050508015611cb857506040513d601f19601f82011682018060405250810190611cb59190613909565b60015b611d31573d8060008114611ce8576040519150601f19603f3d011682016040523d82523d6000602084013e611ced565b606091505b506000815103611d29576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611d9390612de2565b80601f0160208091040260200160405190810160405280929190818152602001828054611dbf90612de2565b8015611e0c5780601f10611de157610100808354040283529160200191611e0c565b820191906000526020600020905b815481529060010190602001808311611def57829003601f168201915b5050505050905090565b606060006001611e25846121a1565b01905060008167ffffffffffffffff811115611e4457611e43612973565b5b6040519080825280601f01601f191660200182016040528015611e765781602001600182028036833780820191505090505b509050600082602001820190505b600115611ed9578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611ecd57611ecc613936565b5b04945060008503611e84575b819350505050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60009392505050565b6000806041835103611f8d5760008060006020860151925060408601519150606086015160001a9050611f81878285856122f4565b94509450505050611f96565b60006002915091505b9250929050565b60006004811115611fb157611fb0613965565b5b816004811115611fc457611fc3613965565b5b03156121005760016004811115611fde57611fdd613965565b5b816004811115611ff157611ff0613965565b5b03612031576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612028906139e0565b60405180910390fd5b6002600481111561204557612044613965565b5b81600481111561205857612057613965565b5b03612098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208f90613a4c565b60405180910390fd5b600360048111156120ac576120ab613965565b5b8160048111156120bf576120be613965565b5b036120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f690613ade565b60405180910390fd5b5b50565b61210d83836123d6565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461219c5760006001549050600083820390505b61214e6000868380600101945086611c34565b612184576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061213b57816001541461219957600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106121ff577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816121f5576121f4613936565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061223c576d04ee2d6d415b85acef8100000000838161223257612231613936565b5b0492506020810190505b662386f26fc10000831061226b57662386f26fc10000838161226157612260613936565b5b0492506010810190505b6305f5e1008310612294576305f5e100838161228a57612289613936565b5b0492506008810190505b61271083106122b95761271083816122af576122ae613936565b5b0492506004810190505b606483106122dc57606483816122d2576122d1613936565b5b0492506002810190505b600a83106122eb576001810190505b80915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561232f5760006003915091506123cd565b6000600187878787604051600081526020016040526040516123549493929190613b1c565b6020604051602081039080840390855afa158015612376573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123c4576000600192509250506123cd565b80600092509250505b94509492505050565b6000600154905060008203612417576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124246000848385611a9c565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061249b8361248c6000866000611aa2565b61249585612592565b17611aca565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461253c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612501565b5060008203612577576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181905550505061258d6000848385611af5565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125eb816125b6565b81146125f657600080fd5b50565b600081359050612608816125e2565b92915050565b600060208284031215612624576126236125ac565b5b6000612632848285016125f9565b91505092915050565b60008115159050919050565b6126508161263b565b82525050565b600060208201905061266b6000830184612647565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126ab578082015181840152602081019050612690565b60008484015250505050565b6000601f19601f8301169050919050565b60006126d382612671565b6126dd818561267c565b93506126ed81856020860161268d565b6126f6816126b7565b840191505092915050565b6000602082019050818103600083015261271b81846126c8565b905092915050565b6000819050919050565b61273681612723565b811461274157600080fd5b50565b6000813590506127538161272d565b92915050565b60006020828403121561276f5761276e6125ac565b5b600061277d84828501612744565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127b182612786565b9050919050565b6127c1816127a6565b82525050565b60006020820190506127dc60008301846127b8565b92915050565b6127eb816127a6565b81146127f657600080fd5b50565b600081359050612808816127e2565b92915050565b60008060408385031215612825576128246125ac565b5b6000612833858286016127f9565b925050602061284485828601612744565b9150509250929050565b600060ff82169050919050565b6128648161284e565b811461286f57600080fd5b50565b6000813590506128818161285b565b92915050565b60006020828403121561289d5761289c6125ac565b5b60006128ab84828501612872565b91505092915050565b600061ffff82169050919050565b6128cb816128b4565b82525050565b60006020820190506128e660008301846128c2565b92915050565b6128f581612723565b82525050565b600060208201905061291060008301846128ec565b92915050565b60008060006060848603121561292f5761292e6125ac565b5b600061293d868287016127f9565b935050602061294e868287016127f9565b925050604061295f86828701612744565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129ab826126b7565b810181811067ffffffffffffffff821117156129ca576129c9612973565b5b80604052505050565b60006129dd6125a2565b90506129e982826129a2565b919050565b600067ffffffffffffffff821115612a0957612a08612973565b5b612a12826126b7565b9050602081019050919050565b82818337600083830152505050565b6000612a41612a3c846129ee565b6129d3565b905082815260208101848484011115612a5d57612a5c61296e565b5b612a68848285612a1f565b509392505050565b600082601f830112612a8557612a84612969565b5b8135612a95848260208601612a2e565b91505092915050565b600060208284031215612ab457612ab36125ac565b5b600082013567ffffffffffffffff811115612ad257612ad16125b1565b5b612ade84828501612a70565b91505092915050565b600067ffffffffffffffff821115612b0257612b01612973565b5b612b0b826126b7565b9050602081019050919050565b6000612b2b612b2684612ae7565b6129d3565b905082815260208101848484011115612b4757612b4661296e565b5b612b52848285612a1f565b509392505050565b600082601f830112612b6f57612b6e612969565b5b8135612b7f848260208601612b18565b91505092915050565b600060208284031215612b9e57612b9d6125ac565b5b600082013567ffffffffffffffff811115612bbc57612bbb6125b1565b5b612bc884828501612b5a565b91505092915050565b612bda816128b4565b8114612be557600080fd5b50565b600081359050612bf781612bd1565b92915050565b600060208284031215612c1357612c126125ac565b5b6000612c2184828501612be8565b91505092915050565b600060208284031215612c4057612c3f6125ac565b5b6000612c4e848285016127f9565b91505092915050565b612c608161263b565b8114612c6b57600080fd5b50565b600081359050612c7d81612c57565b92915050565b60008060408385031215612c9a57612c996125ac565b5b6000612ca8858286016127f9565b9250506020612cb985828601612c6e565b9150509250929050565b600060208284031215612cd957612cd86125ac565b5b6000612ce784828501612c6e565b91505092915050565b60008060008060808587031215612d0a57612d096125ac565b5b6000612d18878288016127f9565b9450506020612d29878288016127f9565b9350506040612d3a87828801612744565b925050606085013567ffffffffffffffff811115612d5b57612d5a6125b1565b5b612d6787828801612b5a565b91505092959194509250565b60008060408385031215612d8a57612d896125ac565b5b6000612d98858286016127f9565b9250506020612da9858286016127f9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dfa57607f821691505b602082108103612e0d57612e0c612db3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612e757fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e38565b612e7f8683612e38565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612ebc612eb7612eb284612723565b612e97565b612723565b9050919050565b6000819050919050565b612ed683612ea1565b612eea612ee282612ec3565b848454612e45565b825550505050565b600090565b612eff612ef2565b612f0a818484612ecd565b505050565b5b81811015612f2e57612f23600082612ef7565b600181019050612f10565b5050565b601f821115612f7357612f4481612e13565b612f4d84612e28565b81016020851015612f5c578190505b612f70612f6885612e28565b830182612f0f565b50505b505050565b600082821c905092915050565b6000612f9660001984600802612f78565b1980831691505092915050565b6000612faf8383612f85565b9150826002028217905092915050565b612fc882612671565b67ffffffffffffffff811115612fe157612fe0612973565b5b612feb8254612de2565b612ff6828285612f32565b600060209050601f8311600181146130295760008415613017578287015190505b6130218582612fa3565b865550613089565b601f19841661303786612e13565b60005b8281101561305f5784890151825560018201915060208501945060208101905061303a565b8683101561307c5784890151613078601f891682612f85565b8355505b6001600288020188555050505b505050505050565b60008160601b9050919050565b60006130a982613091565b9050919050565b60006130bb8261309e565b9050919050565b6130d36130ce826127a6565b6130b0565b82525050565b60006130e582846130c2565b60148201915081905092915050565b7f43555252454e545f535550504c595f4249474745525f5448414e5f544f54414c60008201527f5f535550504c5900000000000000000000000000000000000000000000000000602082015250565b600061315060278361267c565b915061315b826130f4565b604082019050919050565b6000602082019050818103600083015261317f81613143565b9050919050565b7f4d494e545f49535f43555252454e544c595f5041555345440000000000000000600082015250565b60006131bc60188361267c565b91506131c782613186565b602082019050919050565b600060208201905081810360008301526131eb816131af565b9050919050565b7f5349474e41545552455f56414c49444154494f4e5f4641494c45440000000000600082015250565b6000613228601b8361267c565b9150613233826131f2565b602082019050919050565b600060208201905081810360008301526132578161321b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061329882612723565b91506132a383612723565b92508282019050808211156132bb576132ba61325e565b5b92915050565b7f5245515545535445445f4d494e545f4f5645525f4d41585f535550504c590000600082015250565b60006132f7601e8361267c565b9150613302826132c1565b602082019050919050565b60006020820190508181036000830152613326816132ea565b9050919050565b7f5245515545535445445f4d494e545f4f5645525f43555252454e545f5355505060008201527f4c59000000000000000000000000000000000000000000000000000000000000602082015250565b600061338960228361267c565b91506133948261332d565b604082019050919050565b600060208201905081810360008301526133b88161337c565b9050919050565b7f414444524553535f414c52454144595f4d494e5445445f544f4b454e53000000600082015250565b60006133f5601d8361267c565b9150613400826133bf565b602082019050919050565b60006020820190508181036000830152613424816133e8565b9050919050565b7f4554485f414d4f554e545f494e56414c49440000000000000000000000000000600082015250565b600061346160128361267c565b915061346c8261342b565b602082019050919050565b6000602082019050818103600083015261349081613454565b9050919050565b7f544f54414c5f535550504c595f52454143484544000000000000000000000000600082015250565b60006134cd60148361267c565b91506134d882613497565b602082019050919050565b600060208201905081810360008301526134fc816134c0565b9050919050565b7f43555252454e545f535550504c595f4558434545444544000000000000000000600082015250565b600061353960178361267c565b915061354482613503565b602082019050919050565b600060208201905081810360008301526135688161352c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006135cb602f8361267c565b91506135d68261356f565b604082019050919050565b600060208201905081810360008301526135fa816135be565b9050919050565b600081905092915050565b600061361782612671565b6136218185613601565b935061363181856020860161268d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613673600583613601565b915061367e8261363d565b600582019050919050565b6000613695828561360c565b91506136a1828461360c565b91506136ac82613666565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061371460268361267c565b915061371f826136b8565b604082019050919050565b6000602082019050818103600083015261374381613707565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061378060208361267c565b915061378b8261374a565b602082019050919050565b600060208201905081810360008301526137af81613773565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b60006137ec601c83613601565b91506137f7826137b6565b601c82019050919050565b6000819050919050565b6000819050919050565b61382761382282613802565b61380c565b82525050565b6000613838826137df565b91506138448284613816565b60208201915081905092915050565b600081519050919050565b600082825260208201905092915050565b600061387a82613853565b613884818561385e565b935061389481856020860161268d565b61389d816126b7565b840191505092915050565b60006080820190506138bd60008301876127b8565b6138ca60208301866127b8565b6138d760408301856128ec565b81810360608301526138e9818461386f565b905095945050505050565b600081519050613903816125e2565b92915050565b60006020828403121561391f5761391e6125ac565b5b600061392d848285016138f4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006139ca60188361267c565b91506139d582613994565b602082019050919050565b600060208201905081810360008301526139f9816139bd565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613a36601f8361267c565b9150613a4182613a00565b602082019050919050565b60006020820190508181036000830152613a6581613a29565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ac860228361267c565b9150613ad382613a6c565b604082019050919050565b60006020820190508181036000830152613af781613abb565b9050919050565b613b0781613802565b82525050565b613b168161284e565b82525050565b6000608082019050613b316000830187613afe565b613b3e6020830186613b0d565b613b4b6040830185613afe565b613b586060830184613afe565b9594505050505056fea2646970667358221220bbc104e526961432c85571a91a48b231aa96683d1f413cdd747b19d8c397938b64736f6c63430008120033697066733a2f2f626166796265696263676e6c6a64766b3267367a766b37786134786b33743535796d6b756f676d716a647779676a3762706a6e6e736f7063727a6d2f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d578063b031623e116100a0578063d547cfb71161006f578063d547cfb714610694578063dc33e681146106bf578063e985e9c5146106fc578063f2fde38b14610739578063f4a0a52814610762576101ee565b8063b031623e146105e9578063b73d6e9114610612578063b88d4fde1461063b578063c87b56dd14610657576101ee565b80638da5cb5b116100dc5780638da5cb5b1461053f578063902d55a51461056a57806395d89b4114610595578063a22cb465146105c0576101ee565b806370a08231146104a4578063715018a6146104e1578063771282f6146104f85780637ba0e2e714610523576101ee565b806323b872dd1161018557806342842e0e1161015457806342842e0e146103f757806363059ca1146104135780636352211e1461043c5780636817c76c14610479576101ee565b806323b872dd1461035e57806330176e131461037a57806330df3200146103a35780633ccfd60b146103e0576101ee565b806315683fcf116101c157806315683fcf146102b457806315839b30146102dd57806315c063631461030857806318160ddd14610333576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061260e565b61078b565b6040516102279190612656565b60405180910390f35b34801561023c57600080fd5b5061024561081d565b6040516102529190612701565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612759565b6108af565b60405161028f91906127c7565b60405180910390f35b6102b260048036038101906102ad919061280e565b61092e565b005b3480156102c057600080fd5b506102db60048036038101906102d69190612887565b610a72565b005b3480156102e957600080fd5b506102f2610a9d565b6040516102ff9190612656565b60405180910390f35b34801561031457600080fd5b5061031d610ab0565b60405161032a91906128d1565b60405180910390f35b34801561033f57600080fd5b50610348610ac4565b60405161035591906128fb565b60405180910390f35b61037860048036038101906103739190612916565b610adb565b005b34801561038657600080fd5b506103a1600480360381019061039c9190612a9e565b610dfd565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612b88565b610e18565b6040516103d79190612656565b60405180910390f35b3480156103ec57600080fd5b506103f5610eb7565b005b610411600480360381019061040c9190612916565b610f08565b005b34801561041f57600080fd5b5061043a60048036038101906104359190612bfd565b610f28565b005b34801561044857600080fd5b50610463600480360381019061045e9190612759565b610f9d565b60405161047091906127c7565b60405180910390f35b34801561048557600080fd5b5061048e610faf565b60405161049b91906128fb565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190612c2a565b610fb5565b6040516104d891906128fb565b60405180910390f35b3480156104ed57600080fd5b506104f661106d565b005b34801561050457600080fd5b5061050d611081565b60405161051a91906128d1565b60405180910390f35b61053d60048036038101906105389190612b88565b611095565b005b34801561054b57600080fd5b506105546112dc565b60405161056191906127c7565b60405180910390f35b34801561057657600080fd5b5061057f611305565b60405161058c91906128d1565b60405180910390f35b3480156105a157600080fd5b506105aa61130b565b6040516105b79190612701565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190612c83565b61139d565b005b3480156105f557600080fd5b50610610600480360381019061060b9190612cc3565b6114a8565b005b34801561061e57600080fd5b5061063960048036038101906106349190612bfd565b6114cd565b005b61065560048036038101906106509190612cf0565b611594565b005b34801561066357600080fd5b5061067e60048036038101906106799190612759565b611607565b60405161068b9190612701565b60405180910390f35b3480156106a057600080fd5b506106a96116ae565b6040516106b69190612701565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190612c2a565b61173c565b6040516106f391906128fb565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190612d73565b61174e565b6040516107309190612656565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190612c2a565b6117e2565b005b34801561076e57600080fd5b5061078960048036038101906107849190612759565b611865565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108165750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461082c90612de2565b80601f016020809104026020016040519081016040528092919081815260200182805461085890612de2565b80156108a55780601f1061087a576101008083540402835291602001916108a5565b820191906000526020600020905b81548152906001019060200180831161088857829003601f168201915b5050505050905090565b60006108ba82611877565b6108f0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093982610f9d565b90508073ffffffffffffffffffffffffffffffffffffffff1661095a6118d6565b73ffffffffffffffffffffffffffffffffffffffff16146109bd57610986816109816118d6565b61174e565b6109bc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a7a6118de565b8060ff16600960166101000a81548161ffff021916908361ffff16021790555050565b600c60009054906101000a900460ff1681565b600960169054906101000a900461ffff1681565b6000610ace61195c565b6002546001540303905090565b6000610ae682611965565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b4d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b5984611a31565b91509150610b6f8187610b6a6118d6565b611a58565b610bbb57610b8486610b7f6118d6565b61174e565b610bba576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c21576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c2e8686866001611a9c565b8015610c3957600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d0785610ce3888887611aa2565b7c020000000000000000000000000000000000000000000000000000000017611aca565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d8d5760006001850190506000600560008381526020019081526020016000205403610d8b576001548114610d8a578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610df58686866001611af5565b505050505050565b610e056118de565b80600b9081610e149190612fbf565b5050565b60008033604051602001610e2c91906130d9565b604051602081830303815290604052805190602001209050610e5f83610e5183611afb565b611b2b90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050919050565b610ebf6118de565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f05573d6000803e3d6000fd5b50565b610f2383838360405180602001604052806000815250611594565b505050565b610f306118de565b61053961ffff168161ffff161115610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490613166565b60405180910390fd5b80600960146101000a81548161ffff021916908361ffff16021790555050565b6000610fa882611965565b9050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361101c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110756118de565b61107f6000611b52565b565b600960149054906101000a900461ffff1681565b600c60009054906101000a900460ff16156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906131d2565b60405180910390fd5b6110ee81610e18565b61112d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111249061323e565b60405180910390fd5b61053961ffff16600960169054906101000a900461ffff1661ffff16611151610ac4565b61115b919061328d565b111561119c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111939061330d565b60405180910390fd5b600960149054906101000a900461ffff1661ffff16600960169054906101000a900461ffff1661ffff166111ce610ac4565b6111d8919061328d565b1115611219576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112109061339f565b60405180910390fd5b600960169054906101000a900461ffff1661ffff166112373361173c565b10611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e9061340b565b60405180910390fd5b600a5434146112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b290613477565b60405180910390fd5b6112d933600960169054906101000a900461ffff1661ffff16611c16565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61053981565b60606004805461131a90612de2565b80601f016020809104026020016040519081016040528092919081815260200182805461134690612de2565b80156113935780601f1061136857610100808354040283529160200191611393565b820191906000526020600020905b81548152906001019060200180831161137657829003601f168201915b5050505050905090565b80600860006113aa6118d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114576118d6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161149c9190612656565b60405180910390a35050565b6114b06118de565b80600c60006101000a81548160ff02191690831515021790555050565b6114d56118de565b61053961ffff166114e4610ac4565b1115611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c906134e3565b60405180910390fd5b600960149054906101000a900461ffff1661ffff16611542610ac4565b1115611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a9061354f565b60405180910390fd5b611591338261ffff16611c16565b50565b61159f848484610adb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611601576115ca84848484611c34565b611600576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061161282611877565b611651576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611648906135e1565b60405180910390fd5b600061165b611d84565b9050600081511161167b57604051806020016040528060008152506116a6565b8061168584611e16565b604051602001611696929190613689565b6040516020818303038152906040525b915050919050565b600b80546116bb90612de2565b80601f01602080910402602001604051908101604052809291908181526020018280546116e790612de2565b80156117345780601f1061170957610100808354040283529160200191611734565b820191906000526020600020905b81548152906001019060200180831161171757829003601f168201915b505050505081565b600061174782611ee4565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117ea6118de565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611859576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118509061372a565b60405180910390fd5b61186281611b52565b50565b61186d6118de565b80600a8190555050565b60008161188261195c565b11158015611891575060015482105b80156118cf575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b6118e6611f3b565b73ffffffffffffffffffffffffffffffffffffffff166119046112dc565b73ffffffffffffffffffffffffffffffffffffffff161461195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190613796565b60405180910390fd5b565b60006001905090565b6000808290508061197461195c565b116119fa576001548110156119f95760006005600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036119f7575b600081036119ed5760056000836001900393508381526020019081526020016000205490506119c3565b8092505050611a2c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ab9868684611f43565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600081604051602001611b0e919061382d565b604051602081830303815290604052805190602001209050919050565b6000806000611b3a8585611f4c565b91509150611b4781611f9d565b819250505092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c30828260405180602001604052806000815250612103565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c5a6118d6565b8786866040518563ffffffff1660e01b8152600401611c7c94939291906138a8565b6020604051808303816000875af1925050508015611cb857506040513d601f19601f82011682018060405250810190611cb59190613909565b60015b611d31573d8060008114611ce8576040519150601f19603f3d011682016040523d82523d6000602084013e611ced565b606091505b506000815103611d29576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611d9390612de2565b80601f0160208091040260200160405190810160405280929190818152602001828054611dbf90612de2565b8015611e0c5780601f10611de157610100808354040283529160200191611e0c565b820191906000526020600020905b815481529060010190602001808311611def57829003601f168201915b5050505050905090565b606060006001611e25846121a1565b01905060008167ffffffffffffffff811115611e4457611e43612973565b5b6040519080825280601f01601f191660200182016040528015611e765781602001600182028036833780820191505090505b509050600082602001820190505b600115611ed9578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611ecd57611ecc613936565b5b04945060008503611e84575b819350505050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60009392505050565b6000806041835103611f8d5760008060006020860151925060408601519150606086015160001a9050611f81878285856122f4565b94509450505050611f96565b60006002915091505b9250929050565b60006004811115611fb157611fb0613965565b5b816004811115611fc457611fc3613965565b5b03156121005760016004811115611fde57611fdd613965565b5b816004811115611ff157611ff0613965565b5b03612031576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612028906139e0565b60405180910390fd5b6002600481111561204557612044613965565b5b81600481111561205857612057613965565b5b03612098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208f90613a4c565b60405180910390fd5b600360048111156120ac576120ab613965565b5b8160048111156120bf576120be613965565b5b036120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f690613ade565b60405180910390fd5b5b50565b61210d83836123d6565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461219c5760006001549050600083820390505b61214e6000868380600101945086611c34565b612184576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061213b57816001541461219957600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106121ff577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816121f5576121f4613936565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061223c576d04ee2d6d415b85acef8100000000838161223257612231613936565b5b0492506020810190505b662386f26fc10000831061226b57662386f26fc10000838161226157612260613936565b5b0492506010810190505b6305f5e1008310612294576305f5e100838161228a57612289613936565b5b0492506008810190505b61271083106122b95761271083816122af576122ae613936565b5b0492506004810190505b606483106122dc57606483816122d2576122d1613936565b5b0492506002810190505b600a83106122eb576001810190505b80915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561232f5760006003915091506123cd565b6000600187878787604051600081526020016040526040516123549493929190613b1c565b6020604051602081039080840390855afa158015612376573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123c4576000600192509250506123cd565b80600092509250505b94509492505050565b6000600154905060008203612417576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124246000848385611a9c565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061249b8361248c6000866000611aa2565b61249585612592565b17611aca565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461253c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612501565b5060008203612577576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181905550505061258d6000848385611af5565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125eb816125b6565b81146125f657600080fd5b50565b600081359050612608816125e2565b92915050565b600060208284031215612624576126236125ac565b5b6000612632848285016125f9565b91505092915050565b60008115159050919050565b6126508161263b565b82525050565b600060208201905061266b6000830184612647565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126ab578082015181840152602081019050612690565b60008484015250505050565b6000601f19601f8301169050919050565b60006126d382612671565b6126dd818561267c565b93506126ed81856020860161268d565b6126f6816126b7565b840191505092915050565b6000602082019050818103600083015261271b81846126c8565b905092915050565b6000819050919050565b61273681612723565b811461274157600080fd5b50565b6000813590506127538161272d565b92915050565b60006020828403121561276f5761276e6125ac565b5b600061277d84828501612744565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127b182612786565b9050919050565b6127c1816127a6565b82525050565b60006020820190506127dc60008301846127b8565b92915050565b6127eb816127a6565b81146127f657600080fd5b50565b600081359050612808816127e2565b92915050565b60008060408385031215612825576128246125ac565b5b6000612833858286016127f9565b925050602061284485828601612744565b9150509250929050565b600060ff82169050919050565b6128648161284e565b811461286f57600080fd5b50565b6000813590506128818161285b565b92915050565b60006020828403121561289d5761289c6125ac565b5b60006128ab84828501612872565b91505092915050565b600061ffff82169050919050565b6128cb816128b4565b82525050565b60006020820190506128e660008301846128c2565b92915050565b6128f581612723565b82525050565b600060208201905061291060008301846128ec565b92915050565b60008060006060848603121561292f5761292e6125ac565b5b600061293d868287016127f9565b935050602061294e868287016127f9565b925050604061295f86828701612744565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129ab826126b7565b810181811067ffffffffffffffff821117156129ca576129c9612973565b5b80604052505050565b60006129dd6125a2565b90506129e982826129a2565b919050565b600067ffffffffffffffff821115612a0957612a08612973565b5b612a12826126b7565b9050602081019050919050565b82818337600083830152505050565b6000612a41612a3c846129ee565b6129d3565b905082815260208101848484011115612a5d57612a5c61296e565b5b612a68848285612a1f565b509392505050565b600082601f830112612a8557612a84612969565b5b8135612a95848260208601612a2e565b91505092915050565b600060208284031215612ab457612ab36125ac565b5b600082013567ffffffffffffffff811115612ad257612ad16125b1565b5b612ade84828501612a70565b91505092915050565b600067ffffffffffffffff821115612b0257612b01612973565b5b612b0b826126b7565b9050602081019050919050565b6000612b2b612b2684612ae7565b6129d3565b905082815260208101848484011115612b4757612b4661296e565b5b612b52848285612a1f565b509392505050565b600082601f830112612b6f57612b6e612969565b5b8135612b7f848260208601612b18565b91505092915050565b600060208284031215612b9e57612b9d6125ac565b5b600082013567ffffffffffffffff811115612bbc57612bbb6125b1565b5b612bc884828501612b5a565b91505092915050565b612bda816128b4565b8114612be557600080fd5b50565b600081359050612bf781612bd1565b92915050565b600060208284031215612c1357612c126125ac565b5b6000612c2184828501612be8565b91505092915050565b600060208284031215612c4057612c3f6125ac565b5b6000612c4e848285016127f9565b91505092915050565b612c608161263b565b8114612c6b57600080fd5b50565b600081359050612c7d81612c57565b92915050565b60008060408385031215612c9a57612c996125ac565b5b6000612ca8858286016127f9565b9250506020612cb985828601612c6e565b9150509250929050565b600060208284031215612cd957612cd86125ac565b5b6000612ce784828501612c6e565b91505092915050565b60008060008060808587031215612d0a57612d096125ac565b5b6000612d18878288016127f9565b9450506020612d29878288016127f9565b9350506040612d3a87828801612744565b925050606085013567ffffffffffffffff811115612d5b57612d5a6125b1565b5b612d6787828801612b5a565b91505092959194509250565b60008060408385031215612d8a57612d896125ac565b5b6000612d98858286016127f9565b9250506020612da9858286016127f9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dfa57607f821691505b602082108103612e0d57612e0c612db3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612e757fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e38565b612e7f8683612e38565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612ebc612eb7612eb284612723565b612e97565b612723565b9050919050565b6000819050919050565b612ed683612ea1565b612eea612ee282612ec3565b848454612e45565b825550505050565b600090565b612eff612ef2565b612f0a818484612ecd565b505050565b5b81811015612f2e57612f23600082612ef7565b600181019050612f10565b5050565b601f821115612f7357612f4481612e13565b612f4d84612e28565b81016020851015612f5c578190505b612f70612f6885612e28565b830182612f0f565b50505b505050565b600082821c905092915050565b6000612f9660001984600802612f78565b1980831691505092915050565b6000612faf8383612f85565b9150826002028217905092915050565b612fc882612671565b67ffffffffffffffff811115612fe157612fe0612973565b5b612feb8254612de2565b612ff6828285612f32565b600060209050601f8311600181146130295760008415613017578287015190505b6130218582612fa3565b865550613089565b601f19841661303786612e13565b60005b8281101561305f5784890151825560018201915060208501945060208101905061303a565b8683101561307c5784890151613078601f891682612f85565b8355505b6001600288020188555050505b505050505050565b60008160601b9050919050565b60006130a982613091565b9050919050565b60006130bb8261309e565b9050919050565b6130d36130ce826127a6565b6130b0565b82525050565b60006130e582846130c2565b60148201915081905092915050565b7f43555252454e545f535550504c595f4249474745525f5448414e5f544f54414c60008201527f5f535550504c5900000000000000000000000000000000000000000000000000602082015250565b600061315060278361267c565b915061315b826130f4565b604082019050919050565b6000602082019050818103600083015261317f81613143565b9050919050565b7f4d494e545f49535f43555252454e544c595f5041555345440000000000000000600082015250565b60006131bc60188361267c565b91506131c782613186565b602082019050919050565b600060208201905081810360008301526131eb816131af565b9050919050565b7f5349474e41545552455f56414c49444154494f4e5f4641494c45440000000000600082015250565b6000613228601b8361267c565b9150613233826131f2565b602082019050919050565b600060208201905081810360008301526132578161321b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061329882612723565b91506132a383612723565b92508282019050808211156132bb576132ba61325e565b5b92915050565b7f5245515545535445445f4d494e545f4f5645525f4d41585f535550504c590000600082015250565b60006132f7601e8361267c565b9150613302826132c1565b602082019050919050565b60006020820190508181036000830152613326816132ea565b9050919050565b7f5245515545535445445f4d494e545f4f5645525f43555252454e545f5355505060008201527f4c59000000000000000000000000000000000000000000000000000000000000602082015250565b600061338960228361267c565b91506133948261332d565b604082019050919050565b600060208201905081810360008301526133b88161337c565b9050919050565b7f414444524553535f414c52454144595f4d494e5445445f544f4b454e53000000600082015250565b60006133f5601d8361267c565b9150613400826133bf565b602082019050919050565b60006020820190508181036000830152613424816133e8565b9050919050565b7f4554485f414d4f554e545f494e56414c49440000000000000000000000000000600082015250565b600061346160128361267c565b915061346c8261342b565b602082019050919050565b6000602082019050818103600083015261349081613454565b9050919050565b7f544f54414c5f535550504c595f52454143484544000000000000000000000000600082015250565b60006134cd60148361267c565b91506134d882613497565b602082019050919050565b600060208201905081810360008301526134fc816134c0565b9050919050565b7f43555252454e545f535550504c595f4558434545444544000000000000000000600082015250565b600061353960178361267c565b915061354482613503565b602082019050919050565b600060208201905081810360008301526135688161352c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006135cb602f8361267c565b91506135d68261356f565b604082019050919050565b600060208201905081810360008301526135fa816135be565b9050919050565b600081905092915050565b600061361782612671565b6136218185613601565b935061363181856020860161268d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613673600583613601565b915061367e8261363d565b600582019050919050565b6000613695828561360c565b91506136a1828461360c565b91506136ac82613666565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061371460268361267c565b915061371f826136b8565b604082019050919050565b6000602082019050818103600083015261374381613707565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061378060208361267c565b915061378b8261374a565b602082019050919050565b600060208201905081810360008301526137af81613773565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b60006137ec601c83613601565b91506137f7826137b6565b601c82019050919050565b6000819050919050565b6000819050919050565b61382761382282613802565b61380c565b82525050565b6000613838826137df565b91506138448284613816565b60208201915081905092915050565b600081519050919050565b600082825260208201905092915050565b600061387a82613853565b613884818561385e565b935061389481856020860161268d565b61389d816126b7565b840191505092915050565b60006080820190506138bd60008301876127b8565b6138ca60208301866127b8565b6138d760408301856128ec565b81810360608301526138e9818461386f565b905095945050505050565b600081519050613903816125e2565b92915050565b60006020828403121561391f5761391e6125ac565b5b600061392d848285016138f4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006139ca60188361267c565b91506139d582613994565b602082019050919050565b600060208201905081810360008301526139f9816139bd565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613a36601f8361267c565b9150613a4182613a00565b602082019050919050565b60006020820190508181036000830152613a6581613a29565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ac860228361267c565b9150613ad382613a6c565b604082019050919050565b60006020820190508181036000830152613af781613abb565b9050919050565b613b0781613802565b82525050565b613b168161284e565b82525050565b6000608082019050613b316000830187613afe565b613b3e6020830186613b0d565b613b4b6040830185613afe565b613b586060830184613afe565b9594505050505056fea2646970667358221220bbc104e526961432c85571a91a48b231aa96683d1f413cdd747b19d8c397938b64736f6c63430008120033

Deployed Bytecode Sourcemap

79792:3372:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46688:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47590:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54081:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53514:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81778:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80110:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79986:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43341:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57720:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81535:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27985:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82265:109;;;;;;;;;;;;;:::i;:::-;;60641:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81904:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48983:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80034:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44525:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26736:103;;;;;;;;;;;;;:::i;:::-;;79946:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80427:711;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26088:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79891:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47766:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54639:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81661:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81146:251;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61432:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82382:661;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80077:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80306:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55030:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26994:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82157:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46688:639;46773:4;47112:10;47097:25;;:11;:25;;;;:102;;;;47189:10;47174:25;;:11;:25;;;;47097:102;:179;;;;47266:10;47251:25;;:11;:25;;;;47097:179;47077:199;;46688:639;;;:::o;47590:100::-;47644:13;47677:5;47670:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47590:100;:::o;54081:218::-;54157:7;54182:16;54190:7;54182;:16::i;:::-;54177:64;;54207:34;;;;;;;;;;;;;;54177:64;54261:15;:24;54277:7;54261:24;;;;;;;;;;;:30;;;;;;;;;;;;54254:37;;54081:218;;;:::o;53514:408::-;53603:13;53619:16;53627:7;53619;:16::i;:::-;53603:32;;53675:5;53652:28;;:19;:17;:19::i;:::-;:28;;;53648:175;;53700:44;53717:5;53724:19;:17;:19::i;:::-;53700:16;:44::i;:::-;53695:128;;53772:35;;;;;;;;;;;;;;53695:128;53648:175;53868:2;53835:15;:24;53851:7;53835:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;53906:7;53902:2;53886:28;;53895:5;53886:28;;;;;;;;;;;;53592:330;53514:408;;:::o;81778:118::-;25974:13;:11;:13::i;:::-;81875::::1;81852:36;;:20;;:36;;;;;;;;;;;;;;;;;;81778:118:::0;:::o;80110:32::-;;;;;;;;;;;;;:::o;79986:39::-;;;;;;;;;;;;;:::o;43341:323::-;43402:7;43630:15;:13;:15::i;:::-;43615:12;;43599:13;;:28;:46;43592:53;;43341:323;:::o;57720:2825::-;57862:27;57892;57911:7;57892:18;:27::i;:::-;57862:57;;57977:4;57936:45;;57952:19;57936:45;;;57932:86;;57990:28;;;;;;;;;;;;;;57932:86;58032:27;58061:23;58088:35;58115:7;58088:26;:35::i;:::-;58031:92;;;;58223:68;58248:15;58265:4;58271:19;:17;:19::i;:::-;58223:24;:68::i;:::-;58218:180;;58311:43;58328:4;58334:19;:17;:19::i;:::-;58311:16;:43::i;:::-;58306:92;;58363:35;;;;;;;;;;;;;;58306:92;58218:180;58429:1;58415:16;;:2;:16;;;58411:52;;58440:23;;;;;;;;;;;;;;58411:52;58476:43;58498:4;58504:2;58508:7;58517:1;58476:21;:43::i;:::-;58612:15;58609:160;;;58752:1;58731:19;58724:30;58609:160;59149:18;:24;59168:4;59149:24;;;;;;;;;;;;;;;;59147:26;;;;;;;;;;;;59218:18;:22;59237:2;59218:22;;;;;;;;;;;;;;;;59216:24;;;;;;;;;;;59540:146;59577:2;59626:45;59641:4;59647:2;59651:19;59626:14;:45::i;:::-;39740:8;59598:73;59540:18;:146::i;:::-;59511:17;:26;59529:7;59511:26;;;;;;;;;;;:175;;;;59857:1;39740:8;59806:19;:47;:52;59802:627;;59879:19;59911:1;59901:7;:11;59879:33;;60068:1;60034:17;:30;60052:11;60034:30;;;;;;;;;;;;:35;60030:384;;60172:13;;60157:11;:28;60153:242;;60352:19;60319:17;:30;60337:11;60319:30;;;;;;;;;;;:52;;;;60153:242;60030:384;59860:569;59802:627;60476:7;60472:2;60457:27;;60466:4;60457:27;;;;;;;;;;;;60495:42;60516:4;60522:2;60526:7;60535:1;60495:20;:42::i;:::-;57851:2694;;;57720:2825;;;:::o;81535:118::-;25974:13;:11;:13::i;:::-;81632::::1;81617:12;:28;;;;;;:::i;:::-;;81535:118:::0;:::o;27985:292::-;28075:4;28092:19;28141:10;28124:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;28114:39;;;;;;28092:61;;28214:55;28259:9;28214:36;:11;:34;:36::i;:::-;:44;;:55;;;;:::i;:::-;28184:85;;:13;;;;;;;;;;;:85;;;28164:105;;;27985:292;;;:::o;82265:109::-;25974:13;:11;:13::i;:::-;82323:10:::1;82315:28;;:51;82344:21;82315:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;82265:109::o:0;60641:193::-;60787:39;60804:4;60810:2;60814:7;60787:39;;;;;;;;;;;;:16;:39::i;:::-;60641:193;;;:::o;81904:245::-;25974:13;:11;:13::i;:::-;79929:4:::1;82003:30;;:14;:30;;;;81981:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;82127:14;82111:13;;:30;;;;;;;;;;;;;;;;;;81904:245:::0;:::o;48983:152::-;49055:7;49098:27;49117:7;49098:18;:27::i;:::-;49075:52;;48983:152;;;:::o;80034:34::-;;;;:::o;44525:233::-;44597:7;44638:1;44621:19;;:5;:19;;;44617:60;;44649:28;;;;;;;;;;;;;;44617:60;38684:13;44695:18;:25;44714:5;44695:25;;;;;;;;;;;;;;;;:55;44688:62;;44525:233;;;:::o;26736:103::-;25974:13;:11;:13::i;:::-;26801:30:::1;26828:1;26801:18;:30::i;:::-;26736:103::o:0;79946:33::-;;;;;;;;;;;;;:::o;80427:711::-;80500:12;;;;;;;;;;;80499:13;80491:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;80574:64;80628:9;80574:53;:64::i;:::-;80552:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;79929:4;80712:52;;80728:20;;;;;;;;;;;80712:36;;:13;:11;:13::i;:::-;:36;;;;:::i;:::-;:52;;80704:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;80858:13;;;;;;;;;;;80818:53;;80834:20;;;;;;;;;;;80818:36;;:13;:11;:13::i;:::-;:36;;;;:::i;:::-;:53;;80810:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;80956:20;;;;;;;;;;;80929:47;;:24;80942:10;80929:12;:24::i;:::-;:47;80921:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;81042:9;;81029;:22;81021:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;81087:43;81097:10;81109:20;;;;;;;;;;;81087:43;;:9;:43::i;:::-;80427:711;:::o;26088:87::-;26134:7;26161:6;;;;;;;;;;;26154:13;;26088:87;:::o;79891:42::-;79929:4;79891:42;:::o;47766:104::-;47822:13;47855:7;47848:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47766:104;:::o;54639:234::-;54786:8;54734:18;:39;54753:19;:17;:19::i;:::-;54734:39;;;;;;;;;;;;;;;:49;54774:8;54734:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;54846:8;54810:55;;54825:19;:17;:19::i;:::-;54810:55;;;54856:8;54810:55;;;;;;:::i;:::-;;;;;;;;54639:234;;:::o;81661:109::-;25974:13;:11;:13::i;:::-;81749::::1;81734:12;;:28;;;;;;;;;;;;;;;;;;81661:109:::0;:::o;81146:251::-;25974:13;:11;:13::i;:::-;79929:4:::1;81216:29;;:13;:11;:13::i;:::-;:29;;81208:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;81306:13;;;;;;;;;;;81289:30;;:13;:11;:13::i;:::-;:30;;81281:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;81360:29;81370:10;81382:6;81360:29;;:9;:29::i;:::-;81146:251:::0;:::o;61432:407::-;61607:31;61620:4;61626:2;61630:7;61607:12;:31::i;:::-;61671:1;61653:2;:14;;;:19;61649:183;;61692:56;61723:4;61729:2;61733:7;61742:5;61692:30;:56::i;:::-;61687:145;;61776:40;;;;;;;;;;;;;;61687:145;61649:183;61432:407;;;;:::o;82382:661::-;82516:13;82569:16;82577:7;82569;:16::i;:::-;82547:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;82673:28;82704:10;:8;:10::i;:::-;82673:41;;82778:1;82753:14;82747:28;:32;:288;;;;;;;;;;;;;;;;;82871:14;82912:25;82929:7;82912:16;:25::i;:::-;82828:166;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82747:288;82727:308;;;82382:661;;;:::o;80077:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;80306:113::-;80364:7;80391:20;80405:5;80391:13;:20::i;:::-;80384:27;;80306:113;;;:::o;55030:164::-;55127:4;55151:18;:25;55170:5;55151:25;;;;;;;;;;;;;;;:35;55177:8;55151:35;;;;;;;;;;;;;;;;;;;;;;;;;55144:42;;55030:164;;;;:::o;26994:201::-;25974:13;:11;:13::i;:::-;27103:1:::1;27083:22;;:8;:22;;::::0;27075:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;27159:28;27178:8;27159:18;:28::i;:::-;26994:201:::0;:::o;82157:100::-;25974:13;:11;:13::i;:::-;82239:10:::1;82227:9;:22;;;;82157:100:::0;:::o;55452:282::-;55517:4;55573:7;55554:15;:13;:15::i;:::-;:26;;:66;;;;;55607:13;;55597:7;:23;55554:66;:153;;;;;55706:1;39460:8;55658:17;:26;55676:7;55658:26;;;;;;;;;;;;:44;:49;55554:153;55534:173;;55452:282;;;:::o;77760:105::-;77820:7;77847:10;77840:17;;77760:105;:::o;26253:132::-;26328:12;:10;:12::i;:::-;26317:23;;:7;:5;:7::i;:::-;:23;;;26309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26253:132::o;83051:110::-;83125:7;83152:1;83145:8;;83051:110;:::o;50138:1275::-;50205:7;50225:12;50240:7;50225:22;;50308:4;50289:15;:13;:15::i;:::-;:23;50285:1061;;50342:13;;50335:4;:20;50331:1015;;;50380:14;50397:17;:23;50415:4;50397:23;;;;;;;;;;;;50380:40;;50514:1;39460:8;50486:6;:24;:29;50482:845;;51151:113;51168:1;51158:6;:11;51151:113;;51211:17;:25;51229:6;;;;;;;51211:25;;;;;;;;;;;;51202:34;;51151:113;;;51297:6;51290:13;;;;;;50482:845;50357:989;50331:1015;50285:1061;51374:31;;;;;;;;;;;;;;50138:1275;;;;:::o;56615:485::-;56717:27;56746:23;56787:38;56828:15;:24;56844:7;56828:24;;;;;;;;;;;56787:65;;57005:18;56982:41;;57062:19;57056:26;57037:45;;56967:126;56615:485;;;:::o;55843:659::-;55992:11;56157:16;56150:5;56146:28;56137:37;;56317:16;56306:9;56302:32;56289:45;;56467:15;56456:9;56453:30;56445:5;56434:9;56431:20;56428:56;56418:66;;55843:659;;;;;:::o;62501:159::-;;;;;:::o;77069:311::-;77204:7;77224:16;39864:3;77250:19;:41;;77224:68;;39864:3;77318:31;77329:4;77335:2;77339:9;77318:10;:31::i;:::-;77310:40;;:62;;77303:69;;;77069:311;;;;;:::o;51961:450::-;52041:14;52209:16;52202:5;52198:28;52189:37;;52386:5;52372:11;52347:23;52343:41;52340:52;52333:5;52330:63;52320:73;;51961:450;;;;:::o;63325:158::-;;;;;:::o;22645:269::-;22714:7;22900:4;22847:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;22837:69;;;;;;22830:76;;22645:269;;;:::o;18955:231::-;19033:7;19054:17;19073:18;19095:27;19106:4;19112:9;19095:10;:27::i;:::-;19053:69;;;;19133:18;19145:5;19133:11;:18::i;:::-;19169:9;19162:16;;;;18955:231;;;;:::o;27355:191::-;27429:16;27448:6;;;;;;;;;;;27429:25;;27474:8;27465:6;;:17;;;;;;;;;;;;;;;;;;27529:8;27498:40;;27519:8;27498:40;;;;;;;;;;;;27418:128;27355:191;:::o;71592:112::-;71669:27;71679:2;71683:8;71669:27;;;;;;;;;;;;:9;:27::i;:::-;71592:112;;:::o;63923:716::-;64086:4;64132:2;64107:45;;;64153:19;:17;:19::i;:::-;64174:4;64180:7;64189:5;64107:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;64103:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64407:1;64390:6;:13;:18;64386:235;;64436:40;;;;;;;;;;;;;;64386:235;64579:6;64573:13;64564:6;64560:2;64556:15;64549:38;64103:529;64276:54;;;64266:64;;;:6;:64;;;;64259:71;;;63923:716;;;;;;:::o;81405:122::-;81474:13;81507:12;81500:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81405:122;:::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;13687:288;13938:21;13687:288;13996:6;13989:13;;;;;13305:716;;;:::o;44840:178::-;44901:7;38684:13;38822:2;44929:18;:25;44948:5;44929:25;;;;;;;;;;;;;;;;:50;;44928:82;44921:89;;44840:178;;;:::o;24639:98::-;24692:7;24719:10;24712:17;;24639:98;:::o;76770:147::-;76907:6;76770:147;;;;;:::o;17406:747::-;17487:7;17496:12;17545:2;17525:9;:16;:22;17521:625;;17564:9;17588;17612:7;17869:4;17858:9;17854:20;17848:27;17843:32;;17919:4;17908:9;17904:20;17898:27;17893:32;;17977:4;17966:9;17962:20;17956:27;17953:1;17948:36;17943:41;;18020:25;18031:4;18037:1;18040;18043;18020:10;:25::i;:::-;18013:32;;;;;;;;;17521:625;18094:1;18098:35;18078:56;;;;17406:747;;;;;;:::o;15799:521::-;15877:20;15868:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;15864:449;15914:7;15864:449;15975:29;15966:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;15962:351;;16021:34;;;;;;;;;;:::i;:::-;;;;;;;;15962:351;16086:35;16077:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;16073:240;;16138:41;;;;;;;;;;:::i;:::-;;;;;;;;16073:240;16210:30;16201:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;16197:116;;16257:44;;;;;;;;;;:::i;:::-;;;;;;;;16197:116;15799:521;;:::o;70819:689::-;70950:19;70956:2;70960:8;70950:5;:19::i;:::-;71029:1;71011:2;:14;;;:19;71007:483;;71051:11;71065:13;;71051:27;;71097:13;71119:8;71113:3;:14;71097:30;;71146:233;71177:62;71216:1;71220:2;71224:7;;;;;;71233:5;71177:30;:62::i;:::-;71172:167;;71275:40;;;;;;;;;;;;;;71172:167;71374:3;71366:5;:11;71146:233;;71461:3;71444:13;;:20;71440:34;;71466:8;;;71440:34;71032:458;;71007:483;70819: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;20407:1520::-;20538:7;20547:12;21472:66;21467:1;21459:10;;:79;21455:163;;;21571:1;21575:30;21555:51;;;;;;21455:163;21715:14;21732:24;21742:4;21748:1;21751;21754;21732:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21715:41;;21789:1;21771:20;;:6;:20;;;21767:103;;21824:1;21828:29;21808:50;;;;;;;21767:103;21890:6;21898:20;21882:37;;;;;20407:1520;;;;;;;;:::o;65101:2966::-;65174:20;65197:13;;65174:36;;65237:1;65225:8;:13;65221:44;;65247:18;;;;;;;;;;;;;;65221:44;65278:61;65308:1;65312:2;65316:12;65330:8;65278:21;:61::i;:::-;65822:1;38822:2;65792:1;:26;;65791:32;65779:8;:45;65753:18;:22;65772:2;65753:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;66101:139;66138:2;66192:33;66215:1;66219:2;66223:1;66192:14;:33::i;:::-;66159:30;66180:8;66159:20;:30::i;:::-;:66;66101:18;:139::i;:::-;66067:17;:31;66085:12;66067:31;;;;;;;;;;;:173;;;;66257:16;66288:11;66317:8;66302:12;:23;66288:37;;66838:16;66834:2;66830:25;66818:37;;67210:12;67170:8;67129:1;67067:25;67008:1;66947;66920:335;67581:1;67567:12;67563:20;67521:346;67622:3;67613:7;67610:16;67521:346;;67840:7;67830:8;67827:1;67800:25;67797:1;67794;67789:59;67675:1;67666:7;67662:15;67651:26;;67521:346;;;67525:77;67912:1;67900:8;:13;67896:45;;67922:19;;;;;;;;;;;;;;67896:45;67974:3;67958:13;:19;;;;65527:2462;;67999:60;68028:1;68032:2;68036:12;68050:8;67999:20;:60::i;:::-;65163:2904;65101:2966;;:::o;52513:324::-;52583:14;52816:1;52806:8;52803:15;52777:24;52773:46;52763:56;;52513:324;;;:::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:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:86::-;4925:7;4965:4;4958:5;4954:16;4943:27;;4890:86;;;:::o;4982:118::-;5053:22;5069:5;5053:22;:::i;:::-;5046:5;5043:33;5033:61;;5090:1;5087;5080:12;5033:61;4982:118;:::o;5106:135::-;5150:5;5188:6;5175:20;5166:29;;5204:31;5229:5;5204:31;:::i;:::-;5106:135;;;;:::o;5247:325::-;5304:6;5353:2;5341:9;5332:7;5328:23;5324:32;5321:119;;;5359:79;;:::i;:::-;5321:119;5479:1;5504:51;5547:7;5538:6;5527:9;5523:22;5504:51;:::i;:::-;5494:61;;5450:115;5247:325;;;;:::o;5578:89::-;5614:7;5654:6;5647:5;5643:18;5632:29;;5578:89;;;:::o;5673:115::-;5758:23;5775:5;5758:23;:::i;:::-;5753:3;5746:36;5673:115;;:::o;5794:218::-;5885:4;5923:2;5912:9;5908:18;5900:26;;5936:69;6002:1;5991:9;5987:17;5978:6;5936:69;:::i;:::-;5794:218;;;;:::o;6018:118::-;6105:24;6123:5;6105:24;:::i;:::-;6100:3;6093:37;6018:118;;:::o;6142:222::-;6235:4;6273:2;6262:9;6258:18;6250:26;;6286:71;6354:1;6343:9;6339:17;6330:6;6286:71;:::i;:::-;6142:222;;;;:::o;6370:619::-;6447:6;6455;6463;6512:2;6500:9;6491:7;6487:23;6483:32;6480:119;;;6518:79;;:::i;:::-;6480:119;6638:1;6663:53;6708:7;6699:6;6688:9;6684:22;6663:53;:::i;:::-;6653:63;;6609:117;6765:2;6791:53;6836:7;6827:6;6816:9;6812:22;6791:53;:::i;:::-;6781:63;;6736:118;6893:2;6919:53;6964:7;6955:6;6944:9;6940:22;6919:53;:::i;:::-;6909:63;;6864:118;6370:619;;;;;:::o;6995:117::-;7104:1;7101;7094:12;7118:117;7227:1;7224;7217:12;7241:180;7289:77;7286:1;7279:88;7386:4;7383:1;7376:15;7410:4;7407:1;7400:15;7427:281;7510:27;7532:4;7510:27;:::i;:::-;7502:6;7498:40;7640:6;7628:10;7625:22;7604:18;7592:10;7589:34;7586:62;7583:88;;;7651:18;;:::i;:::-;7583:88;7691:10;7687:2;7680:22;7470:238;7427:281;;:::o;7714:129::-;7748:6;7775:20;;:::i;:::-;7765:30;;7804:33;7832:4;7824:6;7804:33;:::i;:::-;7714:129;;;:::o;7849:308::-;7911:4;8001:18;7993:6;7990:30;7987:56;;;8023:18;;:::i;:::-;7987:56;8061:29;8083:6;8061:29;:::i;:::-;8053:37;;8145:4;8139;8135:15;8127:23;;7849:308;;;:::o;8163:146::-;8260:6;8255:3;8250;8237:30;8301:1;8292:6;8287:3;8283:16;8276:27;8163:146;;;:::o;8315:425::-;8393:5;8418:66;8434:49;8476:6;8434:49;:::i;:::-;8418:66;:::i;:::-;8409:75;;8507:6;8500:5;8493:21;8545:4;8538:5;8534:16;8583:3;8574:6;8569:3;8565:16;8562:25;8559:112;;;8590:79;;:::i;:::-;8559:112;8680:54;8727:6;8722:3;8717;8680:54;:::i;:::-;8399:341;8315:425;;;;;:::o;8760:340::-;8816:5;8865:3;8858:4;8850:6;8846:17;8842:27;8832:122;;8873:79;;:::i;:::-;8832:122;8990:6;8977:20;9015:79;9090:3;9082:6;9075:4;9067:6;9063:17;9015:79;:::i;:::-;9006:88;;8822:278;8760:340;;;;:::o;9106:509::-;9175:6;9224:2;9212:9;9203:7;9199:23;9195:32;9192:119;;;9230:79;;:::i;:::-;9192:119;9378:1;9367:9;9363:17;9350:31;9408:18;9400:6;9397:30;9394:117;;;9430:79;;:::i;:::-;9394:117;9535:63;9590:7;9581:6;9570:9;9566:22;9535:63;:::i;:::-;9525:73;;9321:287;9106:509;;;;:::o;9621:307::-;9682:4;9772:18;9764:6;9761:30;9758:56;;;9794:18;;:::i;:::-;9758:56;9832:29;9854:6;9832:29;:::i;:::-;9824:37;;9916:4;9910;9906:15;9898:23;;9621:307;;;:::o;9934:423::-;10011:5;10036:65;10052:48;10093:6;10052:48;:::i;:::-;10036:65;:::i;:::-;10027:74;;10124:6;10117:5;10110:21;10162:4;10155:5;10151:16;10200:3;10191:6;10186:3;10182:16;10179:25;10176:112;;;10207:79;;:::i;:::-;10176:112;10297:54;10344:6;10339:3;10334;10297:54;:::i;:::-;10017:340;9934:423;;;;;:::o;10376:338::-;10431:5;10480:3;10473:4;10465:6;10461:17;10457:27;10447:122;;10488:79;;:::i;:::-;10447:122;10605:6;10592:20;10630:78;10704:3;10696:6;10689:4;10681:6;10677:17;10630:78;:::i;:::-;10621:87;;10437:277;10376:338;;;;:::o;10720:507::-;10788:6;10837:2;10825:9;10816:7;10812:23;10808:32;10805:119;;;10843:79;;:::i;:::-;10805:119;10991:1;10980:9;10976:17;10963:31;11021:18;11013:6;11010:30;11007:117;;;11043:79;;:::i;:::-;11007:117;11148:62;11202:7;11193:6;11182:9;11178:22;11148:62;:::i;:::-;11138:72;;10934:286;10720:507;;;;:::o;11233:120::-;11305:23;11322:5;11305:23;:::i;:::-;11298:5;11295:34;11285:62;;11343:1;11340;11333:12;11285:62;11233:120;:::o;11359:137::-;11404:5;11442:6;11429:20;11420:29;;11458:32;11484:5;11458:32;:::i;:::-;11359:137;;;;:::o;11502:327::-;11560:6;11609:2;11597:9;11588:7;11584:23;11580:32;11577:119;;;11615:79;;:::i;:::-;11577:119;11735:1;11760:52;11804:7;11795:6;11784:9;11780:22;11760:52;:::i;:::-;11750:62;;11706:116;11502:327;;;;:::o;11835:329::-;11894:6;11943:2;11931:9;11922:7;11918:23;11914:32;11911:119;;;11949:79;;:::i;:::-;11911:119;12069:1;12094:53;12139:7;12130:6;12119:9;12115:22;12094:53;:::i;:::-;12084:63;;12040:117;11835:329;;;;:::o;12170:116::-;12240:21;12255:5;12240:21;:::i;:::-;12233:5;12230:32;12220:60;;12276:1;12273;12266:12;12220:60;12170:116;:::o;12292:133::-;12335:5;12373:6;12360:20;12351:29;;12389:30;12413:5;12389:30;:::i;:::-;12292:133;;;;:::o;12431:468::-;12496:6;12504;12553:2;12541:9;12532:7;12528:23;12524:32;12521:119;;;12559:79;;:::i;:::-;12521:119;12679:1;12704:53;12749:7;12740:6;12729:9;12725:22;12704:53;:::i;:::-;12694:63;;12650:117;12806:2;12832:50;12874:7;12865:6;12854:9;12850:22;12832:50;:::i;:::-;12822:60;;12777:115;12431:468;;;;;:::o;12905:323::-;12961:6;13010:2;12998:9;12989:7;12985:23;12981:32;12978:119;;;13016:79;;:::i;:::-;12978:119;13136:1;13161:50;13203:7;13194:6;13183:9;13179:22;13161:50;:::i;:::-;13151:60;;13107:114;12905:323;;;;:::o;13234:943::-;13329:6;13337;13345;13353;13402:3;13390:9;13381:7;13377:23;13373:33;13370:120;;;13409:79;;:::i;:::-;13370:120;13529:1;13554:53;13599:7;13590:6;13579:9;13575:22;13554:53;:::i;:::-;13544:63;;13500:117;13656:2;13682:53;13727:7;13718:6;13707:9;13703:22;13682:53;:::i;:::-;13672:63;;13627:118;13784:2;13810:53;13855:7;13846:6;13835:9;13831:22;13810:53;:::i;:::-;13800:63;;13755:118;13940:2;13929:9;13925:18;13912:32;13971:18;13963:6;13960:30;13957:117;;;13993:79;;:::i;:::-;13957:117;14098:62;14152:7;14143:6;14132:9;14128:22;14098:62;:::i;:::-;14088:72;;13883:287;13234:943;;;;;;;:::o;14183:474::-;14251:6;14259;14308:2;14296:9;14287:7;14283:23;14279:32;14276:119;;;14314:79;;:::i;:::-;14276:119;14434:1;14459:53;14504:7;14495:6;14484:9;14480:22;14459:53;:::i;:::-;14449:63;;14405:117;14561:2;14587:53;14632:7;14623:6;14612:9;14608:22;14587:53;:::i;:::-;14577:63;;14532:118;14183:474;;;;;:::o;14663:180::-;14711:77;14708:1;14701:88;14808:4;14805:1;14798:15;14832:4;14829:1;14822:15;14849:320;14893:6;14930:1;14924:4;14920:12;14910:22;;14977:1;14971:4;14967:12;14998:18;14988:81;;15054:4;15046:6;15042:17;15032:27;;14988:81;15116:2;15108:6;15105:14;15085:18;15082:38;15079:84;;15135:18;;:::i;:::-;15079:84;14900:269;14849:320;;;:::o;15175:141::-;15224:4;15247:3;15239:11;;15270:3;15267:1;15260:14;15304:4;15301:1;15291:18;15283:26;;15175:141;;;:::o;15322:93::-;15359:6;15406:2;15401;15394:5;15390:14;15386:23;15376:33;;15322:93;;;:::o;15421:107::-;15465:8;15515:5;15509:4;15505:16;15484:37;;15421:107;;;;:::o;15534:393::-;15603:6;15653:1;15641:10;15637:18;15676:97;15706:66;15695:9;15676:97;:::i;:::-;15794:39;15824:8;15813:9;15794:39;:::i;:::-;15782:51;;15866:4;15862:9;15855:5;15851:21;15842:30;;15915:4;15905:8;15901:19;15894:5;15891:30;15881:40;;15610:317;;15534:393;;;;;:::o;15933:60::-;15961:3;15982:5;15975:12;;15933:60;;;:::o;15999:142::-;16049:9;16082:53;16100:34;16109:24;16127:5;16109:24;:::i;:::-;16100:34;:::i;:::-;16082:53;:::i;:::-;16069:66;;15999:142;;;:::o;16147:75::-;16190:3;16211:5;16204:12;;16147:75;;;:::o;16228:269::-;16338:39;16369:7;16338:39;:::i;:::-;16399:91;16448:41;16472:16;16448:41;:::i;:::-;16440:6;16433:4;16427:11;16399:91;:::i;:::-;16393:4;16386:105;16304:193;16228:269;;;:::o;16503:73::-;16548:3;16503:73;:::o;16582:189::-;16659:32;;:::i;:::-;16700:65;16758:6;16750;16744:4;16700:65;:::i;:::-;16635:136;16582:189;;:::o;16777:186::-;16837:120;16854:3;16847:5;16844:14;16837:120;;;16908:39;16945:1;16938:5;16908:39;:::i;:::-;16881:1;16874:5;16870:13;16861:22;;16837:120;;;16777:186;;:::o;16969:543::-;17070:2;17065:3;17062:11;17059:446;;;17104:38;17136:5;17104:38;:::i;:::-;17188:29;17206:10;17188:29;:::i;:::-;17178:8;17174:44;17371:2;17359:10;17356:18;17353:49;;;17392:8;17377:23;;17353:49;17415:80;17471:22;17489:3;17471:22;:::i;:::-;17461:8;17457:37;17444:11;17415:80;:::i;:::-;17074:431;;17059:446;16969:543;;;:::o;17518:117::-;17572:8;17622:5;17616:4;17612:16;17591:37;;17518:117;;;;:::o;17641:169::-;17685:6;17718:51;17766:1;17762:6;17754:5;17751:1;17747:13;17718:51;:::i;:::-;17714:56;17799:4;17793;17789:15;17779:25;;17692:118;17641:169;;;;:::o;17815:295::-;17891:4;18037:29;18062:3;18056:4;18037:29;:::i;:::-;18029:37;;18099:3;18096:1;18092:11;18086:4;18083:21;18075:29;;17815:295;;;;:::o;18115:1395::-;18232:37;18265:3;18232:37;:::i;:::-;18334:18;18326:6;18323:30;18320:56;;;18356:18;;:::i;:::-;18320:56;18400:38;18432:4;18426:11;18400:38;:::i;:::-;18485:67;18545:6;18537;18531:4;18485:67;:::i;:::-;18579:1;18603:4;18590:17;;18635:2;18627:6;18624:14;18652:1;18647:618;;;;19309:1;19326:6;19323:77;;;19375:9;19370:3;19366:19;19360:26;19351:35;;19323:77;19426:67;19486:6;19479:5;19426:67;:::i;:::-;19420:4;19413:81;19282:222;18617:887;;18647:618;18699:4;18695:9;18687:6;18683:22;18733:37;18765:4;18733:37;:::i;:::-;18792:1;18806:208;18820:7;18817:1;18814:14;18806:208;;;18899:9;18894:3;18890:19;18884:26;18876:6;18869:42;18950:1;18942:6;18938:14;18928:24;;18997:2;18986:9;18982:18;18969:31;;18843:4;18840:1;18836:12;18831:17;;18806:208;;;19042:6;19033:7;19030:19;19027:179;;;19100:9;19095:3;19091:19;19085:26;19143:48;19185:4;19177:6;19173:17;19162:9;19143:48;:::i;:::-;19135:6;19128:64;19050:156;19027:179;19252:1;19248;19240:6;19236:14;19232:22;19226:4;19219:36;18654:611;;;18617:887;;18207:1303;;;18115:1395;;:::o;19516:94::-;19549:8;19597:5;19593:2;19589:14;19568:35;;19516:94;;;:::o;19616:::-;19655:7;19684:20;19698:5;19684:20;:::i;:::-;19673:31;;19616:94;;;:::o;19716:100::-;19755:7;19784:26;19804:5;19784:26;:::i;:::-;19773:37;;19716:100;;;:::o;19822:157::-;19927:45;19947:24;19965:5;19947:24;:::i;:::-;19927:45;:::i;:::-;19922:3;19915:58;19822:157;;:::o;19985:256::-;20097:3;20112:75;20183:3;20174:6;20112:75;:::i;:::-;20212:2;20207:3;20203:12;20196:19;;20232:3;20225:10;;19985:256;;;;:::o;20247:226::-;20387:34;20383:1;20375:6;20371:14;20364:58;20456:9;20451:2;20443:6;20439:15;20432:34;20247:226;:::o;20479:366::-;20621:3;20642:67;20706:2;20701:3;20642:67;:::i;:::-;20635:74;;20718:93;20807:3;20718:93;:::i;:::-;20836:2;20831:3;20827:12;20820:19;;20479:366;;;:::o;20851:419::-;21017:4;21055:2;21044:9;21040:18;21032:26;;21104:9;21098:4;21094:20;21090:1;21079:9;21075:17;21068:47;21132:131;21258:4;21132:131;:::i;:::-;21124:139;;20851:419;;;:::o;21276:174::-;21416:26;21412:1;21404:6;21400:14;21393:50;21276:174;:::o;21456:366::-;21598:3;21619:67;21683:2;21678:3;21619:67;:::i;:::-;21612:74;;21695:93;21784:3;21695:93;:::i;:::-;21813:2;21808:3;21804:12;21797:19;;21456:366;;;:::o;21828:419::-;21994:4;22032:2;22021:9;22017:18;22009:26;;22081:9;22075:4;22071:20;22067:1;22056:9;22052:17;22045:47;22109:131;22235:4;22109:131;:::i;:::-;22101:139;;21828:419;;;:::o;22253:177::-;22393:29;22389:1;22381:6;22377:14;22370:53;22253:177;:::o;22436:366::-;22578:3;22599:67;22663:2;22658:3;22599:67;:::i;:::-;22592:74;;22675:93;22764:3;22675:93;:::i;:::-;22793:2;22788:3;22784:12;22777:19;;22436:366;;;:::o;22808:419::-;22974:4;23012:2;23001:9;22997:18;22989:26;;23061:9;23055:4;23051:20;23047:1;23036:9;23032:17;23025:47;23089:131;23215:4;23089:131;:::i;:::-;23081:139;;22808:419;;;:::o;23233:180::-;23281:77;23278:1;23271:88;23378:4;23375:1;23368:15;23402:4;23399:1;23392:15;23419:191;23459:3;23478:20;23496:1;23478:20;:::i;:::-;23473:25;;23512:20;23530:1;23512:20;:::i;:::-;23507:25;;23555:1;23552;23548:9;23541:16;;23576:3;23573:1;23570:10;23567:36;;;23583:18;;:::i;:::-;23567:36;23419:191;;;;:::o;23616:180::-;23756:32;23752:1;23744:6;23740:14;23733:56;23616:180;:::o;23802:366::-;23944:3;23965:67;24029:2;24024:3;23965:67;:::i;:::-;23958:74;;24041:93;24130:3;24041:93;:::i;:::-;24159:2;24154:3;24150:12;24143:19;;23802:366;;;:::o;24174:419::-;24340:4;24378:2;24367:9;24363:18;24355:26;;24427:9;24421:4;24417:20;24413:1;24402:9;24398:17;24391:47;24455:131;24581:4;24455:131;:::i;:::-;24447:139;;24174:419;;;:::o;24599:221::-;24739:34;24735:1;24727:6;24723:14;24716:58;24808:4;24803:2;24795:6;24791:15;24784:29;24599:221;:::o;24826:366::-;24968:3;24989:67;25053:2;25048:3;24989:67;:::i;:::-;24982:74;;25065:93;25154:3;25065:93;:::i;:::-;25183:2;25178:3;25174:12;25167:19;;24826:366;;;:::o;25198:419::-;25364:4;25402:2;25391:9;25387:18;25379:26;;25451:9;25445:4;25441:20;25437:1;25426:9;25422:17;25415:47;25479:131;25605:4;25479:131;:::i;:::-;25471:139;;25198:419;;;:::o;25623:179::-;25763:31;25759:1;25751:6;25747:14;25740:55;25623:179;:::o;25808:366::-;25950:3;25971:67;26035:2;26030:3;25971:67;:::i;:::-;25964:74;;26047:93;26136:3;26047:93;:::i;:::-;26165:2;26160:3;26156:12;26149:19;;25808:366;;;:::o;26180:419::-;26346:4;26384:2;26373:9;26369:18;26361:26;;26433:9;26427:4;26423:20;26419:1;26408:9;26404:17;26397:47;26461:131;26587:4;26461:131;:::i;:::-;26453:139;;26180:419;;;:::o;26605:168::-;26745:20;26741:1;26733:6;26729:14;26722:44;26605:168;:::o;26779:366::-;26921:3;26942:67;27006:2;27001:3;26942:67;:::i;:::-;26935:74;;27018:93;27107:3;27018:93;:::i;:::-;27136:2;27131:3;27127:12;27120:19;;26779:366;;;:::o;27151:419::-;27317:4;27355:2;27344:9;27340:18;27332:26;;27404:9;27398:4;27394:20;27390:1;27379:9;27375:17;27368:47;27432:131;27558:4;27432:131;:::i;:::-;27424:139;;27151:419;;;:::o;27576:170::-;27716:22;27712:1;27704:6;27700:14;27693:46;27576:170;:::o;27752:366::-;27894:3;27915:67;27979:2;27974:3;27915:67;:::i;:::-;27908:74;;27991:93;28080:3;27991:93;:::i;:::-;28109:2;28104:3;28100:12;28093:19;;27752:366;;;:::o;28124:419::-;28290:4;28328:2;28317:9;28313:18;28305:26;;28377:9;28371:4;28367:20;28363:1;28352:9;28348:17;28341:47;28405:131;28531:4;28405:131;:::i;:::-;28397:139;;28124:419;;;:::o;28549:173::-;28689:25;28685:1;28677:6;28673:14;28666:49;28549:173;:::o;28728:366::-;28870:3;28891:67;28955:2;28950:3;28891:67;:::i;:::-;28884:74;;28967:93;29056:3;28967:93;:::i;:::-;29085:2;29080:3;29076:12;29069:19;;28728:366;;;:::o;29100:419::-;29266:4;29304:2;29293:9;29289:18;29281:26;;29353:9;29347:4;29343:20;29339:1;29328:9;29324:17;29317:47;29381:131;29507:4;29381:131;:::i;:::-;29373:139;;29100:419;;;:::o;29525:234::-;29665:34;29661:1;29653:6;29649:14;29642:58;29734:17;29729:2;29721:6;29717:15;29710:42;29525:234;:::o;29765:366::-;29907:3;29928:67;29992:2;29987:3;29928:67;:::i;:::-;29921:74;;30004:93;30093:3;30004:93;:::i;:::-;30122:2;30117:3;30113:12;30106:19;;29765:366;;;:::o;30137:419::-;30303:4;30341:2;30330:9;30326:18;30318:26;;30390:9;30384:4;30380:20;30376:1;30365:9;30361:17;30354:47;30418:131;30544:4;30418:131;:::i;:::-;30410:139;;30137:419;;;:::o;30562:148::-;30664:11;30701:3;30686:18;;30562:148;;;;:::o;30716:390::-;30822:3;30850:39;30883:5;30850:39;:::i;:::-;30905:89;30987:6;30982:3;30905:89;:::i;:::-;30898:96;;31003:65;31061:6;31056:3;31049:4;31042:5;31038:16;31003:65;:::i;:::-;31093:6;31088:3;31084:16;31077:23;;30826:280;30716:390;;;;:::o;31112:155::-;31252:7;31248:1;31240:6;31236:14;31229:31;31112:155;:::o;31273:400::-;31433:3;31454:84;31536:1;31531:3;31454:84;:::i;:::-;31447:91;;31547:93;31636:3;31547:93;:::i;:::-;31665:1;31660:3;31656:11;31649:18;;31273:400;;;:::o;31679:701::-;31960:3;31982:95;32073:3;32064:6;31982:95;:::i;:::-;31975:102;;32094:95;32185:3;32176:6;32094:95;:::i;:::-;32087:102;;32206:148;32350:3;32206:148;:::i;:::-;32199:155;;32371:3;32364:10;;31679:701;;;;;:::o;32386:225::-;32526:34;32522:1;32514:6;32510:14;32503:58;32595:8;32590:2;32582:6;32578:15;32571:33;32386:225;:::o;32617:366::-;32759:3;32780:67;32844:2;32839:3;32780:67;:::i;:::-;32773:74;;32856:93;32945:3;32856:93;:::i;:::-;32974:2;32969:3;32965:12;32958:19;;32617:366;;;:::o;32989:419::-;33155:4;33193:2;33182:9;33178:18;33170:26;;33242:9;33236:4;33232:20;33228:1;33217:9;33213:17;33206:47;33270:131;33396:4;33270:131;:::i;:::-;33262:139;;32989:419;;;:::o;33414:182::-;33554:34;33550:1;33542:6;33538:14;33531:58;33414:182;:::o;33602:366::-;33744:3;33765:67;33829:2;33824:3;33765:67;:::i;:::-;33758:74;;33841:93;33930:3;33841:93;:::i;:::-;33959:2;33954:3;33950:12;33943:19;;33602:366;;;:::o;33974:419::-;34140:4;34178:2;34167:9;34163:18;34155:26;;34227:9;34221:4;34217:20;34213:1;34202:9;34198:17;34191:47;34255:131;34381:4;34255:131;:::i;:::-;34247:139;;33974:419;;;:::o;34399:214::-;34539:66;34535:1;34527:6;34523:14;34516:90;34399:214;:::o;34619:402::-;34779:3;34800:85;34882:2;34877:3;34800:85;:::i;:::-;34793:92;;34894:93;34983:3;34894:93;:::i;:::-;35012:2;35007:3;35003:12;34996:19;;34619:402;;;:::o;35027:77::-;35064:7;35093:5;35082:16;;35027:77;;;:::o;35110:79::-;35149:7;35178:5;35167:16;;35110:79;;;:::o;35195:157::-;35300:45;35320:24;35338:5;35320:24;:::i;:::-;35300:45;:::i;:::-;35295:3;35288:58;35195:157;;:::o;35358:522::-;35571:3;35593:148;35737:3;35593:148;:::i;:::-;35586:155;;35751:75;35822:3;35813:6;35751:75;:::i;:::-;35851:2;35846:3;35842:12;35835:19;;35871:3;35864:10;;35358:522;;;;:::o;35886:98::-;35937:6;35971:5;35965:12;35955:22;;35886:98;;;:::o;35990:168::-;36073:11;36107:6;36102:3;36095:19;36147:4;36142:3;36138:14;36123:29;;35990:168;;;;:::o;36164:373::-;36250:3;36278:38;36310:5;36278:38;:::i;:::-;36332:70;36395:6;36390:3;36332:70;:::i;:::-;36325:77;;36411:65;36469:6;36464:3;36457:4;36450:5;36446:16;36411:65;:::i;:::-;36501:29;36523:6;36501:29;:::i;:::-;36496:3;36492:39;36485:46;;36254:283;36164:373;;;;:::o;36543:640::-;36738:4;36776:3;36765:9;36761:19;36753:27;;36790:71;36858:1;36847:9;36843:17;36834:6;36790:71;:::i;:::-;36871:72;36939:2;36928:9;36924:18;36915:6;36871:72;:::i;:::-;36953;37021:2;37010:9;37006:18;36997:6;36953:72;:::i;:::-;37072:9;37066:4;37062:20;37057:2;37046:9;37042:18;37035:48;37100:76;37171:4;37162:6;37100:76;:::i;:::-;37092:84;;36543:640;;;;;;;:::o;37189:141::-;37245:5;37276:6;37270:13;37261:22;;37292:32;37318:5;37292:32;:::i;:::-;37189:141;;;;:::o;37336:349::-;37405:6;37454:2;37442:9;37433:7;37429:23;37425:32;37422:119;;;37460:79;;:::i;:::-;37422:119;37580:1;37605:63;37660:7;37651:6;37640:9;37636:22;37605:63;:::i;:::-;37595:73;;37551:127;37336:349;;;;:::o;37691:180::-;37739:77;37736:1;37729:88;37836:4;37833:1;37826:15;37860:4;37857:1;37850:15;37877:180;37925:77;37922:1;37915:88;38022:4;38019:1;38012:15;38046:4;38043:1;38036:15;38063:174;38203:26;38199:1;38191:6;38187:14;38180:50;38063:174;:::o;38243:366::-;38385:3;38406:67;38470:2;38465:3;38406:67;:::i;:::-;38399:74;;38482:93;38571:3;38482:93;:::i;:::-;38600:2;38595:3;38591:12;38584:19;;38243:366;;;:::o;38615:419::-;38781:4;38819:2;38808:9;38804:18;38796:26;;38868:9;38862:4;38858:20;38854:1;38843:9;38839:17;38832:47;38896:131;39022:4;38896:131;:::i;:::-;38888:139;;38615:419;;;:::o;39040:181::-;39180:33;39176:1;39168:6;39164:14;39157:57;39040:181;:::o;39227:366::-;39369:3;39390:67;39454:2;39449:3;39390:67;:::i;:::-;39383:74;;39466:93;39555:3;39466:93;:::i;:::-;39584:2;39579:3;39575:12;39568:19;;39227:366;;;:::o;39599:419::-;39765:4;39803:2;39792:9;39788:18;39780:26;;39852:9;39846:4;39842:20;39838:1;39827:9;39823:17;39816:47;39880:131;40006:4;39880:131;:::i;:::-;39872:139;;39599:419;;;:::o;40024:221::-;40164:34;40160:1;40152:6;40148:14;40141:58;40233:4;40228:2;40220:6;40216:15;40209:29;40024:221;:::o;40251:366::-;40393:3;40414:67;40478:2;40473:3;40414:67;:::i;:::-;40407:74;;40490:93;40579:3;40490:93;:::i;:::-;40608:2;40603:3;40599:12;40592:19;;40251:366;;;:::o;40623:419::-;40789:4;40827:2;40816:9;40812:18;40804:26;;40876:9;40870:4;40866:20;40862:1;40851:9;40847:17;40840:47;40904:131;41030:4;40904:131;:::i;:::-;40896:139;;40623:419;;;:::o;41048:118::-;41135:24;41153:5;41135:24;:::i;:::-;41130:3;41123:37;41048:118;;:::o;41172:112::-;41255:22;41271:5;41255:22;:::i;:::-;41250:3;41243:35;41172:112;;:::o;41290:545::-;41463:4;41501:3;41490:9;41486:19;41478:27;;41515:71;41583:1;41572:9;41568:17;41559:6;41515:71;:::i;:::-;41596:68;41660:2;41649:9;41645:18;41636:6;41596:68;:::i;:::-;41674:72;41742:2;41731:9;41727:18;41718:6;41674:72;:::i;:::-;41756;41824:2;41813:9;41809:18;41800:6;41756:72;:::i;:::-;41290:545;;;;;;;:::o

Swarm Source

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