ETH Price: $3,056.99 (+1.09%)
Gas: 3 Gwei

Token

NotOnChainOwls (NOCO)
 

Overview

Max Total Supply

90 NOCO

Holders

29

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ricktheturtle.eth
Balance
1 NOCO
0xF6655e0f9F5c8b7D7dA3DE6F78Cfe1B8394e8148
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:
NOCO

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-11
*/

// SPDX-License-Identifier: MIT
// 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: closedsea/src/OperatorFilterer.sol


pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))

            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) {
                // If the function selector has not been overwritten,
                // it is an out-of-gas error.
                if eq(shr(224, mload(0x00)), functionSelector) {
                    // To prevent gas under-estimation.
                    revert(0, 0)
                }
            }
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}

// 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: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/NotOnChainOwls.sol

//  _   _           _      ___    _   _    ____   _               _            ___               _       
 //| \ | |   ___   | |_   / _ \  | \ | |  / ___| | |__     __ _  (_)  _ __    / _ \  __      __ | |  ___ 
// |  \| |  / _ \  | __| | | | | |  \| | | |     | '_ \   / _` | | | | '_ \  | | | | \ \ /\ / / | | / __|
// | |\  | | (_) | | |_  | |_| | | |\  | | |___  | | | | | (_| | | | | | | | | |_| |  \ V  V /  | | \__ \
// |_| \_|  \___/   \__|  \___/  |_| \_|  \____| |_| |_|  \__,_| |_| |_| |_|  \___/    \_/\_/   |_| |___/ 

pragma solidity ^0.8.9;






