ETH Price: $2,981.34 (+2.10%)
Gas: 1 Gwei

Token

SOL3MATES OG NFT (SOL3)
 

Overview

Max Total Supply

3,333 SOL3

Holders

417

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nonfungiblegreek.eth
Balance
62 SOL3
0x07748a148e6cae9391353fb01a6035aba158baa7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

SOL3MATES is the sneaker brand of the future, built on the foundation of community-centricity and future-forward thinking.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Sol3Mates

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 2 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// 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 3 of 13 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @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 4 of 13 : Math.sol
// SPDX-License-Identifier: MIT
// 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 5 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @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 6 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import "./IERC721A.sol";

/**
 * @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 {
	// Reference type for token approval.
	struct TokenApprovalRef {
		address value;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	// Token name
	string private _name;

	// Token symbol
	string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

		return _tokenApprovals[tokenId].value;
	}

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

		_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]`.
		assembly {
			approvedAddressSlot := tokenApproval.slot
			approvedAddress := sload(approvedAddressSlot)
		}
	}

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

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

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

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

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

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

		_beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

				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 ptr) {
		assembly {
			// The maximum value of a uint256 contains 78 digits (1 byte per digit),
			// but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
			// We will need 1 32-byte word to store the length,
			// and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
			ptr := add(mload(0x40), 128)
			// Update the free memory pointer to allocate.
			mstore(0x40, ptr)

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

			// We write the string from the rightmost digit to the leftmost digit.
			// The following is essentially a do-while loop that also handles the zero case.
			// Costs a bit more than early returning for the zero case,
			// but cheaper in terms of deployment and overall runtime costs.
			for {
				// Initialize and perform the first pass without check.
				let temp := value
				// Move the pointer 1 byte leftwards to point to an empty character slot.
				ptr := sub(ptr, 1)
				// Write the character to the pointer.
				// The ASCII index of the '0' character is 48.
				mstore8(ptr, add(48, mod(temp, 10)))
				temp := div(temp, 10)
			} temp {
				// Keep dividing `temp` until zero.
				temp := div(temp, 10)
			} {
				// Body of the for loop.
				ptr := sub(ptr, 1)
				mstore8(ptr, add(48, mod(temp, 10)))
			}

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

File 7 of 13 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.0
// 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();

	/**
	 * The caller cannot approve to their own address.
	 */
	error ApproveToCaller();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 13 : Neutron.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

import "./erc721A/ERC721A.sol";
import "./operator_filterer/DefaultOperatorFilterer.sol";

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

error Neutron__NoSaleStageActive();

error Neutron__ZeroAddressProhibited();
error Neutron__InvalidConfiguration();
error Neutron__InvalidSaleStageIndex();
error Neutron__InvalidInput();

error Neutron__WrongEtherAmmount();
error Neutron__ExceedingMaxSupply();
error Neutron__ExceedingTokensPerStageLimit();
error Neutron__ExceedingTokensPerTransactionLimit();

error Neutron__HashComparisonFailed();
error Neutron__UntrustedSigner();
error Neutron__SignatureAlreadyUsed();

error Neutron__NothingToWithdraw();
error Neutron__WithdrawFailed();

/**
 * @dev Configuration of a sale stage.
 *
 * @param startTime The start time of the sale stage.
 * @param endTime The end time of the sale stage.
 * @param supplyLimitByTheEndOfStage The maximum number of tokens that can be minted by the end of the sale stage.
 * @param maxTokensPerWallet The maximum number of tokens that can be minted by a single wallet during the sale stage.
 * @param maxTokensPerTransaction The maximum number of tokens that can be minted in a single transaction during the sale stage.
 * @param weiTokenPrice The price of a token in wei.
 */
struct SaleStageConfig {
	uint32 startTime;
	uint32 endTime;
	uint16 supplyLimitByTheEndOfStage;
	uint16 maxTokensPerWallet;
	uint16 maxTokensPerTransaction;
	uint256 weiTokenPrice;
}

/**
 * @dev A signature package, that secures the minting of tokens.
 *
 * @param messageHash The hash of the minting operation message.
 * @param signature The signature for the message hash.
 * @param nonce The nonce, that is used to prevent replay attacks.
 */
struct SaleSignaturePackage {
	bytes32 messageHash;
	bytes signature;
	uint64 nonce;
}

/**
 * @title Neutron
 * @author DeployLabs.io
 *
 * @dev Neutron is a contract for managing a token collection.
 * Version 1.2.0
 */
abstract contract Neutron is ERC721A, Ownable, DefaultOperatorFilterer {
	bytes8 private immutable i_hashSalt;
	address private immutable i_signerAddress;

	string private s_baseTokenUri;

	uint16[] internal s_saleStageIds;
	uint16 internal s_lastAssignedStageId = 0;

	mapping(uint16 => SaleStageConfig) internal s_saleStageConfigurations;
	mapping(uint16 => mapping(address => uint256)) internal s_numberMintedDuringStage;

	mapping(uint64 => bool) internal s_usedNonces;

	constructor(
		string memory name,
		string memory symbol,
		bytes8 hashSalt,
		address signerAddress
	) ERC721A(name, symbol) {
		i_hashSalt = hashSalt;
		i_signerAddress = signerAddress;
	}

	/**
	 * @dev Mint a token to the caller.
	 *
	 * @param signaturePackage The signature package for security.
	 * @param quantity The quantity of tokens to mint.
	 */
	function mint(
		SaleSignaturePackage calldata signaturePackage,
		uint256 quantity
	) external payable {
		uint16 currentStageIndex = getCurrentSaleStageIndex();
		uint16 currentStageId = s_saleStageIds[currentStageIndex];
		SaleStageConfig memory config = getSaleStageConfig(currentStageIndex);

		if (msg.value != config.weiTokenPrice * quantity) revert Neutron__WrongEtherAmmount();

		bool exceedingMaxSupply = totalSupply() + quantity > config.supplyLimitByTheEndOfStage;
		bool exceedingLimitPerTransaction = quantity > config.maxTokensPerTransaction;
		bool exceedingLimitPerStage = s_numberMintedDuringStage[currentStageId][msg.sender] +
			quantity >
			config.maxTokensPerWallet;

		if (exceedingMaxSupply) revert Neutron__ExceedingMaxSupply();
		if (exceedingLimitPerStage) revert Neutron__ExceedingTokensPerStageLimit();
		if (exceedingLimitPerTransaction) revert Neutron__ExceedingTokensPerTransactionLimit();

		if (!_isCorrectMintOperationHash(signaturePackage, msg.sender, quantity))
			revert Neutron__HashComparisonFailed();
		if (!_isTrustedSigner(signaturePackage.messageHash, signaturePackage.signature))
			revert Neutron__UntrustedSigner();
		if (s_usedNonces[signaturePackage.nonce]) revert Neutron__SignatureAlreadyUsed();

		s_numberMintedDuringStage[currentStageId][msg.sender] += quantity;
		s_usedNonces[signaturePackage.nonce] = true;

		_safeMint(msg.sender, quantity);
	}

	/**
	 * @dev Withdraw the balance of the contract.
	 *
	 * @param to The address to send the balance to.
	 */
	function withdraw(address payable to) external onlyOwner {
		uint256 balance = address(this).balance;
		if (balance == 0) revert Neutron__NothingToWithdraw();
		if (to == address(0)) revert Neutron__ZeroAddressProhibited();

		(bool success, ) = to.call{ value: address(this).balance }("");
		if (!success) revert Neutron__WithdrawFailed();
	}

	/**
	 * @dev Airdrop tokens to a list of recipients.
	 *
	 * @param airdropTo The list of recipients.
	 * @param quantity The list of quantities.
	 */
	function airdrop(address[] calldata airdropTo, uint256[] calldata quantity) external onlyOwner {
		if (airdropTo.length != quantity.length) revert Neutron__InvalidInput();

		for (uint256 i = 0; i < airdropTo.length; i++) {
			_safeMint(airdropTo[i], quantity[i]);
		}
	}

	/**
	 * @dev Add a new sale stage. The sale stage must be added in chronological order.
	 *
	 * @param config The configuration of the sale stage.
	 */
	function addSaleStage(SaleStageConfig calldata config) external onlyOwner {
		if (config.startTime >= config.endTime) revert Neutron__InvalidConfiguration();
		if (config.supplyLimitByTheEndOfStage == 0) revert Neutron__InvalidConfiguration();
		if (config.maxTokensPerWallet == 0) revert Neutron__InvalidConfiguration();
		if (config.maxTokensPerTransaction == 0) revert Neutron__InvalidConfiguration();

		s_lastAssignedStageId += 1;
		s_saleStageIds.push(s_lastAssignedStageId);
		s_saleStageConfigurations[s_lastAssignedStageId] = config;
	}

	/**
	 * @dev Remove a sale stage.
	 *
	 * @param stageIndex The index of the sale stage to remove.
	 */
	function removeSaleStage(uint16 stageIndex) external onlyOwner {
		if (stageIndex >= s_saleStageIds.length) revert Neutron__InvalidSaleStageIndex();

		for (uint256 i = stageIndex; i < s_saleStageIds.length - 1; i++) {
			s_saleStageIds[i] = s_saleStageIds[i + 1];
		}

		s_saleStageIds.pop();
	}

	/**
	 * @dev Edit an existing sale stage.
	 *
	 * @param stageIndex The index of the sale stage to edit.
	 * @param config The new configuration of the sale stage.
	 */
	function editSaleStage(uint16 stageIndex, SaleStageConfig calldata config) external onlyOwner {
		if (stageIndex >= s_saleStageIds.length) revert Neutron__InvalidSaleStageIndex();
		if (config.startTime >= config.endTime) revert Neutron__InvalidConfiguration();
		if (config.supplyLimitByTheEndOfStage == 0) revert Neutron__InvalidConfiguration();
		if (config.maxTokensPerWallet == 0) revert Neutron__InvalidConfiguration();
		if (config.maxTokensPerTransaction == 0) revert Neutron__InvalidConfiguration();

		s_saleStageConfigurations[s_saleStageIds[stageIndex]] = config;
	}

	/**
	 * @dev Reset a sale stage. This will increment the stage ID, which will invalidate all previous linked operations.
	 *
	 * @param stageIndex The index of the sale stage to reset.
	 */
	function resetSaleStage(uint16 stageIndex) external onlyOwner {
		if (stageIndex >= s_saleStageIds.length) revert Neutron__InvalidSaleStageIndex();

		s_lastAssignedStageId += 1;
		s_saleStageIds[stageIndex] = s_lastAssignedStageId;
	}

	/**
	 * @dev Set base URI for token metadata.
	 *
	 * @param baseUri The base URI for token metadata.
	 */
	function setBaseUri(string calldata baseUri) external onlyOwner {
		s_baseTokenUri = baseUri;
	}

	/**
	 * @dev Get the number of sale stages.
	 *
	 * @return saleStagesCount The number of sale stages in the contract.
	 */
	function getSaleStagesCount() external view returns (uint256 saleStagesCount) {
		saleStagesCount = s_saleStageIds.length;
	}

	/**
	 * @dev Get the number of tokens minted during a sale stage.
	 *
	 * @param stageIndex The index of the sale stage.
	 * @param wallet The wallet to get the count for.
	 *
	 * @return countMintedDuringStage The number of tokens minted during the sale stage.
	 */
	function getMintedCountDuringSaleStage(
		uint16 stageIndex,
		address wallet
	) external view returns (uint256 countMintedDuringStage) {
		if (stageIndex >= s_saleStageIds.length) revert Neutron__InvalidSaleStageIndex();

		countMintedDuringStage = s_numberMintedDuringStage[s_saleStageIds[stageIndex]][wallet];
	}

	// Overrides for marketplace restrictions.
	function transferFrom(
		address from,
		address to,
		uint256 tokenId
	) public override onlyAllowedOperator(from) {
		super.transferFrom(from, to, tokenId);
	}

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

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

	/**
	 * @dev Get the sale stage configuration.
	 *
	 * @param stageIndex The index of the sale stage.
	 *
	 * @return config The sale stage configuration.
	 */
	function getSaleStageConfig(
		uint16 stageIndex
	) public view returns (SaleStageConfig memory config) {
		if (stageIndex >= s_saleStageIds.length) revert Neutron__InvalidSaleStageIndex();

		config = s_saleStageConfigurations[s_saleStageIds[stageIndex]];
	}

	/**
	 * @dev Get the current sale stage index.
	 *
	 * @return currentStageIndex The current sale stage index.
	 */
	function getCurrentSaleStageIndex() public view returns (uint16 currentStageIndex) {
		uint256 currentTimestamp = block.timestamp;
		uint16[] memory saleStageIds = s_saleStageIds;

		for (; currentStageIndex < saleStageIds.length; currentStageIndex++) {
			SaleStageConfig memory config = s_saleStageConfigurations[
				saleStageIds[currentStageIndex]
			];

			if (currentTimestamp >= config.startTime && currentTimestamp < config.endTime) {
				return currentStageIndex;
			}
		}

		revert Neutron__NoSaleStageActive();
	}

	/**
	 * @dev Get data used to generate the signature.
	 *
	 * @return hashSalt The hash salt.
	 * @return signerAddress The signer address.
	 */
	function getSignatureData() public view returns (bytes8 hashSalt, address signerAddress) {
		return (i_hashSalt, i_signerAddress);
	}

	/**
	 * @dev Starting ID for the tokens.
	 *
	 * @return The starting ID for the tokens.
	 */
	function _startTokenId() internal view virtual override returns (uint256) {
		return 1;
	}

	/**
	 * @dev Get base token URI.
	 *
	 * @return The base token URI.
	 */
	function _baseURI() internal view virtual override returns (string memory) {
		return s_baseTokenUri;
	}

	/**
	 * @dev Check whether a message hash is the one that has been signed.
	 *
	 * @param signaturePackage The signature package.
	 * @param mintTo The address of the minter.
	 * @param quantity The quantity of tokens to mint.
	 *
	 * @return isCorrectMintOperationHash Whether the message hash matches the one that has been signed.
	 */
	function _isCorrectMintOperationHash(
		SaleSignaturePackage calldata signaturePackage,
		address mintTo,
		uint256 quantity
	) internal view returns (bool isCorrectMintOperationHash) {
		uint16 currentSaleStageIndex = getCurrentSaleStageIndex();

		bytes memory message = abi.encodePacked(
			i_hashSalt,
			mintTo,
			uint64(block.chainid),
			currentSaleStageIndex,
			uint64(quantity),
			signaturePackage.nonce
		);
		bytes32 messageHash = keccak256(message);

		isCorrectMintOperationHash = messageHash == signaturePackage.messageHash;
	}

	/**
	 * @dev Check whether a message hash was signed by a trusted address.
	 *
	 * @param messageHash The hash of the opertaion message.
	 * @param signature The signature for the message hash.
	 *
	 * @return isTrustedSigner Whether the message was signed by a trusted address.
	 */
	function _isTrustedSigner(
		bytes32 messageHash,
		bytes memory signature
	) internal view returns (bool isTrustedSigner) {
		isTrustedSigner = i_signerAddress == ECDSA.recover(messageHash, signature);
	}
}

