ETH Price: $2,451.75 (+1.59%)
 

Overview

Max Total Supply

999 EBG

Holders

174

Market

Volume (24H)

0.0838 ETH

Min Price (24H)

$205.46 @ 0.083800 ETH

Max Price (24H)

$205.46 @ 0.083800 ETH
Filtered by Token Holder
chiefnoodle.eth
Balance
2 EBG
0x2882898129bfb577f756350d8443265038fce7cc
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

WE ARE MIGRATING TO A NEW CONTRACT DO NOT BUY DO NOT MAKE OFFERS

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EarlyBirds

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-01
*/

// SPDX-License-Identifier: MIT
/*
  ______           _         ____  _         _     
 |  ____|         | |       |  _ \(_)       | |    
 | |__   __ _ _ __| |_   _  | |_) |_ _ __ __| |___ 
 |  __| / _` | '__| | | | | |  _ <| | '__/ _` / __|
 | |___| (_| | |  | | |_| | | |_) | | | | (_| \__ \
 |______\__,_|_|  |_|\__, | |____/|_|_|  \__,_|___/
                      __/ |                        
                     |___/      
              By Devko.dev#7286
*/

// File: operator-filter-registry/src/lib/Constants.sol

pragma solidity ^0.8.13;

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

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

pragma solidity ^0.8.13;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.13;

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

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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

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

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

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

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

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

pragma solidity ^0.8.13;

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

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

// OpenZeppelin Contracts (last updated v4.9.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) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 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 256, 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 << 3) < value ? 1 : 0);
        }
    }
}

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

// OpenZeppelin Contracts (last updated v4.9.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 `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return
            string(
                abi.encodePacked(
                    value < 0 ? "-" : "",
                    toString(SignedMath.abs(value))
                )
            );
    }

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(
        string memory a,
        string memory b
    ) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

// 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.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/interfaces/IERC2981.sol

// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) external view returns (address receiver, uint256 royaltyAmount);
}

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

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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/common/ERC2981.sol

// OpenZeppelin Contracts (last updated v4.9.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (salePrice * royalty.royaltyFraction) /
            _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(
            feeNumerator <= _feeDenominator(),
            "ERC2981: royalty fee will exceed salePrice"
        );
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(
            feeNumerator <= _feeDenominator(),
            "ERC2981: royalty fee will exceed salePrice"
        );
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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

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

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(
        address account,
        uint256 amount
    ) internal {
        _balances[account] += amount;
    }
}

// File: contract.sol

pragma solidity ^0.8.13;

interface IEB {
    function ownerOf(uint256 tokenId) external view returns (address owner);
}