contract NOCO is ERC721A, OperatorFilterer, Ownable {
    // Variables

    bool public NestOpen = false;
    uint256 public MAX_SUPPLY = 8888;
    uint256 public PAID_OWLS = 0.005 ether;

    uint256 public FREE_OWLS_LIMIT = 1;
    uint256 public PAID_OWLS_LIMIT = 10;

    bool public operatorFilteringEnabled;

    mapping(address => bool) public OwlClaimed;
    string public uriSuffix = ".json";
    string public baseURI = "";
    address public admin;

    // Constructor

    constructor(string memory baseURI_) ERC721A("NotOnChainOwls", "NOCO") {
        _registerForOperatorFiltering();
        operatorFilteringEnabled = true;
        baseURI = baseURI_;
    }

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

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

    function toggleNest() public onlyOwner {
        NestOpen = !NestOpen;
    }

    function Mint(uint256 numTokens) public payable {
        require(NestOpen, "Paused");
        require(numTokens > 0 && numTokens <= 10);
        require(totalSupply() + numTokens <= MAX_SUPPLY);
        require(10 >= numTokens, "Excess max per paid tx");
        if (OwlClaimed[msg.sender] == false){
          require(msg.value == ((numTokens * PAID_OWLS) - PAID_OWLS) , "free claimed");
        } else {
        require(msg.value == numTokens * PAID_OWLS, "Invalid funds provided");
        }
        OwlClaimed[msg.sender] = true;
        _safeMint(msg.sender, numTokens);
    }
    function adminMint(address to, uint256 numTokens) public onlyOwner {
    require(totalSupply() + numTokens <= MAX_SUPPLY, "Exceeds maximum supply");
    _safeMint(to, numTokens);
}

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

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

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

    function setOperatorFilteringEnabled(bool value) public onlyOwner {
        operatorFilteringEnabled = value;
    }

    function _operatorFilteringEnabled() internal view override returns (bool) {
        return operatorFilteringEnabled;
    }

    // Modifiers

    modifier nonContract() {
        require(tx.origin == msg.sender, "Contracts not allowed to mint");
        _;
    }

    // Token URI

     function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }
    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "That token doesn't exist");
        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(
                        baseURI,
                        Strings.toString(_tokenId),
                        uriSuffix
                    )
                )
                : "";
    }

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

    // Withdraw

    function withdrawBalance() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "WITHDRAW FAILED!");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_OWLS_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"NestOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"OwlClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_OWLS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_OWLS_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleNest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860146101000a81548160ff0219169083151502179055506122b86009556611c37937e08000600a556001600b55600a600c556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600f9081620000809190620005d1565b506040518060200160405280600081525060109081620000a19190620005d1565b50348015620000af57600080fd5b5060405162003ccb38038062003ccb8339818101604052810190620000d591906200081c565b6040518060400160405280600e81526020017f4e6f744f6e436861696e4f776c730000000000000000000000000000000000008152506040518060400160405280600481526020017f4e4f434f000000000000000000000000000000000000000000000000000000008152508160029081620001529190620005d1565b508060039081620001649190620005d1565b5062000175620001e160201b60201c565b60008190555050506200019d62000191620001e660201b60201c565b620001ee60201b60201c565b620001ad620002b460201b60201c565b6001600d60006101000a81548160ff0219169083151502179055508060109081620001d99190620005d1565b50506200086d565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002db733cc6cdda760b79bafa08df41ecfa224f810dceb66001620002dd60201b60201c565b565b637d3e3dbe8260601b60601c9250816200030c57826200030457634420e48690506200030c565b63a0af290390505b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af16200034d578060005160e01c036200034c57600080fd5b5b6000602452505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003d957607f821691505b602082108103620003ef57620003ee62000391565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004597fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200041a565b6200046586836200041a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004b2620004ac620004a6846200047d565b62000487565b6200047d565b9050919050565b6000819050919050565b620004ce8362000491565b620004e6620004dd82620004b9565b84845462000427565b825550505050565b600090565b620004fd620004ee565b6200050a818484620004c3565b505050565b5b81811015620005325762000526600082620004f3565b60018101905062000510565b5050565b601f82111562000581576200054b81620003f5565b62000556846200040a565b8101602085101562000566578190505b6200057e62000575856200040a565b8301826200050f565b50505b505050565b600082821c905092915050565b6000620005a66000198460080262000586565b1980831691505092915050565b6000620005c1838362000593565b9150826002028217905092915050565b620005dc8262000357565b67ffffffffffffffff811115620005f857620005f762000362565b5b620006048254620003c0565b6200061182828562000536565b600060209050601f83116001811462000649576000841562000634578287015190505b620006408582620005b3565b865550620006b0565b601f1984166200065986620003f5565b60005b8281101562000683578489015182556001820191506020850194506020810190506200065c565b86831015620006a357848901516200069f601f89168262000593565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620006f282620006d6565b810181811067ffffffffffffffff8211171562000714576200071362000362565b5b80604052505050565b600062000729620006b8565b9050620007378282620006e7565b919050565b600067ffffffffffffffff8211156200075a576200075962000362565b5b6200076582620006d6565b9050602081019050919050565b60005b838110156200079257808201518184015260208101905062000775565b60008484015250505050565b6000620007b5620007af846200073c565b6200071d565b905082815260208101848484011115620007d457620007d3620006d1565b5b620007e184828562000772565b509392505050565b600082601f830112620008015762000800620006cc565b5b8151620008138482602086016200079e565b91505092915050565b600060208284031215620008355762000834620006c2565b5b600082015167ffffffffffffffff811115620008565762000855620006c7565b5b6200086484828501620007e9565b91505092915050565b61344e806200087d6000396000f3fe6080604052600436106101ee5760003560e01c80636b09f3831161010d578063b7c0b8e8116100a0578063e985e9c51161006f578063e985e9c514610684578063f2fde38b146106c1578063f851a440146106ea578063fb796e6c14610715578063fb98525114610740576101ee565b8063b7c0b8e8146105d9578063b88d4fde14610602578063c87b56dd1461061e578063e58306f91461065b576101ee565b806377f9e514116100dc57806377f9e5141461052f5780638da5cb5b1461055a57806395d89b4114610585578063a22cb465146105b0576101ee565b80636b09f383146104855780636c0360eb146104b057806370a08231146104db578063715018a614610518576101ee565b80632a9db45b116101855780635503a0e8116101545780635503a0e8146103dd57806355f804b3146104085780635fd8c710146104315780636352211e14610448576101ee565b80632a9db45b1461032e57806332cb6b0c1461035957806342842e0e1461038457806348360a14146103a0576101ee565b8063095ea7b3116101c1578063095ea7b3146102b457806318160ddd146102d057806323b872dd146102fb57806329f15a4814610317576101ee565b806301ffc9a7146101f357806306fdde0314610230578063078837031461025b578063081812fc14610277575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906123c2565b61076b565b604051610227919061240a565b60405180910390f35b34801561023c57600080fd5b506102456107fd565b60405161025291906124b5565b60405180910390f35b6102756004803603810190610270919061250d565b61088f565b005b34801561028357600080fd5b5061029e6004803603810190610299919061250d565b610acb565b6040516102ab919061257b565b60405180910390f35b6102ce60048036038101906102c991906125c2565b610b4a565b005b3480156102dc57600080fd5b506102e5610b7f565b6040516102f29190612611565b60405180910390f35b6103156004803603810190610310919061262c565b610b96565b005b34801561032357600080fd5b5061032c610c01565b005b34801561033a57600080fd5b50610343610c35565b6040516103509190612611565b60405180910390f35b34801561036557600080fd5b5061036e610c3b565b60405161037b9190612611565b60405180910390f35b61039e6004803603810190610399919061262c565b610c41565b005b3480156103ac57600080fd5b506103c760048036038101906103c2919061267f565b610cac565b6040516103d4919061240a565b60405180910390f35b3480156103e957600080fd5b506103f2610ccc565b6040516103ff91906124b5565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a91906127e1565b610d5a565b005b34801561043d57600080fd5b50610446610d75565b005b34801561045457600080fd5b5061046f600480360381019061046a919061250d565b610e2c565b60405161047c919061257b565b60405180910390f35b34801561049157600080fd5b5061049a610e3e565b6040516104a79190612611565b60405180910390f35b3480156104bc57600080fd5b506104c5610e44565b6040516104d291906124b5565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd919061267f565b610ed2565b60405161050f9190612611565b60405180910390f35b34801561052457600080fd5b5061052d610f8a565b005b34801561053b57600080fd5b50610544610f9e565b604051610551919061240a565b60405180910390f35b34801561056657600080fd5b5061056f610fb1565b60405161057c919061257b565b60405180910390f35b34801561059157600080fd5b5061059a610fdb565b6040516105a791906124b5565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190612856565b61106d565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190612896565b6110a2565b005b61061c60048036038101906106179190612964565b6110c7565b005b34801561062a57600080fd5b506106456004803603810190610640919061250d565b611134565b60405161065291906124b5565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d91906125c2565b6111df565b005b34801561069057600080fd5b506106ab60048036038101906106a691906129e7565b61124c565b6040516106b8919061240a565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e3919061267f565b6112e0565b005b3480156106f657600080fd5b506106ff611363565b60405161070c919061257b565b60405180910390f35b34801561072157600080fd5b5061072a611389565b604051610737919061240a565b60405180910390f35b34801561074c57600080fd5b5061075561139c565b6040516107629190612611565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461080c90612a56565b80601f016020809104026020016040519081016040528092919081815260200182805461083890612a56565b80156108855780601f1061085a57610100808354040283529160200191610885565b820191906000526020600020905b81548152906001019060200180831161086857829003601f168201915b5050505050905090565b600860149054906101000a900460ff166108de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d590612ad3565b60405180910390fd5b6000811180156108ef5750600a8111155b6108f857600080fd5b60095481610904610b7f565b61090e9190612b22565b111561091957600080fd5b80600a101561095d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095490612ba2565b60405180910390fd5b60001515600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503610a1657600a54600a54826109c69190612bc2565b6109d09190612c04565b3414610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0890612c84565b60405180910390fd5b610a66565b600a5481610a249190612bc2565b3414610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c90612cf0565b60405180910390fd5b5b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ac833826113a2565b50565b6000610ad6826113c0565b610b0c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b548161141f565b610b7057610b60611426565b15610b6f57610b6e8161143d565b5b5b610b7a8383611481565b505050565b6000610b896115c5565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bf057610bd33361141f565b610bef57610bdf611426565b15610bee57610bed3361143d565b5b5b5b610bfb8484846115ca565b50505050565b610c096118ec565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b600c5481565b60095481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c9b57610c7e3361141f565b610c9a57610c8a611426565b15610c9957610c983361143d565b5b5b5b610ca684848461196a565b50505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b600f8054610cd990612a56565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0590612a56565b8015610d525780601f10610d2757610100808354040283529160200191610d52565b820191906000526020600020905b815481529060010190602001808311610d3557829003601f168201915b505050505081565b610d626118ec565b8060109081610d719190612ebc565b5050565b610d7d6118ec565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610da390612fbf565b60006040518083038185875af1925050503d8060008114610de0576040519150601f19603f3d011682016040523d82523d6000602084013e610de5565b606091505b5050905080610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090613020565b60405180910390fd5b50565b6000610e378261198a565b9050919050565b600b5481565b60108054610e5190612a56565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7d90612a56565b8015610eca5780601f10610e9f57610100808354040283529160200191610eca565b820191906000526020600020905b815481529060010190602001808311610ead57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f39576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f926118ec565b610f9c6000611a56565b565b600860149054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fea90612a56565b80601f016020809104026020016040519081016040528092919081815260200182805461101690612a56565b80156110635780601f1061103857610100808354040283529160200191611063565b820191906000526020600020905b81548152906001019060200180831161104657829003601f168201915b5050505050905090565b816110778161141f565b61109357611083611426565b15611092576110918161143d565b5b5b61109d8383611b1c565b505050565b6110aa6118ec565b80600d60006101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611121576111043361141f565b61112057611110611426565b1561111f5761111e3361143d565b5b5b5b61112d85858585611c27565b5050505050565b606061113f826113c0565b61117e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111759061308c565b60405180910390fd5b60006010805461118d90612a56565b9050116111a957604051806020016040528060008152506111d8565b60106111b483611c9a565b600f6040516020016111c89392919061316b565b6040516020818303038152906040525b9050919050565b6111e76118ec565b600954816111f3610b7f565b6111fd9190612b22565b111561123e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611235906131e8565b60405180910390fd5b61124882826113a2565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112e86118ec565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e9061327a565b60405180910390fd5b61136081611a56565b50565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b600a5481565b6113bc828260405180602001604052806000815250611d68565b5050565b6000816113cb6115c5565b111580156113da575060005482105b8015611418575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000919050565b6000600d60009054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611479573d6000803e3d6000fd5b6000603a5250565b600061148c82610e2c565b90508073ffffffffffffffffffffffffffffffffffffffff166114ad611e05565b73ffffffffffffffffffffffffffffffffffffffff1614611510576114d9816114d4611e05565b61124c565b61150f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006115d58261198a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461163c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061164884611e0d565b9150915061165e8187611659611e05565b611e34565b6116aa576116738661166e611e05565b61124c565b6116a9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611710576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61171d8686866001611e78565b801561172857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506117f6856117d2888887611e7e565b7c020000000000000000000000000000000000000000000000000000000017611ea6565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361187c576000600185019050600060046000838152602001908152602001600020540361187a576000548114611879578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118e48686866001611ed1565b505050505050565b6118f4611ed7565b73ffffffffffffffffffffffffffffffffffffffff16611912610fb1565b73ffffffffffffffffffffffffffffffffffffffff1614611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195f906132e6565b60405180910390fd5b565b611985838383604051806020016040528060008152506110c7565b505050565b600080829050806119996115c5565b11611a1f57600054811015611a1e5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a1c575b60008103611a125760046000836001900393508381526020019081526020016000205490506119e8565b8092505050611a51565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611b29611e05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bd6611e05565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c1b919061240a565b60405180910390a35050565b611c32848484610b96565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c9457611c5d84848484611edf565b611c93576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060006001611ca98461202f565b01905060008167ffffffffffffffff811115611cc857611cc76126b6565b5b6040519080825280601f01601f191660200182016040528015611cfa5781602001600182028036833780820191505090505b509050600082602001820190505b600115611d5d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d5157611d50613306565b5b04945060008503611d08575b819350505050919050565b611d728383612182565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e0057600080549050600083820390505b611db26000868380600101945086611edf565b611de8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d9f578160005414611dfd57600080fd5b50505b505050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e9586868461233d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f05611e05565b8786866040518563ffffffff1660e01b8152600401611f27949392919061338a565b6020604051808303816000875af1925050508015611f6357506040513d601f19601f82011682018060405250810190611f6091906133eb565b60015b611fdc573d8060008114611f93576040519150601f19603f3d011682016040523d82523d6000602084013e611f98565b606091505b506000815103611fd4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061208d577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161208357612082613306565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106120ca576d04ee2d6d415b85acef810000000083816120c0576120bf613306565b5b0492506020810190505b662386f26fc1000083106120f957662386f26fc1000083816120ef576120ee613306565b5b0492506010810190505b6305f5e1008310612122576305f5e100838161211857612117613306565b5b0492506008810190505b612710831061214757612710838161213d5761213c613306565b5b0492506004810190505b6064831061216a57606483816121605761215f613306565b5b0492506002810190505b600a8310612179576001810190505b80915050919050565b600080549050600082036121c2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121cf6000848385611e78565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612246836122376000866000611e7e565b61224085612346565b17611ea6565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146122e757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122ac565b5060008203612322576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123386000848385611ed1565b505050565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61239f8161236a565b81146123aa57600080fd5b50565b6000813590506123bc81612396565b92915050565b6000602082840312156123d8576123d7612360565b5b60006123e6848285016123ad565b91505092915050565b60008115159050919050565b612404816123ef565b82525050565b600060208201905061241f60008301846123fb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561245f578082015181840152602081019050612444565b60008484015250505050565b6000601f19601f8301169050919050565b600061248782612425565b6124918185612430565b93506124a1818560208601612441565b6124aa8161246b565b840191505092915050565b600060208201905081810360008301526124cf818461247c565b905092915050565b6000819050919050565b6124ea816124d7565b81146124f557600080fd5b50565b600081359050612507816124e1565b92915050565b60006020828403121561252357612522612360565b5b6000612531848285016124f8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125658261253a565b9050919050565b6125758161255a565b82525050565b6000602082019050612590600083018461256c565b92915050565b61259f8161255a565b81146125aa57600080fd5b50565b6000813590506125bc81612596565b92915050565b600080604083850312156125d9576125d8612360565b5b60006125e7858286016125ad565b92505060206125f8858286016124f8565b9150509250929050565b61260b816124d7565b82525050565b60006020820190506126266000830184612602565b92915050565b60008060006060848603121561264557612644612360565b5b6000612653868287016125ad565b9350506020612664868287016125ad565b9250506040612675868287016124f8565b9150509250925092565b60006020828403121561269557612694612360565b5b60006126a3848285016125ad565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126ee8261246b565b810181811067ffffffffffffffff8211171561270d5761270c6126b6565b5b80604052505050565b6000612720612356565b905061272c82826126e5565b919050565b600067ffffffffffffffff82111561274c5761274b6126b6565b5b6127558261246b565b9050602081019050919050565b82818337600083830152505050565b600061278461277f84612731565b612716565b9050828152602081018484840111156127a05761279f6126b1565b5b6127ab848285612762565b509392505050565b600082601f8301126127c8576127c76126ac565b5b81356127d8848260208601612771565b91505092915050565b6000602082840312156127f7576127f6612360565b5b600082013567ffffffffffffffff81111561281557612814612365565b5b612821848285016127b3565b91505092915050565b612833816123ef565b811461283e57600080fd5b50565b6000813590506128508161282a565b92915050565b6000806040838503121561286d5761286c612360565b5b600061287b858286016125ad565b925050602061288c85828601612841565b9150509250929050565b6000602082840312156128ac576128ab612360565b5b60006128ba84828501612841565b91505092915050565b600067ffffffffffffffff8211156128de576128dd6126b6565b5b6128e78261246b565b9050602081019050919050565b6000612907612902846128c3565b612716565b905082815260208101848484011115612923576129226126b1565b5b61292e848285612762565b509392505050565b600082601f83011261294b5761294a6126ac565b5b813561295b8482602086016128f4565b91505092915050565b6000806000806080858703121561297e5761297d612360565b5b600061298c878288016125ad565b945050602061299d878288016125ad565b93505060406129ae878288016124f8565b925050606085013567ffffffffffffffff8111156129cf576129ce612365565b5b6129db87828801612936565b91505092959194509250565b600080604083850312156129fe576129fd612360565b5b6000612a0c858286016125ad565b9250506020612a1d858286016125ad565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a6e57607f821691505b602082108103612a8157612a80612a27565b5b50919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b6000612abd600683612430565b9150612ac882612a87565b602082019050919050565b60006020820190508181036000830152612aec81612ab0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b2d826124d7565b9150612b38836124d7565b9250828201905080821115612b5057612b4f612af3565b5b92915050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000612b8c601683612430565b9150612b9782612b56565b602082019050919050565b60006020820190508181036000830152612bbb81612b7f565b9050919050565b6000612bcd826124d7565b9150612bd8836124d7565b9250828202612be6816124d7565b91508282048414831517612bfd57612bfc612af3565b5b5092915050565b6000612c0f826124d7565b9150612c1a836124d7565b9250828203905081811115612c3257612c31612af3565b5b92915050565b7f6672656520636c61696d65640000000000000000000000000000000000000000600082015250565b6000612c6e600c83612430565b9150612c7982612c38565b602082019050919050565b60006020820190508181036000830152612c9d81612c61565b9050919050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000612cda601683612430565b9150612ce582612ca4565b602082019050919050565b60006020820190508181036000830152612d0981612ccd565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d727fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d35565b612d7c8683612d35565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612db9612db4612daf846124d7565b612d94565b6124d7565b9050919050565b6000819050919050565b612dd383612d9e565b612de7612ddf82612dc0565b848454612d42565b825550505050565b600090565b612dfc612def565b612e07818484612dca565b505050565b5b81811015612e2b57612e20600082612df4565b600181019050612e0d565b5050565b601f821115612e7057612e4181612d10565b612e4a84612d25565b81016020851015612e59578190505b612e6d612e6585612d25565b830182612e0c565b50505b505050565b600082821c905092915050565b6000612e9360001984600802612e75565b1980831691505092915050565b6000612eac8383612e82565b9150826002028217905092915050565b612ec582612425565b67ffffffffffffffff811115612ede57612edd6126b6565b5b612ee88254612a56565b612ef3828285612e2f565b600060209050601f831160018114612f265760008415612f14578287015190505b612f1e8582612ea0565b865550612f86565b601f198416612f3486612d10565b60005b82811015612f5c57848901518255600182019150602085019450602081019050612f37565b86831015612f795784890151612f75601f891682612e82565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b6000612fa9600083612f8e565b9150612fb482612f99565b600082019050919050565b6000612fca82612f9c565b9150819050919050565b7f5749544844524157204641494c45442100000000000000000000000000000000600082015250565b600061300a601083612430565b915061301582612fd4565b602082019050919050565b6000602082019050818103600083015261303981612ffd565b9050919050565b7f5468617420746f6b656e20646f65736e27742065786973740000000000000000600082015250565b6000613076601883612430565b915061308182613040565b602082019050919050565b600060208201905081810360008301526130a581613069565b9050919050565b600081905092915050565b600081546130c481612a56565b6130ce81866130ac565b945060018216600081146130e957600181146130fe57613131565b60ff1983168652811515820286019350613131565b61310785612d10565b60005b838110156131295781548189015260018201915060208101905061310a565b838801955050505b50505092915050565b600061314582612425565b61314f81856130ac565b935061315f818560208601612441565b80840191505092915050565b600061317782866130b7565b9150613183828561313a565b915061318f82846130b7565b9150819050949350505050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b60006131d2601683612430565b91506131dd8261319c565b602082019050919050565b60006020820190508181036000830152613201816131c5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613264602683612430565b915061326f82613208565b604082019050919050565b6000602082019050818103600083015261329381613257565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132d0602083612430565b91506132db8261329a565b602082019050919050565b600060208201905081810360008301526132ff816132c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061335c82613335565b6133668185613340565b9350613376818560208601612441565b61337f8161246b565b840191505092915050565b600060808201905061339f600083018761256c565b6133ac602083018661256c565b6133b96040830185612602565b81810360608301526133cb8184613351565b905095945050505050565b6000815190506133e581612396565b92915050565b60006020828403121561340157613400612360565b5b600061340f848285016133d6565b9150509291505056fea2646970667358221220f979135ce2fc7225a706060f54c280c9ddbd41c7b8ed98e44a26105d1aa21a5564736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656965776e6e797464357237356936637334766c64346d3464366c3775323774706b64613434336b336c6435726b7074356f706863342f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636b09f3831161010d578063b7c0b8e8116100a0578063e985e9c51161006f578063e985e9c514610684578063f2fde38b146106c1578063f851a440146106ea578063fb796e6c14610715578063fb98525114610740576101ee565b8063b7c0b8e8146105d9578063b88d4fde14610602578063c87b56dd1461061e578063e58306f91461065b576101ee565b806377f9e514116100dc57806377f9e5141461052f5780638da5cb5b1461055a57806395d89b4114610585578063a22cb465146105b0576101ee565b80636b09f383146104855780636c0360eb146104b057806370a08231146104db578063715018a614610518576101ee565b80632a9db45b116101855780635503a0e8116101545780635503a0e8146103dd57806355f804b3146104085780635fd8c710146104315780636352211e14610448576101ee565b80632a9db45b1461032e57806332cb6b0c1461035957806342842e0e1461038457806348360a14146103a0576101ee565b8063095ea7b3116101c1578063095ea7b3146102b457806318160ddd146102d057806323b872dd146102fb57806329f15a4814610317576101ee565b806301ffc9a7146101f357806306fdde0314610230578063078837031461025b578063081812fc14610277575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906123c2565b61076b565b604051610227919061240a565b60405180910390f35b34801561023c57600080fd5b506102456107fd565b60405161025291906124b5565b60405180910390f35b6102756004803603810190610270919061250d565b61088f565b005b34801561028357600080fd5b5061029e6004803603810190610299919061250d565b610acb565b6040516102ab919061257b565b60405180910390f35b6102ce60048036038101906102c991906125c2565b610b4a565b005b3480156102dc57600080fd5b506102e5610b7f565b6040516102f29190612611565b60405180910390f35b6103156004803603810190610310919061262c565b610b96565b005b34801561032357600080fd5b5061032c610c01565b005b34801561033a57600080fd5b50610343610c35565b6040516103509190612611565b60405180910390f35b34801561036557600080fd5b5061036e610c3b565b60405161037b9190612611565b60405180910390f35b61039e6004803603810190610399919061262c565b610c41565b005b3480156103ac57600080fd5b506103c760048036038101906103c2919061267f565b610cac565b6040516103d4919061240a565b60405180910390f35b3480156103e957600080fd5b506103f2610ccc565b6040516103ff91906124b5565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a91906127e1565b610d5a565b005b34801561043d57600080fd5b50610446610d75565b005b34801561045457600080fd5b5061046f600480360381019061046a919061250d565b610e2c565b60405161047c919061257b565b60405180910390f35b34801561049157600080fd5b5061049a610e3e565b6040516104a79190612611565b60405180910390f35b3480156104bc57600080fd5b506104c5610e44565b6040516104d291906124b5565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd919061267f565b610ed2565b60405161050f9190612611565b60405180910390f35b34801561052457600080fd5b5061052d610f8a565b005b34801561053b57600080fd5b50610544610f9e565b604051610551919061240a565b60405180910390f35b34801561056657600080fd5b5061056f610fb1565b60405161057c919061257b565b60405180910390f35b34801561059157600080fd5b5061059a610fdb565b6040516105a791906124b5565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190612856565b61106d565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190612896565b6110a2565b005b61061c60048036038101906106179190612964565b6110c7565b005b34801561062a57600080fd5b506106456004803603810190610640919061250d565b611134565b60405161065291906124b5565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d91906125c2565b6111df565b005b34801561069057600080fd5b506106ab60048036038101906106a691906129e7565b61124c565b6040516106b8919061240a565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e3919061267f565b6112e0565b005b3480156106f657600080fd5b506106ff611363565b60405161070c919061257b565b60405180910390f35b34801561072157600080fd5b5061072a611389565b604051610737919061240a565b60405180910390f35b34801561074c57600080fd5b5061075561139c565b6040516107629190612611565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461080c90612a56565b80601f016020809104026020016040519081016040528092919081815260200182805461083890612a56565b80156108855780601f1061085a57610100808354040283529160200191610885565b820191906000526020600020905b81548152906001019060200180831161086857829003601f168201915b5050505050905090565b600860149054906101000a900460ff166108de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d590612ad3565b60405180910390fd5b6000811180156108ef5750600a8111155b6108f857600080fd5b60095481610904610b7f565b61090e9190612b22565b111561091957600080fd5b80600a101561095d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095490612ba2565b60405180910390fd5b60001515600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503610a1657600a54600a54826109c69190612bc2565b6109d09190612c04565b3414610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0890612c84565b60405180910390fd5b610a66565b600a5481610a249190612bc2565b3414610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c90612cf0565b60405180910390fd5b5b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ac833826113a2565b50565b6000610ad6826113c0565b610b0c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b548161141f565b610b7057610b60611426565b15610b6f57610b6e8161143d565b5b5b610b7a8383611481565b505050565b6000610b896115c5565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bf057610bd33361141f565b610bef57610bdf611426565b15610bee57610bed3361143d565b5b5b5b610bfb8484846115ca565b50505050565b610c096118ec565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b600c5481565b60095481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c9b57610c7e3361141f565b610c9a57610c8a611426565b15610c9957610c983361143d565b5b5b5b610ca684848461196a565b50505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b600f8054610cd990612a56565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0590612a56565b8015610d525780601f10610d2757610100808354040283529160200191610d52565b820191906000526020600020905b815481529060010190602001808311610d3557829003601f168201915b505050505081565b610d626118ec565b8060109081610d719190612ebc565b5050565b610d7d6118ec565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610da390612fbf565b60006040518083038185875af1925050503d8060008114610de0576040519150601f19603f3d011682016040523d82523d6000602084013e610de5565b606091505b5050905080610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090613020565b60405180910390fd5b50565b6000610e378261198a565b9050919050565b600b5481565b60108054610e5190612a56565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7d90612a56565b8015610eca5780601f10610e9f57610100808354040283529160200191610eca565b820191906000526020600020905b815481529060010190602001808311610ead57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f39576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f926118ec565b610f9c6000611a56565b565b600860149054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fea90612a56565b80601f016020809104026020016040519081016040528092919081815260200182805461101690612a56565b80156110635780601f1061103857610100808354040283529160200191611063565b820191906000526020600020905b81548152906001019060200180831161104657829003601f168201915b5050505050905090565b816110778161141f565b61109357611083611426565b15611092576110918161143d565b5b5b61109d8383611b1c565b505050565b6110aa6118ec565b80600d60006101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611121576111043361141f565b61112057611110611426565b1561111f5761111e3361143d565b5b5b5b61112d85858585611c27565b5050505050565b606061113f826113c0565b61117e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111759061308c565b60405180910390fd5b60006010805461118d90612a56565b9050116111a957604051806020016040528060008152506111d8565b60106111b483611c9a565b600f6040516020016111c89392919061316b565b6040516020818303038152906040525b9050919050565b6111e76118ec565b600954816111f3610b7f565b6111fd9190612b22565b111561123e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611235906131e8565b60405180910390fd5b61124882826113a2565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112e86118ec565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e9061327a565b60405180910390fd5b61136081611a56565b50565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b600a5481565b6113bc828260405180602001604052806000815250611d68565b5050565b6000816113cb6115c5565b111580156113da575060005482105b8015611418575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000919050565b6000600d60009054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611479573d6000803e3d6000fd5b6000603a5250565b600061148c82610e2c565b90508073ffffffffffffffffffffffffffffffffffffffff166114ad611e05565b73ffffffffffffffffffffffffffffffffffffffff1614611510576114d9816114d4611e05565b61124c565b61150f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006115d58261198a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461163c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061164884611e0d565b9150915061165e8187611659611e05565b611e34565b6116aa576116738661166e611e05565b61124c565b6116a9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611710576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61171d8686866001611e78565b801561172857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506117f6856117d2888887611e7e565b7c020000000000000000000000000000000000000000000000000000000017611ea6565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361187c576000600185019050600060046000838152602001908152602001600020540361187a576000548114611879578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118e48686866001611ed1565b505050505050565b6118f4611ed7565b73ffffffffffffffffffffffffffffffffffffffff16611912610fb1565b73ffffffffffffffffffffffffffffffffffffffff1614611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195f906132e6565b60405180910390fd5b565b611985838383604051806020016040528060008152506110c7565b505050565b600080829050806119996115c5565b11611a1f57600054811015611a1e5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a1c575b60008103611a125760046000836001900393508381526020019081526020016000205490506119e8565b8092505050611a51565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611b29611e05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bd6611e05565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c1b919061240a565b60405180910390a35050565b611c32848484610b96565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c9457611c5d84848484611edf565b611c93576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060006001611ca98461202f565b01905060008167ffffffffffffffff811115611cc857611cc76126b6565b5b6040519080825280601f01601f191660200182016040528015611cfa5781602001600182028036833780820191505090505b509050600082602001820190505b600115611d5d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d5157611d50613306565b5b04945060008503611d08575b819350505050919050565b611d728383612182565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e0057600080549050600083820390505b611db26000868380600101945086611edf565b611de8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d9f578160005414611dfd57600080fd5b50505b505050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e9586868461233d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f05611e05565b8786866040518563ffffffff1660e01b8152600401611f27949392919061338a565b6020604051808303816000875af1925050508015611f6357506040513d601f19601f82011682018060405250810190611f6091906133eb565b60015b611fdc573d8060008114611f93576040519150601f19603f3d011682016040523d82523d6000602084013e611f98565b606091505b506000815103611fd4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061208d577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161208357612082613306565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106120ca576d04ee2d6d415b85acef810000000083816120c0576120bf613306565b5b0492506020810190505b662386f26fc1000083106120f957662386f26fc1000083816120ef576120ee613306565b5b0492506010810190505b6305f5e1008310612122576305f5e100838161211857612117613306565b5b0492506008810190505b612710831061214757612710838161213d5761213c613306565b5b0492506004810190505b6064831061216a57606483816121605761215f613306565b5b0492506002810190505b600a8310612179576001810190505b80915050919050565b600080549050600082036121c2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121cf6000848385611e78565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612246836122376000866000611e7e565b61224085612346565b17611ea6565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146122e757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122ac565b5060008203612322576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123386000848385611ed1565b505050565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61239f8161236a565b81146123aa57600080fd5b50565b6000813590506123bc81612396565b92915050565b6000602082840312156123d8576123d7612360565b5b60006123e6848285016123ad565b91505092915050565b60008115159050919050565b612404816123ef565b82525050565b600060208201905061241f60008301846123fb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561245f578082015181840152602081019050612444565b60008484015250505050565b6000601f19601f8301169050919050565b600061248782612425565b6124918185612430565b93506124a1818560208601612441565b6124aa8161246b565b840191505092915050565b600060208201905081810360008301526124cf818461247c565b905092915050565b6000819050919050565b6124ea816124d7565b81146124f557600080fd5b50565b600081359050612507816124e1565b92915050565b60006020828403121561252357612522612360565b5b6000612531848285016124f8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125658261253a565b9050919050565b6125758161255a565b82525050565b6000602082019050612590600083018461256c565b92915050565b61259f8161255a565b81146125aa57600080fd5b50565b6000813590506125bc81612596565b92915050565b600080604083850312156125d9576125d8612360565b5b60006125e7858286016125ad565b92505060206125f8858286016124f8565b9150509250929050565b61260b816124d7565b82525050565b60006020820190506126266000830184612602565b92915050565b60008060006060848603121561264557612644612360565b5b6000612653868287016125ad565b9350506020612664868287016125ad565b9250506040612675868287016124f8565b9150509250925092565b60006020828403121561269557612694612360565b5b60006126a3848285016125ad565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126ee8261246b565b810181811067ffffffffffffffff8211171561270d5761270c6126b6565b5b80604052505050565b6000612720612356565b905061272c82826126e5565b919050565b600067ffffffffffffffff82111561274c5761274b6126b6565b5b6127558261246b565b9050602081019050919050565b82818337600083830152505050565b600061278461277f84612731565b612716565b9050828152602081018484840111156127a05761279f6126b1565b5b6127ab848285612762565b509392505050565b600082601f8301126127c8576127c76126ac565b5b81356127d8848260208601612771565b91505092915050565b6000602082840312156127f7576127f6612360565b5b600082013567ffffffffffffffff81111561281557612814612365565b5b612821848285016127b3565b91505092915050565b612833816123ef565b811461283e57600080fd5b50565b6000813590506128508161282a565b92915050565b6000806040838503121561286d5761286c612360565b5b600061287b858286016125ad565b925050602061288c85828601612841565b9150509250929050565b6000602082840312156128ac576128ab612360565b5b60006128ba84828501612841565b91505092915050565b600067ffffffffffffffff8211156128de576128dd6126b6565b5b6128e78261246b565b9050602081019050919050565b6000612907612902846128c3565b612716565b905082815260208101848484011115612923576129226126b1565b5b61292e848285612762565b509392505050565b600082601f83011261294b5761294a6126ac565b5b813561295b8482602086016128f4565b91505092915050565b6000806000806080858703121561297e5761297d612360565b5b600061298c878288016125ad565b945050602061299d878288016125ad565b93505060406129ae878288016124f8565b925050606085013567ffffffffffffffff8111156129cf576129ce612365565b5b6129db87828801612936565b91505092959194509250565b600080604083850312156129fe576129fd612360565b5b6000612a0c858286016125ad565b9250506020612a1d858286016125ad565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a6e57607f821691505b602082108103612a8157612a80612a27565b5b50919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b6000612abd600683612430565b9150612ac882612a87565b602082019050919050565b60006020820190508181036000830152612aec81612ab0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b2d826124d7565b9150612b38836124d7565b9250828201905080821115612b5057612b4f612af3565b5b92915050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000612b8c601683612430565b9150612b9782612b56565b602082019050919050565b60006020820190508181036000830152612bbb81612b7f565b9050919050565b6000612bcd826124d7565b9150612bd8836124d7565b9250828202612be6816124d7565b91508282048414831517612bfd57612bfc612af3565b5b5092915050565b6000612c0f826124d7565b9150612c1a836124d7565b9250828203905081811115612c3257612c31612af3565b5b92915050565b7f6672656520636c61696d65640000000000000000000000000000000000000000600082015250565b6000612c6e600c83612430565b9150612c7982612c38565b602082019050919050565b60006020820190508181036000830152612c9d81612c61565b9050919050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000612cda601683612430565b9150612ce582612ca4565b602082019050919050565b60006020820190508181036000830152612d0981612ccd565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d727fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d35565b612d7c8683612d35565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612db9612db4612daf846124d7565b612d94565b6124d7565b9050919050565b6000819050919050565b612dd383612d9e565b612de7612ddf82612dc0565b848454612d42565b825550505050565b600090565b612dfc612def565b612e07818484612dca565b505050565b5b81811015612e2b57612e20600082612df4565b600181019050612e0d565b5050565b601f821115612e7057612e4181612d10565b612e4a84612d25565b81016020851015612e59578190505b612e6d612e6585612d25565b830182612e0c565b50505b505050565b600082821c905092915050565b6000612e9360001984600802612e75565b1980831691505092915050565b6000612eac8383612e82565b9150826002028217905092915050565b612ec582612425565b67ffffffffffffffff811115612ede57612edd6126b6565b5b612ee88254612a56565b612ef3828285612e2f565b600060209050601f831160018114612f265760008415612f14578287015190505b612f1e8582612ea0565b865550612f86565b601f198416612f3486612d10565b60005b82811015612f5c57848901518255600182019150602085019450602081019050612f37565b86831015612f795784890151612f75601f891682612e82565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b6000612fa9600083612f8e565b9150612fb482612f99565b600082019050919050565b6000612fca82612f9c565b9150819050919050565b7f5749544844524157204641494c45442100000000000000000000000000000000600082015250565b600061300a601083612430565b915061301582612fd4565b602082019050919050565b6000602082019050818103600083015261303981612ffd565b9050919050565b7f5468617420746f6b656e20646f65736e27742065786973740000000000000000600082015250565b6000613076601883612430565b915061308182613040565b602082019050919050565b600060208201905081810360008301526130a581613069565b9050919050565b600081905092915050565b600081546130c481612a56565b6130ce81866130ac565b945060018216600081146130e957600181146130fe57613131565b60ff1983168652811515820286019350613131565b61310785612d10565b60005b838110156131295781548189015260018201915060208101905061310a565b838801955050505b50505092915050565b600061314582612425565b61314f81856130ac565b935061315f818560208601612441565b80840191505092915050565b600061317782866130b7565b9150613183828561313a565b915061318f82846130b7565b9150819050949350505050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b60006131d2601683612430565b91506131dd8261319c565b602082019050919050565b60006020820190508181036000830152613201816131c5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613264602683612430565b915061326f82613208565b604082019050919050565b6000602082019050818103600083015261329381613257565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132d0602083612430565b91506132db8261329a565b602082019050919050565b600060208201905081810360008301526132ff816132c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061335c82613335565b6133668185613340565b9350613376818560208601612441565b61337f8161246b565b840191505092915050565b600060808201905061339f600083018761256c565b6133ac602083018661256c565b6133b96040830185612602565b81810360608301526133cb8184613351565b905095945050505050565b6000815190506133e581612396565b92915050565b60006020828403121561340157613400612360565b5b600061340f848285016133d6565b9150509291505056fea2646970667358221220f979135ce2fc7225a706060f54c280c9ddbd41c7b8ed98e44a26105d1aa21a5564736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656965776e6e797464357237356936637334766c64346d3464366c3775323774706b64613434336b336c6435726b7074356f706863342f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI_ (string): ipfs://bafybeiewnnytd5r75i6cs4vld4m4d6l7u27tpkda443k3ld5rkpt5ophc4/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f6261667962656965776e6e797464357237356936637334766c