File 9 of 13 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import { OperatorFilterer } from "./OperatorFilterer.sol";
import { CANONICAL_CORI_SUBSCRIPTION } from "./lib/Constants.sol";

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
	/// @dev The constructor that is called when the contract is being deployed.
	constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

File 10 of 13 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
	/**
	 * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
	 *         true if supplied registrant address is not registered.
	 */
	function isOperatorAllowed(address registrant, address operator) external view returns (bool);

	/**
	 * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
	 */
	function register(address registrant) external;

	/**
	 * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
	 */
	function registerAndSubscribe(address registrant, address subscription) external;

	/**
	 * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
	 *         address without subscribing.
	 */
	function registerAndCopyEntries(address registrant, address registrantToCopy) external;

	/**
	 * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
	 *         Note that this does not remove any filtered addresses or codeHashes.
	 *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
	 */
	function unregister(address addr) external;

	/**
	 * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
	 */
	function updateOperator(address registrant, address operator, bool filtered) external;

	/**
	 * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
	 */
	function updateOperators(
		address registrant,
		address[] calldata operators,
		bool filtered
	) external;

	/**
	 * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
	 */
	function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

	/**
	 * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
	 */
	function updateCodeHashes(
		address registrant,
		bytes32[] calldata codeHashes,
		bool filtered
	) external;

	/**
	 * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
	 *         subscription if present.
	 *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
	 *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
	 *         used.
	 */
	function subscribe(address registrant, address registrantToSubscribe) external;

	/**
	 * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
	 */
	function unsubscribe(address registrant, bool copyExistingEntries) external;

	/**
	 * @notice Get the subscription address of a given registrant, if any.
	 */
	function subscriptionOf(address addr) external returns (address registrant);

	/**
	 * @notice Get the set of addresses subscribed to a given registrant.
	 *         Note that order is not guaranteed as updates are made.
	 */
	function subscribers(address registrant) external returns (address[] memory);

	/**
	 * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
	 *         Note that order is not guaranteed as updates are made.
	 */
	function subscriberAt(address registrant, uint256 index) external returns (address);

	/**
	 * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
	 */
	function copyEntriesOf(address registrant, address registrantToCopy) external;

	/**
	 * @notice Returns true if operator is filtered by a given address or its subscription.
	 */
	function isOperatorFiltered(address registrant, address operator) external returns (bool);

	/**
	 * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
	 */
	function isCodeHashOfFiltered(
		address registrant,
		address operatorWithCode
	) external returns (bool);

	/**
	 * @notice Returns true if a codeHash is filtered by a given address or its subscription.
	 */
	function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

	/**
	 * @notice Returns a list of filtered operators for a given address or its subscription.
	 */
	function filteredOperators(address addr) external returns (address[] memory);

	/**
	 * @notice Returns the set of filtered codeHashes for a given address or its subscription.
	 *         Note that order is not guaranteed as updates are made.
	 */
	function filteredCodeHashes(address addr) external returns (bytes32[] memory);

	/**
	 * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
	 *         its subscription.
	 *         Note that order is not guaranteed as updates are made.
	 */
	function filteredOperatorAt(address registrant, uint256 index) external returns (address);

	/**
	 * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
	 *         its subscription.
	 *         Note that order is not guaranteed as updates are made.
	 */
	function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

	/**
	 * @notice Returns true if an address has registered
	 */
	function isRegistered(address addr) external returns (bool);

	/**
	 * @dev Convenience method to compute the code hash of an arbitrary contract
	 */
	function codeHashOf(address addr) external returns (bytes32);
}

File 11 of 13 : Constants.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

File 12 of 13 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import { IOperatorFilterRegistry } from "./IOperatorFilterRegistry.sol";
import { CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS } from "./lib/Constants.sol";

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
	/// @dev Emitted when an operator is not allowed.
	error OperatorNotAllowed(address operator);

	IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
		IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

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

	/**
	 * @dev A helper function to check if an operator is allowed.
	 */
	modifier onlyAllowedOperator(address from) virtual {
		// Allow spending tokens from addresses with balance
		// Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
		// from an EOA.
		if (from != msg.sender) {
			_checkFilterOperator(msg.sender);
		}
		_;
	}

	/**
	 * @dev A helper function to check if an operator approval is allowed.
	 */
	modifier onlyAllowedOperatorApproval(address operator) virtual {
		_checkFilterOperator(operator);
		_;
	}

	/**
	 * @dev A helper function to check if an operator is allowed.
	 */
	function _checkFilterOperator(address operator) internal view virtual {
		// Check registry code length to facilitate testing in environments without a deployed registry.
		if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
			// under normal circumstances, this function will revert rather than return false, but inheriting contracts
			// may specify their own OperatorFilterRegistry implementations, which may behave differently
			if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
				revert OperatorNotAllowed(operator);
			}
		}
	}
}

File 13 of 13 : Sol3Mates.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

/*
     .d8888b.   .d88888b.  888      .d8888b.  
    d88P  Y88b d88P" "Y88b 888     d88P  Y88b 
    Y88b.      888     888 888          .d88P 
     "Y888b.   888     888 888         8888"  
        "Y88b. 888     888 888          "Y8b. 
          "888 888     888 888     888    888 
    Y88b  d88P Y88b. .d88P 888     Y88b  d88P 
     "Y8888P"   "Y88888P"  88888888 "Y8888P"  
                                          
    Sol3Mates All Rights Reserved 2022
    Developed by DeployLabs.io ([email protected])
*/

import "./library/Neutron.sol";

error Sol3Mates__ZeroAddressProhibited();

error Sol3Mates__NotACrossmintWallet();
error Sol3Mates__CrossmintNotSupportedOnThatStage();

/**
 * @title Sol3Mates
 * @author DeployLabs.io
 *
 * @dev Sol3Mates is a contract for managing airdrops and sales of Sol3Mates NFTs.
 */
