ETH Price: $3,328.27 (-4.44%)
Gas: 4 Gwei

Token

NEO NFTS (NEO)
 

Overview

Max Total Supply

3,333 NEO

Holders

445

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 NEO
0xc822ef4ad884fe13a48648385f2201d4b86fb073
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NEOnft

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: operator-filter-registry/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

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

// File: operator-filter-registry/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // 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) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

// File: operator-filter-registry/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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`.
     *
     * 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 calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId, 1);

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256, /* firstTokenId */
        uint256 batchSize
    ) internal virtual {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}
}

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: neonft.sol


pragma solidity ^0.8.14;






contract NEOnft is ERC721A, Ownable, ReentrancyGuard, DefaultOperatorFilterer {
    string public baseURI;
    uint256 public currentSupply = 0;
    uint256 public mintLimit = 10;
    uint256 public presaleMaxMint = 3;
    uint256 public _totalSupply = 3333;
    uint256 public cost = 0.001 ether;
    bool public paused = true;
    bool public presale = true;
    bool public revealed = true;
    mapping(address => bool) private whitelisted;
    mapping(address => uint256) private walletMintedBalance;
    address public collabAddress = 0xcBf92Aac95b9f46F6686f69360550d1fb76fA065;

    constructor(string memory _initBaseURI)
        ERC721A("NEO NFTS", "NEO")
    {
        baseURI = _initBaseURI;
    }

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

    modifier mintCompliance(uint256 quantity) {
        require(quantity > 0 && quantity <= mintLimit, "Invalid mint amount!");
        require(
            currentSupply + quantity <= _totalSupply,
            "You can't mint more than available token"
        );
        _;
    }

    function mint(uint256 quantity) external payable mintCompliance(quantity) {
        require(!paused, "The contract is paused!");
        require(
            tx.origin == msg.sender,
            "Cannot mint through a custom contract"
        );
        if (msg.sender != owner()) {
            if (presale) {
                require(whitelisted[msg.sender], "Wallet not whitelisted");
                require(
                    walletMintedBalance[msg.sender] + quantity <= presaleMaxMint,
                    "Presale token limit reached"
                );
            }
            require(msg.value >= quantity * cost);
        }
        _mintNft(quantity);
    }

    function _mintNft(uint256 _mintAmount) internal {
        _safeMint(msg.sender, _mintAmount);
        if (presale) {
            for (uint256 i = 1; i <= _mintAmount; i++) {
                walletMintedBalance[msg.sender]++;
            }
        }
        currentSupply = currentSupply + _mintAmount;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistant token"
        );
        string memory currentBaseURI = _baseURI();
        if (revealed) {
            return
                bytes(currentBaseURI).length > 0
                    ? string(
                        abi.encodePacked(
                            currentBaseURI,
                            Strings.toString(tokenId),
                            ".json"
                        )
                    )
                    : "";
        } else {
            return string(abi.encodePacked(_baseURI(), "hidden.json"));
        }
    }

    function isWhitelisted(address _user) public view onlyOwner returns (bool) {
        return whitelisted[_user];
    }

    function getWalletPremintBalance(address _user) public view onlyOwner returns (uint256) {
        return walletMintedBalance[_user];
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

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

    function setPresale(bool _state) public onlyOwner {
        presale = _state;
    }

    function setPricePerNFT(uint256 _newpricePerNFT) public onlyOwner {
        cost = _newpricePerNFT;
    }
  
    function setbaseURI(string memory baseURI_) public onlyOwner {
        baseURI = baseURI_;
    }

    function addWhitelistUsers(address[] calldata _users) public onlyOwner {
        for (uint256 i; i < _users.length; i++) {
            whitelisted[_users[i]] = true;
        }
    }

    function addWhitelistUser(address _user) public onlyOwner {
        whitelisted[_user] = true;
    }

    function removeWhitelistUser(address _user) public onlyOwner {
        whitelisted[_user] = false;
    }

    function withdraw() public payable nonReentrant onlyOwner {
        (bool oh, ) = payable(collabAddress).call{
            value: (address(this).balance * 1) / 100
        }("");
        require(oh);

        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    /**
     * @dev implements operator-filter-registry blocklist filtering because https://opensea.io/blog/announcements/on-creator-fees/
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override(ERC721A) onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }    

    /**
     * @dev implements operator-filter-registry blocklist filtering because https://opensea.io/blog/announcements/on-creator-fees/
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override(ERC721A) onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    /**
     * @dev implements operator-filter-registry blocklist filtering because https://opensea.io/blog/announcements/on-creator-fees/
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public payable override(ERC721A) onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"addWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addWhitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collabAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getWalletPremintBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newpricePerNFT","type":"uint256"}],"name":"setPricePerNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setbaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600b55600a600c556003600d55610d05600e5566038d7ea4c68000600f556001601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff0219169083151502179055506001601060026101000a81548160ff02191690831515021790555073cbf92aac95b9f46f6686f69360550d1fb76fa065601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000d757600080fd5b5060405162004733380380620047338339818101604052810190620000fd919062000729565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600881526020017f4e454f204e4654530000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4e454f0000000000000000000000000000000000000000000000000000000000815250816002908051906020019062000198929190620004dc565b508060039080519060200190620001b1929190620004dc565b50620001c26200040960201b60201c565b6000819055505050620001ea620001de6200040e60201b60201c565b6200041660201b60201c565b600160098190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003e7578015620002ad576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b815260040162000273929190620007bf565b600060405180830381600087803b1580156200028e57600080fd5b505af1158015620002a3573d6000803e3d6000fd5b50505050620003e6565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000367576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200032d929190620007bf565b600060405180830381600087803b1580156200034857600080fd5b505af11580156200035d573d6000803e3d6000fd5b50505050620003e5565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003b09190620007ec565b600060405180830381600087803b158015620003cb57600080fd5b505af1158015620003e0573d6000803e3d6000fd5b505050505b5b5b505080600a908051906020019062000401929190620004dc565b50506200086d565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620004ea9062000838565b90600052602060002090601f0160209004810192826200050e57600085556200055a565b82601f106200052957805160ff19168380011785556200055a565b828001600101855582156200055a579182015b82811115620005595782518255916020019190600101906200053c565b5b5090506200056991906200056d565b5090565b5b80821115620005885760008160009055506001016200056e565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005f582620005aa565b810181811067ffffffffffffffff82111715620006175762000616620005bb565b5b80604052505050565b60006200062c6200058c565b90506200063a8282620005ea565b919050565b600067ffffffffffffffff8211156200065d576200065c620005bb565b5b6200066882620005aa565b9050602081019050919050565b60005b838110156200069557808201518184015260208101905062000678565b83811115620006a5576000848401525b50505050565b6000620006c2620006bc846200063f565b62000620565b905082815260208101848484011115620006e157620006e0620005a5565b5b620006ee84828562000675565b509392505050565b600082601f8301126200070e576200070d620005a0565b5b815162000720848260208601620006ab565b91505092915050565b60006020828403121562000742576200074162000596565b5b600082015167ffffffffffffffff8111156200076357620007626200059b565b5b6200077184828501620006f6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007a7826200077a565b9050919050565b620007b9816200079a565b82525050565b6000604082019050620007d66000830185620007ae565b620007e56020830184620007ae565b9392505050565b6000602082019050620008036000830184620007ae565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200085157607f821691505b60208210810362000867576200086662000809565b5b50919050565b613eb6806200087d6000396000f3fe6080604052600436106102305760003560e01c8063686b28121161012e578063a0712d68116100ab578063cc9f01941161006f578063cc9f0194146107db578063e0a8085314610804578063e985e9c51461082d578063f2fde38b1461086a578063fdea8e0b1461089357610230565b8063a0712d6814610714578063a22cb46514610730578063b88d4fde14610759578063c54e73e314610775578063c87b56dd1461079e57610230565b806384083c89116100f257806384083c891461063f5780638da5cb5b14610668578063946ef42a1461069357806395d89b41146106be578063996517cf146106e957610230565b8063686b28121461056c5780636c0360eb1461059557806370a08231146105c0578063715018a6146105fd578063771282f61461061457610230565b806330cc7ae0116101bc57806342842e0e1161018057806342842e0e146104945780634a44f379146104b057806351830227146104d95780635c975abb146105045780636352211e1461052f57610230565b806330cc7ae0146103ce57806333f9ce6e146103f75780633af32abf146104225780633ccfd60b1461045f5780633eaaf86b1461046957610230565b806313faede61161020357806313faede6146102f657806316c38b3c1461032157806318160ddd1461034a57806323b872dd1461037557806324a00c6b1461039157610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612dc6565b6108be565b6040516102699190612e0e565b60405180910390f35b34801561027e57600080fd5b50610287610950565b6040516102949190612ec2565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190612f1a565b6109e2565b6040516102d19190612f88565b60405180910390f35b6102f460048036038101906102ef9190612fcf565b610a61565b005b34801561030257600080fd5b5061030b610ba5565b604051610318919061301e565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190613065565b610bab565b005b34801561035657600080fd5b5061035f610bd0565b60405161036c919061301e565b60405180910390f35b61038f600480360381019061038a9190613092565b610be7565b005b34801561039d57600080fd5b506103b860048036038101906103b391906130e5565b610dc9565b6040516103c5919061301e565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f091906130e5565b610e1a565b005b34801561040357600080fd5b5061040c610e7d565b6040516104199190612f88565b60405180910390f35b34801561042e57600080fd5b50610449600480360381019061044491906130e5565b610ea3565b6040516104569190612e0e565b60405180910390f35b610467610f01565b005b34801561047557600080fd5b5061047e61104a565b60405161048b919061301e565b60405180910390f35b6104ae60048036038101906104a99190613092565b611050565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190613247565b611232565b005b3480156104e557600080fd5b506104ee611254565b6040516104fb9190612e0e565b60405180910390f35b34801561051057600080fd5b50610519611267565b6040516105269190612e0e565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190612f1a565b61127a565b6040516105639190612f88565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e91906132f0565b61128c565b005b3480156105a157600080fd5b506105aa611339565b6040516105b79190612ec2565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e291906130e5565b6113c7565b6040516105f4919061301e565b60405180910390f35b34801561060957600080fd5b5061061261147f565b005b34801561062057600080fd5b50610629611493565b604051610636919061301e565b60405180910390f35b34801561064b57600080fd5b50610666600480360381019061066191906130e5565b611499565b005b34801561067457600080fd5b5061067d6114fc565b60405161068a9190612f88565b60405180910390f35b34801561069f57600080fd5b506106a8611526565b6040516106b5919061301e565b60405180910390f35b3480156106ca57600080fd5b506106d361152c565b6040516106e09190612ec2565b60405180910390f35b3480156106f557600080fd5b506106fe6115be565b60405161070b919061301e565b60405180910390f35b61072e60048036038101906107299190612f1a565b6115c4565b005b34801561073c57600080fd5b506107576004803603810190610752919061333d565b6118b9565b005b610773600480360381019061076e919061341e565b6119c4565b005b34801561078157600080fd5b5061079c60048036038101906107979190613065565b611ba9565b005b3480156107aa57600080fd5b506107c560048036038101906107c09190612f1a565b611bce565b6040516107d29190612ec2565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd9190612f1a565b611cba565b005b34801561081057600080fd5b5061082b60048036038101906108269190613065565b611ccc565b005b34801561083957600080fd5b50610854600480360381019061084f91906134a1565b611cf1565b6040516108619190612e0e565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c91906130e5565b611d85565b005b34801561089f57600080fd5b506108a8611e08565b6040516108b59190612e0e565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109495750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461095f90613510565b80601f016020809104026020016040519081016040528092919081815260200182805461098b90613510565b80156109d85780601f106109ad576101008083540402835291602001916109d8565b820191906000526020600020905b8154815290600101906020018083116109bb57829003601f168201915b5050505050905090565b60006109ed82611e1b565b610a23576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6c8261127a565b90508073ffffffffffffffffffffffffffffffffffffffff16610a8d611e7a565b73ffffffffffffffffffffffffffffffffffffffff1614610af057610ab981610ab4611e7a565b611cf1565b610aef576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b610bb3611e82565b80601060006101000a81548160ff02191690831515021790555050565b6000610bda611f00565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610db7573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c5957610c54848484611f05565b610dc3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ca2929190613541565b602060405180830381865afa158015610cbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce3919061357f565b8015610d7557506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610d33929190613541565b602060405180830381865afa158015610d50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d74919061357f565b5b610db657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610dad9190612f88565b60405180910390fd5b5b610dc2848484611f05565b5b50505050565b6000610dd3611e82565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e22611e82565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610ead611e82565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610f09612227565b610f11611e82565b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166064600147610f5b91906135db565b610f659190613664565b604051610f71906136c6565b60006040518083038185875af1925050503d8060008114610fae576040519150601f19603f3d011682016040523d82523d6000602084013e610fb3565b606091505b5050905080610fc157600080fd5b6000610fcb6114fc565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fee906136c6565b60006040518083038185875af1925050503d806000811461102b576040519150601f19603f3d011682016040523d82523d6000602084013e611030565b606091505b505090508061103e57600080fd5b5050611048612276565b565b600e5481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611220573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110c2576110bd848484612280565b61122c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161110b929190613541565b602060405180830381865afa158015611128573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114c919061357f565b80156111de57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161119c929190613541565b602060405180830381865afa1580156111b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111dd919061357f565b5b61121f57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112169190612f88565b60405180910390fd5b5b61122b848484612280565b5b50505050565b61123a611e82565b80600a9080519060200190611250929190612cb7565b5050565b601060029054906101000a900460ff1681565b601060009054906101000a900460ff1681565b6000611285826122a0565b9050919050565b611294611e82565b60005b82829050811015611334576001601160008585858181106112bb576112ba6136db565b5b90506020020160208101906112d091906130e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061132c9061370a565b915050611297565b505050565b600a805461134690613510565b80601f016020809104026020016040519081016040528092919081815260200182805461137290613510565b80156113bf5780601f10611394576101008083540402835291602001916113bf565b820191906000526020600020905b8154815290600101906020018083116113a257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361142e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611487611e82565b611491600061236c565b565b600b5481565b6114a1611e82565b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606003805461153b90613510565b80601f016020809104026020016040519081016040528092919081815260200182805461156790613510565b80156115b45780601f10611589576101008083540402835291602001916115b4565b820191906000526020600020905b81548152906001019060200180831161159757829003601f168201915b5050505050905090565b600c5481565b806000811180156115d75750600c548111155b611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d9061379e565b60405180910390fd5b600e5481600b5461162791906137be565b1115611668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165f90613886565b60405180910390fd5b601060009054906101000a900460ff16156116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af906138f2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171d90613984565b60405180910390fd5b61172e6114fc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118ac57601060019054906101000a900460ff161561189157601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f8906139f0565b60405180910390fd5b600d5482601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461184f91906137be565b1115611890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188790613a5c565b60405180910390fd5b5b600f548261189f91906135db565b3410156118ab57600080fd5b5b6118b582612432565b5050565b80600760006118c6611e7a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611973611e7a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119b89190612e0e565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611b95573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a3757611a32858585856124e0565b611ba2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611a80929190613541565b602060405180830381865afa158015611a9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac1919061357f565b8015611b5357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611b11929190613541565b602060405180830381865afa158015611b2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b52919061357f565b5b611b9457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611b8b9190612f88565b60405180910390fd5b5b611ba1858585856124e0565b5b5050505050565b611bb1611e82565b80601060016101000a81548160ff02191690831515021790555050565b6060611bd982611e1b565b611c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0f90613aee565b60405180910390fd5b6000611c22612553565b9050601060029054906101000a900460ff1615611c8a576000815111611c575760405180602001604052806000815250611c82565b80611c61846125e5565b604051602001611c72929190613b96565b6040516020818303038152906040525b915050611cb5565b611c92612553565b604051602001611ca29190613c11565b6040516020818303038152906040529150505b919050565b611cc2611e82565b80600f8190555050565b611cd4611e82565b80601060026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d8d611e82565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df390613ca5565b60405180910390fd5b611e058161236c565b50565b601060019054906101000a900460ff1681565b600081611e26611f00565b11158015611e35575060005482105b8015611e73575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611e8a6126b3565b73ffffffffffffffffffffffffffffffffffffffff16611ea86114fc565b73ffffffffffffffffffffffffffffffffffffffff1614611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590613d11565b60405180910390fd5b565b600090565b6000611f10826122a0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611f77576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611f83846126bb565b91509150611f998187611f94611e7a565b6126e2565b611fe557611fae86611fa9611e7a565b611cf1565b611fe4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361204b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120588686866001612726565b801561206357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506121318561210d88888761272c565b7c020000000000000000000000000000000000000000000000000000000017612754565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036121b757600060018501905060006004600083815260200190815260200160002054036121b55760005481146121b4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461221f868686600161277f565b505050505050565b60026009540361226c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226390613d7d565b60405180910390fd5b6002600981905550565b6001600981905550565b61229b838383604051806020016040528060008152506119c4565b505050565b600080829050806122af611f00565b11612335576000548110156123345760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612332575b600081036123285760046000836001900393508381526020019081526020016000205490506122fe565b8092505050612367565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61243c3382612785565b601060019054906101000a900460ff16156124c9576000600190505b8181116124c757601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906124af9061370a565b919050555080806124bf9061370a565b915050612458565b505b80600b546124d791906137be565b600b8190555050565b6124eb848484610be7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461254d57612516848484846127a3565b61254c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a805461256290613510565b80601f016020809104026020016040519081016040528092919081815260200182805461258e90613510565b80156125db5780601f106125b0576101008083540402835291602001916125db565b820191906000526020600020905b8154815290600101906020018083116125be57829003601f168201915b5050505050905090565b6060600060016125f4846128f3565b01905060008167ffffffffffffffff8111156126135761261261311c565b5b6040519080825280601f01601f1916602001820160405280156126455781602001600182028036833780820191505090505b509050600082602001820190505b6001156126a8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161269c5761269b613635565b5b04945060008503612653575b819350505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612743868684612a46565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61279f828260405180602001604052806000815250612a4f565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127c9611e7a565b8786866040518563ffffffff1660e01b81526004016127eb9493929190613df2565b6020604051808303816000875af192505050801561282757506040513d601f19601f820116820180604052508101906128249190613e53565b60015b6128a0573d8060008114612857576040519150601f19603f3d011682016040523d82523d6000602084013e61285c565b606091505b506000815103612898576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612951577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161294757612946613635565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061298e576d04ee2d6d415b85acef8100000000838161298457612983613635565b5b0492506020810190505b662386f26fc1000083106129bd57662386f26fc1000083816129b3576129b2613635565b5b0492506010810190505b6305f5e10083106129e6576305f5e10083816129dc576129db613635565b5b0492506008810190505b6127108310612a0b576127108381612a0157612a00613635565b5b0492506004810190505b60648310612a2e5760648381612a2457612a23613635565b5b0492506002810190505b600a8310612a3d576001810190505b80915050919050565b60009392505050565b612a598383612aec565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612ae757600080549050600083820390505b612a9960008683806001019450866127a3565b612acf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612a86578160005414612ae457600080fd5b50505b505050565b60008054905060008203612b2c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b396000848385612726565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612bb083612ba1600086600061272c565b612baa85612ca7565b17612754565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612c5157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612c16565b5060008203612c8c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612ca2600084838561277f565b505050565b60006001821460e11b9050919050565b828054612cc390613510565b90600052602060002090601f016020900481019282612ce55760008555612d2c565b82601f10612cfe57805160ff1916838001178555612d2c565b82800160010185558215612d2c579182015b82811115612d2b578251825591602001919060010190612d10565b5b509050612d399190612d3d565b5090565b5b80821115612d56576000816000905550600101612d3e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612da381612d6e565b8114612dae57600080fd5b50565b600081359050612dc081612d9a565b92915050565b600060208284031215612ddc57612ddb612d64565b5b6000612dea84828501612db1565b91505092915050565b60008115159050919050565b612e0881612df3565b82525050565b6000602082019050612e236000830184612dff565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e63578082015181840152602081019050612e48565b83811115612e72576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e9482612e29565b612e9e8185612e34565b9350612eae818560208601612e45565b612eb781612e78565b840191505092915050565b60006020820190508181036000830152612edc8184612e89565b905092915050565b6000819050919050565b612ef781612ee4565b8114612f0257600080fd5b50565b600081359050612f1481612eee565b92915050565b600060208284031215612f3057612f2f612d64565b5b6000612f3e84828501612f05565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f7282612f47565b9050919050565b612f8281612f67565b82525050565b6000602082019050612f9d6000830184612f79565b92915050565b612fac81612f67565b8114612fb757600080fd5b50565b600081359050612fc981612fa3565b92915050565b60008060408385031215612fe657612fe5612d64565b5b6000612ff485828601612fba565b925050602061300585828601612f05565b9150509250929050565b61301881612ee4565b82525050565b6000602082019050613033600083018461300f565b92915050565b61304281612df3565b811461304d57600080fd5b50565b60008135905061305f81613039565b92915050565b60006020828403121561307b5761307a612d64565b5b600061308984828501613050565b91505092915050565b6000806000606084860312156130ab576130aa612d64565b5b60006130b986828701612fba565b93505060206130ca86828701612fba565b92505060406130db86828701612f05565b9150509250925092565b6000602082840312156130fb576130fa612d64565b5b600061310984828501612fba565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61315482612e78565b810181811067ffffffffffffffff821117156131735761317261311c565b5b80604052505050565b6000613186612d5a565b9050613192828261314b565b919050565b600067ffffffffffffffff8211156131b2576131b161311c565b5b6131bb82612e78565b9050602081019050919050565b82818337600083830152505050565b60006131ea6131e584613197565b61317c565b90508281526020810184848401111561320657613205613117565b5b6132118482856131c8565b509392505050565b600082601f83011261322e5761322d613112565b5b813561323e8482602086016131d7565b91505092915050565b60006020828403121561325d5761325c612d64565b5b600082013567ffffffffffffffff81111561327b5761327a612d69565b5b61328784828501613219565b91505092915050565b600080fd5b600080fd5b60008083601f8401126132b0576132af613112565b5b8235905067ffffffffffffffff8111156132cd576132cc613290565b5b6020830191508360208202830111156132e9576132e8613295565b5b9250929050565b6000806020838503121561330757613306612d64565b5b600083013567ffffffffffffffff81111561332557613324612d69565b5b6133318582860161329a565b92509250509250929050565b6000806040838503121561335457613353612d64565b5b600061336285828601612fba565b925050602061337385828601613050565b9150509250929050565b600067ffffffffffffffff8211156133985761339761311c565b5b6133a182612e78565b9050602081019050919050565b60006133c16133bc8461337d565b61317c565b9050828152602081018484840111156133dd576133dc613117565b5b6133e88482856131c8565b509392505050565b600082601f83011261340557613404613112565b5b81356134158482602086016133ae565b91505092915050565b6000806000806080858703121561343857613437612d64565b5b600061344687828801612fba565b945050602061345787828801612fba565b935050604061346887828801612f05565b925050606085013567ffffffffffffffff81111561348957613488612d69565b5b613495878288016133f0565b91505092959194509250565b600080604083850312156134b8576134b7612d64565b5b60006134c685828601612fba565b92505060206134d785828601612fba565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061352857607f821691505b60208210810361353b5761353a6134e1565b5b50919050565b60006040820190506135566000830185612f79565b6135636020830184612f79565b9392505050565b60008151905061357981613039565b92915050565b60006020828403121561359557613594612d64565b5b60006135a38482850161356a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135e682612ee4565b91506135f183612ee4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561362a576136296135ac565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061366f82612ee4565b915061367a83612ee4565b92508261368a57613689613635565b5b828204905092915050565b600081905092915050565b50565b60006136b0600083613695565b91506136bb826136a0565b600082019050919050565b60006136d1826136a3565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061371582612ee4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613747576137466135ac565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613788601483612e34565b915061379382613752565b602082019050919050565b600060208201905081810360008301526137b78161377b565b9050919050565b60006137c982612ee4565b91506137d483612ee4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613809576138086135ac565b5b828201905092915050565b7f596f752063616e2774206d696e74206d6f7265207468616e20617661696c616260008201527f6c6520746f6b656e000000000000000000000000000000000000000000000000602082015250565b6000613870602883612e34565b915061387b82613814565b604082019050919050565b6000602082019050818103600083015261389f81613863565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006138dc601783612e34565b91506138e7826138a6565b602082019050919050565b6000602082019050818103600083015261390b816138cf565b9050919050565b7f43616e6e6f74206d696e74207468726f756768206120637573746f6d20636f6e60008201527f7472616374000000000000000000000000000000000000000000000000000000602082015250565b600061396e602583612e34565b915061397982613912565b604082019050919050565b6000602082019050818103600083015261399d81613961565b9050919050565b7f57616c6c6574206e6f742077686974656c697374656400000000000000000000600082015250565b60006139da601683612e34565b91506139e5826139a4565b602082019050919050565b60006020820190508181036000830152613a09816139cd565b9050919050565b7f50726573616c6520746f6b656e206c696d697420726561636865640000000000600082015250565b6000613a46601b83612e34565b9150613a5182613a10565b602082019050919050565b60006020820190508181036000830152613a7581613a39565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374616e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613ad8602f83612e34565b9150613ae382613a7c565b604082019050919050565b60006020820190508181036000830152613b0781613acb565b9050919050565b600081905092915050565b6000613b2482612e29565b613b2e8185613b0e565b9350613b3e818560208601612e45565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613b80600583613b0e565b9150613b8b82613b4a565b600582019050919050565b6000613ba28285613b19565b9150613bae8284613b19565b9150613bb982613b73565b91508190509392505050565b7f68696464656e2e6a736f6e000000000000000000000000000000000000000000600082015250565b6000613bfb600b83613b0e565b9150613c0682613bc5565b600b82019050919050565b6000613c1d8284613b19565b9150613c2882613bee565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c8f602683612e34565b9150613c9a82613c33565b604082019050919050565b60006020820190508181036000830152613cbe81613c82565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cfb602083612e34565b9150613d0682613cc5565b602082019050919050565b60006020820190508181036000830152613d2a81613cee565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613d67601f83612e34565b9150613d7282613d31565b602082019050919050565b60006020820190508181036000830152613d9681613d5a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613dc482613d9d565b613dce8185613da8565b9350613dde818560208601612e45565b613de781612e78565b840191505092915050565b6000608082019050613e076000830187612f79565b613e146020830186612f79565b613e21604083018561300f565b8181036060830152613e338184613db9565b905095945050505050565b600081519050613e4d81612d9a565b92915050565b600060208284031215613e6957613e68612d64565b5b6000613e7784828501613e3e565b9150509291505056fea2646970667358221220c6a8224fff2ad54ca99d230a2094d92a552c7b5462e8c62d3fb705cac79c4aee64736f6c634300080e00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f6e656f676f6c64706173732e6d7970696e6174612e636c6f75642f697066732f516d5537524d434a7a70427876534b6f62416341466a34426852334c6e4d78484b71776a597244316f7a4b50754600000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063686b28121161012e578063a0712d68116100ab578063cc9f01941161006f578063cc9f0194146107db578063e0a8085314610804578063e985e9c51461082d578063f2fde38b1461086a578063fdea8e0b1461089357610230565b8063a0712d6814610714578063a22cb46514610730578063b88d4fde14610759578063c54e73e314610775578063c87b56dd1461079e57610230565b806384083c89116100f257806384083c891461063f5780638da5cb5b14610668578063946ef42a1461069357806395d89b41146106be578063996517cf146106e957610230565b8063686b28121461056c5780636c0360eb1461059557806370a08231146105c0578063715018a6146105fd578063771282f61461061457610230565b806330cc7ae0116101bc57806342842e0e1161018057806342842e0e146104945780634a44f379146104b057806351830227146104d95780635c975abb146105045780636352211e1461052f57610230565b806330cc7ae0146103ce57806333f9ce6e146103f75780633af32abf146104225780633ccfd60b1461045f5780633eaaf86b1461046957610230565b806313faede61161020357806313faede6146102f657806316c38b3c1461032157806318160ddd1461034a57806323b872dd1461037557806324a00c6b1461039157610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612dc6565b6108be565b6040516102699190612e0e565b60405180910390f35b34801561027e57600080fd5b50610287610950565b6040516102949190612ec2565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190612f1a565b6109e2565b6040516102d19190612f88565b60405180910390f35b6102f460048036038101906102ef9190612fcf565b610a61565b005b34801561030257600080fd5b5061030b610ba5565b604051610318919061301e565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190613065565b610bab565b005b34801561035657600080fd5b5061035f610bd0565b60405161036c919061301e565b60405180910390f35b61038f600480360381019061038a9190613092565b610be7565b005b34801561039d57600080fd5b506103b860048036038101906103b391906130e5565b610dc9565b6040516103c5919061301e565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f091906130e5565b610e1a565b005b34801561040357600080fd5b5061040c610e7d565b6040516104199190612f88565b60405180910390f35b34801561042e57600080fd5b50610449600480360381019061044491906130e5565b610ea3565b6040516104569190612e0e565b60405180910390f35b610467610f01565b005b34801561047557600080fd5b5061047e61104a565b60405161048b919061301e565b60405180910390f35b6104ae60048036038101906104a99190613092565b611050565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190613247565b611232565b005b3480156104e557600080fd5b506104ee611254565b6040516104fb9190612e0e565b60405180910390f35b34801561051057600080fd5b50610519611267565b6040516105269190612e0e565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190612f1a565b61127a565b6040516105639190612f88565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e91906132f0565b61128c565b005b3480156105a157600080fd5b506105aa611339565b6040516105b79190612ec2565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e291906130e5565b6113c7565b6040516105f4919061301e565b60405180910390f35b34801561060957600080fd5b5061061261147f565b005b34801561062057600080fd5b50610629611493565b604051610636919061301e565b60405180910390f35b34801561064b57600080fd5b50610666600480360381019061066191906130e5565b611499565b005b34801561067457600080fd5b5061067d6114fc565b60405161068a9190612f88565b60405180910390f35b34801561069f57600080fd5b506106a8611526565b6040516106b5919061301e565b60405180910390f35b3480156106ca57600080fd5b506106d361152c565b6040516106e09190612ec2565b60405180910390f35b3480156106f557600080fd5b506106fe6115be565b60405161070b919061301e565b60405180910390f35b61072e60048036038101906107299190612f1a565b6115c4565b005b34801561073c57600080fd5b506107576004803603810190610752919061333d565b6118b9565b005b610773600480360381019061076e919061341e565b6119c4565b005b34801561078157600080fd5b5061079c60048036038101906107979190613065565b611ba9565b005b3480156107aa57600080fd5b506107c560048036038101906107c09190612f1a565b611bce565b6040516107d29190612ec2565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd9190612f1a565b611cba565b005b34801561081057600080fd5b5061082b60048036038101906108269190613065565b611ccc565b005b34801561083957600080fd5b50610854600480360381019061084f91906134a1565b611cf1565b6040516108619190612e0e565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c91906130e5565b611d85565b005b34801561089f57600080fd5b506108a8611e08565b6040516108b59190612e0e565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109495750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461095f90613510565b80601f016020809104026020016040519081016040528092919081815260200182805461098b90613510565b80156109d85780601f106109ad576101008083540402835291602001916109d8565b820191906000526020600020905b8154815290600101906020018083116109bb57829003601f168201915b5050505050905090565b60006109ed82611e1b565b610a23576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6c8261127a565b90508073ffffffffffffffffffffffffffffffffffffffff16610a8d611e7a565b73ffffffffffffffffffffffffffffffffffffffff1614610af057610ab981610ab4611e7a565b611cf1565b610aef576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b610bb3611e82565b80601060006101000a81548160ff02191690831515021790555050565b6000610bda611f00565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610db7573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c5957610c54848484611f05565b610dc3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ca2929190613541565b602060405180830381865afa158015610cbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce3919061357f565b8015610d7557506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610d33929190613541565b602060405180830381865afa158015610d50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d74919061357f565b5b610db657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610dad9190612f88565b60405180910390fd5b5b610dc2848484611f05565b5b50505050565b6000610dd3611e82565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e22611e82565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610ead611e82565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610f09612227565b610f11611e82565b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166064600147610f5b91906135db565b610f659190613664565b604051610f71906136c6565b60006040518083038185875af1925050503d8060008114610fae576040519150601f19603f3d011682016040523d82523d6000602084013e610fb3565b606091505b5050905080610fc157600080fd5b6000610fcb6114fc565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fee906136c6565b60006040518083038185875af1925050503d806000811461102b576040519150601f19603f3d011682016040523d82523d6000602084013e611030565b606091505b505090508061103e57600080fd5b5050611048612276565b565b600e5481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611220573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110c2576110bd848484612280565b61122c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161110b929190613541565b602060405180830381865afa158015611128573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114c919061357f565b80156111de57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161119c929190613541565b602060405180830381865afa1580156111b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111dd919061357f565b5b61121f57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112169190612f88565b60405180910390fd5b5b61122b848484612280565b5b50505050565b61123a611e82565b80600a9080519060200190611250929190612cb7565b5050565b601060029054906101000a900460ff1681565b601060009054906101000a900460ff1681565b6000611285826122a0565b9050919050565b611294611e82565b60005b82829050811015611334576001601160008585858181106112bb576112ba6136db565b5b90506020020160208101906112d091906130e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061132c9061370a565b915050611297565b505050565b600a805461134690613510565b80601f016020809104026020016040519081016040528092919081815260200182805461137290613510565b80156113bf5780601f10611394576101008083540402835291602001916113bf565b820191906000526020600020905b8154815290600101906020018083116113a257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361142e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611487611e82565b611491600061236c565b565b600b5481565b6114a1611e82565b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606003805461153b90613510565b80601f016020809104026020016040519081016040528092919081815260200182805461156790613510565b80156115b45780601f10611589576101008083540402835291602001916115b4565b820191906000526020600020905b81548152906001019060200180831161159757829003601f168201915b5050505050905090565b600c5481565b806000811180156115d75750600c548111155b611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d9061379e565b60405180910390fd5b600e5481600b5461162791906137be565b1115611668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165f90613886565b60405180910390fd5b601060009054906101000a900460ff16156116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af906138f2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171d90613984565b60405180910390fd5b61172e6114fc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118ac57601060019054906101000a900460ff161561189157601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f8906139f0565b60405180910390fd5b600d5482601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461184f91906137be565b1115611890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188790613a5c565b60405180910390fd5b5b600f548261189f91906135db565b3410156118ab57600080fd5b5b6118b582612432565b5050565b80600760006118c6611e7a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611973611e7a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119b89190612e0e565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611b95573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a3757611a32858585856124e0565b611ba2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611a80929190613541565b602060405180830381865afa158015611a9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac1919061357f565b8015611b5357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611b11929190613541565b602060405180830381865afa158015611b2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b52919061357f565b5b611b9457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611b8b9190612f88565b60405180910390fd5b5b611ba1858585856124e0565b5b5050505050565b611bb1611e82565b80601060016101000a81548160ff02191690831515021790555050565b6060611bd982611e1b565b611c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0f90613aee565b60405180910390fd5b6000611c22612553565b9050601060029054906101000a900460ff1615611c8a576000815111611c575760405180602001604052806000815250611c82565b80611c61846125e5565b604051602001611c72929190613b96565b6040516020818303038152906040525b915050611cb5565b611c92612553565b604051602001611ca29190613c11565b6040516020818303038152906040529150505b919050565b611cc2611e82565b80600f8190555050565b611cd4611e82565b80601060026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d8d611e82565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df390613ca5565b60405180910390fd5b611e058161236c565b50565b601060019054906101000a900460ff1681565b600081611e26611f00565b11158015611e35575060005482105b8015611e73575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611e8a6126b3565b73ffffffffffffffffffffffffffffffffffffffff16611ea86114fc565b73ffffffffffffffffffffffffffffffffffffffff1614611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590613d11565b60405180910390fd5b565b600090565b6000611f10826122a0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611f77576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611f83846126bb565b91509150611f998187611f94611e7a565b6126e2565b611fe557611fae86611fa9611e7a565b611cf1565b611fe4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361204b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120588686866001612726565b801561206357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506121318561210d88888761272c565b7c020000000000000000000000000000000000000000000000000000000017612754565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036121b757600060018501905060006004600083815260200190815260200160002054036121b55760005481146121b4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461221f868686600161277f565b505050505050565b60026009540361226c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226390613d7d565b60405180910390fd5b6002600981905550565b6001600981905550565b61229b838383604051806020016040528060008152506119c4565b505050565b600080829050806122af611f00565b11612335576000548110156123345760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612332575b600081036123285760046000836001900393508381526020019081526020016000205490506122fe565b8092505050612367565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61243c3382612785565b601060019054906101000a900460ff16156124c9576000600190505b8181116124c757601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906124af9061370a565b919050555080806124bf9061370a565b915050612458565b505b80600b546124d791906137be565b600b8190555050565b6124eb848484610be7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461254d57612516848484846127a3565b61254c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a805461256290613510565b80601f016020809104026020016040519081016040528092919081815260200182805461258e90613510565b80156125db5780601f106125b0576101008083540402835291602001916125db565b820191906000526020600020905b8154815290600101906020018083116125be57829003601f168201915b5050505050905090565b6060600060016125f4846128f3565b01905060008167ffffffffffffffff8111156126135761261261311c565b5b6040519080825280601f01601f1916602001820160405280156126455781602001600182028036833780820191505090505b509050600082602001820190505b6001156126a8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161269c5761269b613635565b5b04945060008503612653575b819350505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612743868684612a46565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61279f828260405180602001604052806000815250612a4f565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127c9611e7a565b8786866040518563ffffffff1660e01b81526004016127eb9493929190613df2565b6020604051808303816000875af192505050801561282757506040513d601f19601f820116820180604052508101906128249190613e53565b60015b6128a0573d8060008114612857576040519150601f19603f3d011682016040523d82523d6000602084013e61285c565b606091505b506000815103612898576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612951577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161294757612946613635565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061298e576d04ee2d6d415b85acef8100000000838161298457612983613635565b5b0492506020810190505b662386f26fc1000083106129bd57662386f26fc1000083816129b3576129b2613635565b5b0492506010810190505b6305f5e10083106129e6576305f5e10083816129dc576129db613635565b5b0492506008810190505b6127108310612a0b576127108381612a0157612a00613635565b5b0492506004810190505b60648310612a2e5760648381612a2457612a23613635565b5b0492506002810190505b600a8310612a3d576001810190505b80915050919050565b60009392505050565b612a598383612aec565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612ae757600080549050600083820390505b612a9960008683806001019450866127a3565b612acf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612a86578160005414612ae457600080fd5b50505b505050565b60008054905060008203612b2c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b396000848385612726565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612bb083612ba1600086600061272c565b612baa85612ca7565b17612754565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612c5157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612c16565b5060008203612c8c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612ca2600084838561277f565b505050565b60006001821460e11b9050919050565b828054612cc390613510565b90600052602060002090601f016020900481019282612ce55760008555612d2c565b82601f10612cfe57805160ff1916838001178555612d2c565b82800160010185558215612d2c579182015b82811115612d2b578251825591602001919060010190612d10565b5b509050612d399190612d3d565b5090565b5b80821115612d56576000816000905550600101612d3e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612da381612d6e565b8114612dae57600080fd5b50565b600081359050612dc081612d9a565b92915050565b600060208284031215612ddc57612ddb612d64565b5b6000612dea84828501612db1565b91505092915050565b60008115159050919050565b612e0881612df3565b82525050565b6000602082019050612e236000830184612dff565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e63578082015181840152602081019050612e48565b83811115612e72576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e9482612e29565b612e9e8185612e34565b9350612eae818560208601612e45565b612eb781612e78565b840191505092915050565b60006020820190508181036000830152612edc8184612e89565b905092915050565b6000819050919050565b612ef781612ee4565b8114612f0257600080fd5b50565b600081359050612f1481612eee565b92915050565b600060208284031215612f3057612f2f612d64565b5b6000612f3e84828501612f05565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f7282612f47565b9050919050565b612f8281612f67565b82525050565b6000602082019050612f9d6000830184612f79565b92915050565b612fac81612f67565b8114612fb757600080fd5b50565b600081359050612fc981612fa3565b92915050565b60008060408385031215612fe657612fe5612d64565b5b6000612ff485828601612fba565b925050602061300585828601612f05565b9150509250929050565b61301881612ee4565b82525050565b6000602082019050613033600083018461300f565b92915050565b61304281612df3565b811461304d57600080fd5b50565b60008135905061305f81613039565b92915050565b60006020828403121561307b5761307a612d64565b5b600061308984828501613050565b91505092915050565b6000806000606084860312156130ab576130aa612d64565b5b60006130b986828701612fba565b93505060206130ca86828701612fba565b92505060406130db86828701612f05565b9150509250925092565b6000602082840312156130fb576130fa612d64565b5b600061310984828501612fba565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61315482612e78565b810181811067ffffffffffffffff821117156131735761317261311c565b5b80604052505050565b6000613186612d5a565b9050613192828261314b565b919050565b600067ffffffffffffffff8211156131b2576131b161311c565b5b6131bb82612e78565b9050602081019050919050565b82818337600083830152505050565b60006131ea6131e584613197565b61317c565b90508281526020810184848401111561320657613205613117565b5b6132118482856131c8565b509392505050565b600082601f83011261322e5761322d613112565b5b813561323e8482602086016131d7565b91505092915050565b60006020828403121561325d5761325c612d64565b5b600082013567ffffffffffffffff81111561327b5761327a612d69565b5b61328784828501613219565b91505092915050565b600080fd5b600080fd5b60008083601f8401126132b0576132af613112565b5b8235905067ffffffffffffffff8111156132cd576132cc613290565b5b6020830191508360208202830111156132e9576132e8613295565b5b9250929050565b6000806020838503121561330757613306612d64565b5b600083013567ffffffffffffffff81111561332557613324612d69565b5b6133318582860161329a565b92509250509250929050565b6000806040838503121561335457613353612d64565b5b600061336285828601612fba565b925050602061337385828601613050565b9150509250929050565b600067ffffffffffffffff8211156133985761339761311c565b5b6133a182612e78565b9050602081019050919050565b60006133c16133bc8461337d565b61317c565b9050828152602081018484840111156133dd576133dc613117565b5b6133e88482856131c8565b509392505050565b600082601f83011261340557613404613112565b5b81356134158482602086016133ae565b91505092915050565b6000806000806080858703121561343857613437612d64565b5b600061344687828801612fba565b945050602061345787828801612fba565b935050604061346887828801612f05565b925050606085013567ffffffffffffffff81111561348957613488612d69565b5b613495878288016133f0565b91505092959194509250565b600080604083850312156134b8576134b7612d64565b5b60006134c685828601612fba565b92505060206134d785828601612fba565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061352857607f821691505b60208210810361353b5761353a6134e1565b5b50919050565b60006040820190506135566000830185612f79565b6135636020830184612f79565b9392505050565b60008151905061357981613039565b92915050565b60006020828403121561359557613594612d64565b5b60006135a38482850161356a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135e682612ee4565b91506135f183612ee4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561362a576136296135ac565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061366f82612ee4565b915061367a83612ee4565b92508261368a57613689613635565b5b828204905092915050565b600081905092915050565b50565b60006136b0600083613695565b91506136bb826136a0565b600082019050919050565b60006136d1826136a3565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061371582612ee4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613747576137466135ac565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613788601483612e34565b915061379382613752565b602082019050919050565b600060208201905081810360008301526137b78161377b565b9050919050565b60006137c982612ee4565b91506137d483612ee4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613809576138086135ac565b5b828201905092915050565b7f596f752063616e2774206d696e74206d6f7265207468616e20617661696c616260008201527f6c6520746f6b656e000000000000000000000000000000000000000000000000602082015250565b6000613870602883612e34565b915061387b82613814565b604082019050919050565b6000602082019050818103600083015261389f81613863565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006138dc601783612e34565b91506138e7826138a6565b602082019050919050565b6000602082019050818103600083015261390b816138cf565b9050919050565b7f43616e6e6f74206d696e74207468726f756768206120637573746f6d20636f6e60008201527f7472616374000000000000000000000000000000000000000000000000000000602082015250565b600061396e602583612e34565b915061397982613912565b604082019050919050565b6000602082019050818103600083015261399d81613961565b9050919050565b7f57616c6c6574206e6f742077686974656c697374656400000000000000000000600082015250565b60006139da601683612e34565b91506139e5826139a4565b602082019050919050565b60006020820190508181036000830152613a09816139cd565b9050919050565b7f50726573616c6520746f6b656e206c696d697420726561636865640000000000600082015250565b6000613a46601b83612e34565b9150613a5182613a10565b602082019050919050565b60006020820190508181036000830152613a7581613a39565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374616e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613ad8602f83612e34565b9150613ae382613a7c565b604082019050919050565b60006020820190508181036000830152613b0781613acb565b9050919050565b600081905092915050565b6000613b2482612e29565b613b2e8185613b0e565b9350613b3e818560208601612e45565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613b80600583613b0e565b9150613b8b82613b4a565b600582019050919050565b6000613ba28285613b19565b9150613bae8284613b19565b9150613bb982613b73565b91508190509392505050565b7f68696464656e2e6a736f6e000000000000000000000000000000000000000000600082015250565b6000613bfb600b83613b0e565b9150613c0682613bc5565b600b82019050919050565b6000613c1d8284613b19565b9150613c2882613bee565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c8f602683612e34565b9150613c9a82613c33565b604082019050919050565b60006020820190508181036000830152613cbe81613c82565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cfb602083612e34565b9150613d0682613cc5565b602082019050919050565b60006020820190508181036000830152613d2a81613cee565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613d67601f83612e34565b9150613d7282613d31565b602082019050919050565b60006020820190508181036000830152613d9681613d5a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613dc482613d9d565b613dce8185613da8565b9350613dde818560208601612e45565b613de781612e78565b840191505092915050565b6000608082019050613e076000830187612f79565b613e146020830186612f79565b613e21604083018561300f565b8181036060830152613e338184613db9565b905095945050505050565b600081519050613e4d81612d9a565b92915050565b600060208284031215613e6957613e68612d64565b5b6000613e7784828501613e3e565b9150509291505056fea2646970667358221220c6a8224fff2ad54ca99d230a2094d92a552c7b5462e8c62d3fb705cac79c4aee64736f6c634300080e0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f6e656f676f6c64706173732e6d7970696e6174612e636c6f75642f697066732f516d5537524d434a7a70427876534b6f62416341466a34426852334c6e4d78484b71776a597244316f7a4b50754600000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://neogoldpass.mypinata.cloud/ipfs/QmU7RMCJzpBxvSKobAcAFj4BhR3LnMxHKqwjYrD1ozKPuF

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000056
Arg [2] : 68747470733a2f2f6e656f676f6c64706173732e6d7970696e6174612e636c6f
Arg [3] : 75642f697066732f516d5537524d434a7a70427876534b6f62416341466a3442
Arg [4] : 6852334c6e4d78484b71776a597244316f7a4b50754600000000000000000000


Deployed Bytecode Sourcemap

113471:5643:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80377:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81279:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87770:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87203:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;113740:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;116704:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77030:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;118095:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;116556:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;117509:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;113992:73;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;116429:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;117623:314;;;:::i;:::-;;113699:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;118471:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;117100:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;113845:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;113780:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82672:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;117206:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;113556:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78214:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25564:103;;;;;;;;;;;;;:::i;:::-;;113584:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;117399:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24916:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;113659:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81455:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;113623:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;114612:687;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88328:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;118851:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;116890:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;115630:791;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;116983:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;116795:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88719:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25822:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;113812:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80377:639;80462:4;80801:10;80786:25;;:11;:25;;;;:102;;;;80878:10;80863:25;;:11;:25;;;;80786:102;:179;;;;80955:10;80940:25;;:11;:25;;;;80786:179;80766:199;;80377:639;;;:::o;81279:100::-;81333:13;81366:5;81359:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81279:100;:::o;87770:218::-;87846:7;87871:16;87879:7;87871;:16::i;:::-;87866:64;;87896:34;;;;;;;;;;;;;;87866:64;87950:15;:24;87966:7;87950:24;;;;;;;;;;;:30;;;;;;;;;;;;87943:37;;87770:218;;;:::o;87203:408::-;87292:13;87308:16;87316:7;87308;:16::i;:::-;87292:32;;87364:5;87341:28;;:19;:17;:19::i;:::-;:28;;;87337:175;;87389:44;87406:5;87413:19;:17;:19::i;:::-;87389:16;:44::i;:::-;87384:128;;87461:35;;;;;;;;;;;;;;87384:128;87337:175;87557:2;87524:15;:24;87540:7;87524:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;87595:7;87591:2;87575:28;;87584:5;87575:28;;;;;;;;;;;;87281:330;87203:408;;:::o;113740:33::-;;;;:::o;116704:83::-;24802:13;:11;:13::i;:::-;116773:6:::1;116764;;:15;;;;;;;;;;;;;;;;;;116704:83:::0;:::o;77030:323::-;77091:7;77319:15;:13;:15::i;:::-;77304:12;;77288:13;;:28;:46;77281:53;;77030:323;:::o;118095:214::-;118247:4;3630:1;2444:42;3584:43;;;:47;3580:699;;;3871:10;3863:18;;:4;:18;;;3859:85;;118264:37:::1;118283:4;118289:2;118293:7;118264:18;:37::i;:::-;3922:7:::0;;3859:85;2444:42;4004:40;;;4053:4;4060:10;4004:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2444:42;4100:40;;;4149:4;4156;4100:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4004:157;3958:310;;4241:10;4222:30;;;;;;;;;;;:::i;:::-;;;;;;;;3958:310;3580:699;118264:37:::1;118283:4;118289:2;118293:7;118264:18;:37::i;:::-;118095:214:::0;;;;;:::o;116556:140::-;116635:7;24802:13;:11;:13::i;:::-;116662:19:::1;:26;116682:5;116662:26;;;;;;;;;;;;;;;;116655:33;;116556:140:::0;;;:::o;117509:106::-;24802:13;:11;:13::i;:::-;117602:5:::1;117581:11;:18;117593:5;117581:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;117509:106:::0;:::o;113992:73::-;;;;;;;;;;;;;:::o;116429:119::-;116498:4;24802:13;:11;:13::i;:::-;116522:11:::1;:18;116534:5;116522:18;;;;;;;;;;;;;;;;;;;;;;;;;116515:25;;116429:119:::0;;;:::o;117623:314::-;6988:21;:19;:21::i;:::-;24802:13:::1;:11;:13::i;:::-;117693:7:::2;117714:13;;;;;;;;;;;117706:27;;117785:3;117780:1;117756:21;:25;;;;:::i;:::-;117755:33;;;;:::i;:::-;117706:97;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117692:111;;;117822:2;117814:11;;;::::0;::::2;;117839:7;117860;:5;:7::i;:::-;117852:21;;117881;117852:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117838:69;;;117926:2;117918:11;;;::::0;::::2;;117681:256;;7032:20:::0;:18;:20::i;:::-;117623:314::o;113699:34::-;;;;:::o;118471:222::-;118627:4;3630:1;2444:42;3584:43;;;:47;3580:699;;;3871:10;3863:18;;:4;:18;;;3859:85;;118644:41:::1;118667:4;118673:2;118677:7;118644:22;:41::i;:::-;3922:7:::0;;3859:85;2444:42;4004:40;;;4053:4;4060:10;4004:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2444:42;4100:40;;;4149:4;4156;4100:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4004:157;3958:310;;4241:10;4222:30;;;;;;;;;;;:::i;:::-;;;;;;;;3958:310;3580:699;118644:41:::1;118667:4;118673:2;118677:7;118644:22;:41::i;:::-;118471:222:::0;;;;;:::o;117100:98::-;24802:13;:11;:13::i;:::-;117182:8:::1;117172:7;:18;;;;;;;;;;;;:::i;:::-;;117100:98:::0;:::o;113845:27::-;;;;;;;;;;;;;:::o;113780:25::-;;;;;;;;;;;;;:::o;82672:152::-;82744:7;82787:27;82806:7;82787:18;:27::i;:::-;82764:52;;82672:152;;;:::o;117206:185::-;24802:13;:11;:13::i;:::-;117293:9:::1;117288:96;117308:6;;:13;;117304:1;:17;117288:96;;;117368:4;117343:11;:22;117355:6;;117362:1;117355:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;117343:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;117323:3;;;;;:::i;:::-;;;;117288:96;;;;117206:185:::0;;:::o;113556:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;78214:233::-;78286:7;78327:1;78310:19;;:5;:19;;;78306:60;;78338:28;;;;;;;;;;;;;;78306:60;72373:13;78384:18;:25;78403:5;78384:25;;;;;;;;;;;;;;;;:55;78377:62;;78214:233;;;:::o;25564:103::-;24802:13;:11;:13::i;:::-;25629:30:::1;25656:1;25629:18;:30::i;:::-;25564:103::o:0;113584:32::-;;;;:::o;117399:102::-;24802:13;:11;:13::i;:::-;117489:4:::1;117468:11;:18;117480:5;117468:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;117399:102:::0;:::o;24916:87::-;24962:7;24989:6;;;;;;;;;;;24982:13;;24916:87;:::o;113659:33::-;;;;:::o;81455:104::-;81511:13;81544:7;81537:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81455:104;:::o;113623:29::-;;;;:::o;114612:687::-;114676:8;114392:1;114381:8;:12;:37;;;;;114409:9;;114397:8;:21;;114381:37;114373:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;114504:12;;114492:8;114476:13;;:24;;;;:::i;:::-;:40;;114454:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;114706:6:::1;;;;;;;;;;;114705:7;114697:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;114786:10;114773:23;;:9;:23;;;114751:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;114890:7;:5;:7::i;:::-;114876:21;;:10;:21;;;114872:391;;114918:7;;;;;;;;;;;114914:286;;;114954:11;:23;114966:10;114954:23;;;;;;;;;;;;;;;;;;;;;;;;;114946:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;115099:14;;115087:8;115053:19;:31;115073:10;115053:31;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;:60;;115023:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;114914:286;115246:4;;115235:8;:15;;;;:::i;:::-;115222:9;:28;;115214:37;;;::::0;::::1;;114872:391;115273:18;115282:8;115273;:18::i;:::-;114612:687:::0;;:::o;88328:234::-;88475:8;88423:18;:39;88442:19;:17;:19::i;:::-;88423:39;;;;;;;;;;;;;;;:49;88463:8;88423:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;88535:8;88499:55;;88514:19;:17;:19::i;:::-;88499:55;;;88545:8;88499:55;;;;;;:::i;:::-;;;;;;;;88328:234;;:::o;118851:256::-;119035:4;3630:1;2444:42;3584:43;;;:47;3580:699;;;3871:10;3863:18;;:4;:18;;;3859:85;;119052:47:::1;119075:4;119081:2;119085:7;119094:4;119052:22;:47::i;:::-;3922:7:::0;;3859:85;2444:42;4004:40;;;4053:4;4060:10;4004:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2444:42;4100:40;;;4149:4;4156;4100:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4004:157;3958:310;;4241:10;4222:30;;;;;;;;;;;:::i;:::-;;;;;;;;3958:310;3580:699;119052:47:::1;119075:4;119081:2;119085:7;119094:4;119052:22;:47::i;:::-;118851:256:::0;;;;;;:::o;116890:85::-;24802:13;:11;:13::i;:::-;116961:6:::1;116951:7;;:16;;;;;;;;;;;;;;;;;;116890:85:::0;:::o;115630:791::-;115731:13;115784:16;115792:7;115784;:16::i;:::-;115762:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;115886:28;115917:10;:8;:10::i;:::-;115886:41;;115942:8;;;;;;;;;;;115938:476;;;116022:1;115997:14;115991:28;:32;:320;;;;;;;;;;;;;;;;;116127:14;116172:25;116189:7;116172:16;:25::i;:::-;116080:182;;;;;;;;;:::i;:::-;;;;;;;;;;;;;115991:320;115967:344;;;;;115938:476;116375:10;:8;:10::i;:::-;116358:43;;;;;;;;:::i;:::-;;;;;;;;;;;;;116344:58;;;115630:791;;;;:::o;116983:107::-;24802:13;:11;:13::i;:::-;117067:15:::1;117060:4;:22;;;;116983:107:::0;:::o;116795:87::-;24802:13;:11;:13::i;:::-;116868:6:::1;116857:8;;:17;;;;;;;;;;;;;;;;;;116795:87:::0;:::o;88719:164::-;88816:4;88840:18;:25;88859:5;88840:25;;;;;;;;;;;;;;;:35;88866:8;88840:35;;;;;;;;;;;;;;;;;;;;;;;;;88833:42;;88719:164;;;;:::o;25822:201::-;24802:13;:11;:13::i;:::-;25931:1:::1;25911:22;;:8;:22;;::::0;25903:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;25987:28;26006:8;25987:18;:28::i;:::-;25822:201:::0;:::o;113812:26::-;;;;;;;;;;;;;:::o;89141:282::-;89206:4;89262:7;89243:15;:13;:15::i;:::-;:26;;:66;;;;;89296:13;;89286:7;:23;89243:66;:153;;;;;89395:1;73149:8;89347:17;:26;89365:7;89347:26;;;;;;;;;;;;:44;:49;89243:153;89223:173;;89141:282;;;:::o;111449:105::-;111509:7;111536:10;111529:17;;111449:105;:::o;25081:132::-;25156:12;:10;:12::i;:::-;25145:23;;:7;:5;:7::i;:::-;:23;;;25137:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25081:132::o;76546:92::-;76602:7;76546:92;:::o;91409:2825::-;91551:27;91581;91600:7;91581:18;:27::i;:::-;91551:57;;91666:4;91625:45;;91641:19;91625:45;;;91621:86;;91679:28;;;;;;;;;;;;;;91621:86;91721:27;91750:23;91777:35;91804:7;91777:26;:35::i;:::-;91720:92;;;;91912:68;91937:15;91954:4;91960:19;:17;:19::i;:::-;91912:24;:68::i;:::-;91907:180;;92000:43;92017:4;92023:19;:17;:19::i;:::-;92000:16;:43::i;:::-;91995:92;;92052:35;;;;;;;;;;;;;;91995:92;91907:180;92118:1;92104:16;;:2;:16;;;92100:52;;92129:23;;;;;;;;;;;;;;92100:52;92165:43;92187:4;92193:2;92197:7;92206:1;92165:21;:43::i;:::-;92301:15;92298:160;;;92441:1;92420:19;92413:30;92298:160;92838:18;:24;92857:4;92838:24;;;;;;;;;;;;;;;;92836:26;;;;;;;;;;;;92907:18;:22;92926:2;92907:22;;;;;;;;;;;;;;;;92905:24;;;;;;;;;;;93229:146;93266:2;93315:45;93330:4;93336:2;93340:19;93315:14;:45::i;:::-;73429:8;93287:73;93229:18;:146::i;:::-;93200:17;:26;93218:7;93200:26;;;;;;;;;;;:175;;;;93546:1;73429:8;93495:19;:47;:52;93491:627;;93568:19;93600:1;93590:7;:11;93568:33;;93757:1;93723:17;:30;93741:11;93723:30;;;;;;;;;;;;:35;93719:384;;93861:13;;93846:11;:28;93842:242;;94041:19;94008:17;:30;94026:11;94008:30;;;;;;;;;;;:52;;;;93842:242;93719:384;93549:569;93491:627;94165:7;94161:2;94146:27;;94155:4;94146:27;;;;;;;;;;;;94184:42;94205:4;94211:2;94215:7;94224:1;94184:20;:42::i;:::-;91540:2694;;;91409:2825;;;:::o;7068:293::-;6470:1;7202:7;;:19;7194:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;6470:1;7335:7;:18;;;;7068:293::o;7369:213::-;6426:1;7552:7;:22;;;;7369:213::o;94330:193::-;94476:39;94493:4;94499:2;94503:7;94476:39;;;;;;;;;;;;:16;:39::i;:::-;94330:193;;;:::o;83827:1275::-;83894:7;83914:12;83929:7;83914:22;;83997:4;83978:15;:13;:15::i;:::-;:23;83974:1061;;84031:13;;84024:4;:20;84020:1015;;;84069:14;84086:17;:23;84104:4;84086:23;;;;;;;;;;;;84069:40;;84203:1;73149:8;84175:6;:24;:29;84171:845;;84840:113;84857:1;84847:6;:11;84840:113;;84900:17;:25;84918:6;;;;;;;84900:25;;;;;;;;;;;;84891:34;;84840:113;;;84986:6;84979:13;;;;;;84171:845;84046:989;84020:1015;83974:1061;85063:31;;;;;;;;;;;;;;83827:1275;;;;:::o;26183:191::-;26257:16;26276:6;;;;;;;;;;;26257:25;;26302:8;26293:6;;:17;;;;;;;;;;;;;;;;;;26357:8;26326:40;;26347:8;26326:40;;;;;;;;;;;;26246:128;26183:191;:::o;115307:315::-;115366:34;115376:10;115388:11;115366:9;:34::i;:::-;115415:7;;;;;;;;;;;115411:150;;;115444:9;115456:1;115444:13;;115439:111;115464:11;115459:1;:16;115439:111;;115501:19;:31;115521:10;115501:31;;;;;;;;;;;;;;;;:33;;;;;;;;;:::i;:::-;;;;;;115477:3;;;;;:::i;:::-;;;;115439:111;;;;115411:150;115603:11;115587:13;;:27;;;;:::i;:::-;115571:13;:43;;;;115307:315;:::o;95121:407::-;95296:31;95309:4;95315:2;95319:7;95296:12;:31::i;:::-;95360:1;95342:2;:14;;;:19;95338:183;;95381:56;95412:4;95418:2;95422:7;95431:5;95381:30;:56::i;:::-;95376:145;;95465:40;;;;;;;;;;;;;;95376:145;95338:183;95121:407;;;;:::o;114204:108::-;114264:13;114297:7;114290:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114204:108;:::o;20894:716::-;20950:13;21001:14;21038:1;21018:17;21029:5;21018:10;:17::i;:::-;:21;21001:38;;21054:20;21088:6;21077:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21054:41;;21110:11;21239:6;21235:2;21231:15;21223:6;21219:28;21212:35;;21276:288;21283:4;21276:288;;;21308:5;;;;;;;;21450:8;21445:2;21438:5;21434:14;21429:30;21424:3;21416:44;21506:2;21497:11;;;;;;:::i;:::-;;;;;21540:1;21531:5;:10;21276:288;21527:21;21276:288;21585:6;21578:13;;;;;20894:716;;;:::o;23467:98::-;23520:7;23547:10;23540:17;;23467:98;:::o;90304:485::-;90406:27;90435:23;90476:38;90517:15;:24;90533:7;90517:24;;;;;;;;;;;90476:65;;90694:18;90671:41;;90751:19;90745:26;90726:45;;90656:126;90304:485;;;:::o;89532:659::-;89681:11;89846:16;89839:5;89835:28;89826:37;;90006:16;89995:9;89991:32;89978:45;;90156:15;90145:9;90142:30;90134:5;90123:9;90120:20;90117:56;90107:66;;89532:659;;;;;:::o;96190:159::-;;;;;:::o;110758:311::-;110893:7;110913:16;73553:3;110939:19;:41;;110913:68;;73553:3;111007:31;111018:4;111024:2;111028:9;111007:10;:31::i;:::-;110999:40;;:62;;110992:69;;;110758:311;;;;;:::o;85650:450::-;85730:14;85898:16;85891:5;85887:28;85878:37;;86075:5;86061:11;86036:23;86032:41;86029:52;86022:5;86019:63;86009:73;;85650:450;;;;:::o;97014:158::-;;;;;:::o;105281:112::-;105358:27;105368:2;105372:8;105358:27;;;;;;;;;;;;:9;:27::i;:::-;105281:112;;:::o;97612:716::-;97775:4;97821:2;97796:45;;;97842:19;:17;:19::i;:::-;97863:4;97869:7;97878:5;97796:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;97792:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98096:1;98079:6;:13;:18;98075:235;;98125:40;;;;;;;;;;;;;;98075:235;98268:6;98262:13;98253:6;98249:2;98245:15;98238:38;97792:529;97965:54;;;97955:64;;;:6;:64;;;;97948:71;;;97612:716;;;;;;:::o;17760:922::-;17813:7;17833:14;17850:1;17833:18;;17900:6;17891:5;:15;17887:102;;17936:6;17927:15;;;;;;:::i;:::-;;;;;17971:2;17961:12;;;;17887:102;18016:6;18007:5;:15;18003:102;;18052:6;18043:15;;;;;;:::i;:::-;;;;;18087:2;18077:12;;;;18003:102;18132:6;18123:5;:15;18119:102;;18168:6;18159:15;;;;;;:::i;:::-;;;;;18203:2;18193:12;;;;18119:102;18248:5;18239;:14;18235:99;;18283:5;18274:14;;;;;;:::i;:::-;;;;;18317:1;18307:11;;;;18235:99;18361:5;18352;:14;18348:99;;18396:5;18387:14;;;;;;:::i;:::-;;;;;18430:1;18420:11;;;;18348:99;18474:5;18465;:14;18461:99;;18509:5;18500:14;;;;;;:::i;:::-;;;;;18543:1;18533:11;;;;18461:99;18587:5;18578;:14;18574:66;;18623:1;18613:11;;;;18574:66;18668:6;18661:13;;;17760:922;;;:::o;110459:147::-;110596:6;110459:147;;;;;:::o;104508:689::-;104639:19;104645:2;104649:8;104639:5;:19::i;:::-;104718:1;104700:2;:14;;;:19;104696:483;;104740:11;104754:13;;104740:27;;104786:13;104808:8;104802:3;:14;104786:30;;104835:233;104866:62;104905:1;104909:2;104913:7;;;;;;104922:5;104866:30;:62::i;:::-;104861:167;;104964:40;;;;;;;;;;;;;;104861:167;105063:3;105055:5;:11;104835:233;;105150:3;105133:13;;:20;105129:34;;105155:8;;;105129:34;104721:458;;104696:483;104508:689;;;:::o;98790:2966::-;98863:20;98886:13;;98863:36;;98926:1;98914:8;:13;98910:44;;98936:18;;;;;;;;;;;;;;98910:44;98967:61;98997:1;99001:2;99005:12;99019:8;98967:21;:61::i;:::-;99511:1;72511:2;99481:1;:26;;99480:32;99468:8;:45;99442:18;:22;99461:2;99442:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;99790:139;99827:2;99881:33;99904:1;99908:2;99912:1;99881:14;:33::i;:::-;99848:30;99869:8;99848:20;:30::i;:::-;:66;99790:18;:139::i;:::-;99756:17;:31;99774:12;99756:31;;;;;;;;;;;:173;;;;99946:16;99977:11;100006:8;99991:12;:23;99977:37;;100527:16;100523:2;100519:25;100507:37;;100899:12;100859:8;100818:1;100756:25;100697:1;100636;100609:335;101270:1;101256:12;101252:20;101210:346;101311:3;101302:7;101299:16;101210:346;;101529:7;101519:8;101516:1;101489:25;101486:1;101483;101478:59;101364:1;101355:7;101351:15;101340:26;;101210:346;;;101214:77;101601:1;101589:8;:13;101585:45;;101611:19;;;;;;;;;;;;;;101585:45;101663:3;101647:13;:19;;;;99216:2462;;101688:60;101717:1;101721:2;101725:12;101739:8;101688:20;:60::i;:::-;98852:2904;98790:2966;;:::o;86202:324::-;86272:14;86505:1;86495:8;86492:15;86466:24;86462:46;86452:56;;86202:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:116::-;5360:21;5375:5;5360:21;:::i;:::-;5353:5;5350:32;5340:60;;5396:1;5393;5386:12;5340:60;5290:116;:::o;5412:133::-;5455:5;5493:6;5480:20;5471:29;;5509:30;5533:5;5509:30;:::i;:::-;5412:133;;;;:::o;5551:323::-;5607:6;5656:2;5644:9;5635:7;5631:23;5627:32;5624:119;;;5662:79;;:::i;:::-;5624:119;5782:1;5807:50;5849:7;5840:6;5829:9;5825:22;5807:50;:::i;:::-;5797:60;;5753:114;5551:323;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:329::-;6564:6;6613:2;6601:9;6592:7;6588:23;6584:32;6581:119;;;6619:79;;:::i;:::-;6581:119;6739:1;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6710:117;6505:329;;;;:::o;6840:117::-;6949:1;6946;6939:12;6963:117;7072:1;7069;7062:12;7086:180;7134:77;7131:1;7124:88;7231:4;7228:1;7221:15;7255:4;7252:1;7245:15;7272:281;7355:27;7377:4;7355:27;:::i;:::-;7347:6;7343:40;7485:6;7473:10;7470:22;7449:18;7437:10;7434:34;7431:62;7428:88;;;7496:18;;:::i;:::-;7428:88;7536:10;7532:2;7525:22;7315:238;7272:281;;:::o;7559:129::-;7593:6;7620:20;;:::i;:::-;7610:30;;7649:33;7677:4;7669:6;7649:33;:::i;:::-;7559:129;;;:::o;7694:308::-;7756:4;7846:18;7838:6;7835:30;7832:56;;;7868:18;;:::i;:::-;7832:56;7906:29;7928:6;7906:29;:::i;:::-;7898:37;;7990:4;7984;7980:15;7972:23;;7694:308;;;:::o;8008:154::-;8092:6;8087:3;8082;8069:30;8154:1;8145:6;8140:3;8136:16;8129:27;8008:154;;;:::o;8168:412::-;8246:5;8271:66;8287:49;8329:6;8287:49;:::i;:::-;8271:66;:::i;:::-;8262:75;;8360:6;8353:5;8346:21;8398:4;8391:5;8387:16;8436:3;8427:6;8422:3;8418:16;8415:25;8412:112;;;8443:79;;:::i;:::-;8412:112;8533:41;8567:6;8562:3;8557;8533:41;:::i;:::-;8252:328;8168:412;;;;;:::o;8600:340::-;8656:5;8705:3;8698:4;8690:6;8686:17;8682:27;8672:122;;8713:79;;:::i;:::-;8672:122;8830:6;8817:20;8855:79;8930:3;8922:6;8915:4;8907:6;8903:17;8855:79;:::i;:::-;8846:88;;8662:278;8600:340;;;;:::o;8946:509::-;9015:6;9064:2;9052:9;9043:7;9039:23;9035:32;9032:119;;;9070:79;;:::i;:::-;9032:119;9218:1;9207:9;9203:17;9190:31;9248:18;9240:6;9237:30;9234:117;;;9270:79;;:::i;:::-;9234:117;9375:63;9430:7;9421:6;9410:9;9406:22;9375:63;:::i;:::-;9365:73;;9161:287;8946:509;;;;:::o;9461:117::-;9570:1;9567;9560:12;9584:117;9693:1;9690;9683:12;9724:568;9797:8;9807:6;9857:3;9850:4;9842:6;9838:17;9834:27;9824:122;;9865:79;;:::i;:::-;9824:122;9978:6;9965:20;9955:30;;10008:18;10000:6;9997:30;9994:117;;;10030:79;;:::i;:::-;9994:117;10144:4;10136:6;10132:17;10120:29;;10198:3;10190:4;10182:6;10178:17;10168:8;10164:32;10161:41;10158:128;;;10205:79;;:::i;:::-;10158:128;9724:568;;;;;:::o;10298:559::-;10384:6;10392;10441:2;10429:9;10420:7;10416:23;10412:32;10409:119;;;10447:79;;:::i;:::-;10409:119;10595:1;10584:9;10580:17;10567:31;10625:18;10617:6;10614:30;10611:117;;;10647:79;;:::i;:::-;10611:117;10760:80;10832:7;10823:6;10812:9;10808:22;10760:80;:::i;:::-;10742:98;;;;10538:312;10298:559;;;;;:::o;10863:468::-;10928:6;10936;10985:2;10973:9;10964:7;10960:23;10956:32;10953:119;;;10991:79;;:::i;:::-;10953:119;11111:1;11136:53;11181:7;11172:6;11161:9;11157:22;11136:53;:::i;:::-;11126:63;;11082:117;11238:2;11264:50;11306:7;11297:6;11286:9;11282:22;11264:50;:::i;:::-;11254:60;;11209:115;10863:468;;;;;:::o;11337:307::-;11398:4;11488:18;11480:6;11477:30;11474:56;;;11510:18;;:::i;:::-;11474:56;11548:29;11570:6;11548:29;:::i;:::-;11540:37;;11632:4;11626;11622:15;11614:23;;11337:307;;;:::o;11650:410::-;11727:5;11752:65;11768:48;11809:6;11768:48;:::i;:::-;11752:65;:::i;:::-;11743:74;;11840:6;11833:5;11826:21;11878:4;11871:5;11867:16;11916:3;11907:6;11902:3;11898:16;11895:25;11892:112;;;11923:79;;:::i;:::-;11892:112;12013:41;12047:6;12042:3;12037;12013:41;:::i;:::-;11733:327;11650:410;;;;;:::o;12079:338::-;12134:5;12183:3;12176:4;12168:6;12164:17;12160:27;12150:122;;12191:79;;:::i;:::-;12150:122;12308:6;12295:20;12333:78;12407:3;12399:6;12392:4;12384:6;12380:17;12333:78;:::i;:::-;12324:87;;12140:277;12079:338;;;;:::o;12423:943::-;12518:6;12526;12534;12542;12591:3;12579:9;12570:7;12566:23;12562:33;12559:120;;;12598:79;;:::i;:::-;12559:120;12718:1;12743:53;12788:7;12779:6;12768:9;12764:22;12743:53;:::i;:::-;12733:63;;12689:117;12845:2;12871:53;12916:7;12907:6;12896:9;12892:22;12871:53;:::i;:::-;12861:63;;12816:118;12973:2;12999:53;13044:7;13035:6;13024:9;13020:22;12999:53;:::i;:::-;12989:63;;12944:118;13129:2;13118:9;13114:18;13101:32;13160:18;13152:6;13149:30;13146:117;;;13182:79;;:::i;:::-;13146:117;13287:62;13341:7;13332:6;13321:9;13317:22;13287:62;:::i;:::-;13277:72;;13072:287;12423:943;;;;;;;:::o;13372:474::-;13440:6;13448;13497:2;13485:9;13476:7;13472:23;13468:32;13465:119;;;13503:79;;:::i;:::-;13465:119;13623:1;13648:53;13693:7;13684:6;13673:9;13669:22;13648:53;:::i;:::-;13638:63;;13594:117;13750:2;13776:53;13821:7;13812:6;13801:9;13797:22;13776:53;:::i;:::-;13766:63;;13721:118;13372:474;;;;;:::o;13852:180::-;13900:77;13897:1;13890:88;13997:4;13994:1;13987:15;14021:4;14018:1;14011:15;14038:320;14082:6;14119:1;14113:4;14109:12;14099:22;;14166:1;14160:4;14156:12;14187:18;14177:81;;14243:4;14235:6;14231:17;14221:27;;14177:81;14305:2;14297:6;14294:14;14274:18;14271:38;14268:84;;14324:18;;:::i;:::-;14268:84;14089:269;14038:320;;;:::o;14364:332::-;14485:4;14523:2;14512:9;14508:18;14500:26;;14536:71;14604:1;14593:9;14589:17;14580:6;14536:71;:::i;:::-;14617:72;14685:2;14674:9;14670:18;14661:6;14617:72;:::i;:::-;14364:332;;;;;:::o;14702:137::-;14756:5;14787:6;14781:13;14772:22;;14803:30;14827:5;14803:30;:::i;:::-;14702:137;;;;:::o;14845:345::-;14912:6;14961:2;14949:9;14940:7;14936:23;14932:32;14929:119;;;14967:79;;:::i;:::-;14929:119;15087:1;15112:61;15165:7;15156:6;15145:9;15141:22;15112:61;:::i;:::-;15102:71;;15058:125;14845:345;;;;:::o;15196:180::-;15244:77;15241:1;15234:88;15341:4;15338:1;15331:15;15365:4;15362:1;15355:15;15382:348;15422:7;15445:20;15463:1;15445:20;:::i;:::-;15440:25;;15479:20;15497:1;15479:20;:::i;:::-;15474:25;;15667:1;15599:66;15595:74;15592:1;15589:81;15584:1;15577:9;15570:17;15566:105;15563:131;;;15674:18;;:::i;:::-;15563:131;15722:1;15719;15715:9;15704:20;;15382:348;;;;:::o;15736:180::-;15784:77;15781:1;15774:88;15881:4;15878:1;15871:15;15905:4;15902:1;15895:15;15922:185;15962:1;15979:20;15997:1;15979:20;:::i;:::-;15974:25;;16013:20;16031:1;16013:20;:::i;:::-;16008:25;;16052:1;16042:35;;16057:18;;:::i;:::-;16042:35;16099:1;16096;16092:9;16087:14;;15922:185;;;;:::o;16113:147::-;16214:11;16251:3;16236:18;;16113:147;;;;:::o;16266:114::-;;:::o;16386:398::-;16545:3;16566:83;16647:1;16642:3;16566:83;:::i;:::-;16559:90;;16658:93;16747:3;16658:93;:::i;:::-;16776:1;16771:3;16767:11;16760:18;;16386:398;;;:::o;16790:379::-;16974:3;16996:147;17139:3;16996:147;:::i;:::-;16989:154;;17160:3;17153:10;;16790:379;;;:::o;17175:180::-;17223:77;17220:1;17213:88;17320:4;17317:1;17310:15;17344:4;17341:1;17334:15;17361:233;17400:3;17423:24;17441:5;17423:24;:::i;:::-;17414:33;;17469:66;17462:5;17459:77;17456:103;;17539:18;;:::i;:::-;17456:103;17586:1;17579:5;17575:13;17568:20;;17361:233;;;:::o;17600:170::-;17740:22;17736:1;17728:6;17724:14;17717:46;17600:170;:::o;17776:366::-;17918:3;17939:67;18003:2;17998:3;17939:67;:::i;:::-;17932:74;;18015:93;18104:3;18015:93;:::i;:::-;18133:2;18128:3;18124:12;18117:19;;17776:366;;;:::o;18148:419::-;18314:4;18352:2;18341:9;18337:18;18329:26;;18401:9;18395:4;18391:20;18387:1;18376:9;18372:17;18365:47;18429:131;18555:4;18429:131;:::i;:::-;18421:139;;18148:419;;;:::o;18573:305::-;18613:3;18632:20;18650:1;18632:20;:::i;:::-;18627:25;;18666:20;18684:1;18666:20;:::i;:::-;18661:25;;18820:1;18752:66;18748:74;18745:1;18742:81;18739:107;;;18826:18;;:::i;:::-;18739:107;18870:1;18867;18863:9;18856:16;;18573:305;;;;:::o;18884:227::-;19024:34;19020:1;19012:6;19008:14;19001:58;19093:10;19088:2;19080:6;19076:15;19069:35;18884:227;:::o;19117:366::-;19259:3;19280:67;19344:2;19339:3;19280:67;:::i;:::-;19273:74;;19356:93;19445:3;19356:93;:::i;:::-;19474:2;19469:3;19465:12;19458:19;;19117:366;;;:::o;19489:419::-;19655:4;19693:2;19682:9;19678:18;19670:26;;19742:9;19736:4;19732:20;19728:1;19717:9;19713:17;19706:47;19770:131;19896:4;19770:131;:::i;:::-;19762:139;;19489:419;;;:::o;19914:173::-;20054:25;20050:1;20042:6;20038:14;20031:49;19914:173;:::o;20093:366::-;20235:3;20256:67;20320:2;20315:3;20256:67;:::i;:::-;20249:74;;20332:93;20421:3;20332:93;:::i;:::-;20450:2;20445:3;20441:12;20434:19;;20093:366;;;:::o;20465:419::-;20631:4;20669:2;20658:9;20654:18;20646:26;;20718:9;20712:4;20708:20;20704:1;20693:9;20689:17;20682:47;20746:131;20872:4;20746:131;:::i;:::-;20738:139;;20465:419;;;:::o;20890:224::-;21030:34;21026:1;21018:6;21014:14;21007:58;21099:7;21094:2;21086:6;21082:15;21075:32;20890:224;:::o;21120:366::-;21262:3;21283:67;21347:2;21342:3;21283:67;:::i;:::-;21276:74;;21359:93;21448:3;21359:93;:::i;:::-;21477:2;21472:3;21468:12;21461:19;;21120:366;;;:::o;21492:419::-;21658:4;21696:2;21685:9;21681:18;21673:26;;21745:9;21739:4;21735:20;21731:1;21720:9;21716:17;21709:47;21773:131;21899:4;21773:131;:::i;:::-;21765:139;;21492:419;;;:::o;21917:172::-;22057:24;22053:1;22045:6;22041:14;22034:48;21917:172;:::o;22095:366::-;22237:3;22258:67;22322:2;22317:3;22258:67;:::i;:::-;22251:74;;22334:93;22423:3;22334:93;:::i;:::-;22452:2;22447:3;22443:12;22436:19;;22095:366;;;:::o;22467:419::-;22633:4;22671:2;22660:9;22656:18;22648:26;;22720:9;22714:4;22710:20;22706:1;22695:9;22691:17;22684:47;22748:131;22874:4;22748:131;:::i;:::-;22740:139;;22467:419;;;:::o;22892:177::-;23032:29;23028:1;23020:6;23016:14;23009:53;22892:177;:::o;23075:366::-;23217:3;23238:67;23302:2;23297:3;23238:67;:::i;:::-;23231:74;;23314:93;23403:3;23314:93;:::i;:::-;23432:2;23427:3;23423:12;23416:19;;23075:366;;;:::o;23447:419::-;23613:4;23651:2;23640:9;23636:18;23628:26;;23700:9;23694:4;23690:20;23686:1;23675:9;23671:17;23664:47;23728:131;23854:4;23728:131;:::i;:::-;23720:139;;23447:419;;;:::o;23872:234::-;24012:34;24008:1;24000:6;23996:14;23989:58;24081:17;24076:2;24068:6;24064:15;24057:42;23872:234;:::o;24112:366::-;24254:3;24275:67;24339:2;24334:3;24275:67;:::i;:::-;24268:74;;24351:93;24440:3;24351:93;:::i;:::-;24469:2;24464:3;24460:12;24453:19;;24112:366;;;:::o;24484:419::-;24650:4;24688:2;24677:9;24673:18;24665:26;;24737:9;24731:4;24727:20;24723:1;24712:9;24708:17;24701:47;24765:131;24891:4;24765:131;:::i;:::-;24757:139;;24484:419;;;:::o;24909:148::-;25011:11;25048:3;25033:18;;24909:148;;;;:::o;25063:377::-;25169:3;25197:39;25230:5;25197:39;:::i;:::-;25252:89;25334:6;25329:3;25252:89;:::i;:::-;25245:96;;25350:52;25395:6;25390:3;25383:4;25376:5;25372:16;25350:52;:::i;:::-;25427:6;25422:3;25418:16;25411:23;;25173:267;25063:377;;;;:::o;25446:155::-;25586:7;25582:1;25574:6;25570:14;25563:31;25446:155;:::o;25607:400::-;25767:3;25788:84;25870:1;25865:3;25788:84;:::i;:::-;25781:91;;25881:93;25970:3;25881:93;:::i;:::-;25999:1;25994:3;25990:11;25983:18;;25607:400;;;:::o;26013:701::-;26294:3;26316:95;26407:3;26398:6;26316:95;:::i;:::-;26309:102;;26428:95;26519:3;26510:6;26428:95;:::i;:::-;26421:102;;26540:148;26684:3;26540:148;:::i;:::-;26533:155;;26705:3;26698:10;;26013:701;;;;;:::o;26720:161::-;26860:13;26856:1;26848:6;26844:14;26837:37;26720:161;:::o;26887:402::-;27047:3;27068:85;27150:2;27145:3;27068:85;:::i;:::-;27061:92;;27162:93;27251:3;27162:93;:::i;:::-;27280:2;27275:3;27271:12;27264:19;;26887:402;;;:::o;27295:541::-;27528:3;27550:95;27641:3;27632:6;27550:95;:::i;:::-;27543:102;;27662:148;27806:3;27662:148;:::i;:::-;27655:155;;27827:3;27820:10;;27295:541;;;;:::o;27842:225::-;27982:34;27978:1;27970:6;27966:14;27959:58;28051:8;28046:2;28038:6;28034:15;28027:33;27842:225;:::o;28073:366::-;28215:3;28236:67;28300:2;28295:3;28236:67;:::i;:::-;28229:74;;28312:93;28401:3;28312:93;:::i;:::-;28430:2;28425:3;28421:12;28414:19;;28073:366;;;:::o;28445:419::-;28611:4;28649:2;28638:9;28634:18;28626:26;;28698:9;28692:4;28688:20;28684:1;28673:9;28669:17;28662:47;28726:131;28852:4;28726:131;:::i;:::-;28718:139;;28445:419;;;:::o;28870:182::-;29010:34;29006:1;28998:6;28994:14;28987:58;28870:182;:::o;29058:366::-;29200:3;29221:67;29285:2;29280:3;29221:67;:::i;:::-;29214:74;;29297:93;29386:3;29297:93;:::i;:::-;29415:2;29410:3;29406:12;29399:19;;29058:366;;;:::o;29430:419::-;29596:4;29634:2;29623:9;29619:18;29611:26;;29683:9;29677:4;29673:20;29669:1;29658:9;29654:17;29647:47;29711:131;29837:4;29711:131;:::i;:::-;29703:139;;29430:419;;;:::o;29855:181::-;29995:33;29991:1;29983:6;29979:14;29972:57;29855:181;:::o;30042:366::-;30184:3;30205:67;30269:2;30264:3;30205:67;:::i;:::-;30198:74;;30281:93;30370:3;30281:93;:::i;:::-;30399:2;30394:3;30390:12;30383:19;;30042:366;;;:::o;30414:419::-;30580:4;30618:2;30607:9;30603:18;30595:26;;30667:9;30661:4;30657:20;30653:1;30642:9;30638:17;30631:47;30695:131;30821:4;30695:131;:::i;:::-;30687:139;;30414:419;;;:::o;30839:98::-;30890:6;30924:5;30918:12;30908:22;;30839:98;;;:::o;30943:168::-;31026:11;31060:6;31055:3;31048:19;31100:4;31095:3;31091:14;31076:29;;30943:168;;;;:::o;31117:360::-;31203:3;31231:38;31263:5;31231:38;:::i;:::-;31285:70;31348:6;31343:3;31285:70;:::i;:::-;31278:77;;31364:52;31409:6;31404:3;31397:4;31390:5;31386:16;31364:52;:::i;:::-;31441:29;31463:6;31441:29;:::i;:::-;31436:3;31432:39;31425:46;;31207:270;31117:360;;;;:::o;31483:640::-;31678:4;31716:3;31705:9;31701:19;31693:27;;31730:71;31798:1;31787:9;31783:17;31774:6;31730:71;:::i;:::-;31811:72;31879:2;31868:9;31864:18;31855:6;31811:72;:::i;:::-;31893;31961:2;31950:9;31946:18;31937:6;31893:72;:::i;:::-;32012:9;32006:4;32002:20;31997:2;31986:9;31982:18;31975:48;32040:76;32111:4;32102:6;32040:76;:::i;:::-;32032:84;;31483:640;;;;;;;:::o;32129:141::-;32185:5;32216:6;32210:13;32201:22;;32232:32;32258:5;32232:32;:::i;:::-;32129:141;;;;:::o;32276:349::-;32345:6;32394:2;32382:9;32373:7;32369:23;32365:32;32362:119;;;32400:79;;:::i;:::-;32362:119;32520:1;32545:63;32600:7;32591:6;32580:9;32576:22;32545:63;:::i;:::-;32535:73;;32491:127;32276:349;;;;:::o

Swarm Source

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