ETH Price: $3,489.15 (+2.06%)
Gas: 12 Gwei

Token

FootBallApeFanClub (FAFC)
 

Overview

Max Total Supply

2,156 FAFC

Holders

760

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
mdrfkr.eth
Balance
1 FAFC
0x60314c86b99a2a108e5097fc2688aa1e3c30be30
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
FootBallApeFanClub

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-16
*/

/**
 *Submitted for verification at Etherscan.io on 2022-12-15
*/

// SPDX-License-Identifier: MIT
// File: IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

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

// File: 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.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(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));
                }
            }
        }
    }

    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);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    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) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

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

// File: @openzeppelin/[email protected]/utils/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/[email protected]/utils/math/Math.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/Strings.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

// File: @openzeppelin/[email protected]/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/[email protected]/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/[email protected]/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/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/[email protected]/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/[email protected]/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.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/[email protected]/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/[email protected]/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.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/[email protected]/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/[email protected]/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/[email protected]/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Royalty.sol


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

pragma solidity ^0.8.0;




/**
 * @dev Extension of ERC721 with the ERC2981 NFT Royalty Standard, a standardized way to retrieve royalty payment
 * information.
 *
 * Royalty information can be specified globally for all token ids via {ERC2981-_setDefaultRoyalty}, and/or individually for
 * specific token ids via {ERC2981-_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * 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 ERC721Royalty is ERC2981, ERC721 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally clears the royalty information for the token.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);
        _resetTokenRoyalty(tokenId);
    }
}

// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Burnable.sol


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

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _burn(tokenId);
    }
}

// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721URIStorage.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Enumerable.sol


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/test.sol


pragma solidity ^0.8.13;












contract FootBallApeFanClub is DefaultOperatorFilterer, ERC721, ERC721Enumerable, ERC721URIStorage, Pausable, Ownable, ERC721Burnable, ERC721Royalty {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;

    uint256 public cost = 0.04 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxMintAmountPerTx = 50;

    string public BaseURI = "ipfs://QmbPtEwTBVKbMV6TJuitTF95gdYfxChZfa6cXJjsYcyEPG/";

    address public owner_address = 0xb5aDac2dbDd9fd2f4a94daEC07616a36Babb02dA;

    mapping (uint256 => string) private _tokenURIs;

    constructor() ERC721("FootBallApeFanClub", "FAFC") {
        _setDefaultRoyalty(owner_address, 500);
    }

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

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function setBaseURI(string memory _URI) public onlyOwner {
        BaseURI = _URI;
    }

    function mint(uint256 _mintAmount) public payable {
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount");
        require(msg.value >= _mintAmount * cost, "Not enough ether sent");
        require(totalSupply() + _mintAmount <= maxSupply, "Not enough left to mint all your requests");
        for (uint256 i = 0; i < _mintAmount; i++) {
            safeMint(msg.sender);
        }
    }

    function airdrop(address[] memory _adresses, uint256 _mintAmount) public onlyOwner {
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount");
        for (uint256 j = 0; j < _adresses.length; j++) {
            require(totalSupply() + _mintAmount <= maxSupply, "Not enough left to mint all your requests");
            for (uint256 i = 0; i < _mintAmount; i++) {
                safeMint(_adresses[j]);
            }
        }
    }

    function safeMint(address to) internal {
        uint256 tokenId = _tokenIdCounter.current() + 1;
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
        _setTokenURI(tokenId);
    }

    function setmaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
        maxSupply = _maxSupply;
    }

    function setcost(uint256 _cost) external onlyOwner {
        cost = _cost;
    }

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

    function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize)
        internal
        whenNotPaused
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId, batchSize);
    }

    // The following functions are overrides required by Solidity.

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage, ERC721Royalty) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return string.concat(super.tokenURI(tokenId), ".json");
    }

    function _setTokenURI(uint256 tokenId) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        string memory suffix = string.concat(Strings.toString(tokenId), ".json");
        string memory _tokenURI = string(abi.encodePacked(_baseURI(), suffix));
        _tokenURIs[tokenId] = _tokenURI;
    }

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

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

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

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

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

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

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_adresses","type":"address[]"},{"internalType":"uint256","name":"_mintAmount","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":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setcost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setmaxMintAmountPerTx","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

668e1bc9bf040000600f55612710601055603260115560e06040526036608081815290620030e960a0396012906200003890826200046a565b50601380546001600160a01b03191673b5adac2dbdd9fd2f4a94daec07616a36babb02da1790553480156200006c57600080fd5b5060408051808201825260128152712337b7ba2130b63620b832a330b721b63ab160711b602080830191909152825180840190935260048352634641464360e01b9083015290733cc6cdda760b79bafa08df41ecfa224f810dceb660016daaeb6d7670e522a718067333cd4e3b156200020e5780156200015c57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200013d57600080fd5b505af115801562000152573d6000803e3d6000fd5b505050506200020e565b6001600160a01b03821615620001ad5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000122565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001f457600080fd5b505af115801562000209573d6000803e3d6000fd5b505050505b50600290506200021f83826200046a565b5060036200022e82826200046a565b5050600d805460ff1916905550620002463362000266565b60135462000260906001600160a01b03166101f4620002c0565b62000536565b600d80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620003345760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b0382166200038c5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016200032b565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003f057607f821691505b6020821081036200041157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200046557600081815260208120601f850160051c81016020861015620004405750805b601f850160051c820191505b8181101562000461578281556001016200044c565b5050505b505050565b81516001600160401b03811115620004865762000486620003c5565b6200049e81620004978454620003db565b8462000417565b602080601f831160018114620004d65760008415620004bd5750858301515b600019600386901b1c1916600185901b17855562000461565b600085815260208120601f198616915b828110156200050757888601518255948401946001909101908401620004e6565b5085821015620005265787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612ba380620005466000396000f3fe60806040526004361061021a5760003560e01c80635c975abb1161012357806395d89b41116100ab578063c87b56dd1161006f578063c87b56dd14610617578063d5abeb0114610637578063e985e9c51461064d578063f2fde38b14610696578063ffcc43c4146106b657600080fd5b806395d89b411461058f578063a0712d68146105a4578063a22cb465146105b7578063b88d4fde146105d7578063c204642c146105f757600080fd5b8063715018a6116100f2578063715018a61461050c57806380edef8e146105215780638456cb59146105415780638da5cb5b1461055657806394354fd01461057957600080fd5b80635c975abb146104945780636352211e146104ac5780636f8b44b0146104cc57806370a08231146104ec57600080fd5b80632f745c59116101a657806342842e0e1161017557806342842e0e146103f457806342966c68146104145780634f6ccce71461043457806353db40731461045457806355f804b31461047457600080fd5b80632f745c59146103885780633ccfd60b146103a85780633f4ba83a146103bd57806341f43434146103d257600080fd5b806313faede6116101ed57806313faede6146102d057806318160ddd146102f457806323b872dd14610309578063299c6937146103295780632a55205a1461034957600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612388565b6106cb565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106dc565b60405161024b91906123f5565b34801561028257600080fd5b50610296610291366004612408565b61076e565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c936600461243d565b610795565b005b3480156102dc57600080fd5b506102e6600f5481565b60405190815260200161024b565b34801561030057600080fd5b50600a546102e6565b34801561031557600080fd5b506102ce610324366004612467565b6107ae565b34801561033557600080fd5b506102ce610344366004612408565b6107d9565b34801561035557600080fd5b506103696103643660046124a3565b6107e6565b604080516001600160a01b03909316835260208301919091520161024b565b34801561039457600080fd5b506102e66103a336600461243d565b610892565b3480156103b457600080fd5b506102ce61092d565b3480156103c957600080fd5b506102ce61099d565b3480156103de57600080fd5b506102966daaeb6d7670e522a718067333cd4e81565b34801561040057600080fd5b506102ce61040f366004612467565b6109af565b34801561042057600080fd5b506102ce61042f366004612408565b6109d4565b34801561044057600080fd5b506102e661044f366004612408565b610a04565b34801561046057600080fd5b506102ce61046f366004612408565b610a97565b34801561048057600080fd5b506102ce61048f366004612564565b610aa4565b3480156104a057600080fd5b50600d5460ff1661023f565b3480156104b857600080fd5b506102966104c7366004612408565b610abc565b3480156104d857600080fd5b506102ce6104e7366004612408565b610b1c565b3480156104f857600080fd5b506102e66105073660046125ad565b610b29565b34801561051857600080fd5b506102ce610baf565b34801561052d57600080fd5b50601354610296906001600160a01b031681565b34801561054d57600080fd5b506102ce610bc1565b34801561056257600080fd5b50600d5461010090046001600160a01b0316610296565b34801561058557600080fd5b506102e660115481565b34801561059b57600080fd5b50610269610bd1565b6102ce6105b2366004612408565b610be0565b3480156105c357600080fd5b506102ce6105d23660046125d6565b610ce3565b3480156105e357600080fd5b506102ce6105f236600461260d565b610cf7565b34801561060357600080fd5b506102ce610612366004612689565b610d24565b34801561062357600080fd5b50610269610632366004612408565b610e13565b34801561064357600080fd5b506102e660105481565b34801561065957600080fd5b5061023f61066836600461273c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106a257600080fd5b506102ce6106b13660046125ad565b610e44565b3480156106c257600080fd5b50610269610eba565b60006106d682610f48565b92915050565b6060600280546106eb9061276f565b80601f01602080910402602001604051908101604052809291908181526020018280546107179061276f565b80156107645780601f1061073957610100808354040283529160200191610764565b820191906000526020600020905b81548152906001019060200180831161074757829003601f168201915b5050505050905090565b600061077982610f53565b506000908152600660205260409020546001600160a01b031690565b8161079f81610fb2565b6107a9838361106b565b505050565b826001600160a01b03811633146107c8576107c833610fb2565b6107d384848461117b565b50505050565b6107e16111ab565b600f55565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161085b5750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061087a906001600160601b0316876127bf565b61088491906127d6565b915196919550909350505050565b600061089d83610b29565b82106109045760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084015b60405180910390fd5b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b6109356111ab565b600d5460405160009161010090046001600160a01b03169047908381818185875af1925050503d8060008114610987576040519150601f19603f3d011682016040523d82523d6000602084013e61098c565b606091505b505090508061099a57600080fd5b50565b6109a56111ab565b6109ad61120b565b565b826001600160a01b03811633146109c9576109c933610fb2565b6107d384848461125d565b6109df335b82611278565b6109fb5760405162461bcd60e51b81526004016108fb906127f8565b61099a816112f7565b6000610a0f600a5490565b8210610a725760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108fb565b600a8281548110610a8557610a85612845565b90600052602060002001549050919050565b610a9f6111ab565b601155565b610aac6111ab565b6012610ab882826128a9565b5050565b6000818152600460205260408120546001600160a01b0316806106d65760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016108fb565b610b246111ab565b601055565b60006001600160a01b038216610b935760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016108fb565b506001600160a01b031660009081526005602052604090205490565b610bb76111ab565b6109ad6000611300565b610bc96111ab565b6109ad61135a565b6060600380546106eb9061276f565b600081118015610bf257506011548111155b610c345760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b60448201526064016108fb565b600f54610c4190826127bf565b341015610c885760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b60448201526064016108fb565b60105481610c95600a5490565b610c9f9190612969565b1115610cbd5760405162461bcd60e51b81526004016108fb9061297c565b60005b81811015610ab857610cd133611397565b80610cdb816129c5565b915050610cc0565b81610ced81610fb2565b6107a983836113d0565b836001600160a01b0381163314610d1157610d1133610fb2565b610d1d858585856113db565b5050505050565b610d2c6111ab565b600081118015610d3e57506011548111155b610d805760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b60448201526064016108fb565b60005b82518110156107a95760105482610d99600a5490565b610da39190612969565b1115610dc15760405162461bcd60e51b81526004016108fb9061297c565b60005b82811015610e0057610dee848381518110610de157610de1612845565b6020026020010151611397565b80610df8816129c5565b915050610dc4565b5080610e0b816129c5565b915050610d83565b6060610e1e8261140d565b604051602001610e2e91906129de565b6040516020818303038152906040529050919050565b610e4c6111ab565b6001600160a01b038116610eb15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fb565b61099a81611300565b60128054610ec79061276f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef39061276f565b8015610f405780601f10610f1557610100808354040283529160200191610f40565b820191906000526020600020905b815481529060010190602001808311610f2357829003601f168201915b505050505081565b60006106d682611508565b6000818152600460205260409020546001600160a01b031661099a5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016108fb565b6daaeb6d7670e522a718067333cd4e3b1561099a57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561101f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110439190612a07565b61099a57604051633b79c77360e21b81526001600160a01b03821660048201526024016108fb565b600061107682610abc565b9050806001600160a01b0316836001600160a01b0316036110e35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108fb565b336001600160a01b03821614806110ff57506110ff8133610668565b6111715760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016108fb565b6107a9838361152d565b611184336109d9565b6111a05760405162461bcd60e51b81526004016108fb906127f8565b6107a983838361159b565b600d546001600160a01b036101009091041633146109ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108fb565b61121361170c565b600d805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6107a983838360405180602001604052806000815250610cf7565b60008061128483610abc565b9050806001600160a01b0316846001600160a01b031614806112cb57506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b806112ef5750836001600160a01b03166112e48461076e565b6001600160a01b0316145b949350505050565b61099a81611755565b600d80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61136261176f565b600d805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586112403390565b60006113a2600e5490565b6113ad906001612969565b90506113bd600e80546001019055565b6113c782826117b5565b610ab8816117cf565b610ab83383836118b8565b6113e53383611278565b6114015760405162461bcd60e51b81526004016108fb906127f8565b6107d384848484611986565b606061141882610f53565b6000828152600c6020526040812080546114319061276f565b80601f016020809104026020016040519081016040528092919081815260200182805461145d9061276f565b80156114aa5780601f1061147f576101008083540402835291602001916114aa565b820191906000526020600020905b81548152906001019060200180831161148d57829003601f168201915b5050505050905060006114bb6119b9565b905080516000036114cd575092915050565b8151156114ff5780826040516020016114e7929190612a24565b60405160208183030381529060405292505050919050565b6112ef846119c8565b60006001600160e01b0319821663780e9d6360e01b14806106d657506106d682611a2f565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061156282610abc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b826001600160a01b03166115ae82610abc565b6001600160a01b0316146115d45760405162461bcd60e51b81526004016108fb90612a53565b6001600160a01b0382166116365760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108fb565b6116438383836001611a6f565b826001600160a01b031661165682610abc565b6001600160a01b03161461167c5760405162461bcd60e51b81526004016108fb90612a53565b600081815260066020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260058552838620805460001901905590871680865283862080546001019055868652600490945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d5460ff166109ad5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016108fb565b61175e81611a83565b600090815260016020526040812055565b600d5460ff16156109ad5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108fb565b610ab8828260405180602001604052806000815250611ac3565b6000818152600460205260409020546001600160a01b03166118485760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108fb565b600061185382611af6565b60405160200161186391906129de565b6040516020818303038152906040529050600061187e6119b9565b82604051602001611890929190612a24565b60408051601f1981840301815291815260008581526014602052209091506107d382826128a9565b816001600160a01b0316836001600160a01b0316036119195760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108fb565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61199184848461159b565b61199d84848484611b89565b6107d35760405162461bcd60e51b81526004016108fb90612a98565b6060601280546106eb9061276f565b60606119d382610f53565b60006119dd6119b9565b905060008151116119fd5760405180602001604052806000815250611a28565b80611a0784611af6565b604051602001611a18929190612a24565b6040516020818303038152906040525b9392505050565b60006001600160e01b031982166380ac58cd60e01b1480611a6057506001600160e01b03198216635b5e139f60e01b145b806106d657506106d682611c8a565b611a7761176f565b6107d384848484611cbf565b611a8c81611df8565b6000818152600c602052604090208054611aa59061276f565b15905061099a576000818152600c6020526040812061099a91612324565b611acd8383611e9b565b611ada6000848484611b89565b6107a95760405162461bcd60e51b81526004016108fb90612a98565b60606000611b0383612034565b600101905060008167ffffffffffffffff811115611b2357611b236124c5565b6040519080825280601f01601f191660200182016040528015611b4d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611b5757509392505050565b60006001600160a01b0384163b15611c7f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bcd903390899088908890600401612aea565b6020604051808303816000875af1925050508015611c08575060408051601f3d908101601f19168201909252611c0591810190612b27565b60015b611c65573d808015611c36576040519150601f19603f3d011682016040523d82523d6000602084013e611c3b565b606091505b508051600003611c5d5760405162461bcd60e51b81526004016108fb90612a98565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112ef565b506001949350505050565b60006001600160e01b0319821663152a902d60e11b14806106d657506301ffc9a760e01b6001600160e01b03198316146106d6565b611ccb8484848461210c565b6001811115611d3a5760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016108fb565b816001600160a01b038516611d9657611d9181600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b611db9565b836001600160a01b0316856001600160a01b031614611db957611db98582612194565b6001600160a01b038416611dd557611dd081612231565b610d1d565b846001600160a01b0316846001600160a01b031614610d1d57610d1d84826122e0565b6000611e0382610abc565b9050611e13816000846001611a6f565b611e1c82610abc565b600083815260066020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526005845282852080546000190190558785526004909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b038216611ef15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108fb565b6000818152600460205260409020546001600160a01b031615611f565760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108fb565b611f64600083836001611a6f565b6000818152600460205260409020546001600160a01b031615611fc95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108fb565b6001600160a01b038216600081815260056020908152604080832080546001019055848352600490915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106120735772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061209f576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106120bd57662386f26fc10000830492506010015b6305f5e10083106120d5576305f5e100830492506008015b61271083106120e957612710830492506004015b606483106120fb576064830492506002015b600a83106106d65760010192915050565b60018111156107d3576001600160a01b03841615612152576001600160a01b0384166000908152600560205260408120805483929061214c908490612b44565b90915550505b6001600160a01b038316156107d3576001600160a01b03831660009081526005602052604081208054839290612189908490612969565b909155505050505050565b600060016121a184610b29565b6121ab9190612b44565b6000838152600960205260409020549091508082146121fe576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a5460009061224390600190612b44565b6000838152600b6020526040812054600a805493945090928490811061226b5761226b612845565b9060005260206000200154905080600a838154811061228c5761228c612845565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a8054806122c4576122c4612b57565b6001900381819060005260206000200160009055905550505050565b60006122eb83610b29565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b5080546123309061276f565b6000825580601f10612340575050565b601f01602090049060005260206000209081019061099a91905b8082111561236e576000815560010161235a565b5090565b6001600160e01b03198116811461099a57600080fd5b60006020828403121561239a57600080fd5b8135611a2881612372565b60005b838110156123c05781810151838201526020016123a8565b50506000910152565b600081518084526123e18160208601602086016123a5565b601f01601f19169290920160200192915050565b602081526000611a2860208301846123c9565b60006020828403121561241a57600080fd5b5035919050565b80356001600160a01b038116811461243857600080fd5b919050565b6000806040838503121561245057600080fd5b61245983612421565b946020939093013593505050565b60008060006060848603121561247c57600080fd5b61248584612421565b925061249360208501612421565b9150604084013590509250925092565b600080604083850312156124b657600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612504576125046124c5565b604052919050565b600067ffffffffffffffff831115612526576125266124c5565b612539601f8401601f19166020016124db565b905082815283838301111561254d57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561257657600080fd5b813567ffffffffffffffff81111561258d57600080fd5b8201601f8101841361259e57600080fd5b6112ef8482356020840161250c565b6000602082840312156125bf57600080fd5b611a2882612421565b801515811461099a57600080fd5b600080604083850312156125e957600080fd5b6125f283612421565b91506020830135612602816125c8565b809150509250929050565b6000806000806080858703121561262357600080fd5b61262c85612421565b935061263a60208601612421565b925060408501359150606085013567ffffffffffffffff81111561265d57600080fd5b8501601f8101871361266e57600080fd5b61267d8782356020840161250c565b91505092959194509250565b6000806040838503121561269c57600080fd5b823567ffffffffffffffff808211156126b457600080fd5b818501915085601f8301126126c857600080fd5b81356020828211156126dc576126dc6124c5565b8160051b92506126ed8184016124db565b828152928401810192818101908985111561270757600080fd5b948201945b8486101561272c5761271d86612421565b8252948201949082019061270c565b9997909101359750505050505050565b6000806040838503121561274f57600080fd5b61275883612421565b915061276660208401612421565b90509250929050565b600181811c9082168061278357607f821691505b6020821081036127a357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106d6576106d66127a9565b6000826127f357634e487b7160e01b600052601260045260246000fd5b500490565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b601f8211156107a957600081815260208120601f850160051c810160208610156128825750805b601f850160051c820191505b818110156128a15782815560010161288e565b505050505050565b815167ffffffffffffffff8111156128c3576128c36124c5565b6128d7816128d1845461276f565b8461285b565b602080601f83116001811461290c57600084156128f45750858301515b600019600386901b1c1916600185901b1785556128a1565b600085815260208120601f198616915b8281101561293b5788860151825594840194600190910190840161291c565b50858210156129595787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156106d6576106d66127a9565b60208082526029908201527f4e6f7420656e6f756768206c65667420746f206d696e7420616c6c20796f757260408201526820726571756573747360b81b606082015260800190565b6000600182016129d7576129d76127a9565b5060010190565b600082516129f08184602087016123a5565b64173539b7b760d91b920191825250600501919050565b600060208284031215612a1957600080fd5b8151611a28816125c8565b60008351612a368184602088016123a5565b835190830190612a4a8183602088016123a5565b01949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b1d908301846123c9565b9695505050505050565b600060208284031215612b3957600080fd5b8151611a2881612372565b818103818111156106d6576106d66127a9565b634e487b7160e01b600052603160045260246000fdfea264697066735822122001eb2cbad82da336bd611b5758cedde5394738ee18ebc5b3cc5ab89d2c4a815164736f6c63430008110033697066733a2f2f516d62507445775442564b624d5636544a75697454463935676459667843685a66613663584a6a735963794550472f

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80635c975abb1161012357806395d89b41116100ab578063c87b56dd1161006f578063c87b56dd14610617578063d5abeb0114610637578063e985e9c51461064d578063f2fde38b14610696578063ffcc43c4146106b657600080fd5b806395d89b411461058f578063a0712d68146105a4578063a22cb465146105b7578063b88d4fde146105d7578063c204642c146105f757600080fd5b8063715018a6116100f2578063715018a61461050c57806380edef8e146105215780638456cb59146105415780638da5cb5b1461055657806394354fd01461057957600080fd5b80635c975abb146104945780636352211e146104ac5780636f8b44b0146104cc57806370a08231146104ec57600080fd5b80632f745c59116101a657806342842e0e1161017557806342842e0e146103f457806342966c68146104145780634f6ccce71461043457806353db40731461045457806355f804b31461047457600080fd5b80632f745c59146103885780633ccfd60b146103a85780633f4ba83a146103bd57806341f43434146103d257600080fd5b806313faede6116101ed57806313faede6146102d057806318160ddd146102f457806323b872dd14610309578063299c6937146103295780632a55205a1461034957600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612388565b6106cb565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106dc565b60405161024b91906123f5565b34801561028257600080fd5b50610296610291366004612408565b61076e565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c936600461243d565b610795565b005b3480156102dc57600080fd5b506102e6600f5481565b60405190815260200161024b565b34801561030057600080fd5b50600a546102e6565b34801561031557600080fd5b506102ce610324366004612467565b6107ae565b34801561033557600080fd5b506102ce610344366004612408565b6107d9565b34801561035557600080fd5b506103696103643660046124a3565b6107e6565b604080516001600160a01b03909316835260208301919091520161024b565b34801561039457600080fd5b506102e66103a336600461243d565b610892565b3480156103b457600080fd5b506102ce61092d565b3480156103c957600080fd5b506102ce61099d565b3480156103de57600080fd5b506102966daaeb6d7670e522a718067333cd4e81565b34801561040057600080fd5b506102ce61040f366004612467565b6109af565b34801561042057600080fd5b506102ce61042f366004612408565b6109d4565b34801561044057600080fd5b506102e661044f366004612408565b610a04565b34801561046057600080fd5b506102ce61046f366004612408565b610a97565b34801561048057600080fd5b506102ce61048f366004612564565b610aa4565b3480156104a057600080fd5b50600d5460ff1661023f565b3480156104b857600080fd5b506102966104c7366004612408565b610abc565b3480156104d857600080fd5b506102ce6104e7366004612408565b610b1c565b3480156104f857600080fd5b506102e66105073660046125ad565b610b29565b34801561051857600080fd5b506102ce610baf565b34801561052d57600080fd5b50601354610296906001600160a01b031681565b34801561054d57600080fd5b506102ce610bc1565b34801561056257600080fd5b50600d5461010090046001600160a01b0316610296565b34801561058557600080fd5b506102e660115481565b34801561059b57600080fd5b50610269610bd1565b6102ce6105b2366004612408565b610be0565b3480156105c357600080fd5b506102ce6105d23660046125d6565b610ce3565b3480156105e357600080fd5b506102ce6105f236600461260d565b610cf7565b34801561060357600080fd5b506102ce610612366004612689565b610d24565b34801561062357600080fd5b50610269610632366004612408565b610e13565b34801561064357600080fd5b506102e660105481565b34801561065957600080fd5b5061023f61066836600461273c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106a257600080fd5b506102ce6106b13660046125ad565b610e44565b3480156106c257600080fd5b50610269610eba565b60006106d682610f48565b92915050565b6060600280546106eb9061276f565b80601f01602080910402602001604051908101604052809291908181526020018280546107179061276f565b80156107645780601f1061073957610100808354040283529160200191610764565b820191906000526020600020905b81548152906001019060200180831161074757829003601f168201915b5050505050905090565b600061077982610f53565b506000908152600660205260409020546001600160a01b031690565b8161079f81610fb2565b6107a9838361106b565b505050565b826001600160a01b03811633146107c8576107c833610fb2565b6107d384848461117b565b50505050565b6107e16111ab565b600f55565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161085b5750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061087a906001600160601b0316876127bf565b61088491906127d6565b915196919550909350505050565b600061089d83610b29565b82106109045760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084015b60405180910390fd5b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b6109356111ab565b600d5460405160009161010090046001600160a01b03169047908381818185875af1925050503d8060008114610987576040519150601f19603f3d011682016040523d82523d6000602084013e61098c565b606091505b505090508061099a57600080fd5b50565b6109a56111ab565b6109ad61120b565b565b826001600160a01b03811633146109c9576109c933610fb2565b6107d384848461125d565b6109df335b82611278565b6109fb5760405162461bcd60e51b81526004016108fb906127f8565b61099a816112f7565b6000610a0f600a5490565b8210610a725760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108fb565b600a8281548110610a8557610a85612845565b90600052602060002001549050919050565b610a9f6111ab565b601155565b610aac6111ab565b6012610ab882826128a9565b5050565b6000818152600460205260408120546001600160a01b0316806106d65760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016108fb565b610b246111ab565b601055565b60006001600160a01b038216610b935760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016108fb565b506001600160a01b031660009081526005602052604090205490565b610bb76111ab565b6109ad6000611300565b610bc96111ab565b6109ad61135a565b6060600380546106eb9061276f565b600081118015610bf257506011548111155b610c345760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b60448201526064016108fb565b600f54610c4190826127bf565b341015610c885760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b60448201526064016108fb565b60105481610c95600a5490565b610c9f9190612969565b1115610cbd5760405162461bcd60e51b81526004016108fb9061297c565b60005b81811015610ab857610cd133611397565b80610cdb816129c5565b915050610cc0565b81610ced81610fb2565b6107a983836113d0565b836001600160a01b0381163314610d1157610d1133610fb2565b610d1d858585856113db565b5050505050565b610d2c6111ab565b600081118015610d3e57506011548111155b610d805760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b60448201526064016108fb565b60005b82518110156107a95760105482610d99600a5490565b610da39190612969565b1115610dc15760405162461bcd60e51b81526004016108fb9061297c565b60005b82811015610e0057610dee848381518110610de157610de1612845565b6020026020010151611397565b80610df8816129c5565b915050610dc4565b5080610e0b816129c5565b915050610d83565b6060610e1e8261140d565b604051602001610e2e91906129de565b6040516020818303038152906040529050919050565b610e4c6111ab565b6001600160a01b038116610eb15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fb565b61099a81611300565b60128054610ec79061276f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef39061276f565b8015610f405780601f10610f1557610100808354040283529160200191610f40565b820191906000526020600020905b815481529060010190602001808311610f2357829003601f168201915b505050505081565b60006106d682611508565b6000818152600460205260409020546001600160a01b031661099a5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016108fb565b6daaeb6d7670e522a718067333cd4e3b1561099a57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561101f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110439190612a07565b61099a57604051633b79c77360e21b81526001600160a01b03821660048201526024016108fb565b600061107682610abc565b9050806001600160a01b0316836001600160a01b0316036110e35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108fb565b336001600160a01b03821614806110ff57506110ff8133610668565b6111715760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016108fb565b6107a9838361152d565b611184336109d9565b6111a05760405162461bcd60e51b81526004016108fb906127f8565b6107a983838361159b565b600d546001600160a01b036101009091041633146109ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108fb565b61121361170c565b600d805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6107a983838360405180602001604052806000815250610cf7565b60008061128483610abc565b9050806001600160a01b0316846001600160a01b031614806112cb57506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b806112ef5750836001600160a01b03166112e48461076e565b6001600160a01b0316145b949350505050565b61099a81611755565b600d80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61136261176f565b600d805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586112403390565b60006113a2600e5490565b6113ad906001612969565b90506113bd600e80546001019055565b6113c782826117b5565b610ab8816117cf565b610ab83383836118b8565b6113e53383611278565b6114015760405162461bcd60e51b81526004016108fb906127f8565b6107d384848484611986565b606061141882610f53565b6000828152600c6020526040812080546114319061276f565b80601f016020809104026020016040519081016040528092919081815260200182805461145d9061276f565b80156114aa5780601f1061147f576101008083540402835291602001916114aa565b820191906000526020600020905b81548152906001019060200180831161148d57829003601f168201915b5050505050905060006114bb6119b9565b905080516000036114cd575092915050565b8151156114ff5780826040516020016114e7929190612a24565b60405160208183030381529060405292505050919050565b6112ef846119c8565b60006001600160e01b0319821663780e9d6360e01b14806106d657506106d682611a2f565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061156282610abc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b826001600160a01b03166115ae82610abc565b6001600160a01b0316146115d45760405162461bcd60e51b81526004016108fb90612a53565b6001600160a01b0382166116365760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108fb565b6116438383836001611a6f565b826001600160a01b031661165682610abc565b6001600160a01b03161461167c5760405162461bcd60e51b81526004016108fb90612a53565b600081815260066020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260058552838620805460001901905590871680865283862080546001019055868652600490945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d5460ff166109ad5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016108fb565b61175e81611a83565b600090815260016020526040812055565b600d5460ff16156109ad5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108fb565b610ab8828260405180602001604052806000815250611ac3565b6000818152600460205260409020546001600160a01b03166118485760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108fb565b600061185382611af6565b60405160200161186391906129de565b6040516020818303038152906040529050600061187e6119b9565b82604051602001611890929190612a24565b60408051601f1981840301815291815260008581526014602052209091506107d382826128a9565b816001600160a01b0316836001600160a01b0316036119195760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108fb565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61199184848461159b565b61199d84848484611b89565b6107d35760405162461bcd60e51b81526004016108fb90612a98565b6060601280546106eb9061276f565b60606119d382610f53565b60006119dd6119b9565b905060008151116119fd5760405180602001604052806000815250611a28565b80611a0784611af6565b604051602001611a18929190612a24565b6040516020818303038152906040525b9392505050565b60006001600160e01b031982166380ac58cd60e01b1480611a6057506001600160e01b03198216635b5e139f60e01b145b806106d657506106d682611c8a565b611a7761176f565b6107d384848484611cbf565b611a8c81611df8565b6000818152600c602052604090208054611aa59061276f565b15905061099a576000818152600c6020526040812061099a91612324565b611acd8383611e9b565b611ada6000848484611b89565b6107a95760405162461bcd60e51b81526004016108fb90612a98565b60606000611b0383612034565b600101905060008167ffffffffffffffff811115611b2357611b236124c5565b6040519080825280601f01601f191660200182016040528015611b4d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611b5757509392505050565b60006001600160a01b0384163b15611c7f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bcd903390899088908890600401612aea565b6020604051808303816000875af1925050508015611c08575060408051601f3d908101601f19168201909252611c0591810190612b27565b60015b611c65573d808015611c36576040519150601f19603f3d011682016040523d82523d6000602084013e611c3b565b606091505b508051600003611c5d5760405162461bcd60e51b81526004016108fb90612a98565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112ef565b506001949350505050565b60006001600160e01b0319821663152a902d60e11b14806106d657506301ffc9a760e01b6001600160e01b03198316146106d6565b611ccb8484848461210c565b6001811115611d3a5760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016108fb565b816001600160a01b038516611d9657611d9181600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b611db9565b836001600160a01b0316856001600160a01b031614611db957611db98582612194565b6001600160a01b038416611dd557611dd081612231565b610d1d565b846001600160a01b0316846001600160a01b031614610d1d57610d1d84826122e0565b6000611e0382610abc565b9050611e13816000846001611a6f565b611e1c82610abc565b600083815260066020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526005845282852080546000190190558785526004909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b038216611ef15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108fb565b6000818152600460205260409020546001600160a01b031615611f565760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108fb565b611f64600083836001611a6f565b6000818152600460205260409020546001600160a01b031615611fc95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108fb565b6001600160a01b038216600081815260056020908152604080832080546001019055848352600490915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106120735772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061209f576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106120bd57662386f26fc10000830492506010015b6305f5e10083106120d5576305f5e100830492506008015b61271083106120e957612710830492506004015b606483106120fb576064830492506002015b600a83106106d65760010192915050565b60018111156107d3576001600160a01b03841615612152576001600160a01b0384166000908152600560205260408120805483929061214c908490612b44565b90915550505b6001600160a01b038316156107d3576001600160a01b03831660009081526005602052604081208054839290612189908490612969565b909155505050505050565b600060016121a184610b29565b6121ab9190612b44565b6000838152600960205260409020549091508082146121fe576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a5460009061224390600190612b44565b6000838152600b6020526040812054600a805493945090928490811061226b5761226b612845565b9060005260206000200154905080600a838154811061228c5761228c612845565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a8054806122c4576122c4612b57565b6001900381819060005260206000200160009055905550505050565b60006122eb83610b29565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b5080546123309061276f565b6000825580601f10612340575050565b601f01602090049060005260206000209081019061099a91905b8082111561236e576000815560010161235a565b5090565b6001600160e01b03198116811461099a57600080fd5b60006020828403121561239a57600080fd5b8135611a2881612372565b60005b838110156123c05781810151838201526020016123a8565b50506000910152565b600081518084526123e18160208601602086016123a5565b601f01601f19169290920160200192915050565b602081526000611a2860208301846123c9565b60006020828403121561241a57600080fd5b5035919050565b80356001600160a01b038116811461243857600080fd5b919050565b6000806040838503121561245057600080fd5b61245983612421565b946020939093013593505050565b60008060006060848603121561247c57600080fd5b61248584612421565b925061249360208501612421565b9150604084013590509250925092565b600080604083850312156124b657600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612504576125046124c5565b604052919050565b600067ffffffffffffffff831115612526576125266124c5565b612539601f8401601f19166020016124db565b905082815283838301111561254d57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561257657600080fd5b813567ffffffffffffffff81111561258d57600080fd5b8201601f8101841361259e57600080fd5b6112ef8482356020840161250c565b6000602082840312156125bf57600080fd5b611a2882612421565b801515811461099a57600080fd5b600080604083850312156125e957600080fd5b6125f283612421565b91506020830135612602816125c8565b809150509250929050565b6000806000806080858703121561262357600080fd5b61262c85612421565b935061263a60208601612421565b925060408501359150606085013567ffffffffffffffff81111561265d57600080fd5b8501601f8101871361266e57600080fd5b61267d8782356020840161250c565b91505092959194509250565b6000806040838503121561269c57600080fd5b823567ffffffffffffffff808211156126b457600080fd5b818501915085601f8301126126c857600080fd5b81356020828211156126dc576126dc6124c5565b8160051b92506126ed8184016124db565b828152928401810192818101908985111561270757600080fd5b948201945b8486101561272c5761271d86612421565b8252948201949082019061270c565b9997909101359750505050505050565b6000806040838503121561274f57600080fd5b61275883612421565b915061276660208401612421565b90509250929050565b600181811c9082168061278357607f821691505b6020821081036127a357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106d6576106d66127a9565b6000826127f357634e487b7160e01b600052601260045260246000fd5b500490565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b601f8211156107a957600081815260208120601f850160051c810160208610156128825750805b601f850160051c820191505b818110156128a15782815560010161288e565b505050505050565b815167ffffffffffffffff8111156128c3576128c36124c5565b6128d7816128d1845461276f565b8461285b565b602080601f83116001811461290c57600084156128f45750858301515b600019600386901b1c1916600185901b1785556128a1565b600085815260208120601f198616915b8281101561293b5788860151825594840194600190910190840161291c565b50858210156129595787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156106d6576106d66127a9565b60208082526029908201527f4e6f7420656e6f756768206c65667420746f206d696e7420616c6c20796f757260408201526820726571756573747360b81b606082015260800190565b6000600182016129d7576129d76127a9565b5060010190565b600082516129f08184602087016123a5565b64173539b7b760d91b920191825250600501919050565b600060208284031215612a1957600080fd5b8151611a28816125c8565b60008351612a368184602088016123a5565b835190830190612a4a8183602088016123a5565b01949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b1d908301846123c9565b9695505050505050565b600060208284031215612b3957600080fd5b8151611a2881612372565b818103818111156106d6576106d66127a9565b634e487b7160e01b600052603160045260246000fdfea264697066735822122001eb2cbad82da336bd611b5758cedde5394738ee18ebc5b3cc5ab89d2c4a815164736f6c63430008110033

Deployed Bytecode Sourcemap

81513:5160:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85281:227;;;;;;;;;;-1:-1:-1;85281:227:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;85281:227:0;;;;;;;;55261:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;56773:171::-;;;;;;;;;;-1:-1:-1;56773:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;56773:171:0;1533:203:1;85752:208:0;;;;;;;;;;-1:-1:-1;85752:208:0;;;;;:::i;:::-;;:::i;:::-;;81762:32;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;81762:32:0;2178:177:1;76135:113:0;;;;;;;;;;-1:-1:-1;76223:10:0;:17;76135:113;;85968:214;;;;;;;;;;-1:-1:-1;85968:214:0;;;;;:::i;:::-;;:::i;83973:82::-;;;;;;;;;;-1:-1:-1;83973:82:0;;;;;:::i;:::-;;:::i;43408:442::-;;;;;;;;;;-1:-1:-1;43408:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3138:32:1;;;3120:51;;3202:2;3187:18;;3180:34;;;;3093:18;43408:442:0;2946:274:1;75803:256:0;;;;;;;;;;-1:-1:-1;75803:256:0;;;;;:::i;:::-;;:::i;84063:147::-;;;;;;;;;;;;;:::i;82406:65::-;;;;;;;;;;;;;:::i;2973:143::-;;;;;;;;;;;;3073:42;2973:143;;86190:222;;;;;;;;;;-1:-1:-1;86190:222:0;;;;;:::i;:::-;;:::i;72247:242::-;;;;;;;;;;-1:-1:-1;72247:242:0;;;;;:::i;:::-;;:::i;76325:233::-;;;;;;;;;;-1:-1:-1;76325:233:0;;;;;:::i;:::-;;:::i;83719:136::-;;;;;;;;;;-1:-1:-1;83719:136:0;;;;;:::i;:::-;;:::i;82479:90::-;;;;;;;;;;-1:-1:-1;82479:90:0;;;;;:::i;:::-;;:::i;27408:86::-;;;;;;;;;;-1:-1:-1;27479:7:0;;;;27408:86;;54971:223;;;;;;;;;;-1:-1:-1;54971:223:0;;;;;:::i;:::-;;:::i;83863:102::-;;;;;;;;;;-1:-1:-1;83863:102:0;;;;;:::i;:::-;;:::i;54702:207::-;;;;;;;;;;-1:-1:-1;54702:207:0;;;;;:::i;:::-;;:::i;24912:103::-;;;;;;;;;;;;;:::i;81976:73::-;;;;;;;;;;-1:-1:-1;81976:73:0;;;;-1:-1:-1;;;;;81976:73:0;;;82337:61;;;;;;;;;;;;;:::i;24264:87::-;;;;;;;;;;-1:-1:-1;24337:6:0;;;;;-1:-1:-1;;;;;24337:6:0;24264:87;;81840:38;;;;;;;;;;;;;;;;55430:104;;;;;;;;;;;;;:::i;82577:433::-;;;;;;:::i;:::-;;:::i;85517:227::-;;;;;;;;;;-1:-1:-1;85517:227:0;;;;;:::i;:::-;;:::i;86420:244::-;;;;;;;;;;-1:-1:-1;86420:244:0;;;;;:::i;:::-;;:::i;83018:477::-;;;;;;;;;;-1:-1:-1;83018:477:0;;;;;:::i;:::-;;:::i;84691:220::-;;;;;;;;;;-1:-1:-1;84691:220:0;;;;;:::i;:::-;;:::i;81801:32::-;;;;;;;;;;;;;;;;57242:164;;;;;;;;;;-1:-1:-1;57242:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;57363:25:0;;;57339:4;57363:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;57242:164;25170:201;;;;;;;;;;-1:-1:-1;25170:201:0;;;;;:::i;:::-;;:::i;81887:80::-;;;;;;;;;;;;;:::i;85281:227::-;85435:4;85464:36;85488:11;85464:23;:36::i;:::-;85457:43;85281:227;-1:-1:-1;;85281:227:0:o;55261:100::-;55315:13;55348:5;55341:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55261:100;:::o;56773:171::-;56849:7;56869:23;56884:7;56869:14;:23::i;:::-;-1:-1:-1;56912:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;56912:24:0;;56773:171::o;85752:208::-;85893:8;4494:30;4515:8;4494:20;:30::i;:::-;85920:32:::1;85934:8;85944:7;85920:13;:32::i;:::-;85752:208:::0;;;:::o;85968:214::-;86114:4;-1:-1:-1;;;;;4314:18:0;;4322:10;4314:18;4310:83;;4349:32;4370:10;4349:20;:32::i;:::-;86137:37:::1;86156:4;86162:2;86166:7;86137:18;:37::i;:::-;85968:214:::0;;;;:::o;83973:82::-;24150:13;:11;:13::i;:::-;84035:4:::1;:12:::0;83973:82::o;43408:442::-;43505:7;43563:27;;;:17;:27;;;;;;;;43534:56;;;;;;;;;-1:-1:-1;;;;;43534:56:0;;;;;-1:-1:-1;;;43534:56:0;;;-1:-1:-1;;;;;43534:56:0;;;;;;;;43505:7;;43603:92;;-1:-1:-1;43654:29:0;;;;;;;;;-1:-1:-1;43654:29:0;-1:-1:-1;;;;;43654:29:0;;;;-1:-1:-1;;;43654:29:0;;-1:-1:-1;;;;;43654:29:0;;;;;43603:92;43745:23;;;;43707:21;;44216:5;;43732:36;;-1:-1:-1;;;;;43732:36:0;:10;:36;:::i;:::-;43731:58;;;;:::i;:::-;43810:16;;;;;-1:-1:-1;43408:442:0;;-1:-1:-1;;;;43408:442:0:o;75803:256::-;75900:7;75936:23;75953:5;75936:16;:23::i;:::-;75928:5;:31;75920:87;;;;-1:-1:-1;;;75920:87:0;;8588:2:1;75920:87:0;;;8570:21:1;8627:2;8607:18;;;8600:30;8666:34;8646:18;;;8639:62;-1:-1:-1;;;8717:18:1;;;8710:41;8768:19;;75920:87:0;;;;;;;;;-1:-1:-1;;;;;;76025:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;75803:256::o;84063:147::-;24150:13;:11;:13::i;:::-;24337:6;;84125:55:::1;::::0;84112:7:::1;::::0;24337:6;;;-1:-1:-1;;;;;24337:6:0;;84154:21:::1;::::0;84112:7;84125:55;84112:7;84125:55;84154:21;24337:6;84125:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84111:69;;;84199:2;84191:11;;;::::0;::::1;;84100:110;84063:147::o:0;82406:65::-;24150:13;:11;:13::i;:::-;82453:10:::1;:8;:10::i;:::-;82406:65::o:0;86190:222::-;86340:4;-1:-1:-1;;;;;4314:18:0;;4322:10;4314:18;4310:83;;4349:32;4370:10;4349:20;:32::i;:::-;86363:41:::1;86386:4;86392:2;86396:7;86363:22;:41::i;72247:242::-:0;72365:41;22889:10;72384:12;72398:7;72365:18;:41::i;:::-;72357:99;;;;-1:-1:-1;;;72357:99:0;;;;;;;:::i;:::-;72467:14;72473:7;72467:5;:14::i;76325:233::-;76400:7;76436:30;76223:10;:17;;76135:113;76436:30;76428:5;:38;76420:95;;;;-1:-1:-1;;;76420:95:0;;9624:2:1;76420:95:0;;;9606:21:1;9663:2;9643:18;;;9636:30;9702:34;9682:18;;;9675:62;-1:-1:-1;;;9753:18:1;;;9746:42;9805:19;;76420:95:0;9422:408:1;76420:95:0;76533:10;76544:5;76533:17;;;;;;;;:::i;:::-;;;;;;;;;76526:24;;76325:233;;;:::o;83719:136::-;24150:13;:11;:13::i;:::-;83807:18:::1;:40:::0;83719:136::o;82479:90::-;24150:13;:11;:13::i;:::-;82547:7:::1;:14;82557:4:::0;82547:7;:14:::1;:::i;:::-;;82479:90:::0;:::o;54971:223::-;55043:7;59858:16;;;:7;:16;;;;;;-1:-1:-1;;;;;59858:16:0;;55107:56;;;;-1:-1:-1;;;55107:56:0;;12373:2:1;55107:56:0;;;12355:21:1;12412:2;12392:18;;;12385:30;-1:-1:-1;;;12431:18:1;;;12424:54;12495:18;;55107:56:0;12171:348:1;83863:102:0;24150:13;:11;:13::i;:::-;83935:9:::1;:22:::0;83863:102::o;54702:207::-;54774:7;-1:-1:-1;;;;;54802:19:0;;54794:73;;;;-1:-1:-1;;;54794:73:0;;12726:2:1;54794:73:0;;;12708:21:1;12765:2;12745:18;;;12738:30;12804:34;12784:18;;;12777:62;-1:-1:-1;;;12855:18:1;;;12848:39;12904:19;;54794:73:0;12524:405:1;54794:73:0;-1:-1:-1;;;;;;54885:16:0;;;;;:9;:16;;;;;;;54702:207::o;24912:103::-;24150:13;:11;:13::i;:::-;24977:30:::1;25004:1;24977:18;:30::i;82337:61::-:0;24150:13;:11;:13::i;:::-;82382:8:::1;:6;:8::i;55430:104::-:0;55486:13;55519:7;55512:14;;;;;:::i;82577:433::-;82660:1;82646:11;:15;:52;;;;;82680:18;;82665:11;:33;;82646:52;82638:84;;;;-1:-1:-1;;;82638:84:0;;13136:2:1;82638:84:0;;;13118:21:1;13175:2;13155:18;;;13148:30;-1:-1:-1;;;13194:18:1;;;13187:49;13253:18;;82638:84:0;12934:343:1;82638:84:0;82768:4;;82754:18;;:11;:18;:::i;:::-;82741:9;:31;;82733:65;;;;-1:-1:-1;;;82733:65:0;;13484:2:1;82733:65:0;;;13466:21:1;13523:2;13503:18;;;13496:30;-1:-1:-1;;;13542:18:1;;;13535:51;13603:18;;82733:65:0;13282:345:1;82733:65:0;82848:9;;82833:11;82817:13;76223:10;:17;;76135:113;82817:13;:27;;;;:::i;:::-;:40;;82809:94;;;;-1:-1:-1;;;82809:94:0;;;;;;;:::i;:::-;82919:9;82914:89;82938:11;82934:1;:15;82914:89;;;82971:20;82980:10;82971:8;:20::i;:::-;82951:3;;;;:::i;:::-;;;;82914:89;;85517:227;85666:8;4494:30;4515:8;4494:20;:30::i;:::-;85693:43:::1;85717:8;85727;85693:23;:43::i;86420:244::-:0;86587:4;-1:-1:-1;;;;;4314:18:0;;4322:10;4314:18;4310:83;;4349:32;4370:10;4349:20;:32::i;:::-;86609:47:::1;86632:4;86638:2;86642:7;86651:4;86609:22;:47::i;:::-;86420:244:::0;;;;;:::o;83018:477::-;24150:13;:11;:13::i;:::-;83134:1:::1;83120:11;:15;:52;;;;;83154:18;;83139:11;:33;;83120:52;83112:84;;;::::0;-1:-1:-1;;;83112:84:0;;13136:2:1;83112:84:0::1;::::0;::::1;13118:21:1::0;13175:2;13155:18;;;13148:30;-1:-1:-1;;;13194:18:1;;;13187:49;13253:18;;83112:84:0::1;12934:343:1::0;83112:84:0::1;83212:9;83207:281;83231:9;:16;83227:1;:20;83207:281;;;83308:9;;83293:11;83277:13;76223:10:::0;:17;;76135:113;83277:13:::1;:27;;;;:::i;:::-;:40;;83269:94;;;;-1:-1:-1::0;;;83269:94:0::1;;;;;;;:::i;:::-;83383:9;83378:99;83402:11;83398:1;:15;83378:99;;;83439:22;83448:9;83458:1;83448:12;;;;;;;;:::i;:::-;;;;;;;83439:8;:22::i;:::-;83415:3:::0;::::1;::::0;::::1;:::i;:::-;;;;83378:99;;;-1:-1:-1::0;83249:3:0;::::1;::::0;::::1;:::i;:::-;;;;83207:281;;84691:220:::0;84818:13;84870:23;84885:7;84870:14;:23::i;:::-;84856:47;;;;;;;;:::i;:::-;;;;;;;;;;;;;84849:54;;84691:220;;;:::o;25170:201::-;24150:13;:11;:13::i;:::-;-1:-1:-1;;;;;25259:22:0;::::1;25251:73;;;::::0;-1:-1:-1;;;25251:73:0;;14964:2:1;25251:73:0::1;::::0;::::1;14946:21:1::0;15003:2;14983:18;;;14976:30;15042:34;15022:18;;;15015:62;-1:-1:-1;;;15093:18:1;;;15086:36;15139:19;;25251:73:0::1;14762:402:1::0;25251:73:0::1;25335:28;25354:8;25335:18;:28::i;81887:80::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71259:170::-;71361:4;71385:36;71409:11;71385:23;:36::i;66592:135::-;60260:4;59858:16;;;:7;:16;;;;;;-1:-1:-1;;;;;59858:16:0;66666:53;;;;-1:-1:-1;;;66666:53:0;;12373:2:1;66666:53:0;;;12355:21:1;12412:2;12392:18;;;12385:30;-1:-1:-1;;;12431:18:1;;;12424:54;12495:18;;66666:53:0;12171:348:1;4552:419:0;3073:42;4743:45;:49;4739:225;;4814:67;;-1:-1:-1;;;4814:67:0;;4865:4;4814:67;;;15381:34:1;-1:-1:-1;;;;;15451:15:1;;15431:18;;;15424:43;3073:42:0;;4814;;15316:18:1;;4814:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4809:144;;4909:28;;-1:-1:-1;;;4909:28:0;;-1:-1:-1;;;;;1697:32:1;;4909:28:0;;;1679:51:1;1652:18;;4909:28:0;1533:203:1;56291:416:0;56372:13;56388:23;56403:7;56388:14;:23::i;:::-;56372:39;;56436:5;-1:-1:-1;;;;;56430:11:0;:2;-1:-1:-1;;;;;56430:11:0;;56422:57;;;;-1:-1:-1;;;56422:57:0;;15930:2:1;56422:57:0;;;15912:21:1;15969:2;15949:18;;;15942:30;16008:34;15988:18;;;15981:62;-1:-1:-1;;;16059:18:1;;;16052:31;16100:19;;56422:57:0;15728:397:1;56422:57:0;22889:10;-1:-1:-1;;;;;56514:21:0;;;;:62;;-1:-1:-1;56539:37:0;56556:5;22889:10;57242:164;:::i;56539:37::-;56492:173;;;;-1:-1:-1;;;56492:173:0;;16332:2:1;56492:173:0;;;16314:21:1;16371:2;16351:18;;;16344:30;16410:34;16390:18;;;16383:62;16481:31;16461:18;;;16454:59;16530:19;;56492:173:0;16130:425:1;56492:173:0;56678:21;56687:2;56691:7;56678:8;:21::i;57473:335::-;57668:41;22889:10;57687:12;22809:98;57668:41;57660:99;;;;-1:-1:-1;;;57660:99:0;;;;;;;:::i;:::-;57772:28;57782:4;57788:2;57792:7;57772:9;:28::i;24429:132::-;24337:6;;-1:-1:-1;;;;;24337:6:0;;;;;22889:10;24493:23;24485:68;;;;-1:-1:-1;;;24485:68:0;;16762:2:1;24485:68:0;;;16744:21:1;;;16781:18;;;16774:30;16840:34;16820:18;;;16813:62;16892:18;;24485:68:0;16560:356:1;28263:120:0;27272:16;:14;:16::i;:::-;28322:7:::1;:15:::0;;-1:-1:-1;;28322:15:0::1;::::0;;28353:22:::1;22889:10:::0;28362:12:::1;28353:22;::::0;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;28353:22:0::1;;;;;;;28263:120::o:0;57879:185::-;58017:39;58034:4;58040:2;58044:7;58017:39;;;;;;;;;;;;:16;:39::i;60490:264::-;60583:4;60600:13;60616:23;60631:7;60616:14;:23::i;:::-;60600:39;;60669:5;-1:-1:-1;;;;;60658:16:0;:7;-1:-1:-1;;;;;60658:16:0;;:52;;;-1:-1:-1;;;;;;57363:25:0;;;57339:4;57363:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;60678:32;60658:87;;;;60738:7;-1:-1:-1;;;;;60714:31:0;:20;60726:7;60714:11;:20::i;:::-;-1:-1:-1;;;;;60714:31:0;;60658:87;60650:96;60490:264;-1:-1:-1;;;;60490:264:0:o;84553:130::-;84655:20;84667:7;84655:11;:20::i;25531:191::-;25624:6;;;-1:-1:-1;;;;;25641:17:0;;;25624:6;25641:17;;;-1:-1:-1;;;;;;25641:17:0;;;;;;25674:40;;25624:6;;;;;;;;25674:40;;25605:16;;25674:40;25594:128;25531:191;:::o;28004:118::-;27013:19;:17;:19::i;:::-;28064:7:::1;:14:::0;;-1:-1:-1;;28064:14:0::1;28074:4;28064:14;::::0;;28094:20:::1;28101:12;22889:10:::0;;22809:98;83503:208;83553:15;83571:25;:15;6412:14;;6320:114;83571:25;:29;;83599:1;83571:29;:::i;:::-;83553:47;;83611:27;:15;6531:19;;6549:1;6531:19;;;6442:127;83611:27;83649:22;83659:2;83663:7;83649:9;:22::i;:::-;83682:21;83695:7;83682:12;:21::i;57016:155::-;57111:52;22889:10;57144:8;57154;57111:18;:52::i;58135:322::-;58309:41;22889:10;58342:7;58309:18;:41::i;:::-;58301:99;;;;-1:-1:-1;;;58301:99:0;;;;;;;:::i;:::-;58411:38;58425:4;58431:2;58435:7;58444:4;58411:13;:38::i;73028:624::-;73101:13;73127:23;73142:7;73127:14;:23::i;:::-;73163;73189:19;;;:10;:19;;;;;73163:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73219:18;73240:10;:8;:10::i;:::-;73219:31;;73332:4;73326:18;73348:1;73326:23;73322:72;;-1:-1:-1;73373:9:0;73028:624;-1:-1:-1;;73028:624:0:o;73322:72::-;73498:23;;:27;73494:108;;73573:4;73579:9;73556:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73542:48;;;;73028:624;;;:::o;73494:108::-;73621:23;73636:7;73621:14;:23::i;75495:224::-;75597:4;-1:-1:-1;;;;;;75621:50:0;;-1:-1:-1;;;75621:50:0;;:90;;;75675:36;75699:11;75675:23;:36::i;65871:174::-;65946:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;65946:29:0;-1:-1:-1;;;;;65946:29:0;;;;;;;;:24;;66000:23;65946:24;66000:14;:23::i;:::-;-1:-1:-1;;;;;65991:46:0;;;;;;;;;;;65871:174;;:::o;64489:1263::-;64648:4;-1:-1:-1;;;;;64621:31:0;:23;64636:7;64621:14;:23::i;:::-;-1:-1:-1;;;;;64621:31:0;;64613:81;;;;-1:-1:-1;;;64613:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;64713:16:0;;64705:65;;;;-1:-1:-1;;;64705:65:0;;18030:2:1;64705:65:0;;;18012:21:1;18069:2;18049:18;;;18042:30;18108:34;18088:18;;;18081:62;-1:-1:-1;;;18159:18:1;;;18152:34;18203:19;;64705:65:0;17828:400:1;64705:65:0;64783:42;64804:4;64810:2;64814:7;64823:1;64783:20;:42::i;:::-;64955:4;-1:-1:-1;;;;;64928:31:0;:23;64943:7;64928:14;:23::i;:::-;-1:-1:-1;;;;;64928:31:0;;64920:81;;;;-1:-1:-1;;;64920:81:0;;;;;;;:::i;:::-;65073:24;;;;:15;:24;;;;;;;;65066:31;;-1:-1:-1;;;;;;65066:31:0;;;;;;-1:-1:-1;;;;;65549:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;65549:20:0;;;65584:13;;;;;;;;;:18;;65066:31;65584:18;;;65624:16;;;:7;:16;;;;;;:21;;;;;;;;;;65663:27;;65089:7;;65663:27;;;85752:208;;;:::o;27752:108::-;27479:7;;;;27811:41;;;;-1:-1:-1;;;27811:41:0;;18435:2:1;27811:41:0;;;18417:21:1;18474:2;18454:18;;;18447:30;-1:-1:-1;;;18493:18:1;;;18486:50;18553:18;;27811:41:0;18233:344:1;71561:135:0;71630:20;71642:7;71630:11;:20::i;:::-;45864:26;;;;:17;:26;;;;;45857:33;84063:147::o;27567:108::-;27479:7;;;;27637:9;27629:38;;;;-1:-1:-1;;;27629:38:0;;18784:2:1;27629:38:0;;;18766:21:1;18823:2;18803:18;;;18796:30;-1:-1:-1;;;18842:18:1;;;18835:46;18898:18;;27629:38:0;18582:340:1;61096:110:0;61172:26;61182:2;61186:7;61172:26;;;;;;;;;;;;:9;:26::i;84919:354::-;60260:4;59858:16;;;:7;:16;;;;;;-1:-1:-1;;;;;59858:16:0;84986:73;;;;-1:-1:-1;;;84986:73:0;;19129:2:1;84986:73:0;;;19111:21:1;19168:2;19148:18;;;19141:30;19207:34;19187:18;;;19180:62;-1:-1:-1;;;19258:18:1;;;19251:42;19310:19;;84986:73:0;18927:408:1;84986:73:0;85070:20;85107:25;85124:7;85107:16;:25::i;:::-;85093:49;;;;;;;;:::i;:::-;;;;;;;;;;;;;85070:72;;85153:23;85203:10;:8;:10::i;:::-;85215:6;85186:36;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;85186:36:0;;;;;;;;;85234:19;;;;:10;85186:36;85234:19;;85186:36;;-1:-1:-1;85234:31:0;85186:36;85234:19;:31;:::i;66188:315::-;66343:8;-1:-1:-1;;;;;66334:17:0;:5;-1:-1:-1;;;;;66334:17:0;;66326:55;;;;-1:-1:-1;;;66326:55:0;;19542:2:1;66326:55:0;;;19524:21:1;19581:2;19561:18;;;19554:30;19620:27;19600:18;;;19593:55;19665:18;;66326:55:0;19340:349:1;66326:55:0;-1:-1:-1;;;;;66392:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;66392:46:0;;;;;;;;;;66454:41;;540::1;;;66454::0;;513:18:1;66454:41:0;;;;;;;66188:315;;;:::o;59338:313::-;59494:28;59504:4;59510:2;59514:7;59494:9;:28::i;:::-;59541:47;59564:4;59570:2;59574:7;59583:4;59541:22;:47::i;:::-;59533:110;;;;-1:-1:-1;;;59533:110:0;;;;;;;:::i;82229:100::-;82281:13;82314:7;82307:14;;;;;:::i;55605:281::-;55678:13;55704:23;55719:7;55704:14;:23::i;:::-;55740:21;55764:10;:8;:10::i;:::-;55740:34;;55816:1;55798:7;55792:21;:25;:86;;;;;;;;;;;;;;;;;55844:7;55853:18;:7;:16;:18::i;:::-;55827:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55792:86;55785:93;55605:281;-1:-1:-1;;;55605:281:0:o;54333:305::-;54435:4;-1:-1:-1;;;;;;54472:40:0;;-1:-1:-1;;;54472:40:0;;:105;;-1:-1:-1;;;;;;;54529:48:0;;-1:-1:-1;;;54529:48:0;54472:105;:158;;;;54594:36;54618:11;54594:23;:36::i;84218:257::-;27013:19;:17;:19::i;:::-;84411:56:::1;84438:4;84444:2;84448:7;84457:9;84411:26;:56::i;74250:206::-:0;74319:20;74331:7;74319:11;:20::i;:::-;74362:19;;;;:10;:19;;;;;74356:33;;;;;:::i;:::-;:38;;-1:-1:-1;74352:97:0;;74418:19;;;;:10;:19;;;;;74411:26;;;:::i;61433:319::-;61562:18;61568:2;61572:7;61562:5;:18::i;:::-;61613:53;61644:1;61648:2;61652:7;61661:4;61613:22;:53::i;:::-;61591:153;;;;-1:-1:-1;;;61591:153:0;;;;;;;:::i;20230:716::-;20286:13;20337:14;20354:17;20365:5;20354:10;:17::i;:::-;20374:1;20354:21;20337:38;;20390:20;20424:6;20413:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20413:18:0;-1:-1:-1;20390:41:0;-1:-1:-1;20555:28:0;;;20571:2;20555:28;20612:288;-1:-1:-1;;20644:5:0;-1:-1:-1;;;20781:2:0;20770:14;;20765:30;20644:5;20752:44;20842:2;20833:11;;;-1:-1:-1;20863:21:0;20612:288;20863:21;-1:-1:-1;20921:6:0;20230:716;-1:-1:-1;;;20230:716:0:o;67291:853::-;67445:4;-1:-1:-1;;;;;67466:13:0;;29924:19;:23;67462:675;;67502:71;;-1:-1:-1;;;67502:71:0;;-1:-1:-1;;;;;67502:36:0;;;;;:71;;22889:10;;67553:4;;67559:7;;67568:4;;67502:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67502:71:0;;;;;;;;-1:-1:-1;;67502:71:0;;;;;;;;;;;;:::i;:::-;;;67498:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67743:6;:13;67760:1;67743:18;67739:328;;67786:60;;-1:-1:-1;;;67786:60:0;;;;;;;:::i;67739:328::-;68017:6;68011:13;68002:6;67998:2;67994:15;67987:38;67498:584;-1:-1:-1;;;;;;67624:51:0;-1:-1:-1;;;67624:51:0;;-1:-1:-1;67617:58:0;;67462:675;-1:-1:-1;68121:4:0;67291:853;;;;;;:::o;43138:215::-;43240:4;-1:-1:-1;;;;;;43264:41:0;;-1:-1:-1;;;43264:41:0;;:81;;-1:-1:-1;;;;;;;;;;41691:40:0;;;43309:36;41582:157;76632:915;76809:61;76836:4;76842:2;76846:12;76860:9;76809:26;:61::i;:::-;76899:1;76887:9;:13;76883:222;;;77030:63;;-1:-1:-1;;;77030:63:0;;21063:2:1;77030:63:0;;;21045:21:1;21102:2;21082:18;;;21075:30;21141:34;21121:18;;;21114:62;-1:-1:-1;;;21192:18:1;;;21185:51;21253:19;;77030:63:0;20861:417:1;76883:222:0;77135:12;-1:-1:-1;;;;;77164:18:0;;77160:187;;77199:40;77231:7;78374:10;:17;;78347:24;;;;:15;:24;;;;;:44;;;78402:24;;;;;;;;;;;;78270:164;77199:40;77160:187;;;77269:2;-1:-1:-1;;;;;77261:10:0;:4;-1:-1:-1;;;;;77261:10:0;;77257:90;;77288:47;77321:4;77327:7;77288:32;:47::i;:::-;-1:-1:-1;;;;;77361:16:0;;77357:183;;77394:45;77431:7;77394:36;:45::i;:::-;77357:183;;;77467:4;-1:-1:-1;;;;;77461:10:0;:2;-1:-1:-1;;;;;77461:10:0;;77457:83;;77488:40;77516:2;77520:7;77488:27;:40::i;63369:783::-;63429:13;63445:23;63460:7;63445:14;:23::i;:::-;63429:39;;63481:51;63502:5;63517:1;63521:7;63530:1;63481:20;:51::i;:::-;63645:23;63660:7;63645:14;:23::i;:::-;63716:24;;;;:15;:24;;;;;;;;63709:31;;-1:-1:-1;;;;;;63709:31:0;;;;;;-1:-1:-1;;;;;63961:16:0;;;;;:9;:16;;;;;:21;;-1:-1:-1;;63961:21:0;;;64011:16;;;:7;:16;;;;;;64004:23;;;;;;;64045:36;63637:31;;-1:-1:-1;63732:7:0;;64045:36;;63716:24;;64045:36;82547:14:::1;82479:90:::0;:::o;62088:942::-;-1:-1:-1;;;;;62168:16:0;;62160:61;;;;-1:-1:-1;;;62160:61:0;;21485:2:1;62160:61:0;;;21467:21:1;;;21504:18;;;21497:30;21563:34;21543:18;;;21536:62;21615:18;;62160:61:0;21283:356:1;62160:61:0;60260:4;59858:16;;;:7;:16;;;;;;-1:-1:-1;;;;;59858:16:0;60284:31;62232:58;;;;-1:-1:-1;;;62232:58:0;;21846:2:1;62232:58:0;;;21828:21:1;21885:2;21865:18;;;21858:30;21924;21904:18;;;21897:58;21972:18;;62232:58:0;21644:352:1;62232:58:0;62303:48;62332:1;62336:2;62340:7;62349:1;62303:20;:48::i;:::-;60260:4;59858:16;;;:7;:16;;;;;;-1:-1:-1;;;;;59858:16:0;60284:31;62441:58;;;;-1:-1:-1;;;62441:58:0;;21846:2:1;62441:58:0;;;21828:21:1;21885:2;21865:18;;;21858:30;21924;21904:18;;;21897:58;21972:18;;62441:58:0;21644:352:1;62441:58:0;-1:-1:-1;;;;;62848:13:0;;;;;;:9;:13;;;;;;;;:18;;62865:1;62848:18;;;62890:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;62890:21:0;;;;;62929:33;62898:7;;62848:13;;62929:33;;62848:13;;62929:33;82547:14:::1;82479:90:::0;:::o;17090:922::-;17143:7;;-1:-1:-1;;;17221:15:0;;17217:102;;-1:-1:-1;;;17257:15:0;;;-1:-1:-1;17301:2:0;17291:12;17217:102;17346:6;17337:5;:15;17333:102;;17382:6;17373:15;;;-1:-1:-1;17417:2:0;17407:12;17333:102;17462:6;17453:5;:15;17449:102;;17498:6;17489:15;;;-1:-1:-1;17533:2:0;17523:12;17449:102;17578:5;17569;:14;17565:99;;17613:5;17604:14;;;-1:-1:-1;17647:1:0;17637:11;17565:99;17691:5;17682;:14;17678:99;;17726:5;17717:14;;;-1:-1:-1;17760:1:0;17750:11;17678:99;17804:5;17795;:14;17791:99;;17839:5;17830:14;;;-1:-1:-1;17873:1:0;17863:11;17791:99;17917:5;17908;:14;17904:66;;17953:1;17943:11;17998:6;17090:922;-1:-1:-1;;17090:922:0:o;68876:410::-;69066:1;69054:9;:13;69050:229;;;-1:-1:-1;;;;;69088:18:0;;;69084:87;;-1:-1:-1;;;;;69127:15:0;;;;;;:9;:15;;;;;:28;;69146:9;;69127:15;:28;;69146:9;;69127:28;:::i;:::-;;;;-1:-1:-1;;69084:87:0;-1:-1:-1;;;;;69189:16:0;;;69185:83;;-1:-1:-1;;;;;69226:13:0;;;;;;:9;:13;;;;;:26;;69243:9;;69226:13;:26;;69243:9;;69226:26;:::i;:::-;;;;-1:-1:-1;;68876:410:0;;;;:::o;79061:988::-;79327:22;79377:1;79352:22;79369:4;79352:16;:22::i;:::-;:26;;;;:::i;:::-;79389:18;79410:26;;;:17;:26;;;;;;79327:51;;-1:-1:-1;79543:28:0;;;79539:328;;-1:-1:-1;;;;;79610:18:0;;79588:19;79610:18;;;:12;:18;;;;;;;;:34;;;;;;;;;79661:30;;;;;;:44;;;79778:30;;:17;:30;;;;;:43;;;79539:328;-1:-1:-1;79963:26:0;;;;:17;:26;;;;;;;;79956:33;;;-1:-1:-1;;;;;80007:18:0;;;;;:12;:18;;;;;:34;;;;;;;80000:41;79061:988::o;80344:1079::-;80622:10;:17;80597:22;;80622:21;;80642:1;;80622:21;:::i;:::-;80654:18;80675:24;;;:15;:24;;;;;;81048:10;:26;;80597:46;;-1:-1:-1;80675:24:0;;80597:46;;81048:26;;;;;;:::i;:::-;;;;;;;;;81026:48;;81112:11;81087:10;81098;81087:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;81192:28;;;:15;:28;;;;;;;:41;;;81364:24;;;;;81357:31;81399:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;80415:1008;;;80344:1079;:::o;77848:221::-;77933:14;77950:20;77967:2;77950:16;:20::i;:::-;-1:-1:-1;;;;;77981:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;78026:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;77848:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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;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:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:248::-;2761:6;2769;2822:2;2810:9;2801:7;2797:23;2793:32;2790:52;;;2838:1;2835;2828:12;2790:52;-1:-1:-1;;2861:23:1;;;2931:2;2916:18;;;2903:32;;-1:-1:-1;2693:248:1:o;3464:127::-;3525:10;3520:3;3516:20;3513:1;3506:31;3556:4;3553:1;3546:15;3580:4;3577:1;3570:15;3596:275;3667:2;3661:9;3732:2;3713:13;;-1:-1:-1;;3709:27:1;3697:40;;3767:18;3752:34;;3788:22;;;3749:62;3746:88;;;3814:18;;:::i;:::-;3850:2;3843:22;3596:275;;-1:-1:-1;3596:275:1:o;3876:407::-;3941:5;3975:18;3967:6;3964:30;3961:56;;;3997:18;;:::i;:::-;4035:57;4080:2;4059:15;;-1:-1:-1;;4055:29:1;4086:4;4051:40;4035:57;:::i;:::-;4026:66;;4115:6;4108:5;4101:21;4155:3;4146:6;4141:3;4137:16;4134:25;4131:45;;;4172:1;4169;4162:12;4131:45;4221:6;4216:3;4209:4;4202:5;4198:16;4185:43;4275:1;4268:4;4259:6;4252:5;4248:18;4244:29;4237:40;3876:407;;;;;:::o;4288:451::-;4357:6;4410:2;4398:9;4389:7;4385:23;4381:32;4378:52;;;4426:1;4423;4416:12;4378:52;4466:9;4453:23;4499:18;4491:6;4488:30;4485:50;;;4531:1;4528;4521:12;4485:50;4554:22;;4607:4;4599:13;;4595:27;-1:-1:-1;4585:55:1;;4636:1;4633;4626:12;4585:55;4659:74;4725:7;4720:2;4707:16;4702:2;4698;4694:11;4659:74;:::i;4744:186::-;4803:6;4856:2;4844:9;4835:7;4831:23;4827:32;4824:52;;;4872:1;4869;4862:12;4824:52;4895:29;4914:9;4895:29;:::i;4935:118::-;5021:5;5014:13;5007:21;5000:5;4997:32;4987:60;;5043:1;5040;5033:12;5058:315;5123:6;5131;5184:2;5172:9;5163:7;5159:23;5155:32;5152:52;;;5200:1;5197;5190:12;5152:52;5223:29;5242:9;5223:29;:::i;:::-;5213:39;;5302:2;5291:9;5287:18;5274:32;5315:28;5337:5;5315:28;:::i;:::-;5362:5;5352:15;;;5058:315;;;;;:::o;5378:667::-;5473:6;5481;5489;5497;5550:3;5538:9;5529:7;5525:23;5521:33;5518:53;;;5567:1;5564;5557:12;5518:53;5590:29;5609:9;5590:29;:::i;:::-;5580:39;;5638:38;5672:2;5661:9;5657:18;5638:38;:::i;:::-;5628:48;;5723:2;5712:9;5708:18;5695:32;5685:42;;5778:2;5767:9;5763:18;5750:32;5805:18;5797:6;5794:30;5791:50;;;5837:1;5834;5827:12;5791:50;5860:22;;5913:4;5905:13;;5901:27;-1:-1:-1;5891:55:1;;5942:1;5939;5932:12;5891:55;5965:74;6031:7;6026:2;6013:16;6008:2;6004;6000:11;5965:74;:::i;:::-;5955:84;;;5378:667;;;;;;;:::o;6050:1022::-;6143:6;6151;6204:2;6192:9;6183:7;6179:23;6175:32;6172:52;;;6220:1;6217;6210:12;6172:52;6260:9;6247:23;6289:18;6330:2;6322:6;6319:14;6316:34;;;6346:1;6343;6336:12;6316:34;6384:6;6373:9;6369:22;6359:32;;6429:7;6422:4;6418:2;6414:13;6410:27;6400:55;;6451:1;6448;6441:12;6400:55;6487:2;6474:16;6509:4;6532:2;6528;6525:10;6522:36;;;6538:18;;:::i;:::-;6584:2;6581:1;6577:10;6567:20;;6607:28;6631:2;6627;6623:11;6607:28;:::i;:::-;6669:15;;;6739:11;;;6735:20;;;6700:12;;;;6767:19;;;6764:39;;;6799:1;6796;6789:12;6764:39;6823:11;;;;6843:148;6859:6;6854:3;6851:15;6843:148;;;6925:23;6944:3;6925:23;:::i;:::-;6913:36;;6876:12;;;;6969;;;;6843:148;;;7010:5;7047:18;;;;7034:32;;-1:-1:-1;;;;;;;6050:1022:1:o;7077:260::-;7145:6;7153;7206:2;7194:9;7185:7;7181:23;7177:32;7174:52;;;7222:1;7219;7212:12;7174:52;7245:29;7264:9;7245:29;:::i;:::-;7235:39;;7293:38;7327:2;7316:9;7312:18;7293:38;:::i;:::-;7283:48;;7077:260;;;;;:::o;7342:380::-;7421:1;7417:12;;;;7464;;;7485:61;;7539:4;7531:6;7527:17;7517:27;;7485:61;7592:2;7584:6;7581:14;7561:18;7558:38;7555:161;;7638:10;7633:3;7629:20;7626:1;7619:31;7673:4;7670:1;7663:15;7701:4;7698:1;7691:15;7555:161;;7342:380;;;:::o;7727:127::-;7788:10;7783:3;7779:20;7776:1;7769:31;7819:4;7816:1;7809:15;7843:4;7840:1;7833:15;7859:168;7932:9;;;7963;;7980:15;;;7974:22;;7960:37;7950:71;;8001:18;;:::i;8164:217::-;8204:1;8230;8220:132;;8274:10;8269:3;8265:20;8262:1;8255:31;8309:4;8306:1;8299:15;8337:4;8334:1;8327:15;8220:132;-1:-1:-1;8366:9:1;;8164:217::o;9008:409::-;9210:2;9192:21;;;9249:2;9229:18;;;9222:30;9288:34;9283:2;9268:18;;9261:62;-1:-1:-1;;;9354:2:1;9339:18;;9332:43;9407:3;9392:19;;9008:409::o;9835:127::-;9896:10;9891:3;9887:20;9884:1;9877:31;9927:4;9924:1;9917:15;9951:4;9948:1;9941:15;10093:545;10195:2;10190:3;10187:11;10184:448;;;10231:1;10256:5;10252:2;10245:17;10301:4;10297:2;10287:19;10371:2;10359:10;10355:19;10352:1;10348:27;10342:4;10338:38;10407:4;10395:10;10392:20;10389:47;;;-1:-1:-1;10430:4:1;10389:47;10485:2;10480:3;10476:12;10473:1;10469:20;10463:4;10459:31;10449:41;;10540:82;10558:2;10551:5;10548:13;10540:82;;;10603:17;;;10584:1;10573:13;10540:82;;;10544:3;;;10093:545;;;:::o;10814:1352::-;10940:3;10934:10;10967:18;10959:6;10956:30;10953:56;;;10989:18;;:::i;:::-;11018:97;11108:6;11068:38;11100:4;11094:11;11068:38;:::i;:::-;11062:4;11018:97;:::i;:::-;11170:4;;11234:2;11223:14;;11251:1;11246:663;;;;11953:1;11970:6;11967:89;;;-1:-1:-1;12022:19:1;;;12016:26;11967:89;-1:-1:-1;;10771:1:1;10767:11;;;10763:24;10759:29;10749:40;10795:1;10791:11;;;10746:57;12069:81;;11216:944;;11246:663;10040:1;10033:14;;;10077:4;10064:18;;-1:-1:-1;;11282:20:1;;;11400:236;11414:7;11411:1;11408:14;11400:236;;;11503:19;;;11497:26;11482:42;;11595:27;;;;11563:1;11551:14;;;;11430:19;;11400:236;;;11404:3;11664:6;11655:7;11652:19;11649:201;;;11725:19;;;11719:26;-1:-1:-1;;11808:1:1;11804:14;;;11820:3;11800:24;11796:37;11792:42;11777:58;11762:74;;11649:201;-1:-1:-1;;;;;11896:1:1;11880:14;;;11876:22;11863:36;;-1:-1:-1;10814:1352:1:o;13632:125::-;13697:9;;;13718:10;;;13715:36;;;13731:18;;:::i;13762:405::-;13964:2;13946:21;;;14003:2;13983:18;;;13976:30;14042:34;14037:2;14022:18;;14015:62;-1:-1:-1;;;14108:2:1;14093:18;;14086:39;14157:3;14142:19;;13762:405::o;14172:135::-;14211:3;14232:17;;;14229:43;;14252:18;;:::i;:::-;-1:-1:-1;14299:1:1;14288:13;;14172:135::o;14312:445::-;14533:3;14571:6;14565:13;14587:66;14646:6;14641:3;14634:4;14626:6;14622:17;14587:66;:::i;:::-;-1:-1:-1;;;14675:16:1;;14700:22;;;-1:-1:-1;14749:1:1;14738:13;;14312:445;-1:-1:-1;14312:445:1:o;15478:245::-;15545:6;15598:2;15586:9;15577:7;15573:23;15569:32;15566:52;;;15614:1;15611;15604:12;15566:52;15646:9;15640:16;15665:28;15687:5;15665:28;:::i;16921:496::-;17100:3;17138:6;17132:13;17154:66;17213:6;17208:3;17201:4;17193:6;17189:17;17154:66;:::i;:::-;17283:13;;17242:16;;;;17305:70;17283:13;17242:16;17352:4;17340:17;;17305:70;:::i;:::-;17391:20;;16921:496;-1:-1:-1;;;;16921:496:1:o;17422:401::-;17624:2;17606:21;;;17663:2;17643:18;;;17636:30;17702:34;17697:2;17682:18;;17675:62;-1:-1:-1;;;17768:2:1;17753:18;;17746:35;17813:3;17798:19;;17422:401::o;19694:414::-;19896:2;19878:21;;;19935:2;19915:18;;;19908:30;19974:34;19969:2;19954:18;;19947:62;-1:-1:-1;;;20040:2:1;20025:18;;20018:48;20098:3;20083:19;;19694:414::o;20113:489::-;-1:-1:-1;;;;;20382:15:1;;;20364:34;;20434:15;;20429:2;20414:18;;20407:43;20481:2;20466:18;;20459:34;;;20529:3;20524:2;20509:18;;20502:31;;;20307:4;;20550:46;;20576:19;;20568:6;20550:46;:::i;:::-;20542:54;20113:489;-1:-1:-1;;;;;;20113:489:1:o;20607:249::-;20676:6;20729:2;20717:9;20708:7;20704:23;20700:32;20697:52;;;20745:1;20742;20735:12;20697:52;20777:9;20771:16;20796:30;20820:5;20796:30;:::i;22001:128::-;22068:9;;;22089:11;;;22086:37;;;22103:18;;:::i;22134:127::-;22195:10;22190:3;22186:20;22183:1;22176:31;22226:4;22223:1;22216:15;22250:4;22247:1;22240:15

Swarm Source

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