contract EarlyBirds is ERC721, ERC2981, DefaultOperatorFilterer, Ownable {
    using Strings for uint256;
    uint256 public tokensMintedCounter;
    string private baseURI = "https://api.ebgnft.xyz/api/token/";
    IEB public oldEB = IEB(0x3D84cbDC126B1d9DCA50bfFe0c7bb1940A4D029D);
    bool private allowEditing = true;
    bool private freezed = true;

    constructor() ERC721("Early Birds", "EBG") {}

    modifier editingAllowed() {
        require((allowEditing), "EDITING_NOT_ALLOWED");
        _;
    }

    modifier notFrozen() {
        require(freezed == false, "FROZEN");
        _;
    }

    function disableEditing() external onlyOwner {
        allowEditing = false;
    }

    function tokenURI(
        uint256 tokenId
    ) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), "Cannot query non-existent token");
        return string(abi.encodePacked(baseURI, tokenId.toString()));
    }

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

    // THIS CAN BE DISABLED
    function clone(
        uint256 idFrom,
        uint256 count,
        address newStakingaddress
    ) external onlyOwner editingAllowed {
        tokensMintedCounter += count;
        for (uint256 index = idFrom; index < idFrom + count; index++) {
            address ownerOfToken = oldEB.ownerOf(index);
            if (ownerOfToken == 0x8e9A7F848eaf0deE5d89ba9d22f6eED56f778e53) {
                ownerOfToken = newStakingaddress;
            }
            _mint(ownerOfToken, index);
        }
    }

    // THIS CAN BE DISABLED
    function airdrop(
        address[] calldata receivers,
        uint256[] calldata tokenIds
    ) external onlyOwner editingAllowed {
        tokensMintedCounter += receivers.length;
        for (uint i = 0; i < receivers.length; i++) {
            _mint(receivers[i], tokenIds[i]);
        }
    }

    // THIS CAN BE DISABLED
    function transferBird(
        address to,
        uint256 tokenId
    ) external onlyOwner editingAllowed {
        _transfer(this.ownerOf(tokenId), to, tokenId);
    }

    function freeze() external onlyOwner {
        require(block.timestamp < 17450000, "CANT_FREEZE");
        freezed = true;
    }

    function unfreeze() external onlyOwner {
        freezed = false;
    }

    function setBaseURI(string calldata newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
    }

    function totalSupply() public view returns (uint256) {
        return tokensMintedCounter;
    }

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

    receive() external payable {}

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

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

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

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

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

    function supportsInterface(
        bytes4 interfaceId
    ) public view virtual override(ERC721, ERC2981) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"idFrom","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"address","name":"newStakingaddress","type":"address"}],"name":"clone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableEditing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"oldEB","outputs":[{"internalType":"contract IEB","name":"","type":"address"}],"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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensMintedCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferBird","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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unfreeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e060405260216080818152906200267b60a039600a9062000022908262000323565b50600b80546001600160b01b0319167501013d84cbdc126b1d9dca50bffe0c7bb1940a4d029d1790553480156200005857600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600b81526020016a4561726c7920426972647360a81b8152506040518060400160405280600381526020016245424760e81b8152508160009081620000c1919062000323565b506001620000d0828262000323565b5050506daaeb6d7670e522a718067333cd4e3b15620002185780156200016657604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200014757600080fd5b505af11580156200015c573d6000803e3d6000fd5b5050505062000218565b6001600160a01b03821615620001b75760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200012c565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001fe57600080fd5b505af115801562000213573d6000803e3d6000fd5b505050505b50620002269050336200022c565b620003ef565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002a957607f821691505b602082108103620002ca57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200031e57600081815260208120601f850160051c81016020861015620002f95750805b601f850160051c820191505b818110156200031a5782815560010162000305565b5050505b505050565b81516001600160401b038111156200033f576200033f6200027e565b620003578162000350845462000294565b84620002d0565b602080601f8311600181146200038f5760008415620003765750858301515b600019600386901b1c1916600185901b1785556200031a565b600085815260208120601f198616915b82811015620003c0578886015182559484019460019091019084016200039f565b5085821015620003df5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61227c80620003ff6000396000f3fe6080604052600436106101c65760003560e01c80636352211e116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610500578063d42ccb5014610520578063e985e9c514610535578063f2fde38b1461055557600080fd5b806395d89b41146104955780639fc318cb146104aa578063a22cb465146104c0578063b88d4fde146104e057600080fd5b80636e76dff1116100d15780636e76dff11461042257806370a0823114610442578063715018a6146104625780638da5cb5b1461047757600080fd5b80636352211e146103cd57806367243482146103ed5780636a28f0001461040d57600080fd5b80633ccfd60b116101645780634e1a5d2f1161013e5780634e1a5d2f14610358578063514696131461037857806355f804b31461039857806362a5af3b146103b857600080fd5b80633ccfd60b1461030157806341f434341461031657806342842e0e1461033857600080fd5b8063095ea7b3116101a0578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632a55205a146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc1461022957600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b506101f26101ed3660046119f9565b610575565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c610586565b6040516101fe9190611a6d565b34801561023557600080fd5b50610249610244366004611a80565b610618565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611aae565b61063f565b005b34801561028f57600080fd5b506009545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611ada565b61068b565b3480156102ce57600080fd5b506102e26102dd366004611b1b565b6106e0565b604080516001600160a01b0390931683526020830191909152016101fe565b34801561030d57600080fd5b5061028161078e565b34801561032257600080fd5b506102496daaeb6d7670e522a718067333cd4e81565b34801561034457600080fd5b50610281610353366004611ada565b6107a2565b34801561036457600080fd5b50610281610373366004611aae565b6107f1565b34801561038457600080fd5b50600b54610249906001600160a01b031681565b3480156103a457600080fd5b506102816103b3366004611b3d565b610891565b3480156103c457600080fd5b506102816108a6565b3480156103d957600080fd5b506102496103e8366004611a80565b610904565b3480156103f957600080fd5b50610281610408366004611bf4565b610964565b34801561041957600080fd5b50610281610a1c565b34801561042e57600080fd5b5061028161043d366004611c60565b610a33565b34801561044e57600080fd5b5061029461045d366004611c99565b610b43565b34801561046e57600080fd5b50610281610bc9565b34801561048357600080fd5b506008546001600160a01b0316610249565b3480156104a157600080fd5b5061021c610bdb565b3480156104b657600080fd5b5061029460095481565b3480156104cc57600080fd5b506102816104db366004611cc4565b610bea565b3480156104ec57600080fd5b506102816104fb366004611d13565b610c28565b34801561050c57600080fd5b5061021c61051b366004611a80565b610c78565b34801561052c57600080fd5b50610281610d11565b34801561054157600080fd5b506101f2610550366004611df3565b610d28565b34801561056157600080fd5b50610281610570366004611c99565b610d56565b600061058082610dcf565b92915050565b60606000805461059590611e21565b80601f01602080910402602001604051908101604052809291908181526020018280546105c190611e21565b801561060e5780601f106105e35761010080835404028352916020019161060e565b820191906000526020600020905b8154815290600101906020018083116105f157829003601f168201915b5050505050905090565b600061062382610df4565b506000908152600460205260409020546001600160a01b031690565b600b54600160a81b900460ff16156106725760405162461bcd60e51b815260040161066990611e5b565b60405180910390fd5b8161067c81610e53565b6106868383610f0c565b505050565b600b54600160a81b900460ff16156106b55760405162461bcd60e51b815260040161066990611e5b565b826001600160a01b03811633146106cf576106cf33610e53565b6106da84848461101c565b50505050565b60008281526007602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916107555750604080518082019091526006546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610774906001600160601b031687611e91565b61077e9190611ea8565b91519350909150505b9250929050565b61079661104d565b6107a033476110a7565b565b600b54600160a81b900460ff16156107cc5760405162461bcd60e51b815260040161066990611e5b565b826001600160a01b03811633146107e6576107e633610e53565b6106da8484846111c0565b6107f961104d565b600b54600160a01b900460ff166108225760405162461bcd60e51b815260040161066990611eca565b6040516331a9108f60e11b81526004810182905261088d903090636352211e90602401602060405180830381865afa158015610862573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108869190611ef7565b83836111db565b5050565b61089961104d565b600a610686828483611f62565b6108ae61104d565b63010a441042106108ef5760405162461bcd60e51b815260206004820152600b60248201526a43414e545f465245455a4560a81b6044820152606401610669565b600b805460ff60a81b1916600160a81b179055565b6000818152600260205260408120546001600160a01b0316806105805760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610669565b61096c61104d565b600b54600160a01b900460ff166109955760405162461bcd60e51b815260040161066990611eca565b83839050600960008282546109aa9190612022565b90915550600090505b83811015610a1557610a038585838181106109d0576109d0612035565b90506020020160208101906109e59190611c99565b8484848181106109f7576109f7612035565b9050602002013561133f565b80610a0d8161204b565b9150506109b3565b5050505050565b610a2461104d565b600b805460ff60a81b19169055565b610a3b61104d565b600b54600160a01b900460ff16610a645760405162461bcd60e51b815260040161066990611eca565b8160096000828254610a769190612022565b909155508390505b610a888385612022565b8110156106da57600b546040516331a9108f60e11b8152600481018390526000916001600160a01b031690636352211e90602401602060405180830381865afa158015610ad9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afd9190611ef7565b90506001600160a01b038116738e9a7f848eaf0dee5d89ba9d22f6eed56f778e5303610b265750815b610b30818361133f565b5080610b3b8161204b565b915050610a7e565b60006001600160a01b038216610bad5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610669565b506001600160a01b031660009081526003602052604090205490565b610bd161104d565b6107a060006114ca565b60606001805461059590611e21565b600b54600160a81b900460ff1615610c145760405162461bcd60e51b815260040161066990611e5b565b81610c1e81610e53565b610686838361151c565b600b54600160a81b900460ff1615610c525760405162461bcd60e51b815260040161066990611e5b565b836001600160a01b0381163314610c6c57610c6c33610e53565b610a1585858585611527565b6000818152600260205260409020546060906001600160a01b0316610cdf5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610669565b600a610cea83611559565b604051602001610cfb929190612064565b6040516020818303038152906040529050919050565b610d1961104d565b600b805460ff60a01b19169055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610d5e61104d565b6001600160a01b038116610dc35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610669565b610dcc816114ca565b50565b60006001600160e01b0319821663152a902d60e11b14806105805750610580826115ec565b6000818152600260205260409020546001600160a01b0316610dcc5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610669565b6daaeb6d7670e522a718067333cd4e3b15610dcc57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610ec0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee491906120eb565b610dcc57604051633b79c77360e21b81526001600160a01b0382166004820152602401610669565b6000610f1782610904565b9050806001600160a01b0316836001600160a01b031603610f845760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610669565b336001600160a01b0382161480610fa05750610fa08133610d28565b6110125760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610669565b610686838361163c565b61102633826116aa565b6110425760405162461bcd60e51b815260040161066990612108565b6106868383836111db565b6008546001600160a01b031633146107a05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610669565b804710156110f75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610669565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611144576040519150601f19603f3d011682016040523d82523d6000602084013e611149565b606091505b50509050806106865760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610669565b61068683838360405180602001604052806000815250610c28565b826001600160a01b03166111ee82610904565b6001600160a01b0316146112145760405162461bcd60e51b815260040161066990612155565b6001600160a01b0382166112765760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610669565b826001600160a01b031661128982610904565b6001600160a01b0316146112af5760405162461bcd60e51b815260040161066990612155565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166113955760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610669565b6000818152600260205260409020546001600160a01b0316156113fa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610669565b6000818152600260205260409020546001600160a01b03161561145f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610669565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61088d338383611709565b61153133836116aa565b61154d5760405162461bcd60e51b815260040161066990612108565b6106da848484846117d7565b606060006115668361180a565b600101905060008167ffffffffffffffff81111561158657611586611cfd565b6040519080825280601f01601f1916602001820160405280156115b0576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846115ba57509392505050565b60006001600160e01b031982166380ac58cd60e01b148061161d57506001600160e01b03198216635b5e139f60e01b145b8061058057506301ffc9a760e01b6001600160e01b0319831614610580565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061167182610904565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806116b683610904565b9050806001600160a01b0316846001600160a01b031614806116dd57506116dd8185610d28565b806117015750836001600160a01b03166116f684610618565b6001600160a01b0316145b949350505050565b816001600160a01b0316836001600160a01b03160361176a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610669565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117e28484846111db565b6117ee848484846118e2565b6106da5760405162461bcd60e51b81526004016106699061219a565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106118495772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611875576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061189357662386f26fc10000830492506010015b6305f5e10083106118ab576305f5e100830492506008015b61271083106118bf57612710830492506004015b606483106118d1576064830492506002015b600a83106105805760010192915050565b60006001600160a01b0384163b156119d857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119269033908990889088906004016121ec565b6020604051808303816000875af1925050508015611961575060408051601f3d908101601f1916820190925261195e91810190612229565b60015b6119be573d80801561198f576040519150601f19603f3d011682016040523d82523d6000602084013e611994565b606091505b5080516000036119b65760405162461bcd60e51b81526004016106699061219a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611701565b506001949350505050565b6001600160e01b031981168114610dcc57600080fd5b600060208284031215611a0b57600080fd5b8135611a16816119e3565b9392505050565b60005b83811015611a38578181015183820152602001611a20565b50506000910152565b60008151808452611a59816020860160208601611a1d565b601f01601f19169290920160200192915050565b602081526000611a166020830184611a41565b600060208284031215611a9257600080fd5b5035919050565b6001600160a01b0381168114610dcc57600080fd5b60008060408385031215611ac157600080fd5b8235611acc81611a99565b946020939093013593505050565b600080600060608486031215611aef57600080fd5b8335611afa81611a99565b92506020840135611b0a81611a99565b929592945050506040919091013590565b60008060408385031215611b2e57600080fd5b50508035926020909101359150565b60008060208385031215611b5057600080fd5b823567ffffffffffffffff80821115611b6857600080fd5b818501915085601f830112611b7c57600080fd5b813581811115611b8b57600080fd5b866020828501011115611b9d57600080fd5b60209290920196919550909350505050565b60008083601f840112611bc157600080fd5b50813567ffffffffffffffff811115611bd957600080fd5b6020830191508360208260051b850101111561078757600080fd5b60008060008060408587031215611c0a57600080fd5b843567ffffffffffffffff80821115611c2257600080fd5b611c2e88838901611baf565b90965094506020870135915080821115611c4757600080fd5b50611c5487828801611baf565b95989497509550505050565b600080600060608486031215611c7557600080fd5b83359250602084013591506040840135611c8e81611a99565b809150509250925092565b600060208284031215611cab57600080fd5b8135611a1681611a99565b8015158114610dcc57600080fd5b60008060408385031215611cd757600080fd5b8235611ce281611a99565b91506020830135611cf281611cb6565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611d2957600080fd5b8435611d3481611a99565b93506020850135611d4481611a99565b925060408501359150606085013567ffffffffffffffff80821115611d6857600080fd5b818701915087601f830112611d7c57600080fd5b813581811115611d8e57611d8e611cfd565b604051601f8201601f19908116603f01168101908382118183101715611db657611db6611cfd565b816040528281528a6020848701011115611dcf57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611e0657600080fd5b8235611e1181611a99565b91506020830135611cf281611a99565b600181811c90821680611e3557607f821691505b602082108103611e5557634e487b7160e01b600052602260045260246000fd5b50919050565b602080825260069082015265232927ad22a760d11b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761058057610580611e7b565b600082611ec557634e487b7160e01b600052601260045260246000fd5b500490565b60208082526013908201527211511255125391d7d393d517d0531313d5d151606a1b604082015260600190565b600060208284031215611f0957600080fd5b8151611a1681611a99565b601f82111561068657600081815260208120601f850160051c81016020861015611f3b5750805b601f850160051c820191505b81811015611f5a57828155600101611f47565b505050505050565b67ffffffffffffffff831115611f7a57611f7a611cfd565b611f8e83611f888354611e21565b83611f14565b6000601f841160018114611fc25760008515611faa5750838201355b600019600387901b1c1916600186901b178355610a15565b600083815260209020601f19861690835b82811015611ff35786850135825560209485019460019092019101611fd3565b50868210156120105760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b8082018082111561058057610580611e7b565b634e487b7160e01b600052603260045260246000fd5b60006001820161205d5761205d611e7b565b5060010190565b600080845461207281611e21565b6001828116801561208a576001811461209f576120ce565b60ff19841687528215158302870194506120ce565b8860005260208060002060005b858110156120c55781548a8201529084019082016120ac565b50505082870194505b5050505083516120e2818360208801611a1d565b01949350505050565b6000602082840312156120fd57600080fd5b8151611a1681611cb6565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061221f90830184611a41565b9695505050505050565b60006020828403121561223b57600080fd5b8151611a16816119e356fea2646970667358221220094b5a8f94476887e36a1f1a5f781be0f4b5f2adc6466bc367fabb098c9af21164736f6c6343000812003368747470733a2f2f6170692e6562676e66742e78797a2f6170692f746f6b656e2f

