ETH Price: $3,392.96 (-1.26%)
Gas: 2 Gwei

Token

AI-Log by Alina Trifan (AILAT)
 

Overview

Max Total Supply

100 AILAT

Holders

68

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 AILAT
0xdada9e84c051e58f60e92b796620ccf3e4ba9119
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xF66b916a...A1F238721
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
PPPCollection

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-12
*/

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


pragma solidity ^0.8.13;

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

// File: @openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol


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

pragma solidity ^0.8.2;


/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```solidity
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 *
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     * @custom:oz-retyped-from bool
     */
    uint8 private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint8 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts.
     *
     * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
     * constructor.
     *
     * Emits an {Initialized} event.
     */
    modifier initializer() {
        bool isTopLevelCall = !_initializing;
        require(
            (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
            "Initializable: contract is already initialized"
        );
        _initialized = 1;
        if (isTopLevelCall) {
            _initializing = true;
        }
        _;
        if (isTopLevelCall) {
            _initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * A reinitializer may be used after the original initialization step. This is essential to configure modules that
     * are added through upgrades and that require initialization.
     *
     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
     * cannot be nested. If one is invoked in the context of another, execution will revert.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     *
     * WARNING: setting the version to 255 will prevent any future reinitialization.
     *
     * Emits an {Initialized} event.
     */
    modifier reinitializer(uint8 version) {
        require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
        _initialized = version;
        _initializing = true;
        _;
        _initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     *
     * Emits an {Initialized} event the first time it is successfully executed.
     */
    function _disableInitializers() internal virtual {
        require(!_initializing, "Initializable: contract is initializing");
        if (_initialized != type(uint8).max) {
            _initialized = type(uint8).max;
            emit Initialized(type(uint8).max);
        }
    }

    /**
     * @dev Returns the highest version that has been initialized. See {reinitializer}.
     */
    function _getInitializedVersion() internal view returns (uint8) {
        return _initialized;
    }

    /**
     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
     */
    function _isInitializing() internal view returns (bool) {
        return _initializing;
    }
}

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


pragma solidity ^0.8.13;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: operator-filter-registry/src/upgradeable/OperatorFiltererUpgradeable.sol


pragma solidity ^0.8.13;



/**
 * @title  OperatorFiltererUpgradeable
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry when the init function is called.
 * @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 OperatorFiltererUpgradeable is Initializable {
    /// @notice Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    /// @dev The upgradeable initialize function that should be called when the contract is being upgraded.
    function __OperatorFilterer_init(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        onlyInitializing
    {
        // 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 (!OPERATOR_FILTER_REGISTRY.isRegistered(address(this))) {
                if (subscribe) {
                    OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    if (subscriptionOrRegistrantToCopy != address(0)) {
                        OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                    } else {
                        OPERATOR_FILTER_REGISTRY.register(address(this));
                    }
                }
            }
        }
    }

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

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

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

// File: operator-filter-registry/src/upgradeable/RevokableOperatorFiltererUpgradeable.sol


pragma solidity ^0.8.13;


/**
 * @title  Upgradeable storage layout for RevokableOperatorFiltererUpgradeable.
 * @notice Upgradeable contracts must use a storage layout that can be used across upgrades.
 *         Only append new variables to the end of the layout.
 */
library RevokableOperatorFiltererUpgradeableStorage {
    struct Layout {
        /// @dev Whether the OperatorFilterRegistry has been revoked.
        bool _isOperatorFilterRegistryRevoked;
    }

    /// @dev The storage slot for the layout.
    bytes32 internal constant STORAGE_SLOT = keccak256("RevokableOperatorFiltererUpgradeable.contracts.storage");

    /// @dev The layout of the storage.
    function layout() internal pure returns (Layout storage l) {
        bytes32 slot = STORAGE_SLOT;
        assembly {
            l.slot := slot
        }
    }
}

/**
 * @title  RevokableOperatorFilterer
 * @notice This contract is meant to allow contracts to permanently opt out of the OperatorFilterRegistry. The Registry
 *         itself has an "unregister" function, but if the contract is ownable, the owner can re-register at any point.
 *         As implemented, this abstract contract allows the contract owner to toggle the
 *         isOperatorFilterRegistryRevoked flag in order to permanently bypass the OperatorFilterRegistry checks.
 */
abstract contract RevokableOperatorFiltererUpgradeable is OperatorFiltererUpgradeable {
    using RevokableOperatorFiltererUpgradeableStorage for RevokableOperatorFiltererUpgradeableStorage.Layout;

    error OnlyOwner();
    error AlreadyRevoked();

    event OperatorFilterRegistryRevoked();

    function __RevokableOperatorFilterer_init(address subscriptionOrRegistrantToCopy, bool subscribe) internal {
        OperatorFiltererUpgradeable.__OperatorFilterer_init(subscriptionOrRegistrantToCopy, subscribe);
    }

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

    /**
     * @notice Disable the isOperatorFilterRegistryRevoked flag. OnlyOwner.
     */
    function revokeOperatorFilterRegistry() external {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        if (RevokableOperatorFiltererUpgradeableStorage.layout()._isOperatorFilterRegistryRevoked) {
            revert AlreadyRevoked();
        }
        RevokableOperatorFiltererUpgradeableStorage.layout()._isOperatorFilterRegistryRevoked = true;
        emit OperatorFilterRegistryRevoked();
    }

    function isOperatorFilterRegistryRevoked() public view returns (bool) {
        return RevokableOperatorFiltererUpgradeableStorage.layout()._isOperatorFilterRegistryRevoked;
    }

    /**
     * @dev assume the contract has an owner, but leave specific Ownable implementation up to inheriting contract
     */
    function owner() public view virtual returns (address);
}

// File: operator-filter-registry/src/upgradeable/RevokableDefaultOperatorFiltererUpgradeable.sol


pragma solidity ^0.8.13;



/**
 * @title  RevokableDefaultOperatorFiltererUpgradeable
 * @notice Inherits from RevokableOperatorFiltererUpgradeable and automatically subscribes to the default OpenSea subscription
 *         when the init function is called.
 *         Note that OpenSea will disable creator earnings enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 */
abstract contract RevokableDefaultOperatorFiltererUpgradeable is RevokableOperatorFiltererUpgradeable {
    /// @dev The upgradeable initialize function that should be called when the contract is being upgraded.
    function __RevokableDefaultOperatorFilterer_init() internal onlyInitializing {
        RevokableOperatorFiltererUpgradeable.__RevokableOperatorFilterer_init(CANONICAL_CORI_SUBSCRIPTION, true);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: MultiAuction 5/PPPCollection.sol


// Copyright (c) 2022-2023 Fellowship

pragma solidity ^0.8.17;






/// @title Token Base
/// @notice Shared logic for token contracts
contract PPPCollection is  ERC721, Ownable, RevokableDefaultOperatorFiltererUpgradeable {
    uint256 private immutable MAX_SUPPLY;

    address public royaltyReceiver;
    address public minter;
    address public metadataContract;

    uint256 public royaltyFraction;
    uint256 public royaltyDenominator = 100;

    /// @notice Count of valid NFTs tracked by this contract
    uint256 public totalSupply;

    /// @notice Return the baseURI used for computing `tokenURI` values
    string public baseURI;

    error OnlyMinter();

    /// @dev This event emits when the metadata of a token is changed. Anyone aware of ERC-4906 can update cached
    ///  attributes related to a given `tokenId`.
    event MetadataUpdate(uint256 tokenId);

    /// @dev This event emits when the metadata of a range of tokens is changed. Anyone aware of ERC-4906 can update
    ///  cached attributes for tokens in the designated range.
    event BatchMetadataUpdate(uint256 fromTokenId, uint256 toTokenId);

    constructor(
        string memory name,
        string memory symbol,
        string memory baseURI_,
        uint256 maxSupply,
        address royaltyReceiver_,
        uint256 royaltyPercent
    ) ERC721(name, symbol) {
        // CHECKS inputs
        require(maxSupply > 0, "Max supply must not be zero");
        require(royaltyReceiver_ != address(0), "Royalty receiver must not be the zero address");
        require(royaltyPercent <= 100, "Royalty fraction must not be greater than 100%");

        // EFFECTS
        MAX_SUPPLY = maxSupply;
        baseURI = baseURI_;
        royaltyReceiver = royaltyReceiver_;
        royaltyFraction = royaltyPercent;
    }

    modifier onlyMinter() {
        if (msg.sender != minter) revert OnlyMinter();
        _;
    }

    /// @inheritdoc Ownable
    function owner() public view virtual override(Ownable, RevokableOperatorFiltererUpgradeable) returns (address) {
        return Ownable.owner();
    }

    // MINTER FUNCTIONS

    /// @notice Mint an unclaimed token to the given address
    /// @dev Can only be called by the `minter` address
    /// @param to The new token owner that will receive the minted token
    /// @param tokenId The token being claimed. Reverts if invalid or already claimed.
    function mint(address to, uint256 tokenId) external onlyMinter {
        // CHECKS inputs
        require(tokenId > 0 && tokenId <= MAX_SUPPLY, "Invalid token ID");
        // CHECKS + EFFECTS (not _safeMint, so no interactions)
        _mint(to, tokenId);
        // More EFFECTS
        unchecked {
            totalSupply++;
        }
    }

    // ERC721 OVERRIDES

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

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

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

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

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

    // OWNER FUNCTIONS

    /// @notice Set the `minter` address
    /// @dev Can only be called by the contract `owner`
    function setMinter(address minter_) external onlyOwner {
        minter = minter_;
    }

    /// @notice Set the `royaltyReceiver` address
    /// @dev Can only be called by the contract `owner`
    function setRoyaltyReceiver(address royaltyReceiver_) external onlyOwner {
        // CHECKS inputs
        require(royaltyReceiver_ != address(0), "Royalty receiver must not be the zero address");
        // EFFECTS
        royaltyReceiver = royaltyReceiver_;
    }

    /// @notice Update the royalty fraction
    /// @dev Can only be called by the contract `owner`
    function setRoyaltyFraction(uint256 royaltyFraction_, uint256 royaltyDenominator_) external onlyOwner {
        // CHECKS inputss
        require(royaltyDenominator_ != 0, "Royalty denominator must not be zero");
        require(royaltyFraction_ <= royaltyDenominator_, "Royalty fraction must not be greater than 100%");
        // EFFECTS
        royaltyFraction = royaltyFraction_;
        royaltyDenominator = royaltyDenominator_;
    }

    /// @notice Update the baseURI for all metadata
    /// @dev Can only be called by the contract `owner`. Emits an ERC-4906 event.
    /// @param baseURI_ The new URI base. When specified, token URIs are created by concatenating the baseURI,
    ///  token ID, and ".json".
    function updateBaseURI(string calldata baseURI_) external onlyOwner {
        // CHECKS inputs
        require(bytes(baseURI_).length > 0, "New base URI must be provided");

        // EFFECTS
        baseURI = baseURI_;
        metadataContract = address(0);

        emit BatchMetadataUpdate(1, MAX_SUPPLY);
    }

    /// @notice Delegate all `tokenURI` calls to another contract
    /// @dev Can only be called by the contract `owner`. Emits an ERC-4906 event.
    /// @param delegate The contract that will handle `tokenURI` responses
    function delegateTokenURIs(address delegate) external onlyOwner {
        // CHECKS inputs
        require(delegate != address(0), "New metadata delegate must not be the zero address");
        require(delegate.code.length > 0, "New metadata delegate must be a contract");

        // EFFECTS
        baseURI = "";
        metadataContract = delegate;

        emit BatchMetadataUpdate(1, MAX_SUPPLY);
    }

    // VIEW FUNCTIONS

    /// @notice The URI for the given token
    /// @dev Throws if `tokenId` is not valid or has not been minted
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        _requireMinted(tokenId);

        if (bytes(baseURI).length > 0) {
            return string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json"));
        }

        if (address(metadataContract) != address(0)) {
            return IERC721Metadata(metadataContract).tokenURI(tokenId);
        }

        revert("tokenURI not configured");
    }

    /// @notice Return whether the given tokenId has been minted yet
    function exists(uint256 tokenId) external view returns (bool) {
        return _exists(tokenId);
    }

    /// @notice Calculate how much royalty is owed and to whom
    /// @param salePrice - the sale price of the NFT asset
    /// @return receiver - address of where the royalty payment should be sent
    /// @return royaltyAmount - the royalty payment amount for salePrice
    function royaltyInfo(uint256, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount) {
        receiver = royaltyReceiver;
        // Use OpenZeppelin math utils for full precision multiply and divide without overflow
        royaltyAmount = Math.mulDiv(salePrice, royaltyFraction, royaltyDenominator, Math.Rounding.Up);
    }

    /// @notice Query if a contract implements an interface
    /// @dev Interface identification is specified in ERC-165. This function uses less than 30,000 gas.
    /// @param interfaceId The interface identifier, as specified in ERC-165
    /// @return `true` if the contract implements `interfaceID` and `interfaceID` is not 0xffffffff, `false` otherwise
    function supportsInterface(bytes4 interfaceId) public pure virtual override returns (bool) {
        return
            interfaceId == 0x80ac58cd || // ERC-721 Non-Fungible Token Standard
            interfaceId == 0x5b5e139f || // ERC-721 Non-Fungible Token Standard - metadata extension
            interfaceId == 0x2a55205a || // ERC-2981 NFT Royalty Standard
            interfaceId == 0x49064906 || // ERC-4906 Metadata Update Extension
            interfaceId == 0x7f5828d0 || // ERC-173 Contract Ownership Standard
            interfaceId == 0x01ffc9a7; // ERC-165 Standard Interface Detection
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"address","name":"royaltyReceiver_","type":"address"},{"internalType":"uint256","name":"royaltyPercent","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyRevoked","type":"error"},{"inputs":[],"name":"OnlyMinter","type":"error"},{"inputs":[],"name":"OnlyOwner","type":"error"},{"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":false,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"MetadataUpdate","type":"event"},{"anonymous":false,"inputs":[],"name":"OperatorFilterRegistryRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegate","type":"address"}],"name":"delegateTokenURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isOperatorFilterRegistryRevoked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revokeOperatorFilterRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyFraction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"address","name":"minter_","type":"address"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"royaltyFraction_","type":"uint256"},{"internalType":"uint256","name":"royaltyDenominator_","type":"uint256"}],"name":"setRoyaltyFraction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"royaltyReceiver_","type":"address"}],"name":"setRoyaltyReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526064600b553480156200001657600080fd5b506040516200294c3803806200294c833981016040819052620000399162000301565b8585600062000049838262000457565b50600162000058828262000457565b505050620000756200006f620001e660201b60201c565b620001ea565b60008311620000cb5760405162461bcd60e51b815260206004820152601b60248201527f4d617820737570706c79206d757374206e6f74206265207a65726f000000000060448201526064015b60405180910390fd5b6001600160a01b038216620001395760405162461bcd60e51b815260206004820152602d60248201527f526f79616c7479207265636569766572206d757374206e6f742062652074686560448201526c207a65726f206164647265737360981b6064820152608401620000c2565b6064811115620001a35760405162461bcd60e51b815260206004820152602e60248201527f526f79616c7479206672616374696f6e206d757374206e6f742062652067726560448201526d61746572207468616e203130302560901b6064820152608401620000c2565b6080839052600d620001b6858262000457565b50600780546001600160a01b0319166001600160a01b039390931692909217909155600a55506200052392505050565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200026457600080fd5b81516001600160401b03808211156200028157620002816200023c565b604051601f8301601f19908116603f01168101908282118183101715620002ac57620002ac6200023c565b81604052838152602092508683858801011115620002c957600080fd5b600091505b83821015620002ed5785820183015181830184015290820190620002ce565b600093810190920192909252949350505050565b60008060008060008060c087890312156200031b57600080fd5b86516001600160401b03808211156200033357600080fd5b620003418a838b0162000252565b975060208901519150808211156200035857600080fd5b620003668a838b0162000252565b965060408901519150808211156200037d57600080fd5b506200038c89828a0162000252565b606089015160808a0151919650945090506001600160a01b0381168114620003b357600080fd5b8092505060a087015190509295509295509295565b600181811c90821680620003dd57607f821691505b602082108103620003fe57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200045257600081815260208120601f850160051c810160208610156200042d5750805b601f850160051c820191505b818110156200044e5782815560010162000439565b5050505b505050565b81516001600160401b038111156200047357620004736200023c565b6200048b81620004848454620003c8565b8462000404565b602080601f831160018114620004c35760008415620004aa5750858301515b600019600386901b1c1916600185901b1785556200044e565b600085815260208120601f198616915b82811015620004f457888601518255948401946001909101908401620004d3565b5085821015620005135787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6080516123ff6200054d60003960008181610721015281816108050152610c2501526123ff6000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c806370a082311161011a578063b88d4fde116100ad578063ecba222a1161007c578063ecba222a14610427578063ecededad1461043f578063f2fde38b14610452578063fca3b5aa14610465578063fd8d7ed31461047857600080fd5b8063b88d4fde146103e5578063c87b56dd146103f8578063e7dee99f1461040b578063e985e9c51461041457600080fd5b8063931688cb116100e9578063931688cb146103a457806395d89b41146103b75780639fbc8713146103bf578063a22cb465146103d257600080fd5b806370a082311461036e578063715018a6146103815780638da5cb5b146103895780638dc251e31461039157600080fd5b80632a55205a116101925780634f558e79116101615780634f558e79146103385780635ef9432a1461034b5780636352211e146103535780636c0360eb1461036657600080fd5b80632a55205a146102cd57806335209821146102ff57806340c10f191461031257806342842e0e1461032557600080fd5b8063095ea7b3116101ce578063095ea7b31461027b578063113b98e01461029057806318160ddd146102a357806323b872dd146102ba57600080fd5b806301ffc9a71461020057806306fdde0314610228578063075461721461023d578063081812fc14610268575b600080fd5b61021361020e366004611b98565b610481565b60405190151581526020015b60405180910390f35b610230610524565b60405161021f9190611c05565b600854610250906001600160a01b031681565b6040516001600160a01b03909116815260200161021f565b610250610276366004611c18565b6105b6565b61028e610289366004611c4d565b6105dd565b005b61028e61029e366004611c77565b6105f6565b6102ac600c5481565b60405190815260200161021f565b61028e6102c8366004611c92565b610773565b6102e06102db366004611cce565b61079e565b604080516001600160a01b03909316835260208301919091520161021f565b600954610250906001600160a01b031681565b61028e610320366004611c4d565b6107cd565b61028e610333366004611c92565b61087e565b610213610346366004611c18565b6108a3565b61028e6108c2565b610250610361366004611c18565b610971565b6102306109d1565b6102ac61037c366004611c77565b610a5f565b61028e610ae5565b610250610af9565b61028e61039f366004611c77565b610b12565b61028e6103b2366004611cf0565b610ba8565b610230610c78565b600754610250906001600160a01b031681565b61028e6103e0366004611d70565b610c87565b61028e6103f3366004611e16565b610c9b565b610230610406366004611c18565b610cc8565b6102ac600a5481565b610213610422366004611ec1565b610de6565b6000805160206123aa8339815191525460ff16610213565b61028e61044d366004611cce565b610e14565b61028e610460366004611c77565b610eea565b61028e610473366004611c77565b610f63565b6102ac600b5481565b60006380ac58cd60e01b6001600160e01b0319831614806104b25750635b5e139f60e01b6001600160e01b03198316145b806104cd575063152a902d60e11b6001600160e01b03198316145b806104e85750632483248360e11b6001600160e01b03198316145b8061050357506307f5828d60e41b6001600160e01b03198316145b8061051e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461053390611eeb565b80601f016020809104026020016040519081016040528092919081815260200182805461055f90611eeb565b80156105ac5780601f10610581576101008083540402835291602001916105ac565b820191906000526020600020905b81548152906001019060200180831161058f57829003601f168201915b5050505050905090565b60006105c182610f8d565b506000908152600460205260409020546001600160a01b031690565b816105e781610fec565b6105f183836110c3565b505050565b6105fe6111d3565b6001600160a01b0381166106745760405162461bcd60e51b815260206004820152603260248201527f4e6577206d657461646174612064656c6567617465206d757374206e6f7420626044820152716520746865207a65726f206164647265737360701b60648201526084015b60405180910390fd5b6000816001600160a01b03163b116106df5760405162461bcd60e51b815260206004820152602860248201527f4e6577206d657461646174612064656c6567617465206d75737420626520612060448201526718dbdb9d1c9858dd60c21b606482015260840161066b565b604080516020810190915260008152600d906106fb9082611f73565b50600980546001600160a01b0319166001600160a01b03831617905560408051600181527f000000000000000000000000000000000000000000000000000000000000000060208201527f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c910160405180910390a150565b826001600160a01b038116331461078d5761078d33610fec565b610798848484611232565b50505050565b600754600a54600b546001600160a01b03909216916000916107c4918591906001611263565b90509250929050565b6008546001600160a01b031633146107f857604051639cdc2ed560e01b815260040160405180910390fd5b60008111801561082857507f00000000000000000000000000000000000000000000000000000000000000008111155b6108675760405162461bcd60e51b815260206004820152601060248201526f125b9d985b1a59081d1bdad95b88125160821b604482015260640161066b565b61087182826112c2565b5050600c80546001019055565b826001600160a01b03811633146108985761089833610fec565b61079884848461144e565b6000818152600260205260408120546001600160a01b0316151561051e565b6108ca610af9565b6001600160a01b0316336001600160a01b0316146108fb57604051635fc483c560e01b815260040160405180910390fd5b6000805160206123aa8339815191525460ff161561092c5760405163905e710760e01b815260040160405180910390fd5b6000805160206123aa833981519152805460ff191660011790556040517f51e2d870cc2e10853e38dc06fcdae46ad3c3f588f326608803dac6204541ad1690600090a1565b6000818152600260205260408120546001600160a01b03168061051e5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161066b565b600d80546109de90611eeb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90611eeb565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b505050505081565b60006001600160a01b038216610ac95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161066b565b506001600160a01b031660009081526003602052604090205490565b610aed6111d3565b610af76000611469565b565b6000610b0d6006546001600160a01b031690565b905090565b610b1a6111d3565b6001600160a01b038116610b865760405162461bcd60e51b815260206004820152602d60248201527f526f79616c7479207265636569766572206d757374206e6f742062652074686560448201526c207a65726f206164647265737360981b606482015260840161066b565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610bb06111d3565b80610bfd5760405162461bcd60e51b815260206004820152601d60248201527f4e6577206261736520555249206d7573742062652070726f7669646564000000604482015260640161066b565b600d610c0a828483612033565b50600980546001600160a01b031916905560408051600181527f000000000000000000000000000000000000000000000000000000000000000060208201527f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c910160405180910390a15050565b60606001805461053390611eeb565b81610c9181610fec565b6105f183836114bb565b836001600160a01b0381163314610cb557610cb533610fec565b610cc1858585856114c6565b5050505050565b6060610cd382610f8d565b6000600d8054610ce290611eeb565b90501115610d1c57600d610cf5836114f8565b604051602001610d069291906120f3565b6040516020818303038152906040529050919050565b6009546001600160a01b031615610d9e5760095460405163c87b56dd60e01b8152600481018490526001600160a01b039091169063c87b56dd90602401600060405180830381865afa158015610d76573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261051e919081019061218a565b60405162461bcd60e51b815260206004820152601760248201527f746f6b656e555249206e6f7420636f6e66696775726564000000000000000000604482015260640161066b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610e1c6111d3565b80600003610e785760405162461bcd60e51b8152602060048201526024808201527f526f79616c74792064656e6f6d696e61746f72206d757374206e6f74206265206044820152637a65726f60e01b606482015260840161066b565b80821115610edf5760405162461bcd60e51b815260206004820152602e60248201527f526f79616c7479206672616374696f6e206d757374206e6f742062652067726560448201526d61746572207468616e203130302560901b606482015260840161066b565b600a91909155600b55565b610ef26111d3565b6001600160a01b038116610f575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161066b565b610f6081611469565b50565b610f6b6111d3565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260409020546001600160a01b0316610f605760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161066b565b6000805160206123aa8339815191525460ff1615801561101a57506daaeb6d7670e522a718067333cd4e3b15155b15610f6057604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611077573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109b9190612201565b610f6057604051633b79c77360e21b81526001600160a01b038216600482015260240161066b565b60006110ce82610971565b9050806001600160a01b0316836001600160a01b03160361113b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161066b565b336001600160a01b038216148061115757506111578133610de6565b6111c95760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161066b565b6105f1838361158b565b336111dc610af9565b6001600160a01b031614610af75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161066b565b61123c33826115f9565b6112585760405162461bcd60e51b815260040161066b9061221e565b6105f1838383611657565b6000806112718686866117bb565b905060018360028111156112875761128761226b565b1480156112a457506000848061129f5761129f612281565b868809115b156112b7576112b4600182612297565b90505b90505b949350505050565b6001600160a01b0382166113185760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161066b565b6000818152600260205260409020546001600160a01b03161561137d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161066b565b6000818152600260205260409020546001600160a01b0316156113e25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161066b565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45b5050565b6105f183838360405180602001604052806000815250610c9b565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61144a3383836118ab565b6114d033836115f9565b6114ec5760405162461bcd60e51b815260040161066b9061221e565b61079884848484611979565b60606000611505836119ac565b600101905060008167ffffffffffffffff81111561152557611525611da7565b6040519080825280601f01601f19166020018201604052801561154f576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461155957509392505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115c082610971565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061160583610971565b9050806001600160a01b0316846001600160a01b0316148061162c575061162c8185610de6565b806112ba5750836001600160a01b0316611645846105b6565b6001600160a01b031614949350505050565b826001600160a01b031661166a82610971565b6001600160a01b0316146116905760405162461bcd60e51b815260040161066b906122b8565b6001600160a01b0382166116f25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161066b565b826001600160a01b031661170582610971565b6001600160a01b03161461172b5760405162461bcd60e51b815260040161066b906122b8565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008080600019858709858702925082811083820303915050806000036117f5578382816117eb576117eb612281565b04925050506118a4565b80841161183c5760405162461bcd60e51b81526020600482015260156024820152744d6174683a206d756c446976206f766572666c6f7760581b604482015260640161066b565b600084868809851960019081018716968790049682860381900495909211909303600082900391909104909201919091029190911760038402600290811880860282030280860282030280860282030280860282030280860282030280860290910302029150505b9392505050565b816001600160a01b0316836001600160a01b03160361190c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161066b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611984848484611657565b61199084848484611a84565b6107985760405162461bcd60e51b815260040161066b906122fd565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106119eb5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611a17576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611a3557662386f26fc10000830492506010015b6305f5e1008310611a4d576305f5e100830492506008015b6127108310611a6157612710830492506004015b60648310611a73576064830492506002015b600a831061051e5760010192915050565b60006001600160a01b0384163b15611b7a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ac890339089908890889060040161234f565b6020604051808303816000875af1925050508015611b03575060408051601f3d908101601f19168201909252611b009181019061238c565b60015b611b60573d808015611b31576040519150601f19603f3d011682016040523d82523d6000602084013e611b36565b606091505b508051600003611b585760405162461bcd60e51b815260040161066b906122fd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112ba565b5060016112ba565b6001600160e01b031981168114610f6057600080fd5b600060208284031215611baa57600080fd5b81356118a481611b82565b60005b83811015611bd0578181015183820152602001611bb8565b50506000910152565b60008151808452611bf1816020860160208601611bb5565b601f01601f19169290920160200192915050565b6020815260006118a46020830184611bd9565b600060208284031215611c2a57600080fd5b5035919050565b80356001600160a01b0381168114611c4857600080fd5b919050565b60008060408385031215611c6057600080fd5b611c6983611c31565b946020939093013593505050565b600060208284031215611c8957600080fd5b6118a482611c31565b600080600060608486031215611ca757600080fd5b611cb084611c31565b9250611cbe60208501611c31565b9150604084013590509250925092565b60008060408385031215611ce157600080fd5b50508035926020909101359150565b60008060208385031215611d0357600080fd5b823567ffffffffffffffff80821115611d1b57600080fd5b818501915085601f830112611d2f57600080fd5b813581811115611d3e57600080fd5b866020828501011115611d5057600080fd5b60209290920196919550909350505050565b8015158114610f6057600080fd5b60008060408385031215611d8357600080fd5b611d8c83611c31565b91506020830135611d9c81611d62565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611de657611de6611da7565b604052919050565b600067ffffffffffffffff821115611e0857611e08611da7565b50601f01601f191660200190565b60008060008060808587031215611e2c57600080fd5b611e3585611c31565b9350611e4360208601611c31565b925060408501359150606085013567ffffffffffffffff811115611e6657600080fd5b8501601f81018713611e7757600080fd5b8035611e8a611e8582611dee565b611dbd565b818152886020838501011115611e9f57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b60008060408385031215611ed457600080fd5b611edd83611c31565b91506107c460208401611c31565b600181811c90821680611eff57607f821691505b602082108103611f1f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156105f157600081815260208120601f850160051c81016020861015611f4c5750805b601f850160051c820191505b81811015611f6b57828155600101611f58565b505050505050565b815167ffffffffffffffff811115611f8d57611f8d611da7565b611fa181611f9b8454611eeb565b84611f25565b602080601f831160018114611fd65760008415611fbe5750858301515b600019600386901b1c1916600185901b178555611f6b565b600085815260208120601f198616915b8281101561200557888601518255948401946001909101908401611fe6565b50858210156120235787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b67ffffffffffffffff83111561204b5761204b611da7565b61205f836120598354611eeb565b83611f25565b6000601f841160018114612093576000851561207b5750838201355b600019600387901b1c1916600186901b178355610cc1565b600083815260209020601f19861690835b828110156120c457868501358255602094850194600190920191016120a4565b50868210156120e15760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600080845461210181611eeb565b60018281168015612119576001811461212e5761215d565b60ff198416875282151583028701945061215d565b8860005260208060002060005b858110156121545781548a82015290840190820161213b565b50505082870194505b505050508351612171818360208801611bb5565b64173539b7b760d91b9101908152600501949350505050565b60006020828403121561219c57600080fd5b815167ffffffffffffffff8111156121b357600080fd5b8201601f810184136121c457600080fd5b80516121d2611e8582611dee565b8181528560208385010111156121e757600080fd5b6121f8826020830160208601611bb5565b95945050505050565b60006020828403121561221357600080fd5b81516118a481611d62565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b8082018082111561051e57634e487b7160e01b600052601160045260246000fd5b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061238290830184611bd9565b9695505050505050565b60006020828403121561239e57600080fd5b81516118a481611b8256fe5763ff58c27377b9a9b40e9e2f5e53a9dd7cff5464aac8fc758a651823f78e5ea26469706673582212203a4efefbda1325f55bf20fd8b001ab1ee2d832cb4db80729e4a446ab8126127b64736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c5325831462d809fbf532d71029fa3efe35cbcce0000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000002453656e7469656e74204d757070657420466163746f727920627920426574682046726579000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005534d4642460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c806370a082311161011a578063b88d4fde116100ad578063ecba222a1161007c578063ecba222a14610427578063ecededad1461043f578063f2fde38b14610452578063fca3b5aa14610465578063fd8d7ed31461047857600080fd5b8063b88d4fde146103e5578063c87b56dd146103f8578063e7dee99f1461040b578063e985e9c51461041457600080fd5b8063931688cb116100e9578063931688cb146103a457806395d89b41146103b75780639fbc8713146103bf578063a22cb465146103d257600080fd5b806370a082311461036e578063715018a6146103815780638da5cb5b146103895780638dc251e31461039157600080fd5b80632a55205a116101925780634f558e79116101615780634f558e79146103385780635ef9432a1461034b5780636352211e146103535780636c0360eb1461036657600080fd5b80632a55205a146102cd57806335209821146102ff57806340c10f191461031257806342842e0e1461032557600080fd5b8063095ea7b3116101ce578063095ea7b31461027b578063113b98e01461029057806318160ddd146102a357806323b872dd146102ba57600080fd5b806301ffc9a71461020057806306fdde0314610228578063075461721461023d578063081812fc14610268575b600080fd5b61021361020e366004611b98565b610481565b60405190151581526020015b60405180910390f35b610230610524565b60405161021f9190611c05565b600854610250906001600160a01b031681565b6040516001600160a01b03909116815260200161021f565b610250610276366004611c18565b6105b6565b61028e610289366004611c4d565b6105dd565b005b61028e61029e366004611c77565b6105f6565b6102ac600c5481565b60405190815260200161021f565b61028e6102c8366004611c92565b610773565b6102e06102db366004611cce565b61079e565b604080516001600160a01b03909316835260208301919091520161021f565b600954610250906001600160a01b031681565b61028e610320366004611c4d565b6107cd565b61028e610333366004611c92565b61087e565b610213610346366004611c18565b6108a3565b61028e6108c2565b610250610361366004611c18565b610971565b6102306109d1565b6102ac61037c366004611c77565b610a5f565b61028e610ae5565b610250610af9565b61028e61039f366004611c77565b610b12565b61028e6103b2366004611cf0565b610ba8565b610230610c78565b600754610250906001600160a01b031681565b61028e6103e0366004611d70565b610c87565b61028e6103f3366004611e16565b610c9b565b610230610406366004611c18565b610cc8565b6102ac600a5481565b610213610422366004611ec1565b610de6565b6000805160206123aa8339815191525460ff16610213565b61028e61044d366004611cce565b610e14565b61028e610460366004611c77565b610eea565b61028e610473366004611c77565b610f63565b6102ac600b5481565b60006380ac58cd60e01b6001600160e01b0319831614806104b25750635b5e139f60e01b6001600160e01b03198316145b806104cd575063152a902d60e11b6001600160e01b03198316145b806104e85750632483248360e11b6001600160e01b03198316145b8061050357506307f5828d60e41b6001600160e01b03198316145b8061051e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461053390611eeb565b80601f016020809104026020016040519081016040528092919081815260200182805461055f90611eeb565b80156105ac5780601f10610581576101008083540402835291602001916105ac565b820191906000526020600020905b81548152906001019060200180831161058f57829003601f168201915b5050505050905090565b60006105c182610f8d565b506000908152600460205260409020546001600160a01b031690565b816105e781610fec565b6105f183836110c3565b505050565b6105fe6111d3565b6001600160a01b0381166106745760405162461bcd60e51b815260206004820152603260248201527f4e6577206d657461646174612064656c6567617465206d757374206e6f7420626044820152716520746865207a65726f206164647265737360701b60648201526084015b60405180910390fd5b6000816001600160a01b03163b116106df5760405162461bcd60e51b815260206004820152602860248201527f4e6577206d657461646174612064656c6567617465206d75737420626520612060448201526718dbdb9d1c9858dd60c21b606482015260840161066b565b604080516020810190915260008152600d906106fb9082611f73565b50600980546001600160a01b0319166001600160a01b03831617905560408051600181527f000000000000000000000000000000000000000000000000000000000000006460208201527f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c910160405180910390a150565b826001600160a01b038116331461078d5761078d33610fec565b610798848484611232565b50505050565b600754600a54600b546001600160a01b03909216916000916107c4918591906001611263565b90509250929050565b6008546001600160a01b031633146107f857604051639cdc2ed560e01b815260040160405180910390fd5b60008111801561082857507f00000000000000000000000000000000000000000000000000000000000000648111155b6108675760405162461bcd60e51b815260206004820152601060248201526f125b9d985b1a59081d1bdad95b88125160821b604482015260640161066b565b61087182826112c2565b5050600c80546001019055565b826001600160a01b03811633146108985761089833610fec565b61079884848461144e565b6000818152600260205260408120546001600160a01b0316151561051e565b6108ca610af9565b6001600160a01b0316336001600160a01b0316146108fb57604051635fc483c560e01b815260040160405180910390fd5b6000805160206123aa8339815191525460ff161561092c5760405163905e710760e01b815260040160405180910390fd5b6000805160206123aa833981519152805460ff191660011790556040517f51e2d870cc2e10853e38dc06fcdae46ad3c3f588f326608803dac6204541ad1690600090a1565b6000818152600260205260408120546001600160a01b03168061051e5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161066b565b600d80546109de90611eeb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90611eeb565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b505050505081565b60006001600160a01b038216610ac95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161066b565b506001600160a01b031660009081526003602052604090205490565b610aed6111d3565b610af76000611469565b565b6000610b0d6006546001600160a01b031690565b905090565b610b1a6111d3565b6001600160a01b038116610b865760405162461bcd60e51b815260206004820152602d60248201527f526f79616c7479207265636569766572206d757374206e6f742062652074686560448201526c207a65726f206164647265737360981b606482015260840161066b565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610bb06111d3565b80610bfd5760405162461bcd60e51b815260206004820152601d60248201527f4e6577206261736520555249206d7573742062652070726f7669646564000000604482015260640161066b565b600d610c0a828483612033565b50600980546001600160a01b031916905560408051600181527f000000000000000000000000000000000000000000000000000000000000006460208201527f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c910160405180910390a15050565b60606001805461053390611eeb565b81610c9181610fec565b6105f183836114bb565b836001600160a01b0381163314610cb557610cb533610fec565b610cc1858585856114c6565b5050505050565b6060610cd382610f8d565b6000600d8054610ce290611eeb565b90501115610d1c57600d610cf5836114f8565b604051602001610d069291906120f3565b6040516020818303038152906040529050919050565b6009546001600160a01b031615610d9e5760095460405163c87b56dd60e01b8152600481018490526001600160a01b039091169063c87b56dd90602401600060405180830381865afa158015610d76573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261051e919081019061218a565b60405162461bcd60e51b815260206004820152601760248201527f746f6b656e555249206e6f7420636f6e66696775726564000000000000000000604482015260640161066b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610e1c6111d3565b80600003610e785760405162461bcd60e51b8152602060048201526024808201527f526f79616c74792064656e6f6d696e61746f72206d757374206e6f74206265206044820152637a65726f60e01b606482015260840161066b565b80821115610edf5760405162461bcd60e51b815260206004820152602e60248201527f526f79616c7479206672616374696f6e206d757374206e6f742062652067726560448201526d61746572207468616e203130302560901b606482015260840161066b565b600a91909155600b55565b610ef26111d3565b6001600160a01b038116610f575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161066b565b610f6081611469565b50565b610f6b6111d3565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260409020546001600160a01b0316610f605760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161066b565b6000805160206123aa8339815191525460ff1615801561101a57506daaeb6d7670e522a718067333cd4e3b15155b15610f6057604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611077573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109b9190612201565b610f6057604051633b79c77360e21b81526001600160a01b038216600482015260240161066b565b60006110ce82610971565b9050806001600160a01b0316836001600160a01b03160361113b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161066b565b336001600160a01b038216148061115757506111578133610de6565b6111c95760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161066b565b6105f1838361158b565b336111dc610af9565b6001600160a01b031614610af75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161066b565b61123c33826115f9565b6112585760405162461bcd60e51b815260040161066b9061221e565b6105f1838383611657565b6000806112718686866117bb565b905060018360028111156112875761128761226b565b1480156112a457506000848061129f5761129f612281565b868809115b156112b7576112b4600182612297565b90505b90505b949350505050565b6001600160a01b0382166113185760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161066b565b6000818152600260205260409020546001600160a01b03161561137d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161066b565b6000818152600260205260409020546001600160a01b0316156113e25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161066b565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45b5050565b6105f183838360405180602001604052806000815250610c9b565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61144a3383836118ab565b6114d033836115f9565b6114ec5760405162461bcd60e51b815260040161066b9061221e565b61079884848484611979565b60606000611505836119ac565b600101905060008167ffffffffffffffff81111561152557611525611da7565b6040519080825280601f01601f19166020018201604052801561154f576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461155957509392505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115c082610971565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061160583610971565b9050806001600160a01b0316846001600160a01b0316148061162c575061162c8185610de6565b806112ba5750836001600160a01b0316611645846105b6565b6001600160a01b031614949350505050565b826001600160a01b031661166a82610971565b6001600160a01b0316146116905760405162461bcd60e51b815260040161066b906122b8565b6001600160a01b0382166116f25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161066b565b826001600160a01b031661170582610971565b6001600160a01b03161461172b5760405162461bcd60e51b815260040161066b906122b8565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008080600019858709858702925082811083820303915050806000036117f5578382816117eb576117eb612281565b04925050506118a4565b80841161183c5760405162461bcd60e51b81526020600482015260156024820152744d6174683a206d756c446976206f766572666c6f7760581b604482015260640161066b565b600084868809851960019081018716968790049682860381900495909211909303600082900391909104909201919091029190911760038402600290811880860282030280860282030280860282030280860282030280860282030280860290910302029150505b9392505050565b816001600160a01b0316836001600160a01b03160361190c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161066b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611984848484611657565b61199084848484611a84565b6107985760405162461bcd60e51b815260040161066b906122fd565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106119eb5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611a17576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611a3557662386f26fc10000830492506010015b6305f5e1008310611a4d576305f5e100830492506008015b6127108310611a6157612710830492506004015b60648310611a73576064830492506002015b600a831061051e5760010192915050565b60006001600160a01b0384163b15611b7a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ac890339089908890889060040161234f565b6020604051808303816000875af1925050508015611b03575060408051601f3d908101601f19168201909252611b009181019061238c565b60015b611b60573d808015611b31576040519150601f19603f3d011682016040523d82523d6000602084013e611b36565b606091505b508051600003611b585760405162461bcd60e51b815260040161066b906122fd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112ba565b5060016112ba565b6001600160e01b031981168114610f6057600080fd5b600060208284031215611baa57600080fd5b81356118a481611b82565b60005b83811015611bd0578181015183820152602001611bb8565b50506000910152565b60008151808452611bf1816020860160208601611bb5565b601f01601f19169290920160200192915050565b6020815260006118a46020830184611bd9565b600060208284031215611c2a57600080fd5b5035919050565b80356001600160a01b0381168114611c4857600080fd5b919050565b60008060408385031215611c6057600080fd5b611c6983611c31565b946020939093013593505050565b600060208284031215611c8957600080fd5b6118a482611c31565b600080600060608486031215611ca757600080fd5b611cb084611c31565b9250611cbe60208501611c31565b9150604084013590509250925092565b60008060408385031215611ce157600080fd5b50508035926020909101359150565b60008060208385031215611d0357600080fd5b823567ffffffffffffffff80821115611d1b57600080fd5b818501915085601f830112611d2f57600080fd5b813581811115611d3e57600080fd5b866020828501011115611d5057600080fd5b60209290920196919550909350505050565b8015158114610f6057600080fd5b60008060408385031215611d8357600080fd5b611d8c83611c31565b91506020830135611d9c81611d62565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611de657611de6611da7565b604052919050565b600067ffffffffffffffff821115611e0857611e08611da7565b50601f01601f191660200190565b60008060008060808587031215611e2c57600080fd5b611e3585611c31565b9350611e4360208601611c31565b925060408501359150606085013567ffffffffffffffff811115611e6657600080fd5b8501601f81018713611e7757600080fd5b8035611e8a611e8582611dee565b611dbd565b818152886020838501011115611e9f57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b60008060408385031215611ed457600080fd5b611edd83611c31565b91506107c460208401611c31565b600181811c90821680611eff57607f821691505b602082108103611f1f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156105f157600081815260208120601f850160051c81016020861015611f4c5750805b601f850160051c820191505b81811015611f6b57828155600101611f58565b505050505050565b815167ffffffffffffffff811115611f8d57611f8d611da7565b611fa181611f9b8454611eeb565b84611f25565b602080601f831160018114611fd65760008415611fbe5750858301515b600019600386901b1c1916600185901b178555611f6b565b600085815260208120601f198616915b8281101561200557888601518255948401946001909101908401611fe6565b50858210156120235787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b67ffffffffffffffff83111561204b5761204b611da7565b61205f836120598354611eeb565b83611f25565b6000601f841160018114612093576000851561207b5750838201355b600019600387901b1c1916600186901b178355610cc1565b600083815260209020601f19861690835b828110156120c457868501358255602094850194600190920191016120a4565b50868210156120e15760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600080845461210181611eeb565b60018281168015612119576001811461212e5761215d565b60ff198416875282151583028701945061215d565b8860005260208060002060005b858110156121545781548a82015290840190820161213b565b50505082870194505b505050508351612171818360208801611bb5565b64173539b7b760d91b9101908152600501949350505050565b60006020828403121561219c57600080fd5b815167ffffffffffffffff8111156121b357600080fd5b8201601f810184136121c457600080fd5b80516121d2611e8582611dee565b8181528560208385010111156121e757600080fd5b6121f8826020830160208601611bb5565b95945050505050565b60006020828403121561221357600080fd5b81516118a481611d62565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b8082018082111561051e57634e487b7160e01b600052601160045260246000fd5b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061238290830184611bd9565b9695505050505050565b60006020828403121561239e57600080fd5b81516118a481611b8256fe5763ff58c27377b9a9b40e9e2f5e53a9dd7cff5464aac8fc758a651823f78e5ea26469706673582212203a4efefbda1325f55bf20fd8b001ab1ee2d832cb4db80729e4a446ab8126127b64736f6c63430008120033

Deployed Bytecode Sourcemap

88456:8628:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96467:614;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;96467:614:0;;;;;;;;70643:100;;;:::i;:::-;;;;;;;:::i;88633:21::-;;;;;-1:-1:-1;;;;;88633:21:0;;;;;;-1:-1:-1;;;;;1512:32:1;;;1494:51;;1482:2;1467:18;88633:21:0;1348:203:1;72155:171:0;;;;;;:::i;:::-;;:::i;91408:157::-;;;;;;:::i;:::-;;:::i;:::-;;94248:417;;;;;;:::i;:::-;;:::i;88848:26::-;;;;;;;;;2515:25:1;;;2503:2;2488:18;88848:26:0;2369:177:1;91601:163:0;;;;;;:::i;:::-;;:::i;95737:358::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3329:32:1;;;3311:51;;3393:2;3378:18;;3371:34;;;;3284:18;95737:358:0;3137:274:1;88661:31:0;;;;;-1:-1:-1;;;;;88661:31:0;;;90781:352;;;;;;:::i;:::-;;:::i;91800:171::-;;;;;;:::i;:::-;;:::i;95347:104::-;;;;;;:::i;:::-;;:::i;29839:440::-;;;:::i;70353:223::-;;;;;;:::i;:::-;;:::i;88956:21::-;;;:::i;70084:207::-;;;;;;:::i;:::-;;:::i;87444:103::-;;;:::i;90313:152::-;;;:::i;92574:271::-;;;;;;:::i;:::-;;:::i;93690:324::-;;;;;;:::i;:::-;;:::i;70812:104::-;;;:::i;88596:30::-;;;;;-1:-1:-1;;;;;88596:30:0;;;91196:176;;;;;;:::i;:::-;;:::i;92007:228::-;;;;;;:::i;:::-;;:::i;94813:456::-;;;;;;:::i;:::-;;:::i;88701:30::-;;;;;;72624:164;;;;;;:::i;:::-;;:::i;30287:181::-;-1:-1:-1;;;;;;;;;;;30375:85:0;;;30287:181;;92955:446;;;;;;:::i;:::-;;:::i;87702:201::-;;;;;;:::i;:::-;;:::i;92368:90::-;;;;;;:::i;:::-;;:::i;88738:39::-;;;;;;96467:614;96552:4;-1:-1:-1;;;;;;;;;96589:25:0;;;;:106;;-1:-1:-1;;;;;;;;;;96670:25:0;;;96589:106;:208;;;-1:-1:-1;;;;;;;;;;96772:25:0;;;96589:208;:283;;;-1:-1:-1;;;;;;;;;;96847:25:0;;;96589:283;:363;;;-1:-1:-1;;;;;;;;;;96927:25:0;;;96589:363;:444;;;-1:-1:-1;;;;;;;;;;97008:25:0;;;96589:444;96569:464;96467:614;-1:-1:-1;;96467:614:0:o;70643:100::-;70697:13;70730:5;70723:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70643:100;:::o;72155:171::-;72231:7;72251:23;72266:7;72251:14;:23::i;:::-;-1:-1:-1;72294:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;72294:24:0;;72155:171::o;91408:157::-;91504:8;26019:30;26040:8;26019:20;:30::i;:::-;91525:32:::1;91539:8;91549:7;91525:13;:32::i;:::-;91408:157:::0;;;:::o;94248:417::-;86689:13;:11;:13::i;:::-;-1:-1:-1;;;;;94357:22:0;::::1;94349:85;;;::::0;-1:-1:-1;;;94349:85:0;;6804:2:1;94349:85:0::1;::::0;::::1;6786:21:1::0;6843:2;6823:18;;;6816:30;6882:34;6862:18;;;6855:62;-1:-1:-1;;;6933:18:1;;;6926:48;6991:19;;94349:85:0::1;;;;;;;;;94476:1;94453:8;-1:-1:-1::0;;;;;94453:20:0::1;;:24;94445:77;;;::::0;-1:-1:-1;;;94445:77:0;;7223:2:1;94445:77:0::1;::::0;::::1;7205:21:1::0;7262:2;7242:18;;;7235:30;7301:34;7281:18;;;7274:62;-1:-1:-1;;;7352:18:1;;;7345:38;7400:19;;94445:77:0::1;7021:404:1::0;94445:77:0::1;94555:12;::::0;;::::1;::::0;::::1;::::0;;;-1:-1:-1;94555:12:0;;:7:::1;::::0;:12:::1;::::0;:7;:12:::1;:::i;:::-;-1:-1:-1::0;94578:16:0::1;:27:::0;;-1:-1:-1;;;;;;94578:27:0::1;-1:-1:-1::0;;;;;94578:27:0;::::1;;::::0;;94623:34:::1;::::0;;-1:-1:-1;9816:25:1;;94646:10:0::1;9872:2:1::0;9857:18;;9850:34;94623::0::1;::::0;9789:18:1;94623:34:0::1;;;;;;;94248:417:::0;:::o;91601:163::-;91702:4;-1:-1:-1;;;;;25744:18:0;;25752:10;25744:18;25740:83;;25779:32;25800:10;25779:20;:32::i;:::-;91719:37:::1;91738:4;91744:2;91748:7;91719:18;:37::i;:::-;91601:163:::0;;;;:::o;95737:358::-;95872:15;;96033;;96050:18;;-1:-1:-1;;;;;95872:15:0;;;;95809:16;;96010:77;;96022:9;;96033:15;95872;96010:11;:77::i;:::-;95994:93;;95737:358;;;;;:::o;90781:352::-;90229:6;;-1:-1:-1;;;;;90229:6:0;90215:10;:20;90211:45;;90244:12;;-1:-1:-1;;;90244:12:0;;;;;;;;;;;90211:45;90899:1:::1;90889:7;:11;:36;;;;;90915:10;90904:7;:21;;90889:36;90881:65;;;::::0;-1:-1:-1;;;90881:65:0;;10097:2:1;90881:65:0::1;::::0;::::1;10079:21:1::0;10136:2;10116:18;;;10109:30;-1:-1:-1;;;10155:18:1;;;10148:46;10211:18;;90881:65:0::1;9895:340:1::0;90881:65:0::1;91022:18;91028:2;91032:7;91022:5;:18::i;:::-;-1:-1:-1::0;;91101:11:0::1;:13:::0;;::::1;;::::0;;90781:352::o;91800:171::-;91905:4;-1:-1:-1;;;;;25744:18:0;;25752:10;25744:18;25740:83;;25779:32;25800:10;25779:20;:32::i;:::-;91922:41:::1;91945:4;91951:2;91955:7;91922:22;:41::i;95347:104::-:0;95403:4;75086:16;;;:7;:16;;;;;;-1:-1:-1;;;;;75086:16:0;75512:31;;95427:16;75423:128;29839:440;29917:7;:5;:7::i;:::-;-1:-1:-1;;;;;29903:21:0;:10;-1:-1:-1;;;;;29903:21:0;;29899:72;;29948:11;;-1:-1:-1;;;29948:11:0;;;;;;;;;;;29899:72;-1:-1:-1;;;;;;;;;;;29985:85:0;;;29981:141;;;30094:16;;-1:-1:-1;;;30094:16:0;;;;;;;;;;;29981:141;-1:-1:-1;;;;;;;;;;;30132:92:0;;-1:-1:-1;;30132:92:0;30220:4;30132:92;;;30240:31;;;;30132:92;;30240:31;29839:440::o;70353:223::-;70425:7;75086:16;;;:7;:16;;;;;;-1:-1:-1;;;;;75086:16:0;;70489:56;;;;-1:-1:-1;;;70489:56:0;;10442:2:1;70489:56:0;;;10424:21:1;10481:2;10461:18;;;10454:30;-1:-1:-1;;;10500:18:1;;;10493:54;10564:18;;70489:56:0;10240:348:1;88956:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;70084:207::-;70156:7;-1:-1:-1;;;;;70184:19:0;;70176:73;;;;-1:-1:-1;;;70176:73:0;;10795:2:1;70176:73:0;;;10777:21:1;10834:2;10814:18;;;10807:30;10873:34;10853:18;;;10846:62;-1:-1:-1;;;10924:18:1;;;10917:39;10973:19;;70176:73:0;10593:405:1;70176:73:0;-1:-1:-1;;;;;;70267:16:0;;;;;:9;:16;;;;;;;70084:207::o;87444:103::-;86689:13;:11;:13::i;:::-;87509:30:::1;87536:1;87509:18;:30::i;:::-;87444:103::o:0;90313:152::-;90415:7;90442:15;86876:6;;-1:-1:-1;;;;;86876:6:0;;86803:87;90442:15;90435:22;;90313:152;:::o;92574:271::-;86689:13;:11;:13::i;:::-;-1:-1:-1;;;;;92692:30:0;::::1;92684:88;;;::::0;-1:-1:-1;;;92684:88:0;;11205:2:1;92684:88:0::1;::::0;::::1;11187:21:1::0;11244:2;11224:18;;;11217:30;11283:34;11263:18;;;11256:62;-1:-1:-1;;;11334:18:1;;;11327:43;11387:19;;92684:88:0::1;11003:409:1::0;92684:88:0::1;92803:15;:34:::0;;-1:-1:-1;;;;;;92803:34:0::1;-1:-1:-1::0;;;;;92803:34:0;;;::::1;::::0;;;::::1;::::0;;92574:271::o;93690:324::-;86689:13;:11;:13::i;:::-;93803:26;93795:68:::1;;;::::0;-1:-1:-1;;;93795:68:0;;11619:2:1;93795:68:0::1;::::0;::::1;11601:21:1::0;11658:2;11638:18;;;11631:30;11697:31;11677:18;;;11670:59;11746:18;;93795:68:0::1;11417:353:1::0;93795:68:0::1;93896:7;:18;93906:8:::0;;93896:7;:18:::1;:::i;:::-;-1:-1:-1::0;93925:16:0::1;:29:::0;;-1:-1:-1;;;;;;93925:29:0::1;::::0;;93972:34:::1;::::0;;-1:-1:-1;9816:25:1;;93995:10:0::1;9872:2:1::0;9857:18;;9850:34;93972::0::1;::::0;9789:18:1;93972:34:0::1;;;;;;;93690:324:::0;;:::o;70812:104::-;70868:13;70901:7;70894:14;;;;;:::i;91196:176::-;91300:8;26019:30;26040:8;26019:20;:30::i;:::-;91321:43:::1;91345:8;91355;91321:23;:43::i;92007:228::-:0;92158:4;-1:-1:-1;;;;;25744:18:0;;25752:10;25744:18;25740:83;;25779:32;25800:10;25779:20;:32::i;:::-;92180:47:::1;92203:4;92209:2;92213:7;92222:4;92180:22;:47::i;:::-;92007:228:::0;;;;;:::o;94813:456::-;94878:13;94904:23;94919:7;94904:14;:23::i;:::-;94968:1;94950:7;94944:21;;;;;:::i;:::-;;;:25;94940:134;;;95017:7;95026:25;95043:7;95026:16;:25::i;:::-;95000:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;94986:76;;94813:456;;;:::o;94940:134::-;95098:16;;-1:-1:-1;;;;;95098:16:0;95090:39;95086:130;;95169:16;;95153:51;;-1:-1:-1;;;95153:51:0;;;;;2515:25:1;;;-1:-1:-1;;;;;95169:16:0;;;;95153:42;;2488:18:1;;95153:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;95153:51:0;;;;;;;;;;;;:::i;95086:130::-;95228:33;;-1:-1:-1;;;95228:33:0;;15033:2:1;95228:33:0;;;15015:21:1;15072:2;15052:18;;;15045:30;15111:25;15091:18;;;15084:53;15154:18;;95228:33:0;14831:347:1;72624:164:0;-1:-1:-1;;;;;72745:25:0;;;72721:4;72745:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;72624:164::o;92955:446::-;86689:13;:11;:13::i;:::-;93103:19:::1;93126:1;93103:24:::0;93095:73:::1;;;::::0;-1:-1:-1;;;93095:73:0;;15385:2:1;93095:73:0::1;::::0;::::1;15367:21:1::0;15424:2;15404:18;;;15397:30;15463:34;15443:18;;;15436:62;-1:-1:-1;;;15514:18:1;;;15507:34;15558:19;;93095:73:0::1;15183:400:1::0;93095:73:0::1;93207:19;93187:16;:39;;93179:98;;;::::0;-1:-1:-1;;;93179:98:0;;15790:2:1;93179:98:0::1;::::0;::::1;15772:21:1::0;15829:2;15809:18;;;15802:30;15868:34;15848:18;;;15841:62;-1:-1:-1;;;15919:18:1;;;15912:44;15973:19;;93179:98:0::1;15588:410:1::0;93179:98:0::1;93308:15;:34:::0;;;;93353:18:::1;:40:::0;92955:446::o;87702:201::-;86689:13;:11;:13::i;:::-;-1:-1:-1;;;;;87791:22:0;::::1;87783:73;;;::::0;-1:-1:-1;;;87783:73:0;;16205:2:1;87783:73:0::1;::::0;::::1;16187:21:1::0;16244:2;16224:18;;;16217:30;16283:34;16263:18;;;16256:62;-1:-1:-1;;;16334:18:1;;;16327:36;16380:19;;87783:73:0::1;16003:402:1::0;87783:73:0::1;87867:28;87886:8;87867:18;:28::i;:::-;87702:201:::0;:::o;92368:90::-;86689:13;:11;:13::i;:::-;92434:6:::1;:16:::0;;-1:-1:-1;;;;;;92434:16:0::1;-1:-1:-1::0;;;;;92434:16:0;;;::::1;::::0;;;::::1;::::0;;92368:90::o;81718:135::-;75488:4;75086:16;;;:7;:16;;;;;;-1:-1:-1;;;;;75086:16:0;81792:53;;;;-1:-1:-1;;;81792:53:0;;10442:2:1;81792:53:0;;;10424:21:1;10481:2;10461:18;;;10454:30;-1:-1:-1;;;10500:18:1;;;10493:54;10564:18;;81792:53:0;10240:348:1;28921:815:0;-1:-1:-1;;;;;;;;;;;29136:85:0;;;29135:86;:156;;;;-1:-1:-1;24113:42:0;29242:45;:49;;29135:156;29117:612;;;29579:67;;-1:-1:-1;;;29579:67:0;;29630:4;29579:67;;;16622:34:1;-1:-1:-1;;;;;16692:15:1;;16672:18;;;16665:43;24113:42:0;;29579;;16557:18:1;;29579:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29574:144;;29674:28;;-1:-1:-1;;;29674:28:0;;-1:-1:-1;;;;;1512:32:1;;29674:28:0;;;1494:51:1;1467:18;;29674:28:0;1348:203:1;71673:416:0;71754:13;71770:23;71785:7;71770:14;:23::i;:::-;71754:39;;71818:5;-1:-1:-1;;;;;71812:11:0;:2;-1:-1:-1;;;;;71812:11:0;;71804:57;;;;-1:-1:-1;;;71804:57:0;;17171:2:1;71804:57:0;;;17153:21:1;17210:2;17190:18;;;17183:30;17249:34;17229:18;;;17222:62;-1:-1:-1;;;17300:18:1;;;17293:31;17341:19;;71804:57:0;16969:397:1;71804:57:0;68174:10;-1:-1:-1;;;;;71896:21:0;;;;:62;;-1:-1:-1;71921:37:0;71938:5;68174:10;72624:164;:::i;71921:37::-;71874:173;;;;-1:-1:-1;;;71874:173:0;;17573:2:1;71874:173:0;;;17555:21:1;17612:2;17592:18;;;17585:30;17651:34;17631:18;;;17624:62;17722:31;17702:18;;;17695:59;17771:19;;71874:173:0;17371:425:1;71874:173:0;72060:21;72069:2;72073:7;72060:8;:21::i;86968:132::-;68174:10;87032:7;:5;:7::i;:::-;-1:-1:-1;;;;;87032:23:0;;87024:68;;;;-1:-1:-1;;;87024:68:0;;18003:2:1;87024:68:0;;;17985:21:1;;;18022:18;;;18015:30;18081:34;18061:18;;;18054:62;18133:18;;87024:68:0;17801:356:1;72855:301:0;73016:41;68174:10;73049:7;73016:18;:41::i;:::-;73008:99;;;;-1:-1:-1;;;73008:99:0;;;;;;;:::i;:::-;73120:28;73130:4;73136:2;73140:7;73120:9;:28::i;39169:305::-;39270:7;39290:14;39307:25;39314:1;39317;39320:11;39307:6;:25::i;:::-;39290:42;-1:-1:-1;39359:11:0;39347:8;:23;;;;;;;;:::i;:::-;;:56;;;;;39402:1;39387:11;39374:25;;;;;:::i;:::-;39384:1;39381;39374:25;:29;39347:56;39343:100;;;39420:11;39430:1;39420:11;;:::i;:::-;;;39343:100;39460:6;-1:-1:-1;39169:305:0;;;;;;;:::o;77282:942::-;-1:-1:-1;;;;;77362:16:0;;77354:61;;;;-1:-1:-1;;;77354:61:0;;19269:2:1;77354:61:0;;;19251:21:1;;;19288:18;;;19281:30;19347:34;19327:18;;;19320:62;19399:18;;77354:61:0;19067:356:1;77354:61:0;75488:4;75086:16;;;:7;:16;;;;;;-1:-1:-1;;;;;75086:16:0;75512:31;77426:58;;;;-1:-1:-1;;;77426:58:0;;19630:2:1;77426:58:0;;;19612:21:1;19669:2;19649:18;;;19642:30;19708;19688:18;;;19681:58;19756:18;;77426:58:0;19428:352:1;77426:58:0;75488:4;75086:16;;;:7;:16;;;;;;-1:-1:-1;;;;;75086:16:0;75512:31;77635:58;;;;-1:-1:-1;;;77635:58:0;;19630:2:1;77635:58:0;;;19612:21:1;19669:2;19649:18;;;19642:30;19708;19688:18;;;19681:58;19756:18;;77635:58:0;19428:352:1;77635:58:0;-1:-1:-1;;;;;78042:13:0;;;;;;:9;:13;;;;;;;;:18;;78059:1;78042:18;;;78084:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;78084:21:0;;;;;78123:33;78092:7;;78042:13;;78123:33;;78042:13;;78123:33;78169:47;77282:942;;:::o;73227:151::-;73331:39;73348:4;73354:2;73358:7;73331:39;;;;;;;;;;;;:16;:39::i;88063:191::-;88156:6;;;-1:-1:-1;;;;;88173:17:0;;;-1:-1:-1;;;;;;88173:17:0;;;;;;;88206:40;;88156:6;;;88173:17;88156:6;;88206:40;;88137:16;;88206:40;88126:128;88063:191;:::o;72398:155::-;72493:52;68174:10;72526:8;72536;72493:18;:52::i;73449:279::-;73580:41;68174:10;73613:7;73580:18;:41::i;:::-;73572:99;;;;-1:-1:-1;;;73572:99:0;;;;;;;:::i;:::-;73682:38;73696:4;73702:2;73706:7;73715:4;73682:13;:38::i;46575:716::-;46631:13;46682:14;46699:17;46710:5;46699:10;:17::i;:::-;46719:1;46699:21;46682:38;;46735:20;46769:6;46758:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46758:18:0;-1:-1:-1;46735:41:0;-1:-1:-1;46900:28:0;;;46916:2;46900:28;46957:288;-1:-1:-1;;46989:5:0;-1:-1:-1;;;47126:2:0;47115:14;;47110:30;46989:5;47097:44;47187:2;47178:11;;;-1:-1:-1;47208:21:0;46957:288;47208:21;-1:-1:-1;47266:6:0;46575:716;-1:-1:-1;;;46575:716:0:o;81031:174::-;81106:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;81106:29:0;-1:-1:-1;;;;;81106:29:0;;;;;;;;:24;;81160:23;81106:24;81160:14;:23::i;:::-;-1:-1:-1;;;;;81151:46:0;;;;;;;;;;;81031:174;;:::o;75718:264::-;75811:4;75828:13;75844:23;75859:7;75844:14;:23::i;:::-;75828:39;;75897:5;-1:-1:-1;;;;;75886:16:0;:7;-1:-1:-1;;;;;75886:16:0;;:52;;;;75906:32;75923:5;75930:7;75906:16;:32::i;:::-;75886:87;;;;75966:7;-1:-1:-1;;;;;75942:31:0;:20;75954:7;75942:11;:20::i;:::-;-1:-1:-1;;;;;75942:31:0;;75878:96;75718:264;-1:-1:-1;;;;75718:264:0:o;79683:1229::-;79808:4;-1:-1:-1;;;;;79781:31:0;:23;79796:7;79781:14;:23::i;:::-;-1:-1:-1;;;;;79781:31:0;;79773:81;;;;-1:-1:-1;;;79773:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;79873:16:0;;79865:65;;;;-1:-1:-1;;;79865:65:0;;20393:2:1;79865:65:0;;;20375:21:1;20432:2;20412:18;;;20405:30;20471:34;20451:18;;;20444:62;-1:-1:-1;;;20522:18:1;;;20515:34;20566:19;;79865:65:0;20191:400:1;79865:65:0;80115:4;-1:-1:-1;;;;;80088:31:0;:23;80103:7;80088:14;:23::i;:::-;-1:-1:-1;;;;;80088:31:0;;80080:81;;;;-1:-1:-1;;;80080:81:0;;;;;;;:::i;:::-;80233:24;;;;:15;:24;;;;;;;;80226:31;;-1:-1:-1;;;;;;80226:31:0;;;;;;-1:-1:-1;;;;;80709:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;80709:20:0;;;80744:13;;;;;;;;;:18;;80226:31;80744:18;;;80784:16;;;:7;:16;;;;;;:21;;;;;;;;;;80823:27;;80249:7;;80823:27;;;91408:157;;;:::o;34740:4292::-;34822:14;;;-1:-1:-1;;35367:1:0;35364;35357:20;35411:1;35408;35404:9;35395:18;;35467:5;35463:2;35460:13;35452:5;35448:2;35444:14;35440:34;35431:43;;;35573:5;35582:1;35573:10;35569:373;;35915:11;35907:5;:19;;;;;:::i;:::-;;35900:26;;;;;;35569:373;36069:5;36055:11;:19;36047:53;;;;-1:-1:-1;;;36047:53:0;;20798:2:1;36047:53:0;;;20780:21:1;20837:2;20817:18;;;20810:30;-1:-1:-1;;;20856:18:1;;;20849:51;20917:18;;36047:53:0;20596:345:1;36047:53:0;36363:17;36501:11;36498:1;36495;36488:25;37045:12;;37060:1;37045:16;;;37030:32;;37168:22;;;;;36666:21;;;37269:16;;;36618:20;;;;36607:32;;;37015:12;37419;;;37415:23;;;;37411:31;;;37535:12;;;;37526:21;;;;37889:1;:15;;37908:1;37888:21;;;38145;;;38141:25;;38130:36;38215:21;;;38211:25;;38200:36;38286:21;;;38282:25;;38271:36;38357:21;;;38353:25;;38342:36;38428:21;;;38424:25;;38413:36;38500:21;;;38496:25;;;38485:36;38970:15;;-1:-1:-1;;34740:4292:0;;;;;;:::o;81348:281::-;81469:8;-1:-1:-1;;;;;81460:17:0;:5;-1:-1:-1;;;;;81460:17:0;;81452:55;;;;-1:-1:-1;;;81452:55:0;;21148:2:1;81452:55:0;;;21130:21:1;21187:2;21167:18;;;21160:30;21226:27;21206:18;;;21199:55;21271:18;;81452:55:0;20946:349:1;81452:55:0;-1:-1:-1;;;;;81518:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;81518:46:0;;;;;;;;;;81580:41;;540::1;;;81580::0;;513:18:1;81580:41:0;;;;;;;81348:281;;;:::o;74609:270::-;74722:28;74732:4;74738:2;74742:7;74722:9;:28::i;:::-;74769:47;74792:4;74798:2;74802:7;74811:4;74769:22;:47::i;:::-;74761:110;;;;-1:-1:-1;;;74761:110:0;;;;;;;:::i;43409:948::-;43462:7;;-1:-1:-1;;;43540:17:0;;43536:106;;-1:-1:-1;;;43578:17:0;;;-1:-1:-1;43624:2:0;43614:12;43536:106;43669:8;43660:5;:17;43656:106;;43707:8;43698:17;;;-1:-1:-1;43744:2:0;43734:12;43656:106;43789:8;43780:5;:17;43776:106;;43827:8;43818:17;;;-1:-1:-1;43864:2:0;43854:12;43776:106;43909:7;43900:5;:16;43896:103;;43946:7;43937:16;;;-1:-1:-1;43982:1:0;43972:11;43896:103;44026:7;44017:5;:16;44013:103;;44063:7;44054:16;;;-1:-1:-1;44099:1:0;44089:11;44013:103;44143:7;44134:5;:16;44130:103;;44180:7;44171:16;;;-1:-1:-1;44216:1:0;44206:11;44130:103;44260:7;44251:5;:16;44247:68;;44298:1;44288:11;44343:6;43409:948;-1:-1:-1;;43409:948:0:o;82417:853::-;82571:4;-1:-1:-1;;;;;82592:13:0;;50746:19;:23;82588:675;;82628:71;;-1:-1:-1;;;82628:71:0;;-1:-1:-1;;;;;82628:36:0;;;;;:71;;68174:10;;82679:4;;82685:7;;82694:4;;82628:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;82628:71:0;;;;;;;;-1:-1:-1;;82628:71:0;;;;;;;;;;;;:::i;:::-;;;82624:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82869:6;:13;82886:1;82869:18;82865:328;;82912:60;;-1:-1:-1;;;82912:60:0;;;;;;;:::i;82865:328::-;83143:6;83137:13;83128:6;83124:2;83120:15;83113:38;82624:584;-1:-1:-1;;;;;;82750:51:0;-1:-1:-1;;;82750:51:0;;-1:-1:-1;82743:58:0;;82588:675;-1:-1:-1;83247:4:0;83240:11;;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;1556:180::-;1615:6;1668:2;1656:9;1647:7;1643:23;1639:32;1636:52;;;1684:1;1681;1674:12;1636:52;-1:-1:-1;1707:23:1;;1556:180;-1:-1:-1;1556: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;2178:186::-;2237:6;2290:2;2278:9;2269:7;2265:23;2261:32;2258:52;;;2306:1;2303;2296:12;2258:52;2329:29;2348:9;2329:29;:::i;2551:328::-;2628:6;2636;2644;2697:2;2685:9;2676:7;2672:23;2668:32;2665:52;;;2713:1;2710;2703:12;2665:52;2736:29;2755:9;2736:29;:::i;:::-;2726:39;;2784:38;2818:2;2807:9;2803:18;2784:38;:::i;:::-;2774:48;;2869:2;2858:9;2854:18;2841:32;2831:42;;2551:328;;;;;:::o;2884:248::-;2952:6;2960;3013:2;3001:9;2992:7;2988:23;2984:32;2981:52;;;3029:1;3026;3019:12;2981:52;-1:-1:-1;;3052:23:1;;;3122:2;3107:18;;;3094:32;;-1:-1:-1;2884:248:1:o;3416:592::-;3487:6;3495;3548:2;3536:9;3527:7;3523:23;3519:32;3516:52;;;3564:1;3561;3554:12;3516:52;3604:9;3591:23;3633:18;3674:2;3666:6;3663:14;3660:34;;;3690:1;3687;3680:12;3660:34;3728:6;3717:9;3713:22;3703:32;;3773:7;3766:4;3762:2;3758:13;3754:27;3744:55;;3795:1;3792;3785:12;3744:55;3835:2;3822:16;3861:2;3853:6;3850:14;3847:34;;;3877:1;3874;3867:12;3847:34;3922:7;3917:2;3908:6;3904:2;3900:15;3896:24;3893:37;3890:57;;;3943:1;3940;3933:12;3890:57;3974:2;3966:11;;;;;3996:6;;-1:-1:-1;3416:592:1;;-1:-1:-1;;;;3416:592:1:o;4013:118::-;4099:5;4092:13;4085:21;4078:5;4075:32;4065:60;;4121:1;4118;4111:12;4136:315;4201:6;4209;4262:2;4250:9;4241:7;4237:23;4233:32;4230:52;;;4278:1;4275;4268:12;4230:52;4301:29;4320:9;4301:29;:::i;:::-;4291:39;;4380:2;4369:9;4365:18;4352:32;4393:28;4415:5;4393:28;:::i;:::-;4440:5;4430:15;;;4136:315;;;;;:::o;4456:127::-;4517:10;4512:3;4508:20;4505:1;4498:31;4548:4;4545:1;4538:15;4572:4;4569:1;4562:15;4588:275;4659:2;4653:9;4724:2;4705:13;;-1:-1:-1;;4701:27:1;4689:40;;4759:18;4744:34;;4780:22;;;4741:62;4738:88;;;4806:18;;:::i;:::-;4842:2;4835:22;4588:275;;-1:-1:-1;4588:275:1:o;4868:186::-;4916:4;4949:18;4941:6;4938:30;4935:56;;;4971:18;;:::i;:::-;-1:-1:-1;5037:2:1;5016:15;-1:-1:-1;;5012:29:1;5043:4;5008:40;;4868:186::o;5059:888::-;5154:6;5162;5170;5178;5231:3;5219:9;5210:7;5206:23;5202:33;5199:53;;;5248:1;5245;5238:12;5199:53;5271:29;5290:9;5271:29;:::i;:::-;5261:39;;5319:38;5353:2;5342:9;5338:18;5319:38;:::i;:::-;5309:48;;5404:2;5393:9;5389:18;5376:32;5366:42;;5459:2;5448:9;5444:18;5431:32;5486:18;5478:6;5475:30;5472:50;;;5518:1;5515;5508:12;5472:50;5541:22;;5594:4;5586:13;;5582:27;-1:-1:-1;5572:55:1;;5623:1;5620;5613:12;5572:55;5659:2;5646:16;5684:48;5700:31;5728:2;5700:31;:::i;:::-;5684:48;:::i;:::-;5755:2;5748:5;5741:17;5795:7;5790:2;5785;5781;5777:11;5773:20;5770:33;5767:53;;;5816:1;5813;5806:12;5767:53;5871:2;5866;5862;5858:11;5853:2;5846:5;5842:14;5829:45;5915:1;5910:2;5905;5898:5;5894:14;5890:23;5883:34;5936:5;5926:15;;;;;5059:888;;;;;;;:::o;5952:260::-;6020:6;6028;6081:2;6069:9;6060:7;6056:23;6052:32;6049:52;;;6097:1;6094;6087:12;6049:52;6120:29;6139:9;6120:29;:::i;:::-;6110:39;;6168:38;6202:2;6191:9;6187:18;6168:38;:::i;6217:380::-;6296:1;6292:12;;;;6339;;;6360:61;;6414:4;6406:6;6402:17;6392:27;;6360:61;6467:2;6459:6;6456:14;6436:18;6433:38;6430:161;;6513:10;6508:3;6504:20;6501:1;6494:31;6548:4;6545:1;6538:15;6576:4;6573:1;6566:15;6430:161;;6217:380;;;:::o;7556:545::-;7658:2;7653:3;7650:11;7647:448;;;7694:1;7719:5;7715:2;7708:17;7764:4;7760:2;7750:19;7834:2;7822:10;7818:19;7815:1;7811:27;7805:4;7801:38;7870:4;7858:10;7855:20;7852:47;;;-1:-1:-1;7893:4:1;7852:47;7948:2;7943:3;7939:12;7936:1;7932:20;7926:4;7922:31;7912:41;;8003:82;8021:2;8014:5;8011:13;8003:82;;;8066:17;;;8047:1;8036:13;8003:82;;;8007:3;;;7556:545;;;:::o;8277:1352::-;8403:3;8397:10;8430:18;8422:6;8419:30;8416:56;;;8452:18;;:::i;:::-;8481:97;8571:6;8531:38;8563:4;8557:11;8531:38;:::i;:::-;8525:4;8481:97;:::i;:::-;8633:4;;8697:2;8686:14;;8714:1;8709:663;;;;9416:1;9433:6;9430:89;;;-1:-1:-1;9485:19:1;;;9479:26;9430:89;-1:-1:-1;;8234:1:1;8230:11;;;8226:24;8222:29;8212:40;8258:1;8254:11;;;8209:57;9532:81;;8679:944;;8709:663;7503:1;7496:14;;;7540:4;7527:18;;-1:-1:-1;;8745:20:1;;;8863:236;8877:7;8874:1;8871:14;8863:236;;;8966:19;;;8960:26;8945:42;;9058:27;;;;9026:1;9014:14;;;;8893:19;;8863:236;;;8867:3;9127:6;9118:7;9115:19;9112:201;;;9188:19;;;9182:26;-1:-1:-1;;9271:1:1;9267:14;;;9283:3;9263:24;9259:37;9255:42;9240:58;9225:74;;9112:201;-1:-1:-1;;;;;9359:1:1;9343:14;;;9339:22;9326:36;;-1:-1:-1;8277:1352:1:o;11775:1206::-;11899:18;11894:3;11891:27;11888:53;;;11921:18;;:::i;:::-;11950:94;12040:3;12000:38;12032:4;12026:11;12000:38;:::i;:::-;11994:4;11950:94;:::i;:::-;12070:1;12095:2;12090:3;12087:11;12112:1;12107:616;;;;12767:1;12784:3;12781:93;;;-1:-1:-1;12840:19:1;;;12827:33;12781:93;-1:-1:-1;;8234:1:1;8230:11;;;8226:24;8222:29;8212:40;8258:1;8254:11;;;8209:57;12887:78;;12080:895;;12107:616;7503:1;7496:14;;;7540:4;7527:18;;-1:-1:-1;;12143:17:1;;;12244:9;12266:229;12280:7;12277:1;12274:14;12266:229;;;12369:19;;;12356:33;12341:49;;12476:4;12461:20;;;;12429:1;12417:14;;;;12296:12;12266:229;;;12270:3;12523;12514:7;12511:16;12508:159;;;12647:1;12643:6;12637:3;12631;12628:1;12624:11;12620:21;12616:34;12612:39;12599:9;12594:3;12590:19;12577:33;12573:79;12565:6;12558:95;12508:159;;;12710:1;12704:3;12701:1;12697:11;12693:19;12687:4;12680:33;12080:895;;11775:1206;;;:::o;12986:1187::-;13263:3;13292:1;13325:6;13319:13;13355:36;13381:9;13355:36;:::i;:::-;13410:1;13427:18;;;13454:133;;;;13601:1;13596:356;;;;13420:532;;13454:133;-1:-1:-1;;13487:24:1;;13475:37;;13560:14;;13553:22;13541:35;;13532:45;;;-1:-1:-1;13454:133:1;;13596:356;13627:6;13624:1;13617:17;13657:4;13702:2;13699:1;13689:16;13727:1;13741:165;13755:6;13752:1;13749:13;13741:165;;;13833:14;;13820:11;;;13813:35;13876:16;;;;13770:10;;13741:165;;;13745:3;;;13935:6;13930:3;13926:16;13919:23;;13420:532;;;;;13983:6;13977:13;13999:68;14058:8;14053:3;14046:4;14038:6;14034:17;13999:68;:::i;:::-;-1:-1:-1;;;14089:18:1;;14116:22;;;14165:1;14154:13;;12986:1187;-1:-1:-1;;;;12986:1187:1:o;14178:648::-;14258:6;14311:2;14299:9;14290:7;14286:23;14282:32;14279:52;;;14327:1;14324;14317:12;14279:52;14360:9;14354:16;14393:18;14385:6;14382:30;14379:50;;;14425:1;14422;14415:12;14379:50;14448:22;;14501:4;14493:13;;14489:27;-1:-1:-1;14479:55:1;;14530:1;14527;14520:12;14479:55;14559:2;14553:9;14584:48;14600:31;14628:2;14600:31;:::i;14584:48::-;14655:2;14648:5;14641:17;14695:7;14690:2;14685;14681;14677:11;14673:20;14670:33;14667:53;;;14716:1;14713;14706:12;14667:53;14729:67;14793:2;14788;14781:5;14777:14;14772:2;14768;14764:11;14729:67;:::i;:::-;14815:5;14178:648;-1:-1:-1;;;;;14178:648:1:o;16719:245::-;16786:6;16839:2;16827:9;16818:7;16814:23;16810:32;16807:52;;;16855:1;16852;16845:12;16807:52;16887:9;16881:16;16906:28;16928:5;16906:28;:::i;18162:409::-;18364:2;18346:21;;;18403:2;18383:18;;;18376:30;18442:34;18437:2;18422:18;;18415:62;-1:-1:-1;;;18508:2:1;18493:18;;18486:43;18561:3;18546:19;;18162:409::o;18576:127::-;18637:10;18632:3;18628:20;18625:1;18618:31;18668:4;18665:1;18658:15;18692:4;18689:1;18682:15;18708:127;18769:10;18764:3;18760:20;18757:1;18750:31;18800:4;18797:1;18790:15;18824:4;18821:1;18814:15;18840:222;18905:9;;;18926:10;;;18923:133;;;18978:10;18973:3;18969:20;18966:1;18959:31;19013:4;19010:1;19003:15;19041:4;19038:1;19031:15;19785:401;19987:2;19969:21;;;20026:2;20006:18;;;19999:30;20065:34;20060:2;20045:18;;20038:62;-1:-1:-1;;;20131:2:1;20116:18;;20109:35;20176:3;20161:19;;19785:401::o;21300:414::-;21502:2;21484:21;;;21541:2;21521:18;;;21514:30;21580:34;21575:2;21560:18;;21553:62;-1:-1:-1;;;21646:2:1;21631:18;;21624:48;21704:3;21689:19;;21300:414::o;21719:489::-;-1:-1:-1;;;;;21988:15:1;;;21970:34;;22040:15;;22035:2;22020:18;;22013:43;22087:2;22072:18;;22065:34;;;22135:3;22130:2;22115:18;;22108:31;;;21913:4;;22156:46;;22182:19;;22174:6;22156:46;:::i;:::-;22148:54;21719:489;-1:-1:-1;;;;;;21719:489:1:o;22213:249::-;22282:6;22335:2;22323:9;22314:7;22310:23;22306:32;22303:52;;;22351:1;22348;22341:12;22303:52;22383:9;22377:16;22402:30;22426:5;22402:30;:::i

Swarm Source

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