contract Sol3Mates is
	Neutron(
		"SOL3MATES OG NFT",
		"SOL3",
		0x67a95d40d901ae1a,
		0x3dD6175Fa612Ca0C95B810E487736108e4E53C1a
	)
{
	uint16 private s_publicSaleStageIndex;
	address private s_crossmintAddress;

	/**
	 * @dev Mint tokens to the specified address through crossmint.io.
	 *
	 * @param mintTo The address to mint the token to.
	 * @param quantity The quantity of tokens to mint.
	 */
	function crossmintMint(address mintTo, uint256 quantity) external payable {
		if (msg.sender != s_crossmintAddress) revert Sol3Mates__NotACrossmintWallet();

		uint16 currentStageIndex = getCurrentSaleStageIndex();
		if (currentStageIndex != s_publicSaleStageIndex)
			revert Sol3Mates__CrossmintNotSupportedOnThatStage();

		uint16 currentStageId = s_saleStageIds[currentStageIndex];
		SaleStageConfig memory config = getSaleStageConfig(currentStageIndex);

		if (msg.value != config.weiTokenPrice * quantity) revert Neutron__WrongEtherAmmount();

		bool exceedingMaxSupply = totalSupply() + quantity > config.supplyLimitByTheEndOfStage;
		bool exceedingLimitPerTransaction = quantity > config.maxTokensPerTransaction;
		bool exceedingLimitPerStage = s_numberMintedDuringStage[currentStageId][mintTo] + quantity >
			config.maxTokensPerWallet;

		if (exceedingMaxSupply) revert Neutron__ExceedingMaxSupply();
		if (exceedingLimitPerStage) revert Neutron__ExceedingTokensPerStageLimit();
		if (exceedingLimitPerTransaction) revert Neutron__ExceedingTokensPerTransactionLimit();

		s_numberMintedDuringStage[currentStageId][mintTo] += quantity;

		_safeMint(mintTo, quantity);
	}

	/**
	 * @dev Set the index of the public sale stage. Used for crossmint sales allowance.
	 *
	 * @param stageIndex The index of the public sale stage.
	 */
	function setPublicSaleStageIndex(uint16 stageIndex) external onlyOwner {
		if (stageIndex >= s_saleStageIds.length) revert Neutron__InvalidSaleStageIndex();

		s_publicSaleStageIndex = stageIndex;
	}

	/**
	 * @dev Set the address of the crossmint.io contract.
	 *
	 * @param crossmintAddress The address of the crossmint.io contract.
	 */
	function setCrossmintAddress(address crossmintAddress) external onlyOwner {
		if (crossmintAddress == address(0)) revert Sol3Mates__ZeroAddressProhibited();

		s_crossmintAddress = crossmintAddress;
	}
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"Neutron__ExceedingMaxSupply","type":"error"},{"inputs":[],"name":"Neutron__ExceedingTokensPerStageLimit","type":"error"},{"inputs":[],"name":"Neutron__ExceedingTokensPerTransactionLimit","type":"error"},{"inputs":[],"name":"Neutron__HashComparisonFailed","type":"error"},{"inputs":[],"name":"Neutron__InvalidConfiguration","type":"error"},{"inputs":[],"name":"Neutron__InvalidInput","type":"error"},{"inputs":[],"name":"Neutron__InvalidSaleStageIndex","type":"error"},{"inputs":[],"name":"Neutron__NoSaleStageActive","type":"error"},{"inputs":[],"name":"Neutron__NothingToWithdraw","type":"error"},{"inputs":[],"name":"Neutron__SignatureAlreadyUsed","type":"error"},{"inputs":[],"name":"Neutron__UntrustedSigner","type":"error"},{"inputs":[],"name":"Neutron__WithdrawFailed","type":"error"},{"inputs":[],"name":"Neutron__WrongEtherAmmount","type":"error"},{"inputs":[],"name":"Neutron__ZeroAddressProhibited","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"Sol3Mates__CrossmintNotSupportedOnThatStage","type":"error"},{"inputs":[],"name":"Sol3Mates__NotACrossmintWallet","type":"error"},{"inputs":[],"name":"Sol3Mates__ZeroAddressProhibited","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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint32","name":"endTime","type":"uint32"},{"internalType":"uint16","name":"supplyLimitByTheEndOfStage","type":"uint16"},{"internalType":"uint16","name":"maxTokensPerWallet","type":"uint16"},{"internalType":"uint16","name":"maxTokensPerTransaction","type":"uint16"},{"internalType":"uint256","name":"weiTokenPrice","type":"uint256"}],"internalType":"struct SaleStageConfig","name":"config","type":"tuple"}],"name":"addSaleStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"airdropTo","type":"address[]"},{"internalType":"uint256[]","name":"quantity","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"mintTo","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"crossmintMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"stageIndex","type":"uint16"},{"components":[{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint32","name":"endTime","type":"uint32"},{"internalType":"uint16","name":"supplyLimitByTheEndOfStage","type":"uint16"},{"internalType":"uint16","name":"maxTokensPerWallet","type":"uint16"},{"internalType":"uint16","name":"maxTokensPerTransaction","type":"uint16"},{"internalType":"uint256","name":"weiTokenPrice","type":"uint256"}],"internalType":"struct SaleStageConfig","name":"config","type":"tuple"}],"name":"editSaleStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentSaleStageIndex","outputs":[{"internalType":"uint16","name":"currentStageIndex","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"stageIndex","type":"uint16"},{"internalType":"address","name":"wallet","type":"address"}],"name":"getMintedCountDuringSaleStage","outputs":[{"internalType":"uint256","name":"countMintedDuringStage","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"stageIndex","type":"uint16"}],"name":"getSaleStageConfig","outputs":[{"components":[{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint32","name":"endTime","type":"uint32"},{"internalType":"uint16","name":"supplyLimitByTheEndOfStage","type":"uint16"},{"internalType":"uint16","name":"maxTokensPerWallet","type":"uint16"},{"internalType":"uint16","name":"maxTokensPerTransaction","type":"uint16"},{"internalType":"uint256","name":"weiTokenPrice","type":"uint256"}],"internalType":"struct SaleStageConfig","name":"config","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleStagesCount","outputs":[{"internalType":"uint256","name":"saleStagesCount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSignatureData","outputs":[{"internalType":"bytes8","name":"hashSalt","type":"bytes8"},{"internalType":"address","name":"signerAddress","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":[{"components":[{"internalType":"bytes32","name":"messageHash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint64","name":"nonce","type":"uint64"}],"internalType":"struct SaleSignaturePackage","name":"signaturePackage","type":"tuple"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"stageIndex","type":"uint16"}],"name":"removeSaleStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"stageIndex","type":"uint16"}],"name":"resetSaleStage","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"crossmintAddress","type":"address"}],"name":"setCrossmintAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"stageIndex","type":"uint16"}],"name":"setPublicSaleStageIndex","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000600b60006101000a81548161ffff021916908361ffff1602179055503480156200002f57600080fd5b506040518060400160405280601081526020017f534f4c334d41544553204f47204e4654000000000000000000000000000000008152506040518060400160405280600481526020017f534f4c33000000000000000000000000000000000000000000000000000000008152506767a95d40d901ae1a60c01b733dd6175fa612ca0c95b810e487736108e4e53c1a733cc6cdda760b79bafa08df41ecfa224f810dceb6600185858160029081620000e79190620006f6565b508060039081620000f99190620006f6565b506200010a620003a560201b60201c565b60008190555050506200013262000126620003ae60201b60201c565b620003b660201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000327578015620001ed576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001b392919062000822565b600060405180830381600087803b158015620001ce57600080fd5b505af1158015620001e3573d6000803e3d6000fd5b5050505062000326565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002a7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200026d92919062000822565b600060405180830381600087803b1580156200028857600080fd5b505af11580156200029d573d6000803e3d6000fd5b5050505062000325565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002f091906200084f565b600060405180830381600087803b1580156200030b57600080fd5b505af115801562000320573d6000803e3d6000fd5b505050505b5b5b50508177ffffffffffffffffffffffffffffffffffffffffffffffff191660808177ffffffffffffffffffffffffffffffffffffffffffffffff1916815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050505050506200086c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004fe57607f821691505b602082108103620005145762000513620004b6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200057e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200053f565b6200058a86836200053f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005d7620005d1620005cb84620005a2565b620005ac565b620005a2565b9050919050565b6000819050919050565b620005f383620005b6565b6200060b6200060282620005de565b8484546200054c565b825550505050565b600090565b6200062262000613565b6200062f818484620005e8565b505050565b5b8181101562000657576200064b60008262000618565b60018101905062000635565b5050565b601f821115620006a65762000670816200051a565b6200067b846200052f565b810160208510156200068b578190505b620006a36200069a856200052f565b83018262000634565b50505b505050565b600082821c905092915050565b6000620006cb60001984600802620006ab565b1980831691505092915050565b6000620006e68383620006b8565b9150826002028217905092915050565b62000701826200047c565b67ffffffffffffffff8111156200071d576200071c62000487565b5b620007298254620004e5565b620007368282856200065b565b600060209050601f8311600181146200076e576000841562000759578287015190505b620007658582620006d8565b865550620007d5565b601f1984166200077e866200051a565b60005b82811015620007a85784890151825560018201915060208501945060208101905062000781565b86831015620007c85784890151620007c4601f891682620006b8565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200080a82620007dd565b9050919050565b6200081c81620007fd565b82525050565b600060408201905062000839600083018562000811565b62000848602083018462000811565b9392505050565b600060208201905062000866600083018462000811565b92915050565b60805160a0516152d0620008a0600039600081816116c60152612f5c0152600081816116a50152612ebd01526152d06000f3fe6080604052600436106101f95760003560e01c80637aad1c461161010d578063b88d4fde116100a0578063e749ab2b1161006f578063e749ab2b1461070b578063e7518d1014610727578063e985e9c514610752578063f2fde38b1461078f578063f892b34b146107b8576101f9565b8063b88d4fde14610651578063c87b56dd1461067a578063d367dc58146106b7578063e52ef8c0146106e2576101f9565b806399755624116100dc57806399755624146105ad578063a0bcfc7f146105d6578063a22cb465146105ff578063a39bc0f914610628576101f9565b80637aad1c46146105025780638da5cb5b1461052b578063900af1921461055657806395d89b4114610582576101f9565b806342842e0e11610190578063672434821161015f578063672434821461042c57806367ae503b146104555780636c2b14b51461047157806370a08231146104ae578063715018a6146104eb576101f9565b806342842e0e1461037457806345d2e9371461039d57806351cff8d9146103c65780636352211e146103ef576101f9565b806318160ddd116101cc57806318160ddd146102cc5780632105612b146102f757806323b872dd1461032057806341f4343414610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906137a7565b6107f5565b60405161023291906137ef565b60405180910390f35b34801561024757600080fd5b50610250610887565b60405161025d919061389a565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906138f2565b610919565b60405161029a9190613960565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906139a7565b610998565b005b3480156102d857600080fd5b506102e1610adc565b6040516102ee91906139f6565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190613a6f565b610af3565b005b34801561032c57600080fd5b5061034760048036038101906103429190613aaf565b610d00565b005b34801561035557600080fd5b5061035e610d4f565b60405161036b9190613b61565b60405180910390f35b34801561038057600080fd5b5061039b60048036038101906103969190613aaf565b610d61565b005b3480156103a957600080fd5b506103c460048036038101906103bf9190613b7c565b610db0565b005b3480156103d257600080fd5b506103ed60048036038101906103e89190613be7565b610efb565b005b3480156103fb57600080fd5b50610416600480360381019061041191906138f2565b61104f565b6040516104239190613960565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190613ccf565b611061565b005b61046f600480360381019061046a91906139a7565b61111a565b005b34801561047d57600080fd5b5061049860048036038101906104939190613d50565b611460565b6040516104a591906139f6565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190613d90565b611540565b6040516104e291906139f6565b60405180910390f35b3480156104f757600080fd5b506105006115f8565b005b34801561050e57600080fd5b5061052960048036038101906105249190613b7c565b61160c565b005b34801561053757600080fd5b50610540611676565b60405161054d9190613960565b60405180910390f35b34801561056257600080fd5b5061056b6116a0565b604051610579929190613df8565b60405180910390f35b34801561058e57600080fd5b506105976116ed565b6040516105a4919061389a565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf9190613d90565b61177f565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190613e77565b611831565b005b34801561060b57600080fd5b5061062660048036038101906106219190613ef0565b61184f565b005b34801561063457600080fd5b5061064f600480360381019061064a9190613f30565b6119c6565b005b34801561065d57600080fd5b506106786004803603810190610673919061408d565b611bf9565b005b34801561068657600080fd5b506106a1600480360381019061069c91906138f2565b611c4a565b6040516106ae919061389a565b60405180910390f35b3480156106c357600080fd5b506106cc611ce8565b6040516106d991906139f6565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190613b7c565b611cf5565b005b6107256004803603810190610720919061412f565b611dd4565b005b34801561073357600080fd5b5061073c6121e9565b604051610749919061419a565b60405180910390f35b34801561075e57600080fd5b50610779600480360381019061077491906141b5565b6123f1565b60405161078691906137ef565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190613d90565b612485565b005b3480156107c457600080fd5b506107df60048036038101906107da9190613b7c565b612508565b6040516107ec91906142ad565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108805750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610896906142f7565b80601f01602080910402602001604051908101604052809291908181526020018280546108c2906142f7565b801561090f5780601f106108e45761010080835404028352916020019161090f565b820191906000526020600020905b8154815290600101906020018083116108f257829003601f168201915b5050505050905090565b600061092482612670565b61095a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a38261104f565b90508073ffffffffffffffffffffffffffffffffffffffff166109c46126cf565b73ffffffffffffffffffffffffffffffffffffffff1614610a27576109f0816109eb6126cf565b6123f1565b610a26576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ae66126d7565b6001546000540303905090565b610afb6126e0565b600a805490508261ffff1610610b3d576040517fdc8e581f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806020016020810190610b509190614354565b63ffffffff16816000016020810190610b699190614354565b63ffffffff1610610ba6576040517f34211bb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000816040016020810190610bbb9190613b7c565b61ffff1603610bf6576040517f34211bb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000816060016020810190610c0b9190613b7c565b61ffff1603610c46576040517f34211bb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000816080016020810190610c5b9190613b7c565b61ffff1603610c96576040517f34211bb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c6000600a8561ffff1681548110610cb357610cb2614381565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff1661ffff1681526020019081526020016000208181610cf9919061476f565b9050505050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d3e57610d3d3361275e565b5b610d4984848461285b565b50505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d9f57610d9e3361275e565b5b610daa848484612b7d565b50505050565b610db86126e0565b600a805490508161ffff1610610dfa576040517fdc8e581f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008161ffff1690505b6001600a80549050610e1691906147ac565b811015610eb757600a600182610e2c91906147e0565b81548110610e3d57610e3c614381565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff16600a8281548110610e7557610e74614381565b5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff1602179055508080610eaf90614814565b915050610e04565b50600a805480610eca57610ec961485c565b5b60019003818190600052602060002090601091828204019190066002026101000a81549061ffff0219169055905550565b610f036126e0565b600047905060008103610f41576040517e2e8fbe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa7576040517ff48504bd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1647604051610fcd906148bc565b60006040518083038185875af1925050503d806000811461100a576040519150601f19603f3d011682016040523d82523d6000602084013e61100f565b606091505b505090508061104a576040517fffdccca400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b600061105a82612b9d565b9050919050565b6110696126e0565b8181905084849050146110a8576040517f7d1091cc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b84849050811015611113576111008585838181106110cc576110cb614381565b5b90506020020160208101906110e19190613d90565b8484848181106110f4576110f3614381565b5b90506020020135612c69565b808061110b90614814565b9150506110ab565b5050505050565b600f60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111a1576040517f9bbbc80100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006111ab6121e9565b9050600f60009054906101000a900461ffff1661ffff168161ffff16146111fe576040517f1e10f91e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600a8261ffff168154811061121857611217614381565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff169050600061124983612508565b9050838160a0015161125b91906148d1565b3414611293576040517f548996a600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000816040015161ffff16856112a7610adc565b6112b191906147e0565b1190506000826080015161ffff16861190506000836060015161ffff1687600d60008861ffff1661ffff16815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133291906147e0565b119050821561136d576040517f5843fd7a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80156113a5576040517f9b36cc7f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81156113dd576040517f0fa0d88a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b86600d60008761ffff1661ffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461144591906147e0565b925050819055506114568888612c69565b5050505050505050565b6000600a805490508361ffff16106114a4576040517fdc8e581f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d6000600a8561ffff16815481106114c0576114bf614381565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115a7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116006126e0565b61160a6000612c87565b565b6116146126e0565b600a805490508161ffff1610611656576040517fdc8e581f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f60006101000a81548161ffff021916908361ffff16021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000807f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000915091509091565b6060600380546116fc906142f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611728906142f7565b80156117755780601f1061174a57610100808354040283529160200191611775565b820191906000526020600020905b81548152906001019060200180831161175857829003601f168201915b5050505050905090565b6117876126e0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117ed576040517f6158209900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6118396126e0565b81816009918261184a929190614a94565b505050565b6118576126cf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118bb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118c86126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119756126cf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119ba91906137ef565b60405180910390a35050565b6119ce6126e0565b8060200160208101906119e19190614354565b63ffffffff168160000160208101906119fa9190614354565b63ffffffff1610611a37576040517f34211bb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000816040016020810190611a4c9190613b7c565b61ffff1603611a87576040517f34211bb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000816060016020810190611a9c9190613b7c565b61ffff1603611ad7576040517f34211bb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000816080016020810190611aec9190613b7c565b61ffff1603611b27576040517f34211bb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600b60008282829054906101000a900461ffff16611b479190614b64565b92506101000a81548161ffff021916908361ffff160217905550600a600b60009054906101000a900461ffff1690806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff16021790555080600c6000600b60009054906101000a900461ffff1661ffff1661ffff1681526020019081526020016000208181611bf3919061476f565b90505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c3757611c363361275e565b5b611c4385858585612d4d565b5050505050565b6060611c5582612670565b611c8b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c95612dc0565b90506000815103611cb55760405180602001604052806000815250611ce0565b80611cbf84612e52565b604051602001611cd0929190614bd6565b6040516020818303038152906040525b915050919050565b6000600a80549050905090565b611cfd6126e0565b600a805490508161ffff1610611d3f576040517fdc8e581f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600b60008282829054906101000a900461ffff16611d5f9190614b64565b92506101000a81548161ffff021916908361ffff160217905550600b60009054906101000a900461ffff16600a8261ffff1681548110611da257611da1614381565b5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff16021790555050565b6000611dde6121e9565b90506000600a8261ffff1681548110611dfa57611df9614381565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff1690506000611e2b83612508565b9050838160a00151611e3d91906148d1565b3414611e75576040517f548996a600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000816040015161ffff1685611e89610adc565b611e9391906147e0565b1190506000826080015161ffff16861190506000836060015161ffff1687600d60008861ffff1661ffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f1491906147e0565b1190508215611f4f576040517f5843fd7a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015611f87576040517f9b36cc7f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8115611fbf576040517f0fa0d88a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fca883389612eac565b612000576040517f18cffa6d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61206088600001358980602001906120189190614c09565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612f38565b612096576040517f5e768c8300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e60008960400160208101906120ad9190614cac565b67ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612114576040517ff9d582d000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b86600d60008761ffff1661ffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461217c91906147e0565b925050819055506001600e60008a604001602081019061219c9190614cac565b67ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506121df3388612c69565b5050505050505050565b6000804290506000600a80548060200260200160405190810160405280929190818152602001828054801561226557602002820191906000526020600020906000905b82829054906101000a900461ffff1661ffff168152602001906002019060208260010104928301926001038202915080841161222c5790505b505050505090505b80518361ffff1610156123bc576000600c6000838661ffff168151811061229757612296614381565b5b602002602001015161ffff1661ffff1681526020019081526020016000206040518060c00160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160089054906101000a900461ffff1661ffff1661ffff16815260200160008201600a9054906101000a900461ffff1661ffff1661ffff16815260200160008201600c9054906101000a900461ffff1661ffff1661ffff1681526020016001820154815250509050806000015163ffffffff16831015801561239b5750806020015163ffffffff1683105b156123a8575050506123ee565b5082806123b490614cd9565b93505061226d565b6040517f9fa2ea1c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b90565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61248d6126e0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036124fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f390614d75565b60405180910390fd5b61250581612c87565b50565b6125106136ed565b600a805490508261ffff1610612552576040517fdc8e581f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c6000600a8461ffff168154811061256e5761256d614381565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff1661ffff1681526020019081526020016000206040518060c00160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160089054906101000a900461ffff1661ffff1661ffff16815260200160008201600a9054906101000a900461ffff1661ffff1661ffff16815260200160008201600c9054906101000a900461ffff1661ffff1661ffff1681526020016001820154815250509050919050565b60008161267b6126d7565b1115801561268a575060005482105b80156126c8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6126e8612f9a565b73ffffffffffffffffffffffffffffffffffffffff16612706611676565b73ffffffffffffffffffffffffffffffffffffffff161461275c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275390614de1565b60405180910390fd5b565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612858576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016127d5929190614e01565b602060405180830381865afa1580156127f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128169190614e3f565b61285757806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161284e9190613960565b60405180910390fd5b5b50565b600061286682612b9d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146128cd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806128d984612fa2565b915091506128ef81876128ea6126cf565b612fc9565b61293b57612904866128ff6126cf565b6123f1565b61293a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036129a1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129ae868686600161300d565b80156129b957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612a8785612a63888887613013565b7c02000000000000000000000000000000000000000000000000000000001761303b565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612b0d5760006001850190506000600460008381526020019081526020016000205403612b0b576000548114612b0a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b758686866001613066565b505050505050565b612b9883838360405180602001604052806000815250611bf9565b505050565b60008082905080612bac6126d7565b11612c3257600054811015612c315760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612c2f575b60008103612c25576004600083600190039350838152602001908152602001600020549050612bfb565b8092505050612c64565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612c8382826040518060200160405280600081525061306c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d58848484610d00565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612dba57612d8384848484613109565b612db9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054612dcf906142f7565b80601f0160208091040260200160405190810160405280929190818152602001828054612dfb906142f7565b8015612e485780601f10612e1d57610100808354040283529160200191612e48565b820191906000526020600020905b815481529060010190602001808311612e2b57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612e9857600183039250600a81066030018353600a81049050612e78565b508181036020830392508083525050919050565b600080612eb76121e9565b905060007f0000000000000000000000000000000000000000000000000000000000000000854684878a6040016020810190612ef39190614cac565b604051602001612f0896959493929190614f34565b60405160208183030381529060405290506000818051906020012090508660000135811493505050509392505050565b6000612f448383613259565b73ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1614905092915050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861302a868684613280565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6130768383613289565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461310457600080549050600083820390505b6130b66000868380600101945086613109565b6130ec576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106130a357816000541461310157600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261312f6126cf565b8786866040518563ffffffff1660e01b81526004016131519493929190614ff9565b6020604051808303816000875af192505050801561318d57506040513d601f19601f8201168201806040525081019061318a919061505a565b60015b613206573d80600081146131bd576040519150601f19603f3d011682016040523d82523d6000602084013e6131c2565b606091505b5060008151036131fe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008060006132688585613444565b9150915061327581613495565b819250505092915050565b60009392505050565b600080549050600082036132c9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132d6600084838561300d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061334d8361333e6000866000613013565b613347856135fb565b1761303b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146133ee57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506133b3565b5060008203613429576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061343f6000848385613066565b505050565b60008060418351036134855760008060006020860151925060408601519150606086015160001a90506134798782858561360b565b9450945050505061348e565b60006002915091505b9250929050565b600060048111156134a9576134a8615087565b5b8160048111156134bc576134bb615087565b5b03156135f857600160048111156134d6576134d5615087565b5b8160048111156134e9576134e8615087565b5b03613529576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352090615102565b60405180910390fd5b6002600481111561353d5761353c615087565b5b8160048111156135505761354f615087565b5b03613590576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135879061516e565b60405180910390fd5b600360048111156135a4576135a3615087565b5b8160048111156135b7576135b6615087565b5b036135f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135ee90615200565b60405180910390fd5b5b50565b60006001821460e11b9050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156136465760006003915091506136e4565b60006001878787876040516000815260200160405260405161366b9493929190615255565b6020604051602081039080840390855afa15801561368d573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036136db576000600192509250506136e4565b80600092509250505b94509492505050565b6040518060c00160405280600063ffffffff168152602001600063ffffffff168152602001600061ffff168152602001600061ffff168152602001600061ffff168152602001600081525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137848161374f565b811461378f57600080fd5b50565b6000813590506137a18161377b565b92915050565b6000602082840312156137bd576137bc613745565b5b60006137cb84828501613792565b91505092915050565b60008115159050919050565b6137e9816137d4565b82525050565b600060208201905061380460008301846137e0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613844578082015181840152602081019050613829565b60008484015250505050565b6000601f19601f8301169050919050565b600061386c8261380a565b6138768185613815565b9350613886818560208601613826565b61388f81613850565b840191505092915050565b600060208201905081810360008301526138b48184613861565b905092915050565b6000819050919050565b6138cf816138bc565b81146138da57600080fd5b50565b6000813590506138ec816138c6565b92915050565b60006020828403121561390857613907613745565b5b6000613916848285016138dd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061394a8261391f565b9050919050565b61395a8161393f565b82525050565b60006020820190506139756000830184613951565b92915050565b6139848161393f565b811461398f57600080fd5b50565b6000813590506139a18161397b565b92915050565b600080604083850312156139be576139bd613745565b5b60006139cc85828601613992565b92505060206139dd858286016138dd565b9150509250929050565b6139f0816138bc565b82525050565b6000602082019050613a0b60008301846139e7565b92915050565b600061ffff82169050919050565b613a2881613a11565b8114613a3357600080fd5b50565b600081359050613a4581613a1f565b92915050565b600080fd5b600060c08284031215613a6657613a65613a4b565b5b81905092915050565b60008060e08385031215613a8657613a85613745565b5b6000613a9485828601613a36565b9250506020613aa585828601613a50565b9150509250929050565b600080600060608486031215613ac857613ac7613745565b5b6000613ad686828701613992565b9350506020613ae786828701613992565b9250506040613af8868287016138dd565b9150509250925092565b6000819050919050565b6000613b27613b22613b1d8461391f565b613b02565b61391f565b9050919050565b6000613b3982613b0c565b9050919050565b6000613b4b82613b2e565b9050919050565b613b5b81613b40565b82525050565b6000602082019050613b766000830184613b52565b92915050565b600060208284031215613b9257613b91613745565b5b6000613ba084828501613a36565b91505092915050565b6000613bb48261391f565b9050919050565b613bc481613ba9565b8114613bcf57600080fd5b50565b600081359050613be181613bbb565b92915050565b600060208284031215613bfd57613bfc613745565b5b6000613c0b84828501613bd2565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613c3957613c38613c14565b5b8235905067ffffffffffffffff811115613c5657613c55613c19565b5b602083019150836020820283011115613c7257613c71613c1e565b5b9250929050565b60008083601f840112613c8f57613c8e613c14565b5b8235905067ffffffffffffffff811115613cac57613cab613c19565b5b602083019150836020820283011115613cc857613cc7613c1e565b5b9250929050565b60008060008060408587031215613ce957613ce8613745565b5b600085013567ffffffffffffffff811115613d0757613d0661374a565b5b613d1387828801613c23565b9450945050602085013567ffffffffffffffff811115613d3657613d3561374a565b5b613d4287828801613c79565b925092505092959194509250565b60008060408385031215613d6757613d66613745565b5b6000613d7585828601613a36565b9250506020613d8685828601613992565b9150509250929050565b600060208284031215613da657613da5613745565b5b6000613db484828501613992565b91505092915050565b60007fffffffffffffffff00000000000000000000000000000000000000000000000082169050919050565b613df281613dbd565b82525050565b6000604082019050613e0d6000830185613de9565b613e1a6020830184613951565b9392505050565b60008083601f840112613e3757613e36613c14565b5b8235905067ffffffffffffffff811115613e5457613e53613c19565b5b602083019150836001820283011115613e7057613e6f613c1e565b5b9250929050565b60008060208385031215613e8e57613e8d613745565b5b600083013567ffffffffffffffff811115613eac57613eab61374a565b5b613eb885828601613e21565b92509250509250929050565b613ecd816137d4565b8114613ed857600080fd5b50565b600081359050613eea81613ec4565b92915050565b60008060408385031215613f0757613f06613745565b5b6000613f1585828601613992565b9250506020613f2685828601613edb565b9150509250929050565b600060c08284031215613f4657613f45613745565b5b6000613f5484828501613a50565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f9a82613850565b810181811067ffffffffffffffff82111715613fb957613fb8613f62565b5b80604052505050565b6000613fcc61373b565b9050613fd88282613f91565b919050565b600067ffffffffffffffff821115613ff857613ff7613f62565b5b61400182613850565b9050602081019050919050565b82818337600083830152505050565b600061403061402b84613fdd565b613fc2565b90508281526020810184848401111561404c5761404b613f5d565b5b61405784828561400e565b509392505050565b600082601f83011261407457614073613c14565b5b813561408484826020860161401d565b91505092915050565b600080600080608085870312156140a7576140a6613745565b5b60006140b587828801613992565b94505060206140c687828801613992565b93505060406140d7878288016138dd565b925050606085013567ffffffffffffffff8111156140f8576140f761374a565b5b6141048782880161405f565b91505092959194509250565b60006060828403121561412657614125613a4b565b5b81905092915050565b6000806040838503121561414657614145613745565b5b600083013567ffffffffffffffff8111156141645761416361374a565b5b61417085828601614110565b9250506020614181858286016138dd565b9150509250929050565b61419481613a11565b82525050565b60006020820190506141af600083018461418b565b92915050565b600080604083850312156141cc576141cb613745565b5b60006141da85828601613992565b92505060206141eb85828601613992565b9150509250929050565b600063ffffffff82169050919050565b61420e816141f5565b82525050565b61421d81613a11565b82525050565b61422c816138bc565b82525050565b60c0820160008201516142486000850182614205565b50602082015161425b6020850182614205565b50604082015161426e6040850182614214565b5060608201516142816060850182614214565b5060808201516142946080850182614214565b5060a08201516142a760a0850182614223565b50505050565b600060c0820190506142c26000830184614232565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061430f57607f821691505b602082108103614322576143216142c8565b5b50919050565b614331816141f5565b811461433c57600080fd5b50565b60008135905061434e81614328565b92915050565b60006020828403121561436a57614369613745565b5b60006143788482850161433f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081356143bd81614328565b80915050919050565b60008160001b9050919050565b600063ffffffff6143e3846143c6565b9350801983169250808416831791505092915050565b600061441461440f61440a846141f5565b613b02565b6141f5565b9050919050565b6000819050919050565b61442e826143f9565b61444161443a8261441b565b83546143d3565b8255505050565b60008160201b9050919050565b600067ffffffff0000000061446984614448565b9350801983169250808416831791505092915050565b614488826143f9565b61449b6144948261441b565b8354614455565b8255505050565b600081356144af81613a1f565b80915050919050565b60008160401b9050919050565b600069ffff00000000000000006144db846144b8565b9350801983169250808416831791505092915050565b600061450c61450761450284613a11565b613b02565b613a11565b9050919050565b6000819050919050565b614526826144f1565b61453961453282614513565b83546144c5565b8255505050565b60008160501b9050919050565b60006bffff0000000000000000000061456584614540565b9350801983169250808416831791505092915050565b614584826144f1565b61459761459082614513565b835461454d565b8255505050565b60008160601b9050919050565b60006dffff0000000000000000000000006145c58461459e565b9350801983169250808416831791505092915050565b6145e4826144f1565b6145f76145f082614513565b83546145ab565b8255505050565b6000813561460b816138c6565b80915050919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff614640846143c6565b9350801983169250808416831791505092915050565b600061467161466c614667846138bc565b613b02565b6138bc565b9050919050565b6000819050919050565b61468b82614656565b61469e61469782614678565b8354614614565b8255505050565b6000810160008301806146b7816143b0565b90506146c38184614425565b5050506000810160208301806146d8816143b0565b90506146e4818461447f565b5050506000810160408301806146f9816144a2565b9050614705818461451d565b50505060008101606083018061471a816144a2565b9050614726818461457b565b50505060008101608083018061473b816144a2565b905061474781846145db565b5050506001810160a083018061475c816145fe565b90506147688184614682565b5050505050565b61477982826146a5565b5050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147b7826138bc565b91506147c2836138bc565b92508282039050818111156147da576147d961477d565b5b92915050565b60006147eb826138bc565b91506147f6836138bc565b925082820190508082111561480e5761480d61477d565b5b92915050565b600061481f826138bc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036148515761485061477d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081905092915050565b50565b60006148a660008361488b565b91506148b182614896565b600082019050919050565b60006148c782614899565b9150819050919050565b60006148dc826138bc565b91506148e7836138bc565b92508282026148f5816138bc565b9150828204841483151761490c5761490b61477d565b5b5092915050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026149807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614943565b61498a8683614943565b95508019841693508086168417925050509392505050565b6149ab83614656565b6149bf6149b782614678565b848454614950565b825550505050565b600090565b6149d46149c7565b6149df8184846149a2565b505050565b5b81811015614a03576149f86000826149cc565b6001810190506149e5565b5050565b601f821115614a4857614a198161491e565b614a2284614933565b81016020851015614a31578190505b614a45614a3d85614933565b8301826149e4565b50505b505050565b600082821c905092915050565b6000614a6b60001984600802614a4d565b1980831691505092915050565b6000614a848383614a5a565b9150826002028217905092915050565b614a9e8383614913565b67ffffffffffffffff811115614ab757614ab6613f62565b5b614ac182546142f7565b614acc828285614a07565b6000601f831160018114614afb5760008415614ae9578287013590505b614af38582614a78565b865550614b5b565b601f198416614b098661491e565b60005b82811015614b3157848901358255600182019150602085019450602081019050614b0c565b86831015614b4e5784890135614b4a601f891682614a5a565b8355505b6001600288020188555050505b50505050505050565b6000614b6f82613a11565b9150614b7a83613a11565b9250828201905061ffff811115614b9457614b9361477d565b5b92915050565b600081905092915050565b6000614bb08261380a565b614bba8185614b9a565b9350614bca818560208601613826565b80840191505092915050565b6000614be28285614ba5565b9150614bee8284614ba5565b91508190509392505050565b600080fd5b600080fd5b600080fd5b60008083356001602003843603038112614c2657614c25614bfa565b5b80840192508235915067ffffffffffffffff821115614c4857614c47614bff565b5b602083019250600182023603831315614c6457614c63614c04565b5b509250929050565b600067ffffffffffffffff82169050919050565b614c8981614c6c565b8114614c9457600080fd5b50565b600081359050614ca681614c80565b92915050565b600060208284031215614cc257614cc1613745565b5b6000614cd084828501614c97565b91505092915050565b6000614ce482613a11565b915061ffff8203614cf857614cf761477d565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d5f602683613815565b9150614d6a82614d03565b604082019050919050565b60006020820190508181036000830152614d8e81614d52565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614dcb602083613815565b9150614dd682614d95565b602082019050919050565b60006020820190508181036000830152614dfa81614dbe565b9050919050565b6000604082019050614e166000830185613951565b614e236020830184613951565b9392505050565b600081519050614e3981613ec4565b92915050565b600060208284031215614e5557614e54613745565b5b6000614e6384828501614e2a565b91505092915050565b6000819050919050565b614e87614e8282613dbd565b614e6c565b82525050565b6000614e988261459e565b9050919050565b6000614eaa82614e8d565b9050919050565b614ec2614ebd8261393f565b614e9f565b82525050565b60008160c01b9050919050565b6000614ee082614ec8565b9050919050565b614ef8614ef382614c6c565b614ed5565b82525050565b60008160f01b9050919050565b6000614f1682614efe565b9050919050565b614f2e614f2982613a11565b614f0b565b82525050565b6000614f408289614e76565b600882019150614f508288614eb1565b601482019150614f608287614ee7565b600882019150614f708286614f1d565b600282019150614f808285614ee7565b600882019150614f908284614ee7565b600882019150819050979650505050505050565b600081519050919050565b600082825260208201905092915050565b6000614fcb82614fa4565b614fd58185614faf565b9350614fe5818560208601613826565b614fee81613850565b840191505092915050565b600060808201905061500e6000830187613951565b61501b6020830186613951565b61502860408301856139e7565b818103606083015261503a8184614fc0565b905095945050505050565b6000815190506150548161377b565b92915050565b6000602082840312156150705761506f613745565b5b600061507e84828501615045565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006150ec601883613815565b91506150f7826150b6565b602082019050919050565b6000602082019050818103600083015261511b816150df565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615158601f83613815565b915061516382615122565b602082019050919050565b600060208201905081810360008301526151878161514b565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006151ea602283613815565b91506151f58261518e565b604082019050919050565b60006020820190508181036000830152615219816151dd565b9050919050565b6000819050919050565b61523381615220565b82525050565b600060ff82169050919050565b61524f81615239565b82525050565b600060808201905061526a600083018761522a565b6152776020830186615246565b615284604083018561522a565b615291606083018461522a565b9594505050505056fea2646970667358221220516cfb92b8feaf1421d9cf5bc2b86a2ad98db33a1fbf6cb50c471afdce4c8f1364736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80637aad1c461161010d578063b88d4fde116100a0578063e749ab2b1161006f578063e749ab2b1461070b578063e7518d1014610727578063e985e9c514610752578063f2fde38b1461078f578063f892b34b146107b8576101f9565b8063b88d4fde14610651578063c87b56dd1461067a578063d367dc58146106b7578063e52ef8c0146106e2576101f9565b806399755624116100dc57806399755624146105ad578063a0bcfc7f146105d6578063a22cb465146105ff578063a39bc0f914610628576101f9565b80637aad1c46146105025780638da5cb5b1461052b578063900af1921461055657806395d89b4114610582576101f9565b806342842e0e11610190578063672434821161015f578063672434821461042c57806367ae503b146104555780636c2b14b51461047157806370a08231146104ae578063715018a6146104eb576101f9565b806342842e0e1461037457806345d2e9371461039d57806351cff8d9146103c65780636352211e146103ef576101f9565b806318160ddd116101cc57806318160ddd146102cc5780632105612b146102f757806323b872dd1461032057806341f4343414610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906137a7565b6107f5565b60405161023291906137ef565b60405180910390f35b34801561024757600080fd5b50610250610887565b60405161025d919061389a565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906138f2565b610919565b60405161029a9190613960565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906139a7565b610998565b005b3480156102d857600080fd5b506102e1610adc565b6040516102ee91906139f6565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190613a6f565b610af3565b005b34801561032c57600080fd5b5061034760048036038101906103429190613aaf565b610d00565b005b34801561035557600080fd5b5061035e610d4f565b60405161036b9190613b61565b60405180910390f35b34801561038057600080fd5b5061039b60048036038101906103969190613aaf565b610d61565b005b3480156103a957600080fd5b506103c460048036038101906103bf9190613b7c565b610db0565b005b3480156103d257600080fd5b506103ed60048036038101906103e89190613be7565b610efb565b005b3480156103fb57600080fd5b50610416600480360381019061041191906138f2565b61104f565b6040516104239190613960565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190613ccf565b611061565b005b61046f600480360381019061046a91906139a7565b61111a565b005b34801561047d57600080fd5b5061049860048036038101906104939190613d50565b611460565b6040516104a591906139f6565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190613d90565b611540565b6040516104e291906139f6565b60405180910390f35b3480156104f757600080fd5b506105006115f8565b005b34801561050e57600080fd5b5061052960048036038101906105249190613b7c565b61160c565b005b34801561053757600080fd5b50610540611676565b60405161054d9190613960565b60405180910390f35b34801561056257600080fd5b5061056b6116a0565b604051610579929190613df8565b60405180910390f35b34801561058e57600080fd5b506105976116ed565b6040516105a4919061389a565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf9190613d90565b61177f565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190613e77565b611831565b005b34801561060b57600080fd5b5061062660048036038101906106219190613ef0565b61184f565b005b34801561063457600080fd5b5061064f600480360381019061064a9190613f30565b6119c6565b005b34801561065d57600080fd5b506106786004803603810190610673919061408d565b611bf9565b005b34801561068657600080fd5b506106a1600480360381019061069c91906138f2565b611c4a565b6040516106ae919061389a565b60405180910390f35b3480156106c357600080fd5b506106cc611ce8565b6040516106d991906139f6565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190613b7c565b611cf5565b005b6107256004803603810190610720919061412f565b611dd4565b005b34801561073357600080fd5b5061073c6121e9565b604051610749919061419a565b60405180910390f35b34801561075e57600080fd5b50610779600480360381019061077491906141b5565b6123f1565b60405161078691906137ef565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190613d90565b612485565b005b3480156107c457600080fd5b506107df60048036038101906107da9190613b7c565b612508565b6040516107ec91906142ad565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108805750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610896906142f7565b80601f01602080910402602001604051908101604052809291908181526020018280546108c2906142f7565b801561090f5780601f106108e45761010080835404028352916020019161090f565b820191906000526020600020905b8154815290600101906020018083116108f257829003601f168201915b5050505050905090565b600061092482612670565b61095a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a38261104f565b90508073ffffffffffffffffffffffffffffffffffffffff166109c46126cf565b73ffffffffffffffffffffffffffffffffffffffff1614610a27576109f0816109eb6126cf565b6123f1565b610a26576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ae66126d7565b6001546000540303905090565b610afb6126e0565b600a805490508261ffff1610610b3d576040517fdc8e581f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806020016020810190610b509190614354565b63ffffffff16816000016020810190610b699190614354565b63ffffffff1610610ba6576040517f34211bb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000816040016020810190610bbb9190613b7c565b61ffff1603610bf6576040517f34211bb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000816060016020810190610c0b9190613b7c565b61ffff1603610c46576040517f34211bb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000816080016020810190610c5b9190613b7c565b61ffff1603610c96576040517f34211bb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c6000600a8561ffff1681548110610cb357610cb2614381565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff1661ffff1681526020019081526020016000208181610cf9919061476f565b9050505050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d3e57610d3d3361275e565b5b610d4984848461285b565b50505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d9f57610d9e3361275e565b5b610daa848484612b7d565b50505050565b610db86126e0565b600a805490508161ffff1610610dfa576040517fdc8e581f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008161ffff1690505b6001600a80549050610e1691906147ac565b811015610eb757600a600182610e2c91906147e0565b81548110610e3d57610e3c614381565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff16600a8281548110610e7557610e74614381565b5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff1602179055508080610eaf90614814565b915050610e04565b50600a805480610eca57610ec961485c565b5b60019003818190600052602060002090601091828204019190066002026101000a81549061ffff0219169055905550565b610f036126e0565b600047905060008103610f41576040517e2e8fbe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa7576040517ff48504bd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1647604051610fcd906148bc565b60006040518083038185875af1925050503d806000811461100a576040519150601f19603f3d011682016040523d82523d6000602084013e61100f565b606091505b505090508061104a576040517fffdccca400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b600061105a82612b9d565b9050919050565b6110696126e0565b8181905084849050146110a8576040517f7d1091cc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b84849050811015611113576111008585838181106110cc576110cb614381565b5b90506020020160208101906110e19190613d90565b8484848181106110f4576110f3614381565b5b90506020020135612c69565b808061110b90614814565b9150506110ab565b5050505050565b600f60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111a1576040517f9bbbc80100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006111ab6121e9565b9050600f60009054906101000a900461ffff1661ffff168161ffff16146111fe576040517f1e10f91e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600a8261ffff168154811061121857611217614381565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff169050600061124983612508565b9050838160a0015161125b91906148d1565b3414611293576040517f548996a600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000816040015161ffff16856112a7610adc565b6112b191906147e0565b1190506000826080015161ffff16861190506000836060015161ffff1687600d60008861ffff1661ffff16815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133291906147e0565b119050821561136d576040517f5843fd7a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80156113a5576040517f9b36cc7f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81156113dd576040517f0fa0d88a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b86600d60008761ffff1661ffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461144591906147e0565b925050819055506114568888612c69565b5050505050505050565b6000600a805490508361ffff16106114a4576040517fdc8e581f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d6000600a8561ffff16815481106114c0576114bf614381565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff1661ffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115a7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116006126e0565b61160a6000612c87565b565b6116146126e0565b600a805490508161ffff1610611656576040517fdc8e581f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f60006101000a81548161ffff021916908361ffff16021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000807f67a95d40d901ae1a0000000000000000000000000000000000000000000000007f0000000000000000000000003dd6175fa612ca0c95b810e487736108e4e53c1a915091509091565b6060600380546116fc906142f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611728906142f7565b80156117755780601f1061174a57610100808354040283529160200191611775565b820191906000526020600020905b81548152906001019060200180831161175857829003601f168201915b5050505050905090565b6117876126e0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117ed576040517f6158209900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6118396126e0565b81816009918261184a929190614a94565b505050565b6118576126cf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118bb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118c86126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119756126cf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119ba91906137ef565b60405180910390a35050565b6119ce6126e0565b8060200160208101906119e19190614354565b63ffffffff168160000160208101906119fa9190614354565b63ffffffff1610611a37576040517f34211bb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000816040016020810190611a4c9190613b7c565b61ffff1603611a87576040517f34211bb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000816060016020810190611a9c9190613b7c565b61ffff1603611ad7576040517f34211bb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000816080016020810190611aec9190613b7c565b61ffff1603611b27576040517f34211bb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600b60008282829054906101000a900461ffff16611b479190614b64565b92506101000a81548161ffff021916908361ffff160217905550600a600b60009054906101000a900461ffff1690806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff16021790555080600c6000600b60009054906101000a900461ffff1661ffff1661ffff1681526020019081526020016000208181611bf3919061476f565b90505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c3757611c363361275e565b5b611c4385858585612d4d565b5050505050565b6060611c5582612670565b611c8b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c95612dc0565b90506000815103611cb55760405180602001604052806000815250611ce0565b80611cbf84612e52565b604051602001611cd0929190614bd6565b6040516020818303038152906040525b915050919050565b6000600a80549050905090565b611cfd6126e0565b600a805490508161ffff1610611d3f576040517fdc8e581f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600b60008282829054906101000a900461ffff16611d5f9190614b64565b92506101000a81548161ffff021916908361ffff160217905550600b60009054906101000a900461ffff16600a8261ffff1681548110611da257611da1614381565b5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff16021790555050565b6000611dde6121e9565b90506000600a8261ffff1681548110611dfa57611df9614381565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff1690506000611e2b83612508565b9050838160a00151611e3d91906148d1565b3414611e75576040517f548996a600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000816040015161ffff1685611e89610adc565b611e9391906147e0565b1190506000826080015161ffff16861190506000836060015161ffff1687600d60008861ffff1661ffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f1491906147e0565b1190508215611f4f576040517f5843fd7a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015611f87576040517f9b36cc7f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8115611fbf576040517f0fa0d88a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fca883389612eac565b612000576040517f18cffa6d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61206088600001358980602001906120189190614c09565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612f38565b612096576040517f5e768c8300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e60008960400160208101906120ad9190614cac565b67ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612114576040517ff9d582d000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b86600d60008761ffff1661ffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461217c91906147e0565b925050819055506001600e60008a604001602081019061219c9190614cac565b67ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506121df3388612c69565b5050505050505050565b6000804290506000600a80548060200260200160405190810160405280929190818152602001828054801561226557602002820191906000526020600020906000905b82829054906101000a900461ffff1661ffff168152602001906002019060208260010104928301926001038202915080841161222c5790505b505050505090505b80518361ffff1610156123bc576000600c6000838661ffff168151811061229757612296614381565b5b602002602001015161ffff1661ffff1681526020019081526020016000206040518060c00160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160089054906101000a900461ffff1661ffff1661ffff16815260200160008201600a9054906101000a900461ffff1661ffff1661ffff16815260200160008201600c9054906101000a900461ffff1661ffff1661ffff1681526020016001820154815250509050806000015163ffffffff16831015801561239b5750806020015163ffffffff1683105b156123a8575050506123ee565b5082806123b490614cd9565b93505061226d565b6040517f9fa2ea1c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b90565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61248d6126e0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036124fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f390614d75565b60405180910390fd5b61250581612c87565b50565b6125106136ed565b600a805490508261ffff1610612552576040517fdc8e581f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c6000600a8461ffff168154811061256e5761256d614381565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff1661ffff1681526020019081526020016000206040518060c00160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160089054906101000a900461ffff1661ffff1661ffff16815260200160008201600a9054906101000a900461ffff1661ffff1661ffff16815260200160008201600c9054906101000a900461ffff1661ffff1661ffff1681526020016001820154815250509050919050565b60008161267b6126d7565b1115801561268a575060005482105b80156126c8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6126e8612f9a565b73ffffffffffffffffffffffffffffffffffffffff16612706611676565b73ffffffffffffffffffffffffffffffffffffffff161461275c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275390614de1565b60405180910390fd5b565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612858576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016127d5929190614e01565b602060405180830381865afa1580156127f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128169190614e3f565b61285757806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161284e9190613960565b60405180910390fd5b5b50565b600061286682612b9d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146128cd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806128d984612fa2565b915091506128ef81876128ea6126cf565b612fc9565b61293b57612904866128ff6126cf565b6123f1565b61293a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036129a1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129ae868686600161300d565b80156129b957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612a8785612a63888887613013565b7c02000000000000000000000000000000000000000000000000000000001761303b565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612b0d5760006001850190506000600460008381526020019081526020016000205403612b0b576000548114612b0a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b758686866001613066565b505050505050565b612b9883838360405180602001604052806000815250611bf9565b505050565b60008082905080612bac6126d7565b11612c3257600054811015612c315760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612c2f575b60008103612c25576004600083600190039350838152602001908152602001600020549050612bfb565b8092505050612c64565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612c8382826040518060200160405280600081525061306c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d58848484610d00565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612dba57612d8384848484613109565b612db9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054612dcf906142f7565b80601f0160208091040260200160405190810160405280929190818152602001828054612dfb906142f7565b8015612e485780601f10612e1d57610100808354040283529160200191612e48565b820191906000526020600020905b815481529060010190602001808311612e2b57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612e9857600183039250600a81066030018353600a81049050612e78565b508181036020830392508083525050919050565b600080612eb76121e9565b905060007f67a95d40d901ae1a000000000000000000000000000000000000000000000000854684878a6040016020810190612ef39190614cac565b604051602001612f0896959493929190614f34565b60405160208183030381529060405290506000818051906020012090508660000135811493505050509392505050565b6000612f448383613259565b73ffffffffffffffffffffffffffffffffffffffff167f0000000000000000000000003dd6175fa612ca0c95b810e487736108e4e53c1a73ffffffffffffffffffffffffffffffffffffffff1614905092915050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861302a868684613280565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6130768383613289565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461310457600080549050600083820390505b6130b66000868380600101945086613109565b6130ec576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106130a357816000541461310157600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261312f6126cf565b8786866040518563ffffffff1660e01b81526004016131519493929190614ff9565b6020604051808303816000875af192505050801561318d57506040513d601f19601f8201168201806040525081019061318a919061505a565b60015b613206573d80600081146131bd576040519150601f19603f3d011682016040523d82523d6000602084013e6131c2565b606091505b5060008151036131fe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008060006132688585613444565b9150915061327581613495565b819250505092915050565b60009392505050565b600080549050600082036132c9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132d6600084838561300d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061334d8361333e6000866000613013565b613347856135fb565b1761303b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146133ee57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506133b3565b5060008203613429576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061343f6000848385613066565b505050565b60008060418351036134855760008060006020860151925060408601519150606086015160001a90506134798782858561360b565b9450945050505061348e565b60006002915091505b9250929050565b600060048111156134a9576134a8615087565b5b8160048111156134bc576134bb615087565b5b03156135f857600160048111156134d6576134d5615087565b5b8160048111156134e9576134e8615087565b5b03613529576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352090615102565b60405180910390fd5b6002600481111561353d5761353c615087565b5b8160048111156135505761354f615087565b5b03613590576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135879061516e565b60405180910390fd5b600360048111156135a4576135a3615087565b5b8160048111156135b7576135b6615087565b5b036135f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135ee90615200565b60405180910390fd5b5b50565b60006001821460e11b9050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156136465760006003915091506136e4565b60006001878787876040516000815260200160405260405161366b9493929190615255565b6020604051602081039080840390855afa15801561368d573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036136db576000600192509250506136e4565b80600092509250505b94509492505050565b6040518060c00160405280600063ffffffff168152602001600063ffffffff168152602001600061ffff168152602001600061ffff168152602001600061ffff168152602001600081525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137848161374f565b811461378f57600080fd5b50565b6000813590506137a18161377b565b92915050565b6000602082840312156137bd576137bc613745565b5b60006137cb84828501613792565b91505092915050565b60008115159050919050565b6137e9816137d4565b82525050565b600060208201905061380460008301846137e0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613844578082015181840152602081019050613829565b60008484015250505050565b6000601f19601f8301169050919050565b600061386c8261380a565b6138768185613815565b9350613886818560208601613826565b61388f81613850565b840191505092915050565b600060208201905081810360008301526138b48184613861565b905092915050565b6000819050919050565b6138cf816138bc565b81146138da57600080fd5b50565b6000813590506138ec816138c6565b92915050565b60006020828403121561390857613907613745565b5b6000613916848285016138dd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061394a8261391f565b9050919050565b61395a8161393f565b82525050565b60006020820190506139756000830184613951565b92915050565b6139848161393f565b811461398f57600080fd5b50565b6000813590506139a18161397b565b92915050565b600080604083850312156139be576139bd613745565b5b60006139cc85828601613992565b92505060206139dd858286016138dd565b9150509250929050565b6139f0816138bc565b82525050565b6000602082019050613a0b60008301846139e7565b92915050565b600061ffff82169050919050565b613a2881613a11565b8114613a3357600080fd5b50565b600081359050613a4581613a1f565b92915050565b600080fd5b600060c08284031215613a6657613a65613a4b565b5b81905092915050565b60008060e08385031215613a8657613a85613745565b5b6000613a9485828601613a36565b9250506020613aa585828601613a50565b9150509250929050565b600080600060608486031215613ac857613ac7613745565b5b6000613ad686828701613992565b9350506020613ae786828701613992565b9250506040613af8868287016138dd565b9150509250925092565b6000819050919050565b6000613b27613b22613b1d8461391f565b613b02565b61391f565b9050919050565b6000613b3982613b0c565b9050919050565b6000613b4b82613b2e565b9050919050565b613b5b81613b40565b82525050565b6000602082019050613b766000830184613b52565b92915050565b600060208284031215613b9257613b91613745565b5b6000613ba084828501613a36565b91505092915050565b6000613bb48261391f565b9050919050565b613bc481613ba9565b8114613bcf57600080fd5b50565b600081359050613be181613bbb565b92915050565b600060208284031215613bfd57613bfc613745565b5b6000613c0b84828501613bd2565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613c3957613c38613c14565b5b8235905067ffffffffffffffff811115613c5657613c55613c19565b5b602083019150836020820283011115613c7257613c71613c1e565b5b9250929050565b60008083601f840112613c8f57613c8e613c14565b5b8235905067ffffffffffffffff811115613cac57613cab613c19565b5b602083019150836020820283011115613cc857613cc7613c1e565b5b9250929050565b60008060008060408587031215613ce957613ce8613745565b5b600085013567ffffffffffffffff811115613d0757613d0661374a565b5b613d1387828801613c23565b9450945050602085013567ffffffffffffffff811115613d3657613d3561374a565b5b613d4287828801613c79565b925092505092959194509250565b60008060408385031215613d6757613d66613745565b5b6000613d7585828601613a36565b9250506020613d8685828601613992565b9150509250929050565b600060208284031215613da657613da5613745565b5b6000613db484828501613992565b91505092915050565b60007fffffffffffffffff00000000000000000000000000000000000000000000000082169050919050565b613df281613dbd565b82525050565b6000604082019050613e0d6000830185613de9565b613e1a6020830184613951565b9392505050565b60008083601f840112613e3757613e36613c14565b5b8235905067ffffffffffffffff811115613e5457613e53613c19565b5b602083019150836001820283011115613e7057613e6f613c1e565b5b9250929050565b60008060208385031215613e8e57613e8d613745565b5b600083013567ffffffffffffffff811115613eac57613eab61374a565b5b613eb885828601613e21565b92509250509250929050565b613ecd816137d4565b8114613ed857600080fd5b50565b600081359050613eea81613ec4565b92915050565b60008060408385031215613f0757613f06613745565b5b6000613f1585828601613992565b9250506020613f2685828601613edb565b9150509250929050565b600060c08284031215613f4657613f45613745565b5b6000613f5484828501613a50565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f9a82613850565b810181811067ffffffffffffffff82111715613fb957613fb8613f62565b5b80604052505050565b6000613fcc61373b565b9050613fd88282613f91565b919050565b600067ffffffffffffffff821115613ff857613ff7613f62565b5b61400182613850565b9050602081019050919050565b82818337600083830152505050565b600061403061402b84613fdd565b613fc2565b90508281526020810184848401111561404c5761404b613f5d565b5b61405784828561400e565b509392505050565b600082601f83011261407457614073613c14565b5b813561408484826020860161401d565b91505092915050565b600080600080608085870312156140a7576140a6613745565b5b60006140b587828801613992565b94505060206140c687828801613992565b93505060406140d7878288016138dd565b925050606085013567ffffffffffffffff8111156140f8576140f761374a565b5b6141048782880161405f565b91505092959194509250565b60006060828403121561412657614125613a4b565b5b81905092915050565b6000806040838503121561414657614145613745565b5b600083013567ffffffffffffffff8111156141645761416361374a565b5b61417085828601614110565b9250506020614181858286016138dd565b9150509250929050565b61419481613a11565b82525050565b60006020820190506141af600083018461418b565b92915050565b600080604083850312156141cc576141cb613745565b5b60006141da85828601613992565b92505060206141eb85828601613992565b9150509250929050565b600063ffffffff82169050919050565b61420e816141f5565b82525050565b61421d81613a11565b82525050565b61422c816138bc565b82525050565b60c0820160008201516142486000850182614205565b50602082015161425b6020850182614205565b50604082015161426e6040850182614214565b5060608201516142816060850182614214565b5060808201516142946080850182614214565b5060a08201516142a760a0850182614223565b50505050565b600060c0820190506142c26000830184614232565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061430f57607f821691505b602082108103614322576143216142c8565b5b50919050565b614331816141f5565b811461433c57600080fd5b50565b60008135905061434e81614328565b92915050565b60006020828403121561436a57614369613745565b5b60006143788482850161433f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081356143bd81614328565b80915050919050565b60008160001b9050919050565b600063ffffffff6143e3846143c6565b9350801983169250808416831791505092915050565b600061441461440f61440a846141f5565b613b02565b6141f5565b9050919050565b6000819050919050565b61442e826143f9565b61444161443a8261441b565b83546143d3565b8255505050565b60008160201b9050919050565b600067ffffffff0000000061446984614448565b9350801983169250808416831791505092915050565b614488826143f9565b61449b6144948261441b565b8354614455565b8255505050565b600081356144af81613a1f565b80915050919050565b60008160401b9050919050565b600069ffff00000000000000006144db846144b8565b9350801983169250808416831791505092915050565b600061450c61450761450284613a11565b613b02565b613a11565b9050919050565b6000819050919050565b614526826144f1565b61453961453282614513565b83546144c5565b8255505050565b60008160501b9050919050565b60006bffff0000000000000000000061456584614540565b9350801983169250808416831791505092915050565b614584826144f1565b61459761459082614513565b835461454d565b8255505050565b60008160601b9050919050565b60006dffff0000000000000000000000006145c58461459e565b9350801983169250808416831791505092915050565b6145e4826144f1565b6145f76145f082614513565b83546145ab565b8255505050565b6000813561460b816138c6565b80915050919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff614640846143c6565b9350801983169250808416831791505092915050565b600061467161466c614667846138bc565b613b02565b6138bc565b9050919050565b6000819050919050565b61468b82614656565b61469e61469782614678565b8354614614565b8255505050565b6000810160008301806146b7816143b0565b90506146c38184614425565b5050506000810160208301806146d8816143b0565b90506146e4818461447f565b5050506000810160408301806146f9816144a2565b9050614705818461451d565b50505060008101606083018061471a816144a2565b9050614726818461457b565b50505060008101608083018061473b816144a2565b905061474781846145db565b5050506001810160a083018061475c816145fe565b90506147688184614682565b5050505050565b61477982826146a5565b5050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147b7826138bc565b91506147c2836138bc565b92508282039050818111156147da576147d961477d565b5b92915050565b60006147eb826138bc565b91506147f6836138bc565b925082820190508082111561480e5761480d61477d565b5b92915050565b600061481f826138bc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036148515761485061477d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081905092915050565b50565b60006148a660008361488b565b91506148b182614896565b600082019050919050565b60006148c782614899565b9150819050919050565b60006148dc826138bc565b91506148e7836138bc565b92508282026148f5816138bc565b9150828204841483151761490c5761490b61477d565b5b5092915050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026149807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614943565b61498a8683614943565b95508019841693508086168417925050509392505050565b6149ab83614656565b6149bf6149b782614678565b848454614950565b825550505050565b600090565b6149d46149c7565b6149df8184846149a2565b505050565b5b81811015614a03576149f86000826149cc565b6001810190506149e5565b5050565b601f821115614a4857614a198161491e565b614a2284614933565b81016020851015614a31578190505b614a45614a3d85614933565b8301826149e4565b50505b505050565b600082821c905092915050565b6000614a6b60001984600802614a4d565b1980831691505092915050565b6000614a848383614a5a565b9150826002028217905092915050565b614a9e8383614913565b67ffffffffffffffff811115614ab757614ab6613f62565b5b614ac182546142f7565b614acc828285614a07565b6000601f831160018114614afb5760008415614ae9578287013590505b614af38582614a78565b865550614b5b565b601f198416614b098661491e565b60005b82811015614b3157848901358255600182019150602085019450602081019050614b0c565b86831015614b4e5784890135614b4a601f891682614a5a565b8355505b6001600288020188555050505b50505050505050565b6000614b6f82613a11565b9150614b7a83613a11565b9250828201905061ffff811115614b9457614b9361477d565b5b92915050565b600081905092915050565b6000614bb08261380a565b614bba8185614b9a565b9350614bca818560208601613826565b80840191505092915050565b6000614be28285614ba5565b9150614bee8284614ba5565b91508190509392505050565b600080fd5b600080fd5b600080fd5b60008083356001602003843603038112614c2657614c25614bfa565b5b80840192508235915067ffffffffffffffff821115614c4857614c47614bff565b5b602083019250600182023603831315614c6457614c63614c04565b5b509250929050565b600067ffffffffffffffff82169050919050565b614c8981614c6c565b8114614c9457600080fd5b50565b600081359050614ca681614c80565b92915050565b600060208284031215614cc257614cc1613745565b5b6000614cd084828501614c97565b91505092915050565b6000614ce482613a11565b915061ffff8203614cf857614cf761477d565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d5f602683613815565b9150614d6a82614d03565b604082019050919050565b60006020820190508181036000830152614d8e81614d52565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614dcb602083613815565b9150614dd682614d95565b602082019050919050565b60006020820190508181036000830152614dfa81614dbe565b9050919050565b6000604082019050614e166000830185613951565b614e236020830184613951565b9392505050565b600081519050614e3981613ec4565b92915050565b600060208284031215614e5557614e54613745565b5b6000614e6384828501614e2a565b91505092915050565b6000819050919050565b614e87614e8282613dbd565b614e6c565b82525050565b6000614e988261459e565b9050919050565b6000614eaa82614e8d565b9050919050565b614ec2614ebd8261393f565b614e9f565b82525050565b60008160c01b9050919050565b6000614ee082614ec8565b9050919050565b614ef8614ef382614c6c565b614ed5565b82525050565b60008160f01b9050919050565b6000614f1682614efe565b9050919050565b614f2e614f2982613a11565b614f0b565b82525050565b6000614f408289614e76565b600882019150614f508288614eb1565b601482019150614f608287614ee7565b600882019150614f708286614f1d565b600282019150614f808285614ee7565b600882019150614f908284614ee7565b600882019150819050979650505050505050565b600081519050919050565b600082825260208201905092915050565b6000614fcb82614fa4565b614fd58185614faf565b9350614fe5818560208601613826565b614fee81613850565b840191505092915050565b600060808201905061500e6000830187613951565b61501b6020830186613951565b61502860408301856139e7565b818103606083015261503a8184614fc0565b905095945050505050565b6000815190506150548161377b565b92915050565b6000602082840312156150705761506f613745565b5b600061507e84828501615045565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006150ec601883613815565b91506150f7826150b6565b602082019050919050565b6000602082019050818103600083015261511b816150df565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615158601f83613815565b915061516382615122565b602082019050919050565b600060208201905081810360008301526151878161514b565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006151ea602283613815565b91506151f58261518e565b604082019050919050565b60006020820190508181036000830152615219816151dd565b9050919050565b6000819050919050565b61523381615220565b82525050565b600060ff82169050919050565b61524f81615239565b82525050565b600060808201905061526a600083018761522a565b6152776020830186615246565b615284604083018561522a565b615291606083018461522a565b9594505050505056fea2646970667358221220516cfb92b8feaf1421d9cf5bc2b86a2ad98db33a1fbf6cb50c471afdce4c8f1364736f6c63430008130033

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.