Deployed Bytecode

0x6080604052600436106101c65760003560e01c80636352211e116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610500578063d42ccb5014610520578063e985e9c514610535578063f2fde38b1461055557600080fd5b806395d89b41146104955780639fc318cb146104aa578063a22cb465146104c0578063b88d4fde146104e057600080fd5b80636e76dff1116100d15780636e76dff11461042257806370a0823114610442578063715018a6146104625780638da5cb5b1461047757600080fd5b80636352211e146103cd57806367243482146103ed5780636a28f0001461040d57600080fd5b80633ccfd60b116101645780634e1a5d2f1161013e5780634e1a5d2f14610358578063514696131461037857806355f804b31461039857806362a5af3b146103b857600080fd5b80633ccfd60b1461030157806341f434341461031657806342842e0e1461033857600080fd5b8063095ea7b3116101a0578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632a55205a146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc1461022957600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b506101f26101ed3660046119f9565b610575565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c610586565b6040516101fe9190611a6d565b34801561023557600080fd5b50610249610244366004611a80565b610618565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611aae565b61063f565b005b34801561028f57600080fd5b506009545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611ada565b61068b565b3480156102ce57600080fd5b506102e26102dd366004611b1b565b6106e0565b604080516001600160a01b0390931683526020830191909152016101fe565b34801561030d57600080fd5b5061028161078e565b34801561032257600080fd5b506102496daaeb6d7670e522a718067333cd4e81565b34801561034457600080fd5b50610281610353366004611ada565b6107a2565b34801561036457600080fd5b50610281610373366004611aae565b6107f1565b34801561038457600080fd5b50600b54610249906001600160a01b031681565b3480156103a457600080fd5b506102816103b3366004611b3d565b610891565b3480156103c457600080fd5b506102816108a6565b3480156103d957600080fd5b506102496103e8366004611a80565b610904565b3480156103f957600080fd5b50610281610408366004611bf4565b610964565b34801561041957600080fd5b50610281610a1c565b34801561042e57600080fd5b5061028161043d366004611c60565b610a33565b34801561044e57600080fd5b5061029461045d366004611c99565b610b43565b34801561046e57600080fd5b50610281610bc9565b34801561048357600080fd5b506008546001600160a01b0316610249565b3480156104a157600080fd5b5061021c610bdb565b3480156104b657600080fd5b5061029460095481565b3480156104cc57600080fd5b506102816104db366004611cc4565b610bea565b3480156104ec57600080fd5b506102816104fb366004611d13565b610c28565b34801561050c57600080fd5b5061021c61051b366004611a80565b610c78565b34801561052c57600080fd5b50610281610d11565b34801561054157600080fd5b506101f2610550366004611df3565b610d28565b34801561056157600080fd5b50610281610570366004611c99565b610d56565b600061058082610dcf565b92915050565b60606000805461059590611e21565b80601f01602080910402602001604051908101604052809291908181526020018280546105c190611e21565b801561060e5780601f106105e35761010080835404028352916020019161060e565b820191906000526020600020905b8154815290600101906020018083116105f157829003601f168201915b5050505050905090565b600061062382610df4565b506000908152600460205260409020546001600160a01b031690565b600b54600160a81b900460ff16156106725760405162461bcd60e51b815260040161066990611e5b565b60405180910390fd5b8161067c81610e53565b6106868383610f0c565b505050565b600b54600160a81b900460ff16156106b55760405162461bcd60e51b815260040161066990611e5b565b826001600160a01b03811633146106cf576106cf33610e53565b6106da84848461101c565b50505050565b60008281526007602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916107555750604080518082019091526006546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610774906001600160601b031687611e91565b61077e9190611ea8565b91519350909150505b9250929050565b61079661104d565b6107a033476110a7565b565b600b54600160a81b900460ff16156107cc5760405162461bcd60e51b815260040161066990611e5b565b826001600160a01b03811633146107e6576107e633610e53565b6106da8484846111c0565b6107f961104d565b600b54600160a01b900460ff166108225760405162461bcd60e51b815260040161066990611eca565b6040516331a9108f60e11b81526004810182905261088d903090636352211e90602401602060405180830381865afa158015610862573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108869190611ef7565b83836111db565b5050565b61089961104d565b600a610686828483611f62565b6108ae61104d565b63010a441042106108ef5760405162461bcd60e51b815260206004820152600b60248201526a43414e545f465245455a4560a81b6044820152606401610669565b600b805460ff60a81b1916600160a81b179055565b6000818152600260205260408120546001600160a01b0316806105805760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610669565b61096c61104d565b600b54600160a01b900460ff166109955760405162461bcd60e51b815260040161066990611eca565b83839050600960008282546109aa9190612022565b90915550600090505b83811015610a1557610a038585838181106109d0576109d0612035565b90506020020160208101906109e59190611c99565b8484848181106109f7576109f7612035565b9050602002013561133f565b80610a0d8161204b565b9150506109b3565b5050505050565b610a2461104d565b600b805460ff60a81b19169055565b610a3b61104d565b600b54600160a01b900460ff16610a645760405162461bcd60e51b815260040161066990611eca565b8160096000828254610a769190612022565b909155508390505b610a888385612022565b8110156106da57600b546040516331a9108f60e11b8152600481018390526000916001600160a01b031690636352211e90602401602060405180830381865afa158015610ad9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afd9190611ef7565b90506001600160a01b038116738e9a7f848eaf0dee5d89ba9d22f6eed56f778e5303610b265750815b610b30818361133f565b5080610b3b8161204b565b915050610a7e565b60006001600160a01b038216610bad5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610669565b506001600160a01b031660009081526003602052604090205490565b610bd161104d565b6107a060006114ca565b60606001805461059590611e21565b600b54600160a81b900460ff1615610c145760405162461bcd60e51b815260040161066990611e5b565b81610c1e81610e53565b610686838361151c565b600b54600160a81b900460ff1615610c525760405162461bcd60e51b815260040161066990611e5b565b836001600160a01b0381163314610c6c57610c6c33610e53565b610a1585858585611527565b6000818152600260205260409020546060906001600160a01b0316610cdf5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610669565b600a610cea83611559565b604051602001610cfb929190612064565b6040516020818303038152906040529050919050565b610d1961104d565b600b805460ff60a01b19169055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610d5e61104d565b6001600160a01b038116610dc35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610669565b610dcc816114ca565b50565b60006001600160e01b0319821663152a902d60e11b14806105805750610580826115ec565b6000818152600260205260409020546001600160a01b0316610dcc5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610669565b6daaeb6d7670e522a718067333cd4e3b15610dcc57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610ec0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee491906120eb565b610dcc57604051633b79c77360e21b81526001600160a01b0382166004820152602401610669565b6000610f1782610904565b9050806001600160a01b0316836001600160a01b031603610f845760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610669565b336001600160a01b0382161480610fa05750610fa08133610d28565b6110125760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610669565b610686838361163c565b61102633826116aa565b6110425760405162461bcd60e51b815260040161066990612108565b6106868383836111db565b6008546001600160a01b031633146107a05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610669565b804710156110f75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610669565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611144576040519150601f19603f3d011682016040523d82523d6000602084013e611149565b606091505b50509050806106865760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610669565b61068683838360405180602001604052806000815250610c28565b826001600160a01b03166111ee82610904565b6001600160a01b0316146112145760405162461bcd60e51b815260040161066990612155565b6001600160a01b0382166112765760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610669565b826001600160a01b031661128982610904565b6001600160a01b0316146112af5760405162461bcd60e51b815260040161066990612155565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166113955760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610669565b6000818152600260205260409020546001600160a01b0316156113fa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610669565b6000818152600260205260409020546001600160a01b03161561145f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610669565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61088d338383611709565b61153133836116aa565b61154d5760405162461bcd60e51b815260040161066990612108565b6106da848484846117d7565b606060006115668361180a565b600101905060008167ffffffffffffffff81111561158657611586611cfd565b6040519080825280601f01601f1916602001820160405280156115b0576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846115ba57509392505050565b60006001600160e01b031982166380ac58cd60e01b148061161d57506001600160e01b03198216635b5e139f60e01b145b8061058057506301ffc9a760e01b6001600160e01b0319831614610580565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061167182610904565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806116b683610904565b9050806001600160a01b0316846001600160a01b031614806116dd57506116dd8185610d28565b806117015750836001600160a01b03166116f684610618565b6001600160a01b0316145b949350505050565b816001600160a01b0316836001600160a01b03160361176a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610669565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117e28484846111db565b6117ee848484846118e2565b6106da5760405162461bcd60e51b81526004016106699061219a565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106118495772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611875576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061189357662386f26fc10000830492506010015b6305f5e10083106118ab576305f5e100830492506008015b61271083106118bf57612710830492506004015b606483106118d1576064830492506002015b600a83106105805760010192915050565b60006001600160a01b0384163b156119d857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119269033908990889088906004016121ec565b6020604051808303816000875af1925050508015611961575060408051601f3d908101601f1916820190925261195e91810190612229565b60015b6119be573d80801561198f576040519150601f19603f3d011682016040523d82523d6000602084013e611994565b606091505b5080516000036119b65760405162461bcd60e51b81526004016106699061219a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611701565b506001949350505050565b6001600160e01b031981168114610dcc57600080fd5b600060208284031215611a0b57600080fd5b8135611a16816119e3565b9392505050565b60005b83811015611a38578181015183820152602001611a20565b50506000910152565b60008151808452611a59816020860160208601611a1d565b601f01601f19169290920160200192915050565b602081526000611a166020830184611a41565b600060208284031215611a9257600080fd5b5035919050565b6001600160a01b0381168114610dcc57600080fd5b60008060408385031215611ac157600080fd5b8235611acc81611a99565b946020939093013593505050565b600080600060608486031215611aef57600080fd5b8335611afa81611a99565b92506020840135611b0a81611a99565b929592945050506040919091013590565b60008060408385031215611b2e57600080fd5b50508035926020909101359150565b60008060208385031215611b5057600080fd5b823567ffffffffffffffff80821115611b6857600080fd5b818501915085601f830112611b7c57600080fd5b813581811115611b8b57600080fd5b866020828501011115611b9d57600080fd5b60209290920196919550909350505050565b60008083601f840112611bc157600080fd5b50813567ffffffffffffffff811115611bd957600080fd5b6020830191508360208260051b850101111561078757600080fd5b60008060008060408587031215611c0a57600080fd5b843567ffffffffffffffff80821115611c2257600080fd5b611c2e88838901611baf565b90965094506020870135915080821115611c4757600080fd5b50611c5487828801611baf565b95989497509550505050565b600080600060608486031215611c7557600080fd5b83359250602084013591506040840135611c8e81611a99565b809150509250925092565b600060208284031215611cab57600080fd5b8135611a1681611a99565b8015158114610dcc57600080fd5b60008060408385031215611cd757600080fd5b8235611ce281611a99565b91506020830135611cf281611cb6565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611d2957600080fd5b8435611d3481611a99565b93506020850135611d4481611a99565b925060408501359150606085013567ffffffffffffffff80821115611d6857600080fd5b818701915087601f830112611d7c57600080fd5b813581811115611d8e57611d8e611cfd565b604051601f8201601f19908116603f01168101908382118183101715611db657611db6611cfd565b816040528281528a6020848701011115611dcf57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611e0657600080fd5b8235611e1181611a99565b91506020830135611cf281611a99565b600181811c90821680611e3557607f821691505b602082108103611e5557634e487b7160e01b600052602260045260246000fd5b50919050565b602080825260069082015265232927ad22a760d11b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761058057610580611e7b565b600082611ec557634e487b7160e01b600052601260045260246000fd5b500490565b60208082526013908201527211511255125391d7d393d517d0531313d5d151606a1b604082015260600190565b600060208284031215611f0957600080fd5b8151611a1681611a99565b601f82111561068657600081815260208120601f850160051c81016020861015611f3b5750805b601f850160051c820191505b81811015611f5a57828155600101611f47565b505050505050565b67ffffffffffffffff831115611f7a57611f7a611cfd565b611f8e83611f888354611e21565b83611f14565b6000601f841160018114611fc25760008515611faa5750838201355b600019600387901b1c1916600186901b178355610a15565b600083815260209020601f19861690835b82811015611ff35786850135825560209485019460019092019101611fd3565b50868210156120105760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b8082018082111561058057610580611e7b565b634e487b7160e01b600052603260045260246000fd5b60006001820161205d5761205d611e7b565b5060010190565b600080845461207281611e21565b6001828116801561208a576001811461209f576120ce565b60ff19841687528215158302870194506120ce565b8860005260208060002060005b858110156120c55781548a8201529084019082016120ac565b50505082870194505b5050505083516120e2818360208801611a1d565b01949350505050565b6000602082840312156120fd57600080fd5b8151611a1681611cb6565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061221f90830184611a41565b9695505050505050565b60006020828403121561223b57600080fd5b8151611a16816119e356fea2646970667358221220094b5a8f94476887e36a1f1a5f781be0f4b5f2adc6466bc367fabb098c9af21164736f6c63430008120033