Arg [3] : 64346d3464366c3775323774706b64613434336b336c6435726b7074356f7068
Arg [4] : 63342f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

76632:4051:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39392:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40294:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77840:594;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46785:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77543:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36045:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78631:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77754:78;;;;;;;;;;;;;:::i;:::-;;76873:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76746:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78844:213;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76962:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77011:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79746:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80500:180;;;;;;;;;;;;;:::i;:::-;;41687:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76832:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77051:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37229:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75199:103;;;;;;;;;;;;;:::i;:::-;;76711:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74551:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40470:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77334:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79320:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79065:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79854:503;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78440:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47734:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75457:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77084:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76917:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76785:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39392:639;39477:4;39816:10;39801:25;;:11;:25;;;;:102;;;;39893:10;39878:25;;:11;:25;;;;39801:102;:179;;;;39970:10;39955:25;;:11;:25;;;;39801:179;39781:199;;39392:639;;;:::o;40294:100::-;40348:13;40381:5;40374:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40294:100;:::o;77840:594::-;77907:8;;;;;;;;;;;77899:27;;;;;;;;;;;;:::i;:::-;;;;;;;;;77957:1;77945:9;:13;:32;;;;;77975:2;77962:9;:15;;77945:32;77937:41;;;;;;78026:10;;78013:9;77997:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;77989:48;;;;;;78062:9;78056:2;:15;;78048:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;78139:5;78113:31;;:10;:22;78124:10;78113:22;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;78109:235;;78206:9;;78193;;78181;:21;;;;:::i;:::-;78180:35;;;;:::i;:::-;78166:9;:50;78158:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;78109:235;;;78296:9;;78284;:21;;;;:::i;:::-;78271:9;:34;78263:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;78109:235;78379:4;78354:10;:22;78365:10;78354:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;78394:32;78404:10;78416:9;78394;:32::i;:::-;77840:594;:::o;46785:218::-;46861:7;46886:16;46894:7;46886;:16::i;:::-;46881:64;;46911:34;;;;;;;;;;;;;;46881:64;46965:15;:24;46981:7;46965:24;;;;;;;;;;;:30;;;;;;;;;;;;46958:37;;46785:218;;;:::o;77543:190::-;77672:8;18826:29;18846:8;18826:19;:29::i;:::-;18821:122;;18876:27;:25;:27::i;:::-;18872:59;;;18905:26;18922:8;18905:16;:26::i;:::-;18872:59;18821:122;77693:32:::1;77707:8;77717:7;77693:13;:32::i;:::-;77543:190:::0;;;:::o;36045:323::-;36106:7;36334:15;:13;:15::i;:::-;36319:12;;36303:13;;:28;:46;36296:53;;36045:323;:::o;78631:205::-;78774:4;18469:10;18461:18;;:4;:18;;;18457:184;;18501:31;18521:10;18501:19;:31::i;:::-;18496:134;;18557:27;:25;:27::i;:::-;18553:61;;;18586:28;18603:10;18586:16;:28::i;:::-;18553:61;18496:134;18457:184;78791:37:::1;78810:4;78816:2;78820:7;78791:18;:37::i;:::-;78631:205:::0;;;;:::o;77754:78::-;74437:13;:11;:13::i;:::-;77816:8:::1;;;;;;;;;;;77815:9;77804:8;;:20;;;;;;;;;;;;;;;;;;77754:78::o:0;76873:35::-;;;;:::o;76746:32::-;;;;:::o;78844:213::-;78991:4;18469:10;18461:18;;:4;:18;;;18457:184;;18501:31;18521:10;18501:19;:31::i;:::-;18496:134;;18557:27;:25;:27::i;:::-;18553:61;;;18586:28;18603:10;18586:16;:28::i;:::-;18553:61;18496:134;18457:184;79008:41:::1;79031:4;79037:2;79041:7;79008:22;:41::i;:::-;78844:213:::0;;;;:::o;76962:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;77011:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;79746:102::-;74437:13;:11;:13::i;:::-;79830:10:::1;79820:7;:20;;;;;;:::i;:::-;;79746:102:::0;:::o;80500:180::-;74437:13;:11;:13::i;:::-;80558:12:::1;80576:10;:15;;80599:21;80576:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80557:68;;;80644:7;80636:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;80546:134;80500:180::o:0;41687:152::-;41759:7;41802:27;41821:7;41802:18;:27::i;:::-;41779:52;;41687:152;;;:::o;76832:34::-;;;;:::o;77051:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37229:233::-;37301:7;37342:1;37325:19;;:5;:19;;;37321:60;;37353:28;;;;;;;;;;;;;;37321:60;31388:13;37399:18;:25;37418:5;37399:25;;;;;;;;;;;;;;;;:55;37392:62;;37229:233;;;:::o;75199:103::-;74437:13;:11;:13::i;:::-;75264:30:::1;75291:1;75264:18;:30::i;:::-;75199:103::o:0;76711:28::-;;;;;;;;;;;;;:::o;74551:87::-;74597:7;74624:6;;;;;;;;;;;74617:13;;74551:87;:::o;40470:104::-;40526:13;40559:7;40552:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40470:104;:::o;77334:201::-;77463:8;18826:29;18846:8;18826:19;:29::i;:::-;18821:122;;18876:27;:25;:27::i;:::-;18872:59;;;18905:26;18922:8;18905:16;:26::i;:::-;18872:59;18821:122;77484:43:::1;77508:8;77518;77484:23;:43::i;:::-;77334:201:::0;;;:::o;79320:117::-;74437:13;:11;:13::i;:::-;79424:5:::1;79397:24;;:32;;;;;;;;;;;;;;;;;;79320:117:::0;:::o;79065:247::-;79240:4;18469:10;18461:18;;:4;:18;;;18457:184;;18501:31;18521:10;18501:19;:31::i;:::-;18496:134;;18557:27;:25;:27::i;:::-;18553:61;;;18586:28;18603:10;18586:16;:28::i;:::-;18553:61;18496:134;18457:184;79257:47:::1;79280:4;79286:2;79290:7;79299:4;79257:22;:47::i;:::-;79065:247:::0;;;;;:::o;79854:503::-;79956:13;79995:17;80003:8;79995:7;:17::i;:::-;79987:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;80096:1;80078:7;80072:21;;;;;:::i;:::-;;;:25;:277;;;;;;;;;;;;;;;;;80189:7;80223:26;80240:8;80223:16;:26::i;:::-;80276:9;80146:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80072:277;80052:297;;79854:503;;;:::o;78440:183::-;74437:13;:11;:13::i;:::-;78551:10:::1;;78538:9;78522:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;78514:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;78595:24;78605:2;78609:9;78595;:24::i;:::-;78440:183:::0;;:::o;47734:164::-;47831:4;47855:18;:25;47874:5;47855:25;;;;;;;;;;;;;;;:35;47881:8;47855:35;;;;;;;;;;;;;;;;;;;;;;;;;47848:42;;47734:164;;;;:::o;75457:201::-;74437:13;:11;:13::i;:::-;75566:1:::1;75546:22;;:8;:22;;::::0;75538:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;75622:28;75641:8;75622:18;:28::i;:::-;75457:201:::0;:::o;77084:20::-;;;;;;;;;;;;;:::o;76917:36::-;;;;;;;;;;;;;:::o;76785:38::-;;;;:::o;64296:112::-;64373:27;64383:2;64387:8;64373:27;;;;;;;;;;;;:9;:27::i;:::-;64296:112;;:::o;48156:282::-;48221:4;48277:7;48258:15;:13;:15::i;:::-;:26;;:66;;;;;48311:13;;48301:7;:23;48258:66;:153;;;;;48410:1;32164:8;48362:17;:26;48380:7;48362:26;;;;;;;;;;;;:44;:49;48258:153;48238:173;;48156:282;;;:::o;20875:106::-;20944:4;20875:106;;;:::o;79445:125::-;79514:4;79538:24;;;;;;;;;;;79531:31;;79445:125;:::o;19059:1359::-;19452:22;19446:4;19439:36;19545:9;19539:4;19532:23;19620:8;19614:4;19607:22;19797:4;19791;19785;19779;19752:25;19745:5;19734:68;19724:274;;19918:16;19912:4;19906;19891:44;19966:16;19960:4;19953:30;19724:274;20398:1;20392:4;20385:15;19059:1359;:::o;46218:408::-;46307:13;46323:16;46331:7;46323;:16::i;:::-;46307:32;;46379:5;46356:28;;:19;:17;:19::i;:::-;:28;;;46352:175;;46404:44;46421:5;46428:19;:17;:19::i;:::-;46404:16;:44::i;:::-;46399:128;;46476:35;;;;;;;;;;;;;;46399:128;46352:175;46572:2;46539:15;:24;46555:7;46539:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;46610:7;46606:2;46590:28;;46599:5;46590:28;;;;;;;;;;;;46296:330;46218:408;;:::o;35561:92::-;35617:7;35561:92;:::o;50424:2825::-;50566:27;50596;50615:7;50596:18;:27::i;:::-;50566:57;;50681:4;50640:45;;50656:19;50640:45;;;50636:86;;50694:28;;;;;;;;;;;;;;50636:86;50736:27;50765:23;50792:35;50819:7;50792:26;:35::i;:::-;50735:92;;;;50927:68;50952:15;50969:4;50975:19;:17;:19::i;:::-;50927:24;:68::i;:::-;50922:180;;51015:43;51032:4;51038:19;:17;:19::i;:::-;51015:16;:43::i;:::-;51010:92;;51067:35;;;;;;;;;;;;;;51010:92;50922:180;51133:1;51119:16;;:2;:16;;;51115:52;;51144:23;;;;;;;;;;;;;;51115:52;51180:43;51202:4;51208:2;51212:7;51221:1;51180:21;:43::i;:::-;51316:15;51313:160;;;51456:1;51435:19;51428:30;51313:160;51853:18;:24;51872:4;51853:24;;;;;;;;;;;;;;;;51851:26;;;;;;;;;;;;51922:18;:22;51941:2;51922:22;;;;;;;;;;;;;;;;51920:24;;;;;;;;;;;52244:146;52281:2;52330:45;52345:4;52351:2;52355:19;52330:14;:45::i;:::-;32444:8;52302:73;52244:18;:146::i;:::-;52215:17;:26;52233:7;52215:26;;;;;;;;;;;:175;;;;52561:1;32444:8;52510:19;:47;:52;52506:627;;52583:19;52615:1;52605:7;:11;52583:33;;52772:1;52738:17;:30;52756:11;52738:30;;;;;;;;;;;;:35;52734:384;;52876:13;;52861:11;:28;52857:242;;53056:19;53023:17;:30;53041:11;53023:30;;;;;;;;;;;:52;;;;52857:242;52734:384;52564:569;52506:627;53180:7;53176:2;53161:27;;53170:4;53161:27;;;;;;;;;;;;53199:42;53220:4;53226:2;53230:7;53239:1;53199:20;:42::i;:::-;50555:2694;;;50424:2825;;;:::o;74716:132::-;74791:12;:10;:12::i;:::-;74780:23;;:7;:5;:7::i;:::-;:23;;;74772:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74716:132::o;53345:193::-;53491:39;53508:4;53514:2;53518:7;53491:39;;;;;;;;;;;;:16;:39::i;:::-;53345:193;;;:::o;42842:1275::-;42909:7;42929:12;42944:7;42929:22;;43012:4;42993:15;:13;:15::i;:::-;:23;42989:1061;;43046:13;;43039:4;:20;43035:1015;;;43084:14;43101:17;:23;43119:4;43101:23;;;;;;;;;;;;43084:40;;43218:1;32164:8;43190:6;:24;:29;43186:845;;43855:113;43872:1;43862:6;:11;43855:113;;43915:17;:25;43933:6;;;;;;;43915:25;;;;;;;;;;;;43906:34;;43855:113;;;44001:6;43994:13;;;;;;43186:845;43061:989;43035:1015;42989:1061;44078:31;;;;;;;;;;;;;;42842:1275;;;;:::o;75818:191::-;75892:16;75911:6;;;;;;;;;;;75892:25;;75937:8;75928:6;;:17;;;;;;;;;;;;;;;;;;75992:8;75961:40;;75982:8;75961:40;;;;;;;;;;;;75881:128;75818:191;:::o;47343:234::-;47490:8;47438:18;:39;47457:19;:17;:19::i;:::-;47438:39;;;;;;;;;;;;;;;:49;47478:8;47438:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;47550:8;47514:55;;47529:19;:17;:19::i;:::-;47514:55;;;47560:8;47514:55;;;;;;:::i;:::-;;;;;;;;47343:234;;:::o;54136:407::-;54311:31;54324:4;54330:2;54334:7;54311:12;:31::i;:::-;54375:1;54357:2;:14;;;:19;54353:183;;54396:56;54427:4;54433:2;54437:7;54446:5;54396:30;:56::i;:::-;54391:145;;54480:40;;;;;;;;;;;;;;54391:145;54353:183;54136:407;;;;:::o;13338:716::-;13394:13;13445:14;13482:1;13462:17;13473:5;13462:10;:17::i;:::-;:21;13445:38;;13498:20;13532:6;13521:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13498:41;;13554:11;13683:6;13679:2;13675:15;13667:6;13663:28;13656:35;;13720:288;13727:4;13720:288;;;13752:5;;;;;;;;13894:8;13889:2;13882:5;13878:14;13873:30;13868:3;13860:44;13950:2;13941:11;;;;;;:::i;:::-;;;;;13984:1;13975:5;:10;13720:288;13971:21;13720:288;14029:6;14022:13;;;;;13338:716;;;:::o;63523:689::-;63654:19;63660:2;63664:8;63654:5;:19::i;:::-;63733:1;63715:2;:14;;;:19;63711:483;;63755:11;63769:13;;63755:27;;63801:13;63823:8;63817:3;:14;63801:30;;63850:233;63881:62;63920:1;63924:2;63928:7;;;;;;63937:5;63881:30;:62::i;:::-;63876:167;;63979:40;;;;;;;;;;;;;;63876:167;64078:3;64070:5;:11;63850:233;;64165:3;64148:13;;:20;64144:34;;64170:8;;;64144:34;63736:458;;63711:483;63523:689;;;:::o;70464:105::-;70524:7;70551:10;70544:17;;70464:105;:::o;49319:485::-;49421:27;49450:23;49491:38;49532:15;:24;49548:7;49532:24;;;;;;;;;;;49491:65;;49709:18;49686:41;;49766:19;49760:26;49741:45;;49671:126;49319:485;;;:::o;48547:659::-;48696:11;48861:16;48854:5;48850:28;48841:37;;49021:16;49010:9;49006:32;48993:45;;49171:15;49160:9;49157:30;49149:5;49138:9;49135:20;49132:56;49122:66;;48547:659;;;;;:::o;55205:159::-;;;;;:::o;69773:311::-;69908:7;69928:16;32568:3;69954:19;:41;;69928:68;;32568:3;70022:31;70033:4;70039:2;70043:9;70022:10;:31::i;:::-;70014:40;;:62;;70007:69;;;69773:311;;;;;:::o;44665:450::-;44745:14;44913:16;44906:5;44902:28;44893:37;;45090:5;45076:11;45051:23;45047:41;45044:52;45037:5;45034:63;45024:73;;44665:450;;;;:::o;56029:158::-;;;;;:::o;73102:98::-;73155:7;73182:10;73175:17;;73102:98;:::o;56627:716::-;56790:4;56836:2;56811:45;;;56857:19;:17;:19::i;:::-;56878:4;56884:7;56893:5;56811:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;56807:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57111:1;57094:6;:13;:18;57090:235;;57140:40;;;;;;;;;;;;;;57090:235;57283:6;57277:13;57268:6;57264:2;57260:15;57253:38;56807:529;56980:54;;;56970:64;;;:6;:64;;;;56963:71;;;56627:716;;;;;;:::o;10204:922::-;10257:7;10277:14;10294:1;10277:18;;10344:6;10335:5;:15;10331:102;;10380:6;10371:15;;;;;;:::i;:::-;;;;;10415:2;10405:12;;;;10331:102;10460:6;10451:5;:15;10447:102;;10496:6;10487:15;;;;;;:::i;:::-;;;;;10531:2;10521:12;;;;10447:102;10576:6;10567:5;:15;10563:102;;10612:6;10603:15;;;;;;:::i;:::-;;;;;10647:2;10637:12;;;;10563:102;10692:5;10683;:14;10679:99;;10727:5;10718:14;;;;;;:::i;:::-;;;;;10761:1;10751:11;;;;10679:99;10805:5;10796;:14;10792:99;;10840:5;10831:14;;;;;;:::i;:::-;;;;;10874:1;10864:11;;;;10792:99;10918:5;10909;:14;10905:99;;10953:5;10944:14;;;;;;:::i;:::-;;;;;10987:1;10977:11;;;;10905:99;11031:5;11022;:14;11018:66;;11067:1;11057:11;;;;11018:66;11112:6;11105:13;;;10204:922;;;:::o;57805:2966::-;57878:20;57901:13;;57878:36;;57941:1;57929:8;:13;57925:44;;57951:18;;;;;;;;;;;;;;57925:44;57982:61;58012:1;58016:2;58020:12;58034:8;57982:21;:61::i;:::-;58526:1;31526:2;58496:1;:26;;58495:32;58483:8;:45;58457:18;:22;58476:2;58457:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;58805:139;58842:2;58896:33;58919:1;58923:2;58927:1;58896:14;:33::i;:::-;58863:30;58884:8;58863:20;:30::i;:::-;:66;58805:18;:139::i;:::-;58771:17;:31;58789:12;58771:31;;;;;;;;;;;:173;;;;58961:16;58992:11;59021:8;59006:12;:23;58992:37;;59542:16;59538:2;59534:25;59522:37;;59914:12;59874:8;59833:1;59771:25;59712:1;59651;59624:335;60285:1;60271:12;60267:20;60225:346;60326:3;60317:7;60314:16;60225:346;;60544:7;60534:8;60531:1;60504:25;60501:1;60498;60493:59;60379:1;60370:7;60366:15;60355:26;;60225:346;;;60229:77;60616:1;60604:8;:13;60600:45;;60626:19;;;;;;;;;;;;;;60600:45;60678:3;60662:13;:19;;;;58231:2462;;60703:60;60732:1;60736:2;60740:12;60754:8;60703:20;:60::i;:::-;57867:2904;57805:2966;;:::o;69474:147::-;69611:6;69474:147;;;;;:::o;45217:324::-;45287:14;45520:1;45510:8;45507:15;45481:24;45477:46;45467:56;;45217:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:180;6496:77;6493:1;6486:88;6593:4;6590:1;6583:15;6617:4;6614:1;6607:15;6634:281;6717:27;6739:4;6717:27;:::i;:::-;6709:6;6705:40;6847:6;6835:10;6832:22;6811:18;6799:10;6796:34;6793:62;6790:88;;;6858:18;;:::i;:::-;6790:88;6898:10;6894:2;6887:22;6677:238;6634:281;;:::o;6921:129::-;6955:6;6982:20;;:::i;:::-;6972:30;;7011:33;7039:4;7031:6;7011:33;:::i;:::-;6921:129;;;:::o;7056:308::-;7118:4;7208:18;7200:6;7197:30;7194:56;;;7230:18;;:::i;:::-;7194:56;7268:29;7290:6;7268:29;:::i;:::-;7260:37;;7352:4;7346;7342:15;7334:23;;7056:308;;;:::o;7370:146::-;7467:6;7462:3;7457;7444:30;7508:1;7499:6;7494:3;7490:16;7483:27;7370:146;;;:::o;7522:425::-;7600:5;7625:66;7641:49;7683:6;7641:49;:::i;:::-;7625:66;:::i;:::-;7616:75;;7714:6;7707:5;7700:21;7752:4;7745:5;7741:16;7790:3;7781:6;7776:3;7772:16;7769:25;7766:112;;;7797:79;;:::i;:::-;7766:112;7887:54;7934:6;7929:3;7924;7887:54;:::i;:::-;7606:341;7522:425;;;;;:::o;7967:340::-;8023:5;8072:3;8065:4;8057:6;8053:17;8049:27;8039:122;;8080:79;;:::i;:::-;8039:122;8197:6;8184:20;8222:79;8297:3;8289:6;8282:4;8274:6;8270:17;8222:79;:::i;:::-;8213:88;;8029:278;7967:340;;;;:::o;8313:509::-;8382:6;8431:2;8419:9;8410:7;8406:23;8402:32;8399:119;;;8437:79;;:::i;:::-;8399:119;8585:1;8574:9;8570:17;8557:31;8615:18;8607:6;8604:30;8601:117;;;8637:79;;:::i;:::-;8601:117;8742:63;8797:7;8788:6;8777:9;8773:22;8742:63;:::i;:::-;8732:73;;8528:287;8313:509;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:323::-;9619:6;9668:2;9656:9;9647:7;9643:23;9639:32;9636:119;;;9674:79;;:::i;:::-;9636:119;9794:1;9819:50;9861:7;9852:6;9841:9;9837:22;9819:50;:::i;:::-;9809:60;;9765:114;9563:323;;;;:::o;9892:307::-;9953:4;10043:18;10035:6;10032:30;10029:56;;;10065:18;;:::i;:::-;10029:56;10103:29;10125:6;10103:29;:::i;:::-;10095:37;;10187:4;10181;10177:15;10169:23;;9892:307;;;:::o;10205:423::-;10282:5;10307:65;10323:48;10364:6;10323:48;:::i;:::-;10307:65;:::i;:::-;10298:74;;10395:6;10388:5;10381:21;10433:4;10426:5;10422:16;10471:3;10462:6;10457:3;10453:16;10450:25;10447:112;;;10478:79;;:::i;:::-;10447:112;10568:54;10615:6;10610:3;10605;10568:54;:::i;:::-;10288:340;10205:423;;;;;:::o;10647:338::-;10702:5;10751:3;10744:4;10736:6;10732:17;10728:27;10718:122;;10759:79;;:::i;:::-;10718:122;10876:6;10863:20;10901:78;10975:3;10967:6;10960:4;10952:6;10948:17;10901:78;:::i;:::-;10892:87;;10708:277;10647:338;;;;:::o;10991:943::-;11086:6;11094;11102;11110;11159:3;11147:9;11138:7;11134:23;11130:33;11127:120;;;11166:79;;:::i;:::-;11127:120;11286:1;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11257:117;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11541:2;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11512:118;11697:2;11686:9;11682:18;11669:32;11728:18;11720:6;11717:30;11714:117;;;11750:79;;:::i;:::-;11714:117;11855:62;11909:7;11900:6;11889:9;11885:22;11855:62;:::i;:::-;11845:72;;11640:287;10991:943;;;;;;;:::o;11940:474::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12289:118;11940:474;;;;;:::o;12420:180::-;12468:77;12465:1;12458:88;12565:4;12562:1;12555:15;12589:4;12586:1;12579:15;12606:320;12650:6;12687:1;12681:4;12677:12;12667:22;;12734:1;12728:4;12724:12;12755:18;12745:81;;12811:4;12803:6;12799:17;12789:27;;12745:81;12873:2;12865:6;12862:14;12842:18;12839:38;12836:84;;12892:18;;:::i;:::-;12836:84;12657:269;12606:320;;;:::o;12932:156::-;13072:8;13068:1;13060:6;13056:14;13049:32;12932:156;:::o;13094:365::-;13236:3;13257:66;13321:1;13316:3;13257:66;:::i;:::-;13250:73;;13332:93;13421:3;13332:93;:::i;:::-;13450:2;13445:3;13441:12;13434:19;;13094:365;;;:::o;13465:419::-;13631:4;13669:2;13658:9;13654:18;13646:26;;13718:9;13712:4;13708:20;13704:1;13693:9;13689:17;13682:47;13746:131;13872:4;13746:131;:::i;:::-;13738:139;;13465:419;;;:::o;13890:180::-;13938:77;13935:1;13928:88;14035:4;14032:1;14025:15;14059:4;14056:1;14049:15;14076:191;14116:3;14135:20;14153:1;14135:20;:::i;:::-;14130:25;;14169:20;14187:1;14169:20;:::i;:::-;14164:25;;14212:1;14209;14205:9;14198:16;;14233:3;14230:1;14227:10;14224:36;;;14240:18;;:::i;:::-;14224:36;14076:191;;;;:::o;14273:172::-;14413:24;14409:1;14401:6;14397:14;14390:48;14273:172;:::o;14451:366::-;14593:3;14614:67;14678:2;14673:3;14614:67;:::i;:::-;14607:74;;14690:93;14779:3;14690:93;:::i;:::-;14808:2;14803:3;14799:12;14792:19;;14451:366;;;:::o;14823:419::-;14989:4;15027:2;15016:9;15012:18;15004:26;;15076:9;15070:4;15066:20;15062:1;15051:9;15047:17;15040:47;15104:131;15230:4;15104:131;:::i;:::-;15096:139;;14823:419;;;:::o;15248:410::-;15288:7;15311:20;15329:1;15311:20;:::i;:::-;15306:25;;15345:20;15363:1;15345:20;:::i;:::-;15340:25;;15400:1;15397;15393:9;15422:30;15440:11;15422:30;:::i;:::-;15411:41;;15601:1;15592:7;15588:15;15585:1;15582:22;15562:1;15555:9;15535:83;15512:139;;15631:18;;:::i;:::-;15512:139;15296:362;15248:410;;;;:::o;15664:194::-;15704:4;15724:20;15742:1;15724:20;:::i;:::-;15719:25;;15758:20;15776:1;15758:20;:::i;:::-;15753:25;;15802:1;15799;15795:9;15787:17;;15826:1;15820:4;15817:11;15814:37;;;15831:18;;:::i;:::-;15814:37;15664:194;;;;:::o;15864:162::-;16004:14;16000:1;15992:6;15988:14;15981:38;15864:162;:::o;16032:366::-;16174:3;16195:67;16259:2;16254:3;16195:67;:::i;:::-;16188:74;;16271:93;16360:3;16271:93;:::i;:::-;16389:2;16384:3;16380:12;16373:19;;16032:366;;;:::o;16404:419::-;16570:4;16608:2;16597:9;16593:18;16585:26;;16657:9;16651:4;16647:20;16643:1;16632:9;16628:17;16621:47;16685:131;16811:4;16685:131;:::i;:::-;16677:139;;16404:419;;;:::o;16829:172::-;16969:24;16965:1;16957:6;16953:14;16946:48;16829:172;:::o;17007:366::-;17149:3;17170:67;17234:2;17229:3;17170:67;:::i;:::-;17163:74;;17246:93;17335:3;17246:93;:::i;:::-;17364:2;17359:3;17355:12;17348:19;;17007:366;;;:::o;17379:419::-;17545:4;17583:2;17572:9;17568:18;17560:26;;17632:9;17626:4;17622:20;17618:1;17607:9;17603:17;17596:47;17660:131;17786:4;17660:131;:::i;:::-;17652:139;;17379:419;;;:::o;17804:141::-;17853:4;17876:3;17868:11;;17899:3;17896:1;17889:14;17933:4;17930:1;17920:18;17912:26;;17804:141;;;:::o;17951:93::-;17988:6;18035:2;18030;18023:5;18019:14;18015:23;18005:33;;17951:93;;;:::o;18050:107::-;18094:8;18144:5;18138:4;18134:16;18113:37;;18050:107;;;;:::o;18163:393::-;18232:6;18282:1;18270:10;18266:18;18305:97;18335:66;18324:9;18305:97;:::i;:::-;18423:39;18453:8;18442:9;18423:39;:::i;:::-;18411:51;;18495:4;18491:9;18484:5;18480:21;18471:30;;18544:4;18534:8;18530:19;18523:5;18520:30;18510:40;;18239:317;;18163:393;;;;;:::o;18562:60::-;18590:3;18611:5;18604:12;;18562:60;;;:::o;18628:142::-;18678:9;18711:53;18729:34;18738:24;18756:5;18738:24;:::i;:::-;18729:34;:::i;:::-;18711:53;:::i;:::-;18698:66;;18628:142;;;:::o;18776:75::-;18819:3;18840:5;18833:12;;18776:75;;;:::o;18857:269::-;18967:39;18998:7;18967:39;:::i;:::-;19028:91;19077:41;19101:16;19077:41;:::i;:::-;19069:6;19062:4;19056:11;19028:91;:::i;:::-;19022:4;19015:105;18933:193;18857:269;;;:::o;19132:73::-;19177:3;19132:73;:::o;19211:189::-;19288:32;;:::i;:::-;19329:65;19387:6;19379;19373:4;19329:65;:::i;:::-;19264:136;19211:189;;:::o;19406:186::-;19466:120;19483:3;19476:5;19473:14;19466:120;;;19537:39;19574:1;19567:5;19537:39;:::i;:::-;19510:1;19503:5;19499:13;19490:22;;19466:120;;;19406:186;;:::o;19598:543::-;19699:2;19694:3;19691:11;19688:446;;;19733:38;19765:5;19733:38;:::i;:::-;19817:29;19835:10;19817:29;:::i;:::-;19807:8;19803:44;20000:2;19988:10;19985:18;19982:49;;;20021:8;20006:23;;19982:49;20044:80;20100:22;20118:3;20100:22;:::i;:::-;20090:8;20086:37;20073:11;20044:80;:::i;:::-;19703:431;;19688:446;19598:543;;;:::o;20147:117::-;20201:8;20251:5;20245:4;20241:16;20220:37;;20147:117;;;;:::o;20270:169::-;20314:6;20347:51;20395:1;20391:6;20383:5;20380:1;20376:13;20347:51;:::i;:::-;20343:56;20428:4;20422;20418:15;20408:25;;20321:118;20270:169;;;;:::o;20444:295::-;20520:4;20666:29;20691:3;20685:4;20666:29;:::i;:::-;20658:37;;20728:3;20725:1;20721:11;20715:4;20712:21;20704:29;;20444:295;;;;:::o;20744:1395::-;20861:37;20894:3;20861:37;:::i;:::-;20963:18;20955:6;20952:30;20949:56;;;20985:18;;:::i;:::-;20949:56;21029:38;21061:4;21055:11;21029:38;:::i;:::-;21114:67;21174:6;21166;21160:4;21114:67;:::i;:::-;21208:1;21232:4;21219:17;;21264:2;21256:6;21253:14;21281:1;21276:618;;;;21938:1;21955:6;21952:77;;;22004:9;21999:3;21995:19;21989:26;21980:35;;21952:77;22055:67;22115:6;22108:5;22055:67;:::i;:::-;22049:4;22042:81;21911:222;21246:887;;21276:618;21328:4;21324:9;21316:6;21312:22;21362:37;21394:4;21362:37;:::i;:::-;21421:1;21435:208;21449:7;21446:1;21443:14;21435:208;;;21528:9;21523:3;21519:19;21513:26;21505:6;21498:42;21579:1;21571:6;21567:14;21557:24;;21626:2;21615:9;21611:18;21598:31;;21472:4;21469:1;21465:12;21460:17;;21435:208;;;21671:6;21662:7;21659:19;21656:179;;;21729:9;21724:3;21720:19;21714:26;21772:48;21814:4;21806:6;21802:17;21791:9;21772:48;:::i;:::-;21764:6;21757:64;21679:156;21656:179;21881:1;21877;21869:6;21865:14;21861:22;21855:4;21848:36;21283:611;;;21246:887;;20836:1303;;;20744:1395;;:::o;22145:147::-;22246:11;22283:3;22268:18;;22145:147;;;;:::o;22298:114::-;;:::o;22418:398::-;22577:3;22598:83;22679:1;22674:3;22598:83;:::i;:::-;22591:90;;22690:93;22779:3;22690:93;:::i;:::-;22808:1;22803:3;22799:11;22792:18;;22418:398;;;:::o;22822:379::-;23006:3;23028:147;23171:3;23028:147;:::i;:::-;23021:154;;23192:3;23185:10;;22822:379;;;:::o;23207:166::-;23347:18;23343:1;23335:6;23331:14;23324:42;23207:166;:::o;23379:366::-;23521:3;23542:67;23606:2;23601:3;23542:67;:::i;:::-;23535:74;;23618:93;23707:3;23618:93;:::i;:::-;23736:2;23731:3;23727:12;23720:19;;23379:366;;;:::o;23751:419::-;23917:4;23955:2;23944:9;23940:18;23932:26;;24004:9;23998:4;23994:20;23990:1;23979:9;23975:17;23968:47;24032:131;24158:4;24032:131;:::i;:::-;24024:139;;23751:419;;;:::o;24176:174::-;24316:26;24312:1;24304:6;24300:14;24293:50;24176:174;:::o;24356:366::-;24498:3;24519:67;24583:2;24578:3;24519:67;:::i;:::-;24512:74;;24595:93;24684:3;24595:93;:::i;:::-;24713:2;24708:3;24704:12;24697:19;;24356:366;;;:::o;24728:419::-;24894:4;24932:2;24921:9;24917:18;24909:26;;24981:9;24975:4;24971:20;24967:1;24956:9;24952:17;24945:47;25009:131;25135:4;25009:131;:::i;:::-;25001:139;;24728:419;;;:::o;25153:148::-;25255:11;25292:3;25277:18;;25153:148;;;;:::o;25331:874::-;25434:3;25471:5;25465:12;25500:36;25526:9;25500:36;:::i;:::-;25552:89;25634:6;25629:3;25552:89;:::i;:::-;25545:96;;25672:1;25661:9;25657:17;25688:1;25683:166;;;;25863:1;25858:341;;;;25650:549;;25683:166;25767:4;25763:9;25752;25748:25;25743:3;25736:38;25829:6;25822:14;25815:22;25807:6;25803:35;25798:3;25794:45;25787:52;;25683:166;;25858:341;25925:38;25957:5;25925:38;:::i;:::-;25985:1;25999:154;26013:6;26010:1;26007:13;25999:154;;;26087:7;26081:14;26077:1;26072:3;26068:11;26061:35;26137:1;26128:7;26124:15;26113:26;;26035:4;26032:1;26028:12;26023:17;;25999:154;;;26182:6;26177:3;26173:16;26166:23;;25865:334;;25650:549;;25438:767;;25331:874;;;;:::o;26211:390::-;26317:3;26345:39;26378:5;26345:39;:::i;:::-;26400:89;26482:6;26477:3;26400:89;:::i;:::-;26393:96;;26498:65;26556:6;26551:3;26544:4;26537:5;26533:16;26498:65;:::i;:::-;26588:6;26583:3;26579:16;26572:23;;26321:280;26211:390;;;;:::o;26607:583::-;26829:3;26851:92;26939:3;26930:6;26851:92;:::i;:::-;26844:99;;26960:95;27051:3;27042:6;26960:95;:::i;:::-;26953:102;;27072:92;27160:3;27151:6;27072:92;:::i;:::-;27065:99;;27181:3;27174:10;;26607:583;;;;;;:::o;27196:172::-;27336:24;27332:1;27324:6;27320:14;27313:48;27196:172;:::o;27374:366::-;27516:3;27537:67;27601:2;27596:3;27537:67;:::i;:::-;27530:74;;27613:93;27702:3;27613:93;:::i;:::-;27731:2;27726:3;27722:12;27715:19;;27374:366;;;:::o;27746:419::-;27912:4;27950:2;27939:9;27935:18;27927:26;;27999:9;27993:4;27989:20;27985:1;27974:9;27970:17;27963:47;28027:131;28153:4;28027:131;:::i;:::-;28019:139;;27746:419;;;:::o;28171:225::-;28311:34;28307:1;28299:6;28295:14;28288:58;28380:8;28375:2;28367:6;28363:15;28356:33;28171:225;:::o;28402:366::-;28544:3;28565:67;28629:2;28624:3;28565:67;:::i;:::-;28558:74;;28641:93;28730:3;28641:93;:::i;:::-;28759:2;28754:3;28750:12;28743:19;;28402:366;;;:::o;28774:419::-;28940:4;28978:2;28967:9;28963:18;28955:26;;29027:9;29021:4;29017:20;29013:1;29002:9;28998:17;28991:47;29055:131;29181:4;29055:131;:::i;:::-;29047:139;;28774:419;;;:::o;29199:182::-;29339:34;29335:1;29327:6;29323:14;29316:58;29199:182;:::o;29387:366::-;29529:3;29550:67;29614:2;29609:3;29550:67;:::i;:::-;29543:74;;29626:93;29715:3;29626:93;:::i;:::-;29744:2;29739:3;29735:12;29728:19;;29387:366;;;:::o;29759:419::-;29925:4;29963:2;29952:9;29948:18;29940:26;;30012:9;30006:4;30002:20;29998:1;29987:9;29983:17;29976:47;30040:131;30166:4;30040:131;:::i;:::-;30032:139;;29759:419;;;:::o;30184:180::-;30232:77;30229:1;30222:88;30329:4;30326:1;30319:15;30353:4;30350:1;30343:15;30370:98;30421:6;30455:5;30449:12;30439:22;;30370:98;;;:::o;30474:168::-;30557:11;30591:6;30586:3;30579:19;30631:4;30626:3;30622:14;30607:29;;30474:168;;;;:::o;30648:373::-;30734:3;30762:38;30794:5;30762:38;:::i;:::-;30816:70;30879:6;30874:3;30816:70;:::i;:::-;30809:77;;30895:65;30953:6;30948:3;30941:4;30934:5;30930:16;30895:65;:::i;:::-;30985:29;31007:6;30985:29;:::i;:::-;30980:3;30976:39;30969:46;;30738:283;30648:373;;;;:::o;31027:640::-;31222:4;31260:3;31249:9;31245:19;31237:27;;31274:71;31342:1;31331:9;31327:17;31318:6;31274:71;:::i;:::-;31355:72;31423:2;31412:9;31408:18;31399:6;31355:72;:::i;:::-;31437;31505:2;31494:9;31490:18;31481:6;31437:72;:::i;:::-;31556:9;31550:4;31546:20;31541:2;31530:9;31526:18;31519:48;31584:76;31655:4;31646:6;31584:76;:::i;:::-;31576:84;;31027:640;;;;;;;:::o;31673:141::-;31729:5;31760:6;31754:13;31745:22;;31776:32;31802:5;31776:32;:::i;:::-;31673:141;;;;:::o;31820:349::-;31889:6;31938:2;31926:9;31917:7;31913:23;31909:32;31906:119;;;31944:79;;:::i;:::-;31906:119;32064:1;32089:63;32144:7;32135:6;32124:9;32120:22;32089:63;:::i;:::-;32079:73;;32035:127;31820:349;;;;:::o

Swarm Source

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