Deployed Bytecode Sourcemap

76838:4111:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80760:186;;;;;;;;;;-1:-1:-1;80760:186:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;80760:186:0;;;;;;;;60847:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;62422:187::-;;;;;;;;;;-1:-1:-1;62422:187:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;62422:187:0;1533:203:1;79865:192:0;;;;;;;;;;-1:-1:-1;79865:192:0;;;;;:::i;:::-;;:::i;:::-;;79376:98;;;;;;;;;;-1:-1:-1;79447:19:0;;79376:98;;;2343:25:1;;;2331:2;2316:18;79376:98:0;2197:177:1;80065:207:0;;;;;;;;;;-1:-1:-1;80065:207:0;;;;;:::i;:::-;;:::i;49796:476::-;;;;;;;;;;-1:-1:-1;49796:476:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3285:32:1;;;3267:51;;3349:2;3334:18;;3327:34;;;;3240:18;49796:476:0;3093:274:1;79482:119:0;;;;;;;;;;;;;:::i;8667:143::-;;;;;;;;;;;;630:42;8667:143;;80280:215;;;;;;;;;;-1:-1:-1;80280:215:0;;;;;:::i;:::-;;:::i;78860:174::-;;;;;;;;;;-1:-1:-1;78860:174:0;;;;;:::i;:::-;;:::i;77058:66::-;;;;;;;;;;-1:-1:-1;77058:66:0;;;;-1:-1:-1;;;;;77058:66:0;;;79262:106;;;;;;;;;;-1:-1:-1;79262:106:0;;;;;:::i;:::-;;:::i;79042:131::-;;;;;;;;;;;;;:::i;60541:239::-;;;;;;;;;;-1:-1:-1;60541:239:0;;;;;:::i;:::-;;:::i;78517:306::-;;;;;;;;;;-1:-1:-1;78517:306:0;;;;;:::i;:::-;;:::i;79181:73::-;;;;;;;;;;;;;:::i;77964:516::-;;;;;;;;;;-1:-1:-1;77964:516:0;;;;;:::i;:::-;;:::i;60219:260::-;;;;;;;;;;-1:-1:-1;60219:260:0;;;;;:::i;:::-;;:::i;32812:103::-;;;;;;;;;;;;;:::i;32171:87::-;;;;;;;;;;-1:-1:-1;32244:6:0;;-1:-1:-1;;;;;32244:6:0;32171:87;;61016:104;;;;;;;;;;;;;:::i;76950:34::-;;;;;;;;;;;;;;;;79646:211;;;;;;;;;;-1:-1:-1;79646:211:0;;;;;:::i;:::-;;:::i;80503:249::-;;;;;;;;;;-1:-1:-1;80503:249:0;;;;;:::i;:::-;;:::i;77557:254::-;;;;;;;;;;-1:-1:-1;77557:254:0;;;;;:::i;:::-;;:::i;77465:84::-;;;;;;;;;;;;;:::i;62932:189::-;;;;;;;;;;-1:-1:-1;62932:189:0;;;;;:::i;:::-;;:::i;33070:238::-;;;;;;;;;;-1:-1:-1;33070:238:0;;;;;:::i;:::-;;:::i;80760:186::-;80878:4;80902:36;80926:11;80902:23;:36::i;:::-;80895:43;80760:186;-1:-1:-1;;80760:186:0:o;60847:100::-;60901:13;60934:5;60927:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60847:100;:::o;62422:187::-;62514:7;62534:23;62549:7;62534:14;:23::i;:::-;-1:-1:-1;62577:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;62577:24:0;;62422:187::o;79865:192::-;77410:7;;-1:-1:-1;;;77410:7:0;;;;:16;77402:35;;;;-1:-1:-1;;;77402:35:0;;;;;;;:::i;:::-;;;;;;;;;79996:8:::1;10583:30;10604:8;10583:20;:30::i;:::-;80017:32:::2;80031:8;80041:7;80017:13;:32::i;:::-;77448:1:::1;79865:192:::0;;:::o;80065:207::-;77410:7;;-1:-1:-1;;;77410:7:0;;;;:16;77402:35;;;;-1:-1:-1;;;77402:35:0;;;;;;;:::i;:::-;80210:4;-1:-1:-1;;;;;10309:18:0;::::1;10317:10;10309:18;10305:83;;10344:32;10365:10;10344:20;:32::i;:::-;80227:37:::2;80246:4;80252:2;80256:7;80227:18;:37::i;:::-;77448:1:::1;80065:207:::0;;;:::o;49796:476::-;49916:7;49974:26;;;:17;:26;;;;;;;;49945:55;;;;;;;;;-1:-1:-1;;;;;49945:55:0;;;;;-1:-1:-1;;;49945:55:0;;;-1:-1:-1;;;;;49945:55:0;;;;;;;;49916:7;;50013:92;;-1:-1:-1;50064:29:0;;;;;;;;;50074:19;50064:29;-1:-1:-1;;;;;50064:29:0;;;;-1:-1:-1;;;50064:29:0;;-1:-1:-1;;;;;50064:29:0;;;;;50013:92;50154:23;;;;50117:21;;50638:5;;50142:35;;-1:-1:-1;;;;;50142:35:0;:9;:35;:::i;:::-;50141:70;;;;:::i;:::-;50232:16;;;-1:-1:-1;50117:94:0;;-1:-1:-1;;49796:476:0;;;;;;:::o;79482:119::-;32057:13;:11;:13::i;:::-;79532:61:::1;79558:10;79571:21;79532:17;:61::i;:::-;79482:119::o:0;80280:215::-;77410:7;;-1:-1:-1;;;77410:7:0;;;;:16;77402:35;;;;-1:-1:-1;;;77402:35:0;;;;;;;:::i;:::-;80429:4;-1:-1:-1;;;;;10309:18:0;::::1;10317:10;10309:18;10305:83;;10344:32;10365:10;10344:20;:32::i;:::-;80446:41:::2;80469:4;80475:2;80479:7;80446:22;:41::i;78860:174::-:0;32057:13;:11;:13::i;:::-;77305:12:::1;::::0;-1:-1:-1;;;77305:12:0;::::1;;;77296:46;;;;-1:-1:-1::0;;;77296:46:0::1;;;;;;;:::i;:::-;78991:21:::2;::::0;-1:-1:-1;;;78991:21:0;;::::2;::::0;::::2;2343:25:1::0;;;78981:45:0::2;::::0;78991:4:::2;::::0;:12:::2;::::0;2316:18:1;;78991:21:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;79014:2;79018:7;78981:9;:45::i;:::-;78860:174:::0;;:::o;79262:106::-;32057:13;:11;:13::i;:::-;79340:7:::1;:20;79350:10:::0;;79340:7;:20:::1;:::i;79042:131::-:0;32057:13;:11;:13::i;:::-;79116:8:::1;79098:15;:26;79090:50;;;::::0;-1:-1:-1;;;79090:50:0;;12766:2:1;79090:50:0::1;::::0;::::1;12748:21:1::0;12805:2;12785:18;;;12778:30;-1:-1:-1;;;12824:18:1;;;12817:41;12875:18;;79090:50:0::1;12564:335:1::0;79090:50:0::1;79151:7;:14:::0;;-1:-1:-1;;;;79151:14:0::1;-1:-1:-1::0;;;79151:14:0::1;::::0;;79042:131::o;60541:239::-;60629:7;65684:16;;;:7;:16;;;;;;-1:-1:-1;;;;;65684:16:0;;60693:56;;;;-1:-1:-1;;;60693:56:0;;13106:2:1;60693:56:0;;;13088:21:1;13145:2;13125:18;;;13118:30;-1:-1:-1;;;13164:18:1;;;13157:54;13228:18;;60693:56:0;12904:348:1;78517:306:0;32057:13;:11;:13::i;:::-;77305:12:::1;::::0;-1:-1:-1;;;77305:12:0;::::1;;;77296:46;;;;-1:-1:-1::0;;;77296:46:0::1;;;;;;;:::i;:::-;78686:9:::2;;:16;;78663:19;;:39;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;78718:6:0::2;::::0;-1:-1:-1;78713:103:0::2;78730:20:::0;;::::2;78713:103;;;78772:32;78778:9;;78788:1;78778:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;78792:8;;78801:1;78792:11;;;;;;;:::i;:::-;;;;;;;78772:5;:32::i;:::-;78752:3:::0;::::2;::::0;::::2;:::i;:::-;;;;78713:103;;;;78517:306:::0;;;;:::o;79181:73::-;32057:13;:11;:13::i;:::-;79231:7:::1;:15:::0;;-1:-1:-1;;;;79231:15:0::1;::::0;;79181:73::o;77964:516::-;32057:13;:11;:13::i;:::-;77305:12:::1;::::0;-1:-1:-1;;;77305:12:0;::::1;;;77296:46;;;;-1:-1:-1::0;;;77296:46:0::1;;;;;;;:::i;:::-;78139:5:::2;78116:19;;:28;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;78176:6:0;;-1:-1:-1;78155:318:0::2;78192:14;78201:5:::0;78192:6;:14:::2;:::i;:::-;78184:5;:22;78155:318;;;78255:5;::::0;:20:::2;::::0;-1:-1:-1;;;78255:20:0;;::::2;::::0;::::2;2343:25:1::0;;;78232:20:0::2;::::0;-1:-1:-1;;;;;78255:5:0::2;::::0;:13:::2;::::0;2316:18:1;;78255:20:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;78232:43:::0;-1:-1:-1;;;;;;78294:58:0;::::2;78310:42;78294:58:::0;78290:131:::2;;-1:-1:-1::0;78388:17:0;78290:131:::2;78435:26;78441:12;78455:5;78435;:26::i;:::-;-1:-1:-1::0;78208:7:0;::::2;::::0;::::2;:::i;:::-;;;;78155:318;;60219:260:::0;60307:7;-1:-1:-1;;;;;60349:19:0;;60327:110;;;;-1:-1:-1;;;60327:110:0;;13861:2:1;60327:110:0;;;13843:21:1;13900:2;13880:18;;;13873:30;13939:34;13919:18;;;13912:62;-1:-1:-1;;;13990:18:1;;;13983:39;14039:19;;60327:110:0;13659:405:1;60327:110:0;-1:-1:-1;;;;;;60455:16:0;;;;;:9;:16;;;;;;;60219:260::o;32812:103::-;32057:13;:11;:13::i;:::-;32877:30:::1;32904:1;32877:18;:30::i;61016:104::-:0;61072:13;61105:7;61098:14;;;;;:::i;79646:211::-;77410:7;;-1:-1:-1;;;77410:7:0;;;;:16;77402:35;;;;-1:-1:-1;;;77402:35:0;;;;;;;:::i;:::-;79785:8:::1;10583:30;10604:8;10583:20;:30::i;:::-;79806:43:::2;79830:8;79840;79806:23;:43::i;80503:249::-:0;77410:7;;-1:-1:-1;;;77410:7:0;;;;:16;77402:35;;;;-1:-1:-1;;;77402:35:0;;;;;;;:::i;:::-;80680:4;-1:-1:-1;;;;;10309:18:0;::::1;10317:10;10309:18;10305:83;;10344:32;10365:10;10344:20;:32::i;:::-;80697:47:::2;80720:4;80726:2;80730:7;80739:4;80697:22;:47::i;77557:254::-:0;66086:4;65684:16;;;:7;:16;;;;;;77646:13;;-1:-1:-1;;;;;65684:16:0;77672:60;;;;-1:-1:-1;;;77672:60:0;;14271:2:1;77672:60:0;;;14253:21:1;14310:2;14290:18;;;14283:30;14349:33;14329:18;;;14322:61;14400:18;;77672:60:0;14069:355:1;77672:60:0;77774:7;77783:18;:7;:16;:18::i;:::-;77757:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77743:60;;77557:254;;;:::o;77465:84::-;32057:13;:11;:13::i;:::-;77521:12:::1;:20:::0;;-1:-1:-1;;;;77521:20:0::1;::::0;;77465:84::o;62932:189::-;-1:-1:-1;;;;;63078:25:0;;;63054:4;63078:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;62932:189::o;33070:238::-;32057:13;:11;:13::i;:::-;-1:-1:-1;;;;;33173:22:0;::::1;33151:110;;;::::0;-1:-1:-1;;;33151:110:0;;15656:2:1;33151:110:0::1;::::0;::::1;15638:21:1::0;15695:2;15675:18;;;15668:30;15734:34;15714:18;;;15707:62;-1:-1:-1;;;15785:18:1;;;15778:36;15831:19;;33151:110:0::1;15454:402:1::0;33151:110:0::1;33272:28;33291:8;33272:18;:28::i;:::-;33070:238:::0;:::o;49484:257::-;49602:4;-1:-1:-1;;;;;;49639:41:0;;-1:-1:-1;;;49639:41:0;;:94;;;49697:36;49721:11;49697:23;:36::i;72543:135::-;66086:4;65684:16;;;:7;:16;;;;;;-1:-1:-1;;;;;65684:16:0;72617:53;;;;-1:-1:-1;;;72617:53:0;;13106:2:1;72617:53:0;;;13088:21:1;13145:2;13125:18;;;13118:30;-1:-1:-1;;;13164:18:1;;;13157:54;13228:18;;72617:53:0;12904:348:1;10726:740:0;630:42;10917:45;:49;10913:546;;11234:128;;-1:-1:-1;;;11234:128:0;;11307:4;11234:128;;;16073:34:1;-1:-1:-1;;;;;16143:15:1;;16123:18;;;16116:43;630:42:0;;11234;;16008:18:1;;11234:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11211:237;;11404:28;;-1:-1:-1;;;11404:28:0;;-1:-1:-1;;;;;1697:32:1;;11404:28:0;;;1679:51:1;1652:18;;11404:28:0;1533:203:1;61940:416:0;62021:13;62037:23;62052:7;62037:14;:23::i;:::-;62021:39;;62085:5;-1:-1:-1;;;;;62079:11:0;:2;-1:-1:-1;;;;;62079:11:0;;62071:57;;;;-1:-1:-1;;;62071:57:0;;16622:2:1;62071:57:0;;;16604:21:1;16661:2;16641:18;;;16634:30;16700:34;16680:18;;;16673:62;-1:-1:-1;;;16751:18:1;;;16744:31;16792:19;;62071:57:0;16420:397:1;62071:57:0;30781:10;-1:-1:-1;;;;;62163:21:0;;;;:62;;-1:-1:-1;62188:37:0;62205:5;30781:10;62932:189;:::i;62188:37::-;62141:173;;;;-1:-1:-1;;;62141:173:0;;17024:2:1;62141:173:0;;;17006:21:1;17063:2;17043:18;;;17036:30;17102:34;17082:18;;;17075:62;17173:31;17153:18;;;17146:59;17222:19;;62141:173:0;16822:425:1;62141:173:0;62327:21;62336:2;62340:7;62327:8;:21::i;63188:372::-;63397:41;30781:10;63430:7;63397:18;:41::i;:::-;63375:136;;;;-1:-1:-1;;;63375:136:0;;;;;;;:::i;:::-;63524:28;63534:4;63540:2;63544:7;63524:9;:28::i;32336:132::-;32244:6;;-1:-1:-1;;;;;32244:6:0;30781:10;32400:23;32392:68;;;;-1:-1:-1;;;32392:68:0;;17868:2:1;32392:68:0;;;17850:21:1;;;17887:18;;;17880:30;17946:34;17926:18;;;17919:62;17998:18;;32392:68:0;17666:356:1;36397:391:0;36526:6;36501:21;:31;;36479:110;;;;-1:-1:-1;;;36479:110:0;;18229:2:1;36479:110:0;;;18211:21:1;18268:2;18248:18;;;18241:30;18307:31;18287:18;;;18280:59;18356:18;;36479:110:0;18027:353:1;36479:110:0;36603:12;36621:9;-1:-1:-1;;;;;36621:14:0;36643:6;36621:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36602:52;;;36687:7;36665:115;;;;-1:-1:-1;;;36665:115:0;;18797:2:1;36665:115:0;;;18779:21:1;18836:2;18816:18;;;18809:30;18875:34;18855:18;;;18848:62;18946:28;18926:18;;;18919:56;18992:19;;36665:115:0;18595:422:1;63631:185:0;63769:39;63786:4;63792:2;63796:7;63769:39;;;;;;;;;;;;:16;:39::i;70366:1337::-;70539:4;-1:-1:-1;;;;;70512:31:0;:23;70527:7;70512:14;:23::i;:::-;-1:-1:-1;;;;;70512:31:0;;70490:118;;;;-1:-1:-1;;;70490:118:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;70627:16:0;;70619:65;;;;-1:-1:-1;;;70619:65:0;;19630:2:1;70619:65:0;;;19612:21:1;19669:2;19649:18;;;19642:30;19708:34;19688:18;;;19681:62;-1:-1:-1;;;19759:18:1;;;19752:34;19803:19;;70619:65:0;19428:400:1;70619:65:0;70883:4;-1:-1:-1;;;;;70856:31:0;:23;70871:7;70856:14;:23::i;:::-;-1:-1:-1;;;;;70856:31:0;;70834:118;;;;-1:-1:-1;;;70834:118:0;;;;;;;:::i;:::-;71024:24;;;;:15;:24;;;;;;;;71017:31;;-1:-1:-1;;;;;;71017:31:0;;;;;;-1:-1:-1;;;;;71500:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;71500:20:0;;;71535:13;;;;;;;;;:18;;71017:31;71535:18;;;71575:16;;;:7;:16;;;;;;:21;;;;;;;;;;71614:27;;71040:7;;71614:27;;;77448:1:::1;79865:192:::0;;:::o;67965:942::-;-1:-1:-1;;;;;68045:16:0;;68037:61;;;;-1:-1:-1;;;68037:61:0;;20035:2:1;68037:61:0;;;20017:21:1;;;20054:18;;;20047:30;20113:34;20093:18;;;20086:62;20165:18;;68037:61:0;19833:356:1;68037:61:0;66086:4;65684:16;;;:7;:16;;;;;;-1:-1:-1;;;;;65684:16:0;66110:31;68109:58;;;;-1:-1:-1;;;68109:58:0;;20396:2:1;68109:58:0;;;20378:21:1;20435:2;20415:18;;;20408:30;20474;20454:18;;;20447:58;20522:18;;68109:58:0;20194:352:1;68109:58:0;66086:4;65684:16;;;:7;:16;;;;;;-1:-1:-1;;;;;65684:16:0;66110:31;68318:58;;;;-1:-1:-1;;;68318:58:0;;20396:2:1;68318:58:0;;;20378:21:1;20435:2;20415:18;;;20408:30;20474;20454:18;;;20447:58;20522:18;;68318:58:0;20194:352:1;68318:58:0;-1:-1:-1;;;;;68725:13:0;;;;;;:9;:13;;;;;;;;:18;;68742:1;68725:18;;;68767:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;68767:21:0;;;;;68806:33;68775:7;;68725:13;;68806:33;;68725:13;;68806:33;78860:174;;:::o;33468:191::-;33561:6;;;-1:-1:-1;;;;;33578:17:0;;;-1:-1:-1;;;;;;33578:17:0;;;;;;;33611:40;;33561:6;;;33578:17;33561:6;;33611:40;;33542:16;;33611:40;33531:128;33468:191;:::o;62681:180::-;62801:52;30781:10;62834:8;62844;62801:18;:52::i;63887:359::-;64075:41;30781:10;64108:7;64075:18;:41::i;:::-;64053:136;;;;-1:-1:-1;;;64053:136:0;;;;;;;:::i;:::-;64200:38;64214:4;64220:2;64224:7;64233:4;64200:13;:38::i;27466:716::-;27522:13;27573:14;27590:17;27601:5;27590:10;:17::i;:::-;27610:1;27590:21;27573:38;;27626:20;27660:6;27649:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27649:18:0;-1:-1:-1;27626:41:0;-1:-1:-1;27791:28:0;;;27807:2;27791:28;27848:288;-1:-1:-1;;27880:5:0;-1:-1:-1;;;28017:2:0;28006:14;;28001:30;27880:5;27988:44;28078:2;28069:11;;;-1:-1:-1;28099:21:0;27848:288;28099:21;-1:-1:-1;28157:6:0;27466:716;-1:-1:-1;;;27466:716:0:o;59834:321::-;59952:4;-1:-1:-1;;;;;;59989:40:0;;-1:-1:-1;;;59989:40:0;;:105;;-1:-1:-1;;;;;;;60046:48:0;;-1:-1:-1;;;60046:48:0;59989:105;:158;;;-1:-1:-1;;;;;;;;;;48049:40:0;;;60111:36;47924:173;71822:174;71897:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;71897:29:0;-1:-1:-1;;;;;71897:29:0;;;;;;;;:24;;71951:23;71897:24;71951:14;:23::i;:::-;-1:-1:-1;;;;;71942:46:0;;;;;;;;;;;71822:174;;:::o;66316:315::-;66434:4;66451:13;66467:23;66482:7;66467:14;:23::i;:::-;66451:39;;66520:5;-1:-1:-1;;;;;66509:16:0;:7;-1:-1:-1;;;;;66509:16:0;;:65;;;;66542:32;66559:5;66566:7;66542:16;:32::i;:::-;66509:113;;;;66615:7;-1:-1:-1;;;;;66591:31:0;:20;66603:7;66591:11;:20::i;:::-;-1:-1:-1;;;;;66591:31:0;;66509:113;66501:122;66316:315;-1:-1:-1;;;;66316:315:0:o;72139:::-;72294:8;-1:-1:-1;;;;;72285:17:0;:5;-1:-1:-1;;;;;72285:17:0;;72277:55;;;;-1:-1:-1;;;72277:55:0;;20753:2:1;72277:55:0;;;20735:21:1;20792:2;20772:18;;;20765:30;20831:27;20811:18;;;20804:55;20876:18;;72277:55:0;20551:349:1;72277:55:0;-1:-1:-1;;;;;72343:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;72343:46:0;;;;;;;;;;72405:41;;540::1;;;72405::0;;513:18:1;72405:41:0;;;;;;;72139:315;;;:::o;65127:350::-;65283:28;65293:4;65299:2;65303:7;65283:9;:28::i;:::-;65344:47;65367:4;65373:2;65377:7;65386:4;65344:22;:47::i;:::-;65322:147;;;;-1:-1:-1;;;65322:147:0;;;;;;;:::i;24188:948::-;24241:7;;-1:-1:-1;;;24319:17:0;;24315:106;;-1:-1:-1;;;24357:17:0;;;-1:-1:-1;24403:2:0;24393:12;24315:106;24448:8;24439:5;:17;24435:106;;24486:8;24477:17;;;-1:-1:-1;24523:2:0;24513:12;24435:106;24568:8;24559:5;:17;24555:106;;24606:8;24597:17;;;-1:-1:-1;24643:2:0;24633:12;24555:106;24688:7;24679:5;:16;24675:103;;24725:7;24716:16;;;-1:-1:-1;24761:1:0;24751:11;24675:103;24805:7;24796:5;:16;24792:103;;24842:7;24833:16;;;-1:-1:-1;24878:1:0;24868:11;24792:103;24922:7;24913:5;:16;24909:103;;24959:7;24950:16;;;-1:-1:-1;24995:1:0;24985:11;24909:103;25039:7;25030:5;:16;25026:68;;25077:1;25067:11;25122:6;24188:948;-1:-1:-1;;24188:948:0:o;73242:1034::-;73396:4;-1:-1:-1;;;;;73417:13:0;;35433:19;:23;73413:856;;73470:174;;-1:-1:-1;;;73470:174:0;;-1:-1:-1;;;;;73470:36:0;;;;;:174;;30781:10;;73564:4;;73591:7;;73621:4;;73470:174;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;73470:174:0;;;;;;;;-1:-1:-1;;73470:174:0;;;;;;;;;;;;:::i;:::-;;;73449:765;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73827:6;:13;73844:1;73827:18;73823:376;;73870:108;;-1:-1:-1;;;73870:108:0;;;;;;;:::i;73823:376::-;74149:6;74143:13;74134:6;74130:2;74126:15;74119:38;73449:765;-1:-1:-1;;;;;;73708:51:0;-1:-1:-1;;;73708:51:0;;-1:-1:-1;73701:58:0;;73413:856;-1:-1:-1;74253:4:0;73242:1034;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:131::-;-1:-1:-1;;;;;1816:31:1;;1806:42;;1796:70;;1862:1;1859;1852:12;1877:315;1945:6;1953;2006:2;1994:9;1985:7;1981:23;1977:32;1974:52;;;2022:1;2019;2012:12;1974:52;2061:9;2048:23;2080:31;2105:5;2080:31;:::i;:::-;2130:5;2182:2;2167:18;;;;2154:32;;-1:-1:-1;;;1877:315:1:o;2379:456::-;2456:6;2464;2472;2525:2;2513:9;2504:7;2500:23;2496:32;2493:52;;;2541:1;2538;2531:12;2493:52;2580:9;2567:23;2599:31;2624:5;2599:31;:::i;:::-;2649:5;-1:-1:-1;2706:2:1;2691:18;;2678:32;2719:33;2678:32;2719:33;:::i;:::-;2379:456;;2771:7;;-1:-1:-1;;;2825:2:1;2810:18;;;;2797:32;;2379:456::o;2840:248::-;2908:6;2916;2969:2;2957:9;2948:7;2944:23;2940:32;2937:52;;;2985:1;2982;2975:12;2937:52;-1:-1:-1;;3008:23:1;;;3078:2;3063:18;;;3050:32;;-1:-1:-1;2840:248:1:o;3831:592::-;3902:6;3910;3963:2;3951:9;3942:7;3938:23;3934:32;3931:52;;;3979:1;3976;3969:12;3931:52;4019:9;4006:23;4048:18;4089:2;4081:6;4078:14;4075:34;;;4105:1;4102;4095:12;4075:34;4143:6;4132:9;4128:22;4118:32;;4188:7;4181:4;4177:2;4173:13;4169:27;4159:55;;4210:1;4207;4200:12;4159:55;4250:2;4237:16;4276:2;4268:6;4265:14;4262:34;;;4292:1;4289;4282:12;4262:34;4337:7;4332:2;4323:6;4319:2;4315:15;4311:24;4308:37;4305:57;;;4358:1;4355;4348:12;4305:57;4389:2;4381:11;;;;;4411:6;;-1:-1:-1;3831:592:1;;-1:-1:-1;;;;3831:592:1:o;4428:367::-;4491:8;4501:6;4555:3;4548:4;4540:6;4536:17;4532:27;4522:55;;4573:1;4570;4563:12;4522:55;-1:-1:-1;4596:20:1;;4639:18;4628:30;;4625:50;;;4671:1;4668;4661:12;4625:50;4708:4;4700:6;4696:17;4684:29;;4768:3;4761:4;4751:6;4748:1;4744:14;4736:6;4732:27;4728:38;4725:47;4722:67;;;4785:1;4782;4775:12;4800:773;4922:6;4930;4938;4946;4999:2;4987:9;4978:7;4974:23;4970:32;4967:52;;;5015:1;5012;5005:12;4967:52;5055:9;5042:23;5084:18;5125:2;5117:6;5114:14;5111:34;;;5141:1;5138;5131:12;5111:34;5180:70;5242:7;5233:6;5222:9;5218:22;5180:70;:::i;:::-;5269:8;;-1:-1:-1;5154:96:1;-1:-1:-1;5357:2:1;5342:18;;5329:32;;-1:-1:-1;5373:16:1;;;5370:36;;;5402:1;5399;5392:12;5370:36;;5441:72;5505:7;5494:8;5483:9;5479:24;5441:72;:::i;:::-;4800:773;;;;-1:-1:-1;5532:8:1;-1:-1:-1;;;;4800:773:1:o;5578:383::-;5655:6;5663;5671;5724:2;5712:9;5703:7;5699:23;5695:32;5692:52;;;5740:1;5737;5730:12;5692:52;5776:9;5763:23;5753:33;;5833:2;5822:9;5818:18;5805:32;5795:42;;5887:2;5876:9;5872:18;5859:32;5900:31;5925:5;5900:31;:::i;:::-;5950:5;5940:15;;;5578:383;;;;;:::o;5966:247::-;6025:6;6078:2;6066:9;6057:7;6053:23;6049:32;6046:52;;;6094:1;6091;6084:12;6046:52;6133:9;6120:23;6152:31;6177:5;6152:31;:::i;6218:118::-;6304:5;6297:13;6290:21;6283:5;6280:32;6270:60;;6326:1;6323;6316:12;6341:382;6406:6;6414;6467:2;6455:9;6446:7;6442:23;6438:32;6435:52;;;6483:1;6480;6473:12;6435:52;6522:9;6509:23;6541:31;6566:5;6541:31;:::i;:::-;6591:5;-1:-1:-1;6648:2:1;6633:18;;6620:32;6661:30;6620:32;6661:30;:::i;:::-;6710:7;6700:17;;;6341:382;;;;;:::o;6728:127::-;6789:10;6784:3;6780:20;6777:1;6770:31;6820:4;6817:1;6810:15;6844:4;6841:1;6834:15;6860:1266;6955:6;6963;6971;6979;7032:3;7020:9;7011:7;7007:23;7003:33;7000:53;;;7049:1;7046;7039:12;7000:53;7088:9;7075:23;7107:31;7132:5;7107:31;:::i;:::-;7157:5;-1:-1:-1;7214:2:1;7199:18;;7186:32;7227:33;7186:32;7227:33;:::i;:::-;7279:7;-1:-1:-1;7333:2:1;7318:18;;7305:32;;-1:-1:-1;7388:2:1;7373:18;;7360:32;7411:18;7441:14;;;7438:34;;;7468:1;7465;7458:12;7438:34;7506:6;7495:9;7491:22;7481:32;;7551:7;7544:4;7540:2;7536:13;7532:27;7522:55;;7573:1;7570;7563:12;7522:55;7609:2;7596:16;7631:2;7627;7624:10;7621:36;;;7637:18;;:::i;:::-;7712:2;7706:9;7680:2;7766:13;;-1:-1:-1;;7762:22:1;;;7786:2;7758:31;7754:40;7742:53;;;7810:18;;;7830:22;;;7807:46;7804:72;;;7856:18;;:::i;:::-;7896:10;7892:2;7885:22;7931:2;7923:6;7916:18;7971:7;7966:2;7961;7957;7953:11;7949:20;7946:33;7943:53;;;7992:1;7989;7982:12;7943:53;8048:2;8043;8039;8035:11;8030:2;8022:6;8018:15;8005:46;8093:1;8088:2;8083;8075:6;8071:15;8067:24;8060:35;8114:6;8104:16;;;;;;;6860:1266;;;;;;;:::o;8131:388::-;8199:6;8207;8260:2;8248:9;8239:7;8235:23;8231:32;8228:52;;;8276:1;8273;8266:12;8228:52;8315:9;8302:23;8334:31;8359:5;8334:31;:::i;:::-;8384:5;-1:-1:-1;8441:2:1;8426:18;;8413:32;8454:33;8413:32;8454:33;:::i;8524:380::-;8603:1;8599:12;;;;8646;;;8667:61;;8721:4;8713:6;8709:17;8699:27;;8667:61;8774:2;8766:6;8763:14;8743:18;8740:38;8737:161;;8820:10;8815:3;8811:20;8808:1;8801:31;8855:4;8852:1;8845:15;8883:4;8880:1;8873:15;8737:161;;8524:380;;;:::o;8909:329::-;9111:2;9093:21;;;9150:1;9130:18;;;9123:29;-1:-1:-1;;;9183:2:1;9168:18;;9161:36;9229:2;9214:18;;8909:329::o;9243:127::-;9304:10;9299:3;9295:20;9292:1;9285:31;9335:4;9332:1;9325:15;9359:4;9356:1;9349:15;9375:168;9448:9;;;9479;;9496:15;;;9490:22;;9476:37;9466:71;;9517:18;;:::i;9680:217::-;9720:1;9746;9736:132;;9790:10;9785:3;9781:20;9778:1;9771:31;9825:4;9822:1;9815:15;9853:4;9850:1;9843:15;9736:132;-1:-1:-1;9882:9:1;;9680:217::o;9902:343::-;10104:2;10086:21;;;10143:2;10123:18;;;10116:30;-1:-1:-1;;;10177:2:1;10162:18;;10155:49;10236:2;10221:18;;9902:343::o;10250:251::-;10320:6;10373:2;10361:9;10352:7;10348:23;10344:32;10341:52;;;10389:1;10386;10379:12;10341:52;10421:9;10415:16;10440:31;10465:5;10440:31;:::i;10632:545::-;10734:2;10729:3;10726:11;10723:448;;;10770:1;10795:5;10791:2;10784:17;10840:4;10836:2;10826:19;10910:2;10898:10;10894:19;10891:1;10887:27;10881:4;10877:38;10946:4;10934:10;10931:20;10928:47;;;-1:-1:-1;10969:4:1;10928:47;11024:2;11019:3;11015:12;11012:1;11008:20;11002:4;10998:31;10988:41;;11079:82;11097:2;11090:5;11087:13;11079:82;;;11142:17;;;11123:1;11112:13;11079:82;;;11083:3;;;10632:545;;;:::o;11353:1206::-;11477:18;11472:3;11469:27;11466:53;;;11499:18;;:::i;:::-;11528:94;11618:3;11578:38;11610:4;11604:11;11578:38;:::i;:::-;11572:4;11528:94;:::i;:::-;11648:1;11673:2;11668:3;11665:11;11690:1;11685:616;;;;12345:1;12362:3;12359:93;;;-1:-1:-1;12418:19:1;;;12405:33;12359:93;-1:-1:-1;;11310:1:1;11306:11;;;11302:24;11298:29;11288:40;11334:1;11330:11;;;11285:57;12465:78;;11658:895;;11685:616;10579:1;10572:14;;;10616:4;10603:18;;-1:-1:-1;;11721:17:1;;;11822:9;11844:229;11858:7;11855:1;11852:14;11844:229;;;11947:19;;;11934:33;11919:49;;12054:4;12039:20;;;;12007:1;11995:14;;;;11874:12;11844:229;;;11848:3;12101;12092:7;12089:16;12086:159;;;12225:1;12221:6;12215:3;12209;12206:1;12202:11;12198:21;12194:34;12190:39;12177:9;12172:3;12168:19;12155:33;12151:79;12143:6;12136:95;12086:159;;;12288:1;12282:3;12279:1;12275:11;12271:19;12265:4;12258:33;11658:895;;11353:1206;;;:::o;13257:125::-;13322:9;;;13343:10;;;13340:36;;;13356:18;;:::i;13387:127::-;13448:10;13443:3;13439:20;13436:1;13429:31;13479:4;13476:1;13469:15;13503:4;13500:1;13493:15;13519:135;13558:3;13579:17;;;13576:43;;13599:18;;:::i;:::-;-1:-1:-1;13646:1:1;13635:13;;13519:135::o;14429:1020::-;14605:3;14634:1;14667:6;14661:13;14697:36;14723:9;14697:36;:::i;:::-;14752:1;14769:18;;;14796:133;;;;14943:1;14938:356;;;;14762:532;;14796:133;-1:-1:-1;;14829:24:1;;14817:37;;14902:14;;14895:22;14883:35;;14874:45;;;-1:-1:-1;14796:133:1;;14938:356;14969:6;14966:1;14959:17;14999:4;15044:2;15041:1;15031:16;15069:1;15083:165;15097:6;15094:1;15091:13;15083:165;;;15175:14;;15162:11;;;15155:35;15218:16;;;;15112:10;;15083:165;;;15087:3;;;15277:6;15272:3;15268:16;15261:23;;14762:532;;;;;15325:6;15319:13;15341:68;15400:8;15395:3;15388:4;15380:6;15376:17;15341:68;:::i;:::-;15425:18;;14429:1020;-1:-1:-1;;;;14429:1020:1:o;16170:245::-;16237:6;16290:2;16278:9;16269:7;16265:23;16261:32;16258:52;;;16306:1;16303;16296:12;16258:52;16338:9;16332:16;16357:28;16379:5;16357:28;:::i;17252:409::-;17454:2;17436:21;;;17493:2;17473:18;;;17466:30;17532:34;17527:2;17512:18;;17505:62;-1:-1:-1;;;17598:2:1;17583:18;;17576:43;17651:3;17636:19;;17252:409::o;19022:401::-;19224:2;19206:21;;;19263:2;19243:18;;;19236:30;19302:34;19297:2;19282:18;;19275:62;-1:-1:-1;;;19368:2:1;19353:18;;19346:35;19413:3;19398:19;;19022:401::o;20905:414::-;21107:2;21089:21;;;21146:2;21126:18;;;21119:30;21185:34;21180:2;21165:18;;21158:62;-1:-1:-1;;;21251:2:1;21236:18;;21229:48;21309:3;21294:19;;20905:414::o;21324:489::-;-1:-1:-1;;;;;21593:15:1;;;21575:34;;21645:15;;21640:2;21625:18;;21618:43;21692:2;21677:18;;21670:34;;;21740:3;21735:2;21720:18;;21713:31;;;21518:4;;21761:46;;21787:19;;21779:6;21761:46;:::i;:::-;21753:54;21324:489;-1:-1:-1;;;;;;21324:489:1:o;21818:249::-;21887:6;21940:2;21928:9;21919:7;21915:23;21911:32;21908:52;;;21956:1;21953;21946:12;21908:52;21988:9;21982:16;22007:30;22031:5;22007:30;:::i

Swarm Source

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