Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0x60a06040 | 20391691 | 102 days ago | IN | 0 ETH | 0.01596905 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
ProxySolver
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol"; import "./ProxyClipperExecutor.sol"; contract ProxySolver is Initializable, OwnableUpgradeable, UUPSUpgradeable, ProxyClipperExecutor { function _authorizeUpgrade(address) internal override onlyOwner {} function initialize(address _wethAddress, IReactor _reactorV1, IReactor _reactorV2, address _clipperExchange, address _whitelistedCaller, address _initialOwner) public initializer { //__Ownable_init(_initialOwner); baseInitialize(_wethAddress, _reactorV1, _reactorV2, _clipperExchange, _whitelistedCaller, _initialOwner); __UUPSUpgradeable_init(); // weth = IWETH(_wethAddress); // CLIPPER_EXCHANGE = _clipper_exchange; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol"; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @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. * * The initial owner is set to the address provided by the deployer. 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 OwnableUpgradeable is Initializable, ContextUpgradeable { /// @custom:storage-location erc7201:openzeppelin.storage.Ownable struct OwnableStorage { address _owner; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Ownable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant OwnableStorageLocation = 0x9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300; function _getOwnableStorage() private pure returns (OwnableStorage storage $) { assembly { $.slot := OwnableStorageLocation } } /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ function __Ownable_init(address initialOwner) internal onlyInitializing { __Ownable_init_unchained(initialOwner); } function __Ownable_init_unchained(address initialOwner) internal onlyInitializing { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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) { OwnableStorage storage $ = _getOwnableStorage(); return $._owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { OwnableStorage storage $ = _getOwnableStorage(); address oldOwner = $._owner; $._owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.20; /** * @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 Storage of the initializable contract. * * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions * when using with upgradeable contracts. * * @custom:storage-location erc7201:openzeppelin.storage.Initializable */ struct InitializableStorage { /** * @dev Indicates that the contract has been initialized. */ uint64 _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool _initializing; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00; /** * @dev The contract is already initialized. */ error InvalidInitialization(); /** * @dev The contract is not initializing. */ error NotInitializing(); /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint64 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 in the context of a constructor an `initializer` may be invoked any * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in * production. * * Emits an {Initialized} event. */ modifier initializer() { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); // Cache values to avoid duplicated sloads bool isTopLevelCall = !$._initializing; uint64 initialized = $._initialized; // Allowed calls: // - initialSetup: the contract is not in the initializing state and no previous version was // initialized // - construction: the contract is initialized at version 1 (no reininitialization) and the // current contract is just being deployed bool initialSetup = initialized == 0 && isTopLevelCall; bool construction = initialized == 1 && address(this).code.length == 0; if (!initialSetup && !construction) { revert InvalidInitialization(); } $._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 2**64 - 1 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint64 version) { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing || $._initialized >= version) { revert InvalidInitialization(); } $._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() { _checkInitializing(); _; } /** * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}. */ function _checkInitializing() internal view virtual { if (!_isInitializing()) { revert NotInitializing(); } } /** * @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 { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing) { revert InvalidInitialization(); } if ($._initialized != type(uint64).max) { $._initialized = type(uint64).max; emit Initialized(type(uint64).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint64) { return _getInitializableStorage()._initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _getInitializableStorage()._initializing; } /** * @dev Returns a pointer to the storage namespace. */ // solhint-disable-next-line var-name-mixedcase function _getInitializableStorage() private pure returns (InitializableStorage storage $) { assembly { $.slot := INITIALIZABLE_STORAGE } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/UUPSUpgradeable.sol) pragma solidity ^0.8.20; import {IERC1822Proxiable} from "@openzeppelin/contracts/interfaces/draft-IERC1822.sol"; import {ERC1967Utils} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol"; import {Initializable} from "./Initializable.sol"; /** * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy. * * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing * `UUPSUpgradeable` with a custom implementation of upgrades. * * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism. */ abstract contract UUPSUpgradeable is Initializable, IERC1822Proxiable { /// @custom:oz-upgrades-unsafe-allow state-variable-immutable address private immutable __self = address(this); /** * @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)` * and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called, * while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string. * If the getter returns `"5.0.0"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must * be the empty byte string if no function should be called, making it impossible to invoke the `receive` function * during an upgrade. */ string public constant UPGRADE_INTERFACE_VERSION = "5.0.0"; /** * @dev The call is from an unauthorized context. */ error UUPSUnauthorizedCallContext(); /** * @dev The storage `slot` is unsupported as a UUID. */ error UUPSUnsupportedProxiableUUID(bytes32 slot); /** * @dev Check that the execution is being performed through a delegatecall call and that the execution context is * a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a * function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to * fail. */ modifier onlyProxy() { _checkProxy(); _; } /** * @dev Check that the execution is not being performed through a delegate call. This allows a function to be * callable on the implementing contract but not through proxies. */ modifier notDelegated() { _checkNotDelegated(); _; } function __UUPSUpgradeable_init() internal onlyInitializing { } function __UUPSUpgradeable_init_unchained() internal onlyInitializing { } /** * @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the * implementation. It is used to validate the implementation's compatibility when performing an upgrade. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier. */ function proxiableUUID() external view virtual notDelegated returns (bytes32) { return ERC1967Utils.IMPLEMENTATION_SLOT; } /** * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call * encoded in `data`. * * Calls {_authorizeUpgrade}. * * Emits an {Upgraded} event. * * @custom:oz-upgrades-unsafe-allow-reachable delegatecall */ function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy { _authorizeUpgrade(newImplementation); _upgradeToAndCallUUPS(newImplementation, data); } /** * @dev Reverts if the execution is not performed via delegatecall or the execution * context is not of a proxy with an ERC1967-compliant implementation pointing to self. * See {_onlyProxy}. */ function _checkProxy() internal view virtual { if ( address(this) == __self || // Must be called through delegatecall ERC1967Utils.getImplementation() != __self // Must be called through an active proxy ) { revert UUPSUnauthorizedCallContext(); } } /** * @dev Reverts if the execution is performed via delegatecall. * See {notDelegated}. */ function _checkNotDelegated() internal view virtual { if (address(this) != __self) { // Must not be called through delegatecall revert UUPSUnauthorizedCallContext(); } } /** * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by * {upgradeToAndCall}. * * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}. * * ```solidity * function _authorizeUpgrade(address) internal onlyOwner {} * ``` */ function _authorizeUpgrade(address newImplementation) internal virtual; /** * @dev Performs an implementation upgrade with a security check for UUPS proxies, and additional setup call. * * As a security check, {proxiableUUID} is invoked in the new implementation, and the return value * is expected to be the implementation slot in ERC1967. * * Emits an {IERC1967-Upgraded} event. */ function _upgradeToAndCallUUPS(address newImplementation, bytes memory data) private { try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) { if (slot != ERC1967Utils.IMPLEMENTATION_SLOT) { revert UUPSUnsupportedProxiableUUID(slot); } ERC1967Utils.upgradeToAndCall(newImplementation, data); } catch { // The implementation is not UUPS revert ERC1967Utils.ERC1967InvalidImplementation(newImplementation); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC1822.sol) pragma solidity ^0.8.20; /** * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified * proxy whose upgrades are fully controlled by the current implementation. */ interface IERC1822Proxiable { /** * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation * address. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. */ function proxiableUUID() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol) pragma solidity ^0.8.20; /** * @dev This is the interface that {BeaconProxy} expects of its beacon. */ interface IBeacon { /** * @dev Must return an address that can be used as a delegate call target. * * {UpgradeableBeacon} will check that this address is a contract. */ function implementation() external view returns (address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/ERC1967/ERC1967Utils.sol) pragma solidity ^0.8.20; import {IBeacon} from "../beacon/IBeacon.sol"; import {Address} from "../../utils/Address.sol"; import {StorageSlot} from "../../utils/StorageSlot.sol"; /** * @dev This abstract contract provides getters and event emitting update functions for * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots. */ library ERC1967Utils { // We re-declare ERC-1967 events here because they can't be used directly from IERC1967. // This will be fixed in Solidity 0.8.21. At that point we should remove these events. /** * @dev Emitted when the implementation is upgraded. */ event Upgraded(address indexed implementation); /** * @dev Emitted when the admin account has changed. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Emitted when the beacon is changed. */ event BeaconUpgraded(address indexed beacon); /** * @dev Storage slot with the address of the current implementation. * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1. */ // solhint-disable-next-line private-vars-leading-underscore bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** * @dev The `implementation` of the proxy is invalid. */ error ERC1967InvalidImplementation(address implementation); /** * @dev The `admin` of the proxy is invalid. */ error ERC1967InvalidAdmin(address admin); /** * @dev The `beacon` of the proxy is invalid. */ error ERC1967InvalidBeacon(address beacon); /** * @dev An upgrade function sees `msg.value > 0` that may be lost. */ error ERC1967NonPayable(); /** * @dev Returns the current implementation address. */ function getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value; } /** * @dev Stores a new address in the EIP1967 implementation slot. */ function _setImplementation(address newImplementation) private { if (newImplementation.code.length == 0) { revert ERC1967InvalidImplementation(newImplementation); } StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation; } /** * @dev Performs implementation upgrade with additional setup call if data is nonempty. * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected * to avoid stuck value in the contract. * * Emits an {IERC1967-Upgraded} event. */ function upgradeToAndCall(address newImplementation, bytes memory data) internal { _setImplementation(newImplementation); emit Upgraded(newImplementation); if (data.length > 0) { Address.functionDelegateCall(newImplementation, data); } else { _checkNonPayable(); } } /** * @dev Storage slot with the admin of the contract. * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1. */ // solhint-disable-next-line private-vars-leading-underscore bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; /** * @dev Returns the current admin. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103` */ function getAdmin() internal view returns (address) { return StorageSlot.getAddressSlot(ADMIN_SLOT).value; } /** * @dev Stores a new address in the EIP1967 admin slot. */ function _setAdmin(address newAdmin) private { if (newAdmin == address(0)) { revert ERC1967InvalidAdmin(address(0)); } StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin; } /** * @dev Changes the admin of the proxy. * * Emits an {IERC1967-AdminChanged} event. */ function changeAdmin(address newAdmin) internal { emit AdminChanged(getAdmin(), newAdmin); _setAdmin(newAdmin); } /** * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. * This is the keccak-256 hash of "eip1967.proxy.beacon" subtracted by 1. */ // solhint-disable-next-line private-vars-leading-underscore bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50; /** * @dev Returns the current beacon. */ function getBeacon() internal view returns (address) { return StorageSlot.getAddressSlot(BEACON_SLOT).value; } /** * @dev Stores a new beacon in the EIP1967 beacon slot. */ function _setBeacon(address newBeacon) private { if (newBeacon.code.length == 0) { revert ERC1967InvalidBeacon(newBeacon); } StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon; address beaconImplementation = IBeacon(newBeacon).implementation(); if (beaconImplementation.code.length == 0) { revert ERC1967InvalidImplementation(beaconImplementation); } } /** * @dev Change the beacon and trigger a setup call if data is nonempty. * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected * to avoid stuck value in the contract. * * Emits an {IERC1967-BeaconUpgraded} event. * * CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since * it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for * efficiency. */ function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal { _setBeacon(newBeacon); emit BeaconUpgraded(newBeacon); if (data.length > 0) { Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data); } else { _checkNonPayable(); } } /** * @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract * if an upgrade doesn't perform an initialization call. */ function _checkNonPayable() private { if (msg.value > 0) { revert ERC1967NonPayable(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @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.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @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 or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * 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. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @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`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) 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 FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.20; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ```solidity * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(newImplementation.code.length > 0); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } /** * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.8.0; import {IReactor} from "../interfaces/IReactor.sol"; import {IValidationCallback} from "../interfaces/IValidationCallback.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; /// @dev generic order information /// should be included as the first field in any concrete order types struct OrderInfo { // The address of the reactor that this order is targeting // Note that this must be included in every order so the swapper // signature commits to the specific reactor that they trust to fill their order properly IReactor reactor; // The address of the user which created the order // Note that this must be included so that order hashes are unique by swapper address swapper; // The nonce of the order, allowing for signature replay protection and cancellation uint256 nonce; // The timestamp after which this order is no longer valid uint256 deadline; // Custom validation contract IValidationCallback additionalValidationContract; // Encoded validation params for additionalValidationContract bytes additionalValidationData; } /// @dev tokens that need to be sent from the swapper in order to satisfy an order struct InputToken { ERC20 token; uint256 amount; // Needed for dutch decaying inputs uint256 maxAmount; } /// @dev tokens that need to be received by the recipient in order to satisfy an order struct OutputToken { address token; uint256 amount; address recipient; } /// @dev generic concrete order that specifies exact tokens which need to be sent and received struct ResolvedOrder { OrderInfo info; InputToken input; OutputToken[] outputs; bytes sig; bytes32 hash; } /// @dev external struct including a generic encoded order and swapper signature /// The order bytes will be parsed and mapped to a ResolvedOrder in the concrete reactor contract struct SignedOrder { bytes order; bytes sig; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.8.0; import {ResolvedOrder, SignedOrder} from "../base/ReactorStructs.sol"; import {IReactorCallback} from "./IReactorCallback.sol"; /// @notice Interface for order execution reactors interface IReactor { /// @notice Execute a single order /// @param order The order definition and valid signature to execute function execute(SignedOrder calldata order) external payable; /// @notice Execute a single order using the given callback data /// @param order The order definition and valid signature to execute function executeWithCallback(SignedOrder calldata order, bytes calldata callbackData) external payable; /// @notice Execute the given orders at once /// @param orders The order definitions and valid signatures to execute function executeBatch(SignedOrder[] calldata orders) external payable; /// @notice Execute the given orders at once using a callback with the given callback data /// @param orders The order definitions and valid signatures to execute /// @param callbackData The callbackData to pass to the callback function executeBatchWithCallback(SignedOrder[] calldata orders, bytes calldata callbackData) external payable; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.8.0; import {ResolvedOrder} from "../base/ReactorStructs.sol"; /// @notice Callback for executing orders through a reactor. interface IReactorCallback { /// @notice Called by the reactor during the execution of an order /// @param resolvedOrders Has inputs and outputs /// @param callbackData The callbackData specified for an order execution /// @dev Must have approved each token and amount in outputs to the msg.sender function reactorCallback(ResolvedOrder[] memory resolvedOrders, bytes memory callbackData) external; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.8.0; import {OrderInfo, ResolvedOrder} from "../base/ReactorStructs.sol"; /// @notice Callback to validate an order interface IValidationCallback { /// @notice Called by the reactor for custom validation of an order. Will revert if validation fails /// @param filler The filler of the order /// @param resolvedOrder The resolved order to fill function validate(address filler, ResolvedOrder calldata resolvedOrder) external view; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "./interfaces/IReactorCallback.sol"; import "./interfaces/IReactor.sol"; import "./interfaces/IValidationCallback.sol"; import {ResolvedOrder, OutputToken, SignedOrder} from "./base/ReactorStructs.sol"; struct Signature { uint8 v; bytes32 r; bytes32 s; } struct ClipperSwapParams { uint256 packedInput; uint256 packedOutput; uint256 goodUntil; bytes32 r; bytes32 vs; } interface ClipperCommonInterface { function swap(address inputToken, address outputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) external; function sellEthForToken(address outputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) external payable; function sellTokenForEth(address inputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) external; function nTokens() external view returns (uint); function tokenAt(uint i) external view returns (address); } interface IWETH { function deposit() external payable; function withdraw(uint wad) external; } abstract contract ClipperExecutorStorage { address constant NATIVE = address(0); uint256 constant TRANSFER_NATIVE_GAS_LIMIT = 6900; IWETH public weth; address public CLIPPER_EXCHANGE; address public whitelistedCaller; IReactor public reactorV1; IReactor public reactorV2; } /// @notice A fill contract that uses Clipper to execute trades abstract contract ProxyClipperExecutor is ClipperExecutorStorage, IReactorCallback, OwnableUpgradeable { using SafeERC20 for IERC20; /// @notice thrown if reactorCallback is called with a non-whitelisted filler error CallerNotWhitelisted(); /// @notice thrown if reactorCallback is called by an adress other than the reactor error MsgSenderNotReactor(); error NativeTransferFailed(); // TODO: owner should be able to also execute it modifier onlyWhitelistedCaller() { if (msg.sender != whitelistedCaller) { revert CallerNotWhitelisted(); } _; } modifier onlyReactor() { if (msg.sender != address(reactorV1) && msg.sender != address(reactorV2)) { revert MsgSenderNotReactor(); } _; } function baseInitialize(address _wethAddress, IReactor _reactorV1, IReactor _reactorV2, address clipperExchange, address _whitelistedCaller, address initialOwner) public initializer { __Ownable_init(initialOwner); weth = IWETH(_wethAddress); whitelistedCaller = _whitelistedCaller; reactorV1 = _reactorV1; reactorV2 = _reactorV2; CLIPPER_EXCHANGE = clipperExchange; } // to receive ETH in a swap using native ETH receive() external payable {} /// @notice assume that we already have all output tokens function execute(IReactor _reactor, SignedOrder calldata order, bytes calldata callbackData) external onlyWhitelistedCaller { _reactor.executeWithCallback(order, callbackData); } /// @notice fill UniswapX orders using Clipper function reactorCallback(ResolvedOrder[] calldata resolvedOrders, bytes calldata callbackData) external onlyReactor { if (callbackData.length > 0) { (address[] memory contracts, bytes[] memory swaps, address approvalToken, uint256 approvalAmount, uint256 reactorOutput) = abi.decode(callbackData, (address[], bytes[], address, uint256, uint256)); for (uint i = 0; i < contracts.length; i++){ executeSwap(contracts[i], swaps[i], approvalToken, approvalAmount); } if (address(resolvedOrders[0].outputs[0].token) == NATIVE) { // sends native token back to the reactor transferNative(msg.sender, reactorOutput); } else { IERC20(address(resolvedOrders[0].outputs[0].token)).forceApprove(msg.sender, reactorOutput); } } } function executeSwap(address _contract, bytes memory swap, address approvalToken, uint256 approvalAmount) internal { if(_contract == CLIPPER_EXCHANGE) { ClipperSwapParams memory swapParams = abi.decode( swap, (ClipperSwapParams) ); bytes32 s = swapParams.vs & 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff; uint8 v = 27 + uint8(uint256(swapParams.vs) >> 255); Signature memory theSignature = Signature(v,swapParams.r,s); delete v; delete s; if (address(uint160(swapParams.packedInput)) == NATIVE) { ClipperCommonInterface(CLIPPER_EXCHANGE).sellEthForToken{value: (swapParams.packedInput >> 160) }(address(uint160(swapParams.packedOutput)), (swapParams.packedInput >> 160) , (swapParams.packedOutput >>160), swapParams.goodUntil, address(this), theSignature, "ClipperUniswapX"); } else if (address(uint160(swapParams.packedOutput)) == NATIVE) { IERC20(address(uint160(swapParams.packedInput))).safeTransfer(CLIPPER_EXCHANGE, (swapParams.packedInput >> 160)); ClipperCommonInterface(CLIPPER_EXCHANGE).sellTokenForEth(address(uint160(swapParams.packedInput)), (swapParams.packedInput >> 160) , (swapParams.packedOutput >>160), swapParams.goodUntil, address(this), theSignature, "ClipperUniswapX"); } else { IERC20(address(uint160(swapParams.packedInput))).safeTransfer(CLIPPER_EXCHANGE, (swapParams.packedInput >> 160)); ClipperCommonInterface(CLIPPER_EXCHANGE).swap(address(uint160(swapParams.packedInput)), address(uint160(swapParams.packedOutput)), (swapParams.packedInput >> 160) , (swapParams.packedOutput >>160), swapParams.goodUntil, address(this), theSignature, "ClipperUniswapX"); } } else { IERC20(approvalToken).safeTransfer(_contract, approvalAmount); _contract.call(swap); } } function executeSwaps( address inputToken, address outputToken, bytes calldata callbackData ) external payable onlyWhitelistedCaller { if (callbackData.length > 0) { (address[] memory contracts, bytes[] memory swaps, address approvalToken, uint256 approvalAmount, uint256 reactorOutput) = abi.decode(callbackData, (address[], bytes[], address, uint256, uint256)); require(contracts.length == swaps.length, "Mismatch between contract addresses and calldata length"); for (uint i = 0; i < contracts.length; i++) { // if (contracts[i] != CLIPPER_EXCHANGE) { // // for non clipper pool we wrap/unwrap native token // if (i == 0 && inputToken == NATIVE) { // weth.deposit{value: msg.value}(); // } else if (i == (contracts.length-1) && outputToken == NATIVE) { // weth.withdraw(reactorOutput); // } // } executeSwapTest(contracts[i], swaps[i], approvalToken, approvalAmount); } if (outputToken == NATIVE) { // sends native token back to the reactor transferNative(msg.sender, reactorOutput); } else { IERC20(outputToken).safeTransfer(msg.sender, reactorOutput); } } } function executeSwapTest( address _contract, bytes memory swap, address approvalToken, uint256 approvalAmount ) internal { if(_contract == CLIPPER_EXCHANGE) { ClipperSwapParams memory swapParams = abi.decode( swap, (ClipperSwapParams) ); bytes32 s = swapParams.vs & 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff; uint8 v = 27 + uint8(uint256(swapParams.vs) >> 255); Signature memory theSignature = Signature(v,swapParams.r,s); delete v; delete s; if (address(uint160(swapParams.packedInput)) == NATIVE) { ClipperCommonInterface(CLIPPER_EXCHANGE).sellEthForToken{value: (swapParams.packedInput >> 160) }(address(uint160(swapParams.packedOutput)), (swapParams.packedInput >> 160) , (swapParams.packedOutput >>160), swapParams.goodUntil, address(this), theSignature, "ClipperUniswapX"); } else if (address(uint160(swapParams.packedOutput)) == NATIVE) { // TODO: remove on production launch IERC20(address(uint160(swapParams.packedInput))).forceApprove(msg.sender, (swapParams.packedInput >> 160)); IERC20(address(uint160(swapParams.packedInput))).safeTransfer(CLIPPER_EXCHANGE, (swapParams.packedInput >> 160)); ClipperCommonInterface(CLIPPER_EXCHANGE).sellTokenForEth(address(uint160(swapParams.packedInput)), (swapParams.packedInput >> 160) , (swapParams.packedOutput >>160), swapParams.goodUntil, address(this), theSignature, "ClipperUniswapX"); } else { // TODO: remove on production launch IERC20(address(uint160(swapParams.packedInput))).forceApprove(msg.sender, (swapParams.packedInput >> 160)); IERC20(address(uint160(swapParams.packedInput))).safeTransfer(CLIPPER_EXCHANGE, (swapParams.packedInput >> 160)); ClipperCommonInterface(CLIPPER_EXCHANGE).swap(address(uint160(swapParams.packedInput)), address(uint160(swapParams.packedOutput)), (swapParams.packedInput >> 160) , (swapParams.packedOutput >>160), swapParams.goodUntil, address(this), theSignature, "ClipperUniswapX"); } } else { // TODO: remove on production launch IERC20(approvalToken).forceApprove(msg.sender, approvalAmount); IERC20(approvalToken).safeTransfer(_contract, approvalAmount); _contract.call(swap); } } function updateWhitelistedCaller(address newCaller) external onlyOwner { whitelistedCaller = newCaller; } function updateReactorV1(IReactor newReactor) external onlyOwner { reactorV1 = newReactor; } function updateReactorV2(IReactor newReactor) external onlyOwner { reactorV2 = newReactor; } function rescueFunds(IERC20 token) external { token.safeTransfer(owner(), token.balanceOf(address(this))); } function tokenEscapeAll() external { uint n = ClipperCommonInterface(CLIPPER_EXCHANGE).nTokens(); for (uint i = 0; i < n; i++) { address token = ClipperCommonInterface(CLIPPER_EXCHANGE).tokenAt(i); uint256 toSend = IERC20(token).balanceOf(address(this)); if(toSend > 1){ toSend = toSend - 1; } IERC20(token).safeTransfer(owner(), toSend); } transferNative(owner(), address(this).balance); } function transferNative(address recipient, uint256 amount) internal { (bool success,) = recipient.call{value: amount, gas: TRANSFER_NATIVE_GAS_LIMIT}(""); if (!success) revert NativeTransferFailed(); } }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"CallerNotWhitelisted","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"MsgSenderNotReactor","type":"error"},{"inputs":[],"name":"NativeTransferFailed","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","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":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"CLIPPER_EXCHANGE","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wethAddress","type":"address"},{"internalType":"contract IReactor","name":"_reactorV1","type":"address"},{"internalType":"contract IReactor","name":"_reactorV2","type":"address"},{"internalType":"address","name":"clipperExchange","type":"address"},{"internalType":"address","name":"_whitelistedCaller","type":"address"},{"internalType":"address","name":"initialOwner","type":"address"}],"name":"baseInitialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IReactor","name":"_reactor","type":"address"},{"components":[{"internalType":"bytes","name":"order","type":"bytes"},{"internalType":"bytes","name":"sig","type":"bytes"}],"internalType":"struct SignedOrder","name":"order","type":"tuple"},{"internalType":"bytes","name":"callbackData","type":"bytes"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"inputToken","type":"address"},{"internalType":"address","name":"outputToken","type":"address"},{"internalType":"bytes","name":"callbackData","type":"bytes"}],"name":"executeSwaps","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_wethAddress","type":"address"},{"internalType":"contract IReactor","name":"_reactorV1","type":"address"},{"internalType":"contract IReactor","name":"_reactorV2","type":"address"},{"internalType":"address","name":"_clipperExchange","type":"address"},{"internalType":"address","name":"_whitelistedCaller","type":"address"},{"internalType":"address","name":"_initialOwner","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"contract IReactor","name":"reactor","type":"address"},{"internalType":"address","name":"swapper","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"contract IValidationCallback","name":"additionalValidationContract","type":"address"},{"internalType":"bytes","name":"additionalValidationData","type":"bytes"}],"internalType":"struct OrderInfo","name":"info","type":"tuple"},{"components":[{"internalType":"contract ERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"maxAmount","type":"uint256"}],"internalType":"struct InputToken","name":"input","type":"tuple"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"internalType":"struct OutputToken[]","name":"outputs","type":"tuple[]"},{"internalType":"bytes","name":"sig","type":"bytes"},{"internalType":"bytes32","name":"hash","type":"bytes32"}],"internalType":"struct ResolvedOrder[]","name":"resolvedOrders","type":"tuple[]"},{"internalType":"bytes","name":"callbackData","type":"bytes"}],"name":"reactorCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reactorV1","outputs":[{"internalType":"contract IReactor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reactorV2","outputs":[{"internalType":"contract IReactor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"rescueFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenEscapeAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IReactor","name":"newReactor","type":"address"}],"name":"updateReactorV1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IReactor","name":"newReactor","type":"address"}],"name":"updateReactorV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newCaller","type":"address"}],"name":"updateWhitelistedCaller","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"contract IWETH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistedCaller","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040523073ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1681525034801561004357600080fd5b50608051613f5a61006d600039600081816114bf0152818161151401526116cf0152613f5a6000f3fe60806040526004361061012e5760003560e01c80638da5cb5b116100ab578063ad3cb1cc1161006f578063ad3cb1cc1461036f578063cc2a9a5b1461039a578063d8a1b7c9146103c3578063e53b2017146103ee578063f2fde38b14610417578063ffaf7b1e1461044057610135565b80638da5cb5b146102bf5780639b7a7d50146102ea5780639deb536d146103135780639ed559fb1461033c578063a00a377d1461035357610135565b806352d1902d116100f257806352d1902d146101fe578063585da628146102295780636ea2e32614610252578063715018a61461027d5780638c21b4111461029457610135565b806306bd93101461013a57806338107877146101655780633fc8cef31461018e5780634c067550146101b95780634f1ef286146101e257610135565b3661013557005b600080fd5b34801561014657600080fd5b5061014f610469565b60405161015c9190612bbb565b60405180910390f35b34801561017157600080fd5b5061018c60048036038101906101879190612c28565b61048f565b005b34801561019a57600080fd5b506101a36104db565b6040516101b09190612cb4565b60405180910390f35b3480156101c557600080fd5b506101e060048036038101906101db9190612d58565b6104ff565b005b6101fc60048036038101906101f79190612f55565b6105fb565b005b34801561020a57600080fd5b5061021361061a565b6040516102209190612fca565b60405180910390f35b34801561023557600080fd5b50610250600480360381019061024b919061303b565b61064d565b005b34801561025e57600080fd5b506102676108f4565b60405161027491906130dd565b60405180910390f35b34801561028957600080fd5b5061029261091a565b005b3480156102a057600080fd5b506102a961092e565b6040516102b69190612bbb565b60405180910390f35b3480156102cb57600080fd5b506102d4610954565b6040516102e19190612bbb565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c91906130f8565b61098c565b005b34801561031f57600080fd5b5061033a60048036038101906103359190612c28565b610c64565b005b34801561034857600080fd5b50610351610cb0565b005b61036d60048036038101906103689190613185565b610ee3565b005b34801561037b57600080fd5b506103846110b6565b6040516103919190613278565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc91906130f8565b6110ef565b005b3480156103cf57600080fd5b506103d8611290565b6040516103e591906130dd565b60405180910390f35b3480156103fa57600080fd5b50610415600480360381019061041091906132d8565b6112b6565b005b34801561042357600080fd5b5061043e60048036038101906104399190613305565b611364565b005b34801561044c57600080fd5b5061046760048036038101906104629190613305565b6113ea565b005b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610497611436565b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610586576040517f8c6e5d7100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff16630d3358848484846040518463ffffffff1660e01b81526004016105c393929190613478565b600060405180830381600087803b1580156105dd57600080fd5b505af11580156105f1573d6000803e3d6000fd5b5050505050505050565b6106036114bd565b61060c826115a3565b61061682826115ae565b5050565b60006106246116cd565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b905090565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156106f95750600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610730576040517f933fe52f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008282905011156108ee576000806000806000868681019061075391906136c9565b9450945094509450945060005b85518110156107bc576107a986828151811061077f5761077e61377c565b5b602002602001015186838151811061079a5761079961377c565b5b60200260200101518686611754565b80806107b4906137da565b915050610760565b50600073ffffffffffffffffffffffffffffffffffffffff16898960008181106107e9576107e861377c565b5b90506020028101906107fb9190613831565b806080019061080a9190613859565b600081811061081c5761081b61377c565b5b90506060020160000160208101906108349190613305565b73ffffffffffffffffffffffffffffffffffffffff160361085e576108593382611c28565b6108e8565b6108e733828b8b60008181106108775761087661377c565b5b90506020028101906108899190613831565b80608001906108989190613859565b60008181106108aa576108a961377c565b5b90506060020160000160208101906108c29190613305565b73ffffffffffffffffffffffffffffffffffffffff16611cd59092919063ffffffff16565b5b50505050505b50505050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610922611436565b61092c6000611de4565b565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061095f611ebb565b90508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691505090565b6000610996611ee3565b905060008160000160089054906101000a900460ff1615905060008260000160009054906101000a900467ffffffffffffffff1690506000808267ffffffffffffffff161480156109e45750825b9050600060018367ffffffffffffffff16148015610a19575060003073ffffffffffffffffffffffffffffffffffffffff163b145b905081158015610a27575080155b15610a5e576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018560000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508315610aae5760018560000160086101000a81548160ff0219169083151502179055505b610ab786611f0b565b8a6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555086600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555089600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555088600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555087600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508315610c575760008560000160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d26001604051610c4e919061390b565b60405180910390a15b5050505050505050505050565b610c6c611436565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631b6a87596040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d43919061393b565b905060005b81811015610ece576000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392a91a3a836040518263ffffffff1660e01b8152600401610dad9190613977565b602060405180830381865afa158015610dca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dee91906139a7565b905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e2b9190612bbb565b602060405180830381865afa158015610e48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6c919061393b565b90506001811115610e8757600181610e8491906139d4565b90505b610eb9610e92610954565b828473ffffffffffffffffffffffffffffffffffffffff16611f1f9092919063ffffffff16565b50508080610ec6906137da565b915050610d48565b50610ee0610eda610954565b47611c28565b50565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6a576040517f8c6e5d7100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008282905011156110b05760008060008060008686810190610f8d91906136c9565b945094509450945094508351855114610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290613a7a565b60405180910390fd5b60005b855181101561103a57611027868281518110610ffd57610ffc61377c565b5b60200260200101518683815181106110185761101761377c565b5b60200260200101518686611f9e565b8080611032906137da565b915050610fde565b50600073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff160361107e576110793382611c28565b6110aa565b6110a933828a73ffffffffffffffffffffffffffffffffffffffff16611f1f9092919063ffffffff16565b5b50505050505b50505050565b6040518060400160405280600581526020017f352e302e3000000000000000000000000000000000000000000000000000000081525081565b60006110f9611ee3565b905060008160000160089054906101000a900460ff1615905060008260000160009054906101000a900467ffffffffffffffff1690506000808267ffffffffffffffff161480156111475750825b9050600060018367ffffffffffffffff1614801561117c575060003073ffffffffffffffffffffffffffffffffffffffff163b145b90508115801561118a575080155b156111c1576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018560000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083156112115760018560000160086101000a81548160ff0219169083151502179055505b61121f8b8b8b8b8b8b61098c565b61122761250b565b83156112835760008560000160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2600160405161127a919061390b565b60405180910390a15b5050505050505050505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113616112c1610954565b8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112fa9190612bbb565b602060405180830381865afa158015611317573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133b919061393b565b8373ffffffffffffffffffffffffffffffffffffffff16611f1f9092919063ffffffff16565b50565b61136c611436565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113de5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016113d59190612bbb565b60405180910390fd5b6113e781611de4565b50565b6113f2611436565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61143e612515565b73ffffffffffffffffffffffffffffffffffffffff1661145c610954565b73ffffffffffffffffffffffffffffffffffffffff16146114bb5761147f612515565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016114b29190612bbb565b60405180910390fd5b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148061156a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1661155161251d565b73ffffffffffffffffffffffffffffffffffffffff1614155b156115a1576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6115ab611436565b50565b8173ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561161657506040513d601f19601f820116820180604052508101906116139190613ac6565b60015b61165757816040517f4c9c8ce300000000000000000000000000000000000000000000000000000000815260040161164e9190612bbb565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b81146116be57806040517faa1d49a40000000000000000000000000000000000000000000000000000000081526004016116b59190612fca565b60405180910390fd5b6116c88383612574565b505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614611752576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b8c576000838060200190518101906117bf9190613b84565b905060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b8260800151169050600060ff836080015160001c901c601b6118099190613bbe565b9050600060405180606001604052808360ff168152602001856060015181526020018481525090506000915060009250600073ffffffffffffffffffffffffffffffffffffffff16846000015173ffffffffffffffffffffffffffffffffffffffff160361192e57600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166327a9b42460a08660000151901c866020015160a08860000151901c60a08960200151901c896040015130886040518863ffffffff1660e01b81526004016118f796959493929190613c9f565b6000604051808303818588803b15801561191057600080fd5b505af1158015611924573d6000803e3d6000fd5b5050505050611b83565b600073ffffffffffffffffffffffffffffffffffffffff16846020015173ffffffffffffffffffffffffffffffffffffffff1603611a73576119bf600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16611f1f9092919063ffffffff16565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634cb6864c856000015160a08760000151901c60a08860200151901c886040015130876040518763ffffffff1660e01b8152600401611a3c96959493929190613c9f565b600060405180830381600087803b158015611a5657600080fd5b505af1158015611a6a573d6000803e3d6000fd5b50505050611b82565b611acc600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16611f1f9092919063ffffffff16565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632b651a6c8560000151866020015160a08860000151901c60a08960200151901c896040015130886040518863ffffffff1660e01b8152600401611b4f9796959493929190613d15565b600060405180830381600087803b158015611b6957600080fd5b505af1158015611b7d573d6000803e3d6000fd5b505050505b5b50505050611c22565b611bb784828473ffffffffffffffffffffffffffffffffffffffff16611f1f9092919063ffffffff16565b8373ffffffffffffffffffffffffffffffffffffffff1683604051611bdc9190613de0565b6000604051808303816000865af19150503d8060008114611c19576040519150601f19603f3d011682016040523d82523d6000602084013e611c1e565b606091505b5050505b50505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682611af490604051611c5290613e1d565b600060405180830381858888f193505050503d8060008114611c90576040519150601f19603f3d011682016040523d82523d6000602084013e611c95565b606091505b5050905080611cd0576040517ff4b3b1bc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663095ea7b38484604051602401611d06929190613e32565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050509050611d5484826125e7565b611dde57611dd3848573ffffffffffffffffffffffffffffffffffffffff1663095ea7b3866000604051602401611d8c929190613e96565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506126ae565b611ddd84826126ae565b5b50505050565b6000611dee611ebb565b905060008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050828260000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3505050565b60007f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300905090565b60007ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00905090565b611f13612745565b611f1c81612785565b50565b611f99838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8585604051602401611f52929190613e32565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506126ae565b505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612444576000838060200190518101906120099190613b84565b905060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b8260800151169050600060ff836080015160001c901c601b6120539190613bbe565b9050600060405180606001604052808360ff168152602001856060015181526020018481525090506000915060009250600073ffffffffffffffffffffffffffffffffffffffff16846000015173ffffffffffffffffffffffffffffffffffffffff160361217857600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166327a9b42460a08660000151901c866020015160a08860000151901c60a08960200151901c896040015130886040518863ffffffff1660e01b815260040161214196959493929190613c9f565b6000604051808303818588803b15801561215a57600080fd5b505af115801561216e573d6000803e3d6000fd5b505050505061243b565b600073ffffffffffffffffffffffffffffffffffffffff16846020015173ffffffffffffffffffffffffffffffffffffffff16036122f4576121e73360a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16611cd59092919063ffffffff16565b612240600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16611f1f9092919063ffffffff16565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634cb6864c856000015160a08760000151901c60a08860200151901c886040015130876040518763ffffffff1660e01b81526004016122bd96959493929190613c9f565b600060405180830381600087803b1580156122d757600080fd5b505af11580156122eb573d6000803e3d6000fd5b5050505061243a565b61232b3360a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16611cd59092919063ffffffff16565b612384600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16611f1f9092919063ffffffff16565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632b651a6c8560000151866020015160a08860000151901c60a08960200151901c896040015130886040518863ffffffff1660e01b81526004016124079796959493929190613d15565b600060405180830381600087803b15801561242157600080fd5b505af1158015612435573d6000803e3d6000fd5b505050505b5b50505050612505565b61246f33828473ffffffffffffffffffffffffffffffffffffffff16611cd59092919063ffffffff16565b61249a84828473ffffffffffffffffffffffffffffffffffffffff16611f1f9092919063ffffffff16565b8373ffffffffffffffffffffffffffffffffffffffff16836040516124bf9190613de0565b6000604051808303816000865af19150503d80600081146124fc576040519150601f19603f3d011682016040523d82523d6000602084013e612501565b606091505b5050505b50505050565b612513612745565b565b600033905090565b600061254b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b61280b565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61257d82612815565b8173ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a26000815111156125da576125d482826128e2565b506125e3565b6125e2612966565b5b5050565b60008060008473ffffffffffffffffffffffffffffffffffffffff16846040516126119190613de0565b6000604051808303816000865af19150503d806000811461264e576040519150601f19603f3d011682016040523d82523d6000602084013e612653565b606091505b5091509150818015612681575060008151148061268057508080602001905181019061267f9190613ef7565b5b5b80156126a4575060008573ffffffffffffffffffffffffffffffffffffffff163b115b9250505092915050565b60006126d9828473ffffffffffffffffffffffffffffffffffffffff166129a390919063ffffffff16565b905060008151141580156126fe5750808060200190518101906126fc9190613ef7565b155b1561274057826040517f5274afe70000000000000000000000000000000000000000000000000000000081526004016127379190612bbb565b60405180910390fd5b505050565b61274d6129b9565b612783576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b61278d612745565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127ff5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016127f69190612bbb565b60405180910390fd5b61280881611de4565b50565b6000819050919050565b60008173ffffffffffffffffffffffffffffffffffffffff163b0361287157806040517f4c9c8ce30000000000000000000000000000000000000000000000000000000081526004016128689190612bbb565b60405180910390fd5b8061289e7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b61280b565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000808473ffffffffffffffffffffffffffffffffffffffff168460405161290c9190613de0565b600060405180830381855af49150503d8060008114612947576040519150601f19603f3d011682016040523d82523d6000602084013e61294c565b606091505b509150915061295c8583836129d9565b9250505092915050565b60003411156129a1576040517fb398979f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b60606129b183836000612a68565b905092915050565b60006129c3611ee3565b60000160089054906101000a900460ff16905090565b6060826129ee576129e982612b35565b612a60565b60008251148015612a16575060008473ffffffffffffffffffffffffffffffffffffffff163b145b15612a5857836040517f9996b315000000000000000000000000000000000000000000000000000000008152600401612a4f9190612bbb565b60405180910390fd5b819050612a61565b5b9392505050565b606081471015612aaf57306040517fcd786059000000000000000000000000000000000000000000000000000000008152600401612aa69190612bbb565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff168486604051612ad89190613de0565b60006040518083038185875af1925050503d8060008114612b15576040519150601f19603f3d011682016040523d82523d6000602084013e612b1a565b606091505b5091509150612b2a8683836129d9565b925050509392505050565b600081511115612b485780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ba582612b7a565b9050919050565b612bb581612b9a565b82525050565b6000602082019050612bd06000830184612bac565b92915050565b6000604051905090565b600080fd5b600080fd5b6000612bf582612b9a565b9050919050565b612c0581612bea565b8114612c1057600080fd5b50565b600081359050612c2281612bfc565b92915050565b600060208284031215612c3e57612c3d612be0565b5b6000612c4c84828501612c13565b91505092915050565b6000819050919050565b6000612c7a612c75612c7084612b7a565b612c55565b612b7a565b9050919050565b6000612c8c82612c5f565b9050919050565b6000612c9e82612c81565b9050919050565b612cae81612c93565b82525050565b6000602082019050612cc96000830184612ca5565b92915050565b600080fd5b600060408284031215612cea57612ce9612ccf565b5b81905092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612d1857612d17612cf3565b5b8235905067ffffffffffffffff811115612d3557612d34612cf8565b5b602083019150836001820283011115612d5157612d50612cfd565b5b9250929050565b60008060008060608587031215612d7257612d71612be0565b5b6000612d8087828801612c13565b945050602085013567ffffffffffffffff811115612da157612da0612be5565b5b612dad87828801612cd4565b935050604085013567ffffffffffffffff811115612dce57612dcd612be5565b5b612dda87828801612d02565b925092505092959194509250565b612df181612b9a565b8114612dfc57600080fd5b50565b600081359050612e0e81612de8565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e6282612e19565b810181811067ffffffffffffffff82111715612e8157612e80612e2a565b5b80604052505050565b6000612e94612bd6565b9050612ea08282612e59565b919050565b600067ffffffffffffffff821115612ec057612ebf612e2a565b5b612ec982612e19565b9050602081019050919050565b82818337600083830152505050565b6000612ef8612ef384612ea5565b612e8a565b905082815260208101848484011115612f1457612f13612e14565b5b612f1f848285612ed6565b509392505050565b600082601f830112612f3c57612f3b612cf3565b5b8135612f4c848260208601612ee5565b91505092915050565b60008060408385031215612f6c57612f6b612be0565b5b6000612f7a85828601612dff565b925050602083013567ffffffffffffffff811115612f9b57612f9a612be5565b5b612fa785828601612f27565b9150509250929050565b6000819050919050565b612fc481612fb1565b82525050565b6000602082019050612fdf6000830184612fbb565b92915050565b60008083601f840112612ffb57612ffa612cf3565b5b8235905067ffffffffffffffff81111561301857613017612cf8565b5b60208301915083602082028301111561303457613033612cfd565b5b9250929050565b6000806000806040858703121561305557613054612be0565b5b600085013567ffffffffffffffff81111561307357613072612be5565b5b61307f87828801612fe5565b9450945050602085013567ffffffffffffffff8111156130a2576130a1612be5565b5b6130ae87828801612d02565b925092505092959194509250565b60006130c782612c81565b9050919050565b6130d7816130bc565b82525050565b60006020820190506130f260008301846130ce565b92915050565b60008060008060008060c0878903121561311557613114612be0565b5b600061312389828a01612dff565b965050602061313489828a01612c13565b955050604061314589828a01612c13565b945050606061315689828a01612dff565b935050608061316789828a01612dff565b92505060a061317889828a01612dff565b9150509295509295509295565b6000806000806060858703121561319f5761319e612be0565b5b60006131ad87828801612dff565b94505060206131be87828801612dff565b935050604085013567ffffffffffffffff8111156131df576131de612be5565b5b6131eb87828801612d02565b925092505092959194509250565b600081519050919050565b600082825260208201905092915050565b60005b83811015613233578082015181840152602081019050613218565b60008484015250505050565b600061324a826131f9565b6132548185613204565b9350613264818560208601613215565b61326d81612e19565b840191505092915050565b60006020820190508181036000830152613292818461323f565b905092915050565b60006132a582612b9a565b9050919050565b6132b58161329a565b81146132c057600080fd5b50565b6000813590506132d2816132ac565b92915050565b6000602082840312156132ee576132ed612be0565b5b60006132fc848285016132c3565b91505092915050565b60006020828403121561331b5761331a612be0565b5b600061332984828501612dff565b91505092915050565b600080fd5b600080fd5b600080fd5b6000808335600160200384360303811261335e5761335d61333c565b5b83810192508235915060208301925067ffffffffffffffff82111561338657613385613332565b5b60018202360383131561339c5761339b613337565b5b509250929050565b600082825260208201905092915050565b60006133c183856133a4565b93506133ce838584612ed6565b6133d783612e19565b840190509392505050565b6000604083016133f56000840184613341565b85830360008701526134088382846133b5565b925050506134196020840184613341565b858303602087015261342c8382846133b5565b925050508091505092915050565b600082825260208201905092915050565b6000613457838561343a565b9350613464838584612ed6565b61346d83612e19565b840190509392505050565b6000604082019050818103600083015261349281866133e2565b905081810360208301526134a781848661344b565b9050949350505050565b600067ffffffffffffffff8211156134cc576134cb612e2a565b5b602082029050602081019050919050565b60006134f06134eb846134b1565b612e8a565b9050808382526020820190506020840283018581111561351357613512612cfd565b5b835b8181101561353c57806135288882612dff565b845260208401935050602081019050613515565b5050509392505050565b600082601f83011261355b5761355a612cf3565b5b813561356b8482602086016134dd565b91505092915050565b600067ffffffffffffffff82111561358f5761358e612e2a565b5b602082029050602081019050919050565b60006135b36135ae84613574565b612e8a565b905080838252602082019050602084028301858111156135d6576135d5612cfd565b5b835b8181101561361d57803567ffffffffffffffff8111156135fb576135fa612cf3565b5b8086016136088982612f27565b855260208501945050506020810190506135d8565b5050509392505050565b600082601f83011261363c5761363b612cf3565b5b813561364c8482602086016135a0565b91505092915050565b600061366082612b7a565b9050919050565b61367081613655565b811461367b57600080fd5b50565b60008135905061368d81613667565b92915050565b6000819050919050565b6136a681613693565b81146136b157600080fd5b50565b6000813590506136c38161369d565b92915050565b600080600080600060a086880312156136e5576136e4612be0565b5b600086013567ffffffffffffffff81111561370357613702612be5565b5b61370f88828901613546565b955050602086013567ffffffffffffffff8111156137305761372f612be5565b5b61373c88828901613627565b945050604061374d8882890161367e565b935050606061375e888289016136b4565b925050608061376f888289016136b4565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137e582613693565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613817576138166137ab565b5b600182019050919050565b600080fd5b600080fd5b600080fd5b60008235600160e00383360303811261384d5761384c613822565b5b80830191505092915050565b6000808335600160200384360303811261387657613875613822565b5b80840192508235915067ffffffffffffffff82111561389857613897613827565b5b6020830192506060820236038313156138b4576138b361382c565b5b509250929050565b6000819050919050565b600067ffffffffffffffff82169050919050565b60006138f56138f06138eb846138bc565b612c55565b6138c6565b9050919050565b613905816138da565b82525050565b600060208201905061392060008301846138fc565b92915050565b6000815190506139358161369d565b92915050565b60006020828403121561395157613950612be0565b5b600061395f84828501613926565b91505092915050565b61397181613693565b82525050565b600060208201905061398c6000830184613968565b92915050565b6000815190506139a181612de8565b92915050565b6000602082840312156139bd576139bc612be0565b5b60006139cb84828501613992565b91505092915050565b60006139df82613693565b91506139ea83613693565b9250828203905081811115613a0257613a016137ab565b5b92915050565b7f4d69736d61746368206265747765656e20636f6e74726163742061646472657360008201527f73657320616e642063616c6c64617461206c656e677468000000000000000000602082015250565b6000613a64603783613204565b9150613a6f82613a08565b604082019050919050565b60006020820190508181036000830152613a9381613a57565b9050919050565b613aa381612fb1565b8114613aae57600080fd5b50565b600081519050613ac081613a9a565b92915050565b600060208284031215613adc57613adb612be0565b5b6000613aea84828501613ab1565b91505092915050565b600080fd5b600060a08284031215613b0e57613b0d613af3565b5b613b1860a0612e8a565b90506000613b2884828501613926565b6000830152506020613b3c84828501613926565b6020830152506040613b5084828501613926565b6040830152506060613b6484828501613ab1565b6060830152506080613b7884828501613ab1565b60808301525092915050565b600060a08284031215613b9a57613b99612be0565b5b6000613ba884828501613af8565b91505092915050565b600060ff82169050919050565b6000613bc982613bb1565b9150613bd483613bb1565b9250828201905060ff811115613bed57613bec6137ab565b5b92915050565b613bfc81613bb1565b82525050565b613c0b81612fb1565b82525050565b606082016000820151613c276000850182613bf3565b506020820151613c3a6020850182613c02565b506040820151613c4d6040850182613c02565b50505050565b7f436c6970706572556e6973776170580000000000000000000000000000000000600082015250565b6000613c89600f8361343a565b9150613c9482613c53565b602082019050919050565b600061012082019050613cb56000830189612bac565b613cc26020830188613968565b613ccf6040830187613968565b613cdc6060830186613968565b613ce96080830185612bac565b613cf660a0830184613c11565b818103610100830152613d0881613c7c565b9050979650505050505050565b600061014082019050613d2b600083018a612bac565b613d386020830189612bac565b613d456040830188613968565b613d526060830187613968565b613d5f6080830186613968565b613d6c60a0830185612bac565b613d7960c0830184613c11565b818103610120830152613d8b81613c7c565b905098975050505050505050565b600081519050919050565b600081905092915050565b6000613dba82613d99565b613dc48185613da4565b9350613dd4818560208601613215565b80840191505092915050565b6000613dec8284613daf565b915081905092915050565b50565b6000613e07600083613da4565b9150613e1282613df7565b600082019050919050565b6000613e2882613dfa565b9150819050919050565b6000604082019050613e476000830185612bac565b613e546020830184613968565b9392505050565b6000819050919050565b6000613e80613e7b613e7684613e5b565b612c55565b613693565b9050919050565b613e9081613e65565b82525050565b6000604082019050613eab6000830185612bac565b613eb86020830184613e87565b9392505050565b60008115159050919050565b613ed481613ebf565b8114613edf57600080fd5b50565b600081519050613ef181613ecb565b92915050565b600060208284031215613f0d57613f0c612be0565b5b6000613f1b84828501613ee2565b9150509291505056fea264697066735822122059a26abd89c5de7d458d7cdf617908eef6b39751d6ac20589f27743c1f18cf8b64736f6c63430008140033
Deployed Bytecode
0x60806040526004361061012e5760003560e01c80638da5cb5b116100ab578063ad3cb1cc1161006f578063ad3cb1cc1461036f578063cc2a9a5b1461039a578063d8a1b7c9146103c3578063e53b2017146103ee578063f2fde38b14610417578063ffaf7b1e1461044057610135565b80638da5cb5b146102bf5780639b7a7d50146102ea5780639deb536d146103135780639ed559fb1461033c578063a00a377d1461035357610135565b806352d1902d116100f257806352d1902d146101fe578063585da628146102295780636ea2e32614610252578063715018a61461027d5780638c21b4111461029457610135565b806306bd93101461013a57806338107877146101655780633fc8cef31461018e5780634c067550146101b95780634f1ef286146101e257610135565b3661013557005b600080fd5b34801561014657600080fd5b5061014f610469565b60405161015c9190612bbb565b60405180910390f35b34801561017157600080fd5b5061018c60048036038101906101879190612c28565b61048f565b005b34801561019a57600080fd5b506101a36104db565b6040516101b09190612cb4565b60405180910390f35b3480156101c557600080fd5b506101e060048036038101906101db9190612d58565b6104ff565b005b6101fc60048036038101906101f79190612f55565b6105fb565b005b34801561020a57600080fd5b5061021361061a565b6040516102209190612fca565b60405180910390f35b34801561023557600080fd5b50610250600480360381019061024b919061303b565b61064d565b005b34801561025e57600080fd5b506102676108f4565b60405161027491906130dd565b60405180910390f35b34801561028957600080fd5b5061029261091a565b005b3480156102a057600080fd5b506102a961092e565b6040516102b69190612bbb565b60405180910390f35b3480156102cb57600080fd5b506102d4610954565b6040516102e19190612bbb565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c91906130f8565b61098c565b005b34801561031f57600080fd5b5061033a60048036038101906103359190612c28565b610c64565b005b34801561034857600080fd5b50610351610cb0565b005b61036d60048036038101906103689190613185565b610ee3565b005b34801561037b57600080fd5b506103846110b6565b6040516103919190613278565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc91906130f8565b6110ef565b005b3480156103cf57600080fd5b506103d8611290565b6040516103e591906130dd565b60405180910390f35b3480156103fa57600080fd5b50610415600480360381019061041091906132d8565b6112b6565b005b34801561042357600080fd5b5061043e60048036038101906104399190613305565b611364565b005b34801561044c57600080fd5b5061046760048036038101906104629190613305565b6113ea565b005b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610497611436565b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610586576040517f8c6e5d7100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff16630d3358848484846040518463ffffffff1660e01b81526004016105c393929190613478565b600060405180830381600087803b1580156105dd57600080fd5b505af11580156105f1573d6000803e3d6000fd5b5050505050505050565b6106036114bd565b61060c826115a3565b61061682826115ae565b5050565b60006106246116cd565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b905090565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156106f95750600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610730576040517f933fe52f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008282905011156108ee576000806000806000868681019061075391906136c9565b9450945094509450945060005b85518110156107bc576107a986828151811061077f5761077e61377c565b5b602002602001015186838151811061079a5761079961377c565b5b60200260200101518686611754565b80806107b4906137da565b915050610760565b50600073ffffffffffffffffffffffffffffffffffffffff16898960008181106107e9576107e861377c565b5b90506020028101906107fb9190613831565b806080019061080a9190613859565b600081811061081c5761081b61377c565b5b90506060020160000160208101906108349190613305565b73ffffffffffffffffffffffffffffffffffffffff160361085e576108593382611c28565b6108e8565b6108e733828b8b60008181106108775761087661377c565b5b90506020028101906108899190613831565b80608001906108989190613859565b60008181106108aa576108a961377c565b5b90506060020160000160208101906108c29190613305565b73ffffffffffffffffffffffffffffffffffffffff16611cd59092919063ffffffff16565b5b50505050505b50505050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610922611436565b61092c6000611de4565b565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061095f611ebb565b90508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691505090565b6000610996611ee3565b905060008160000160089054906101000a900460ff1615905060008260000160009054906101000a900467ffffffffffffffff1690506000808267ffffffffffffffff161480156109e45750825b9050600060018367ffffffffffffffff16148015610a19575060003073ffffffffffffffffffffffffffffffffffffffff163b145b905081158015610a27575080155b15610a5e576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018560000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508315610aae5760018560000160086101000a81548160ff0219169083151502179055505b610ab786611f0b565b8a6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555086600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555089600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555088600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555087600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508315610c575760008560000160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d26001604051610c4e919061390b565b60405180910390a15b5050505050505050505050565b610c6c611436565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631b6a87596040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d43919061393b565b905060005b81811015610ece576000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392a91a3a836040518263ffffffff1660e01b8152600401610dad9190613977565b602060405180830381865afa158015610dca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dee91906139a7565b905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e2b9190612bbb565b602060405180830381865afa158015610e48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6c919061393b565b90506001811115610e8757600181610e8491906139d4565b90505b610eb9610e92610954565b828473ffffffffffffffffffffffffffffffffffffffff16611f1f9092919063ffffffff16565b50508080610ec6906137da565b915050610d48565b50610ee0610eda610954565b47611c28565b50565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6a576040517f8c6e5d7100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008282905011156110b05760008060008060008686810190610f8d91906136c9565b945094509450945094508351855114610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290613a7a565b60405180910390fd5b60005b855181101561103a57611027868281518110610ffd57610ffc61377c565b5b60200260200101518683815181106110185761101761377c565b5b60200260200101518686611f9e565b8080611032906137da565b915050610fde565b50600073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff160361107e576110793382611c28565b6110aa565b6110a933828a73ffffffffffffffffffffffffffffffffffffffff16611f1f9092919063ffffffff16565b5b50505050505b50505050565b6040518060400160405280600581526020017f352e302e3000000000000000000000000000000000000000000000000000000081525081565b60006110f9611ee3565b905060008160000160089054906101000a900460ff1615905060008260000160009054906101000a900467ffffffffffffffff1690506000808267ffffffffffffffff161480156111475750825b9050600060018367ffffffffffffffff1614801561117c575060003073ffffffffffffffffffffffffffffffffffffffff163b145b90508115801561118a575080155b156111c1576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018560000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083156112115760018560000160086101000a81548160ff0219169083151502179055505b61121f8b8b8b8b8b8b61098c565b61122761250b565b83156112835760008560000160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2600160405161127a919061390b565b60405180910390a15b5050505050505050505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113616112c1610954565b8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112fa9190612bbb565b602060405180830381865afa158015611317573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133b919061393b565b8373ffffffffffffffffffffffffffffffffffffffff16611f1f9092919063ffffffff16565b50565b61136c611436565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113de5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016113d59190612bbb565b60405180910390fd5b6113e781611de4565b50565b6113f2611436565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61143e612515565b73ffffffffffffffffffffffffffffffffffffffff1661145c610954565b73ffffffffffffffffffffffffffffffffffffffff16146114bb5761147f612515565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016114b29190612bbb565b60405180910390fd5b565b7f00000000000000000000000036d789b77733c8fee80c1a4874e6b6e55d479b7073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148061156a57507f00000000000000000000000036d789b77733c8fee80c1a4874e6b6e55d479b7073ffffffffffffffffffffffffffffffffffffffff1661155161251d565b73ffffffffffffffffffffffffffffffffffffffff1614155b156115a1576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6115ab611436565b50565b8173ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561161657506040513d601f19601f820116820180604052508101906116139190613ac6565b60015b61165757816040517f4c9c8ce300000000000000000000000000000000000000000000000000000000815260040161164e9190612bbb565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b81146116be57806040517faa1d49a40000000000000000000000000000000000000000000000000000000081526004016116b59190612fca565b60405180910390fd5b6116c88383612574565b505050565b7f00000000000000000000000036d789b77733c8fee80c1a4874e6b6e55d479b7073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614611752576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b8c576000838060200190518101906117bf9190613b84565b905060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b8260800151169050600060ff836080015160001c901c601b6118099190613bbe565b9050600060405180606001604052808360ff168152602001856060015181526020018481525090506000915060009250600073ffffffffffffffffffffffffffffffffffffffff16846000015173ffffffffffffffffffffffffffffffffffffffff160361192e57600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166327a9b42460a08660000151901c866020015160a08860000151901c60a08960200151901c896040015130886040518863ffffffff1660e01b81526004016118f796959493929190613c9f565b6000604051808303818588803b15801561191057600080fd5b505af1158015611924573d6000803e3d6000fd5b5050505050611b83565b600073ffffffffffffffffffffffffffffffffffffffff16846020015173ffffffffffffffffffffffffffffffffffffffff1603611a73576119bf600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16611f1f9092919063ffffffff16565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634cb6864c856000015160a08760000151901c60a08860200151901c886040015130876040518763ffffffff1660e01b8152600401611a3c96959493929190613c9f565b600060405180830381600087803b158015611a5657600080fd5b505af1158015611a6a573d6000803e3d6000fd5b50505050611b82565b611acc600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16611f1f9092919063ffffffff16565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632b651a6c8560000151866020015160a08860000151901c60a08960200151901c896040015130886040518863ffffffff1660e01b8152600401611b4f9796959493929190613d15565b600060405180830381600087803b158015611b6957600080fd5b505af1158015611b7d573d6000803e3d6000fd5b505050505b5b50505050611c22565b611bb784828473ffffffffffffffffffffffffffffffffffffffff16611f1f9092919063ffffffff16565b8373ffffffffffffffffffffffffffffffffffffffff1683604051611bdc9190613de0565b6000604051808303816000865af19150503d8060008114611c19576040519150601f19603f3d011682016040523d82523d6000602084013e611c1e565b606091505b5050505b50505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682611af490604051611c5290613e1d565b600060405180830381858888f193505050503d8060008114611c90576040519150601f19603f3d011682016040523d82523d6000602084013e611c95565b606091505b5050905080611cd0576040517ff4b3b1bc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663095ea7b38484604051602401611d06929190613e32565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050509050611d5484826125e7565b611dde57611dd3848573ffffffffffffffffffffffffffffffffffffffff1663095ea7b3866000604051602401611d8c929190613e96565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506126ae565b611ddd84826126ae565b5b50505050565b6000611dee611ebb565b905060008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050828260000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3505050565b60007f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300905090565b60007ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00905090565b611f13612745565b611f1c81612785565b50565b611f99838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8585604051602401611f52929190613e32565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506126ae565b505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612444576000838060200190518101906120099190613b84565b905060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b8260800151169050600060ff836080015160001c901c601b6120539190613bbe565b9050600060405180606001604052808360ff168152602001856060015181526020018481525090506000915060009250600073ffffffffffffffffffffffffffffffffffffffff16846000015173ffffffffffffffffffffffffffffffffffffffff160361217857600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166327a9b42460a08660000151901c866020015160a08860000151901c60a08960200151901c896040015130886040518863ffffffff1660e01b815260040161214196959493929190613c9f565b6000604051808303818588803b15801561215a57600080fd5b505af115801561216e573d6000803e3d6000fd5b505050505061243b565b600073ffffffffffffffffffffffffffffffffffffffff16846020015173ffffffffffffffffffffffffffffffffffffffff16036122f4576121e73360a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16611cd59092919063ffffffff16565b612240600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16611f1f9092919063ffffffff16565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634cb6864c856000015160a08760000151901c60a08860200151901c886040015130876040518763ffffffff1660e01b81526004016122bd96959493929190613c9f565b600060405180830381600087803b1580156122d757600080fd5b505af11580156122eb573d6000803e3d6000fd5b5050505061243a565b61232b3360a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16611cd59092919063ffffffff16565b612384600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16611f1f9092919063ffffffff16565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632b651a6c8560000151866020015160a08860000151901c60a08960200151901c896040015130886040518863ffffffff1660e01b81526004016124079796959493929190613d15565b600060405180830381600087803b15801561242157600080fd5b505af1158015612435573d6000803e3d6000fd5b505050505b5b50505050612505565b61246f33828473ffffffffffffffffffffffffffffffffffffffff16611cd59092919063ffffffff16565b61249a84828473ffffffffffffffffffffffffffffffffffffffff16611f1f9092919063ffffffff16565b8373ffffffffffffffffffffffffffffffffffffffff16836040516124bf9190613de0565b6000604051808303816000865af19150503d80600081146124fc576040519150601f19603f3d011682016040523d82523d6000602084013e612501565b606091505b5050505b50505050565b612513612745565b565b600033905090565b600061254b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b61280b565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61257d82612815565b8173ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a26000815111156125da576125d482826128e2565b506125e3565b6125e2612966565b5b5050565b60008060008473ffffffffffffffffffffffffffffffffffffffff16846040516126119190613de0565b6000604051808303816000865af19150503d806000811461264e576040519150601f19603f3d011682016040523d82523d6000602084013e612653565b606091505b5091509150818015612681575060008151148061268057508080602001905181019061267f9190613ef7565b5b5b80156126a4575060008573ffffffffffffffffffffffffffffffffffffffff163b115b9250505092915050565b60006126d9828473ffffffffffffffffffffffffffffffffffffffff166129a390919063ffffffff16565b905060008151141580156126fe5750808060200190518101906126fc9190613ef7565b155b1561274057826040517f5274afe70000000000000000000000000000000000000000000000000000000081526004016127379190612bbb565b60405180910390fd5b505050565b61274d6129b9565b612783576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b61278d612745565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127ff5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016127f69190612bbb565b60405180910390fd5b61280881611de4565b50565b6000819050919050565b60008173ffffffffffffffffffffffffffffffffffffffff163b0361287157806040517f4c9c8ce30000000000000000000000000000000000000000000000000000000081526004016128689190612bbb565b60405180910390fd5b8061289e7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b61280b565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000808473ffffffffffffffffffffffffffffffffffffffff168460405161290c9190613de0565b600060405180830381855af49150503d8060008114612947576040519150601f19603f3d011682016040523d82523d6000602084013e61294c565b606091505b509150915061295c8583836129d9565b9250505092915050565b60003411156129a1576040517fb398979f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b60606129b183836000612a68565b905092915050565b60006129c3611ee3565b60000160089054906101000a900460ff16905090565b6060826129ee576129e982612b35565b612a60565b60008251148015612a16575060008473ffffffffffffffffffffffffffffffffffffffff163b145b15612a5857836040517f9996b315000000000000000000000000000000000000000000000000000000008152600401612a4f9190612bbb565b60405180910390fd5b819050612a61565b5b9392505050565b606081471015612aaf57306040517fcd786059000000000000000000000000000000000000000000000000000000008152600401612aa69190612bbb565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff168486604051612ad89190613de0565b60006040518083038185875af1925050503d8060008114612b15576040519150601f19603f3d011682016040523d82523d6000602084013e612b1a565b606091505b5091509150612b2a8683836129d9565b925050509392505050565b600081511115612b485780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ba582612b7a565b9050919050565b612bb581612b9a565b82525050565b6000602082019050612bd06000830184612bac565b92915050565b6000604051905090565b600080fd5b600080fd5b6000612bf582612b9a565b9050919050565b612c0581612bea565b8114612c1057600080fd5b50565b600081359050612c2281612bfc565b92915050565b600060208284031215612c3e57612c3d612be0565b5b6000612c4c84828501612c13565b91505092915050565b6000819050919050565b6000612c7a612c75612c7084612b7a565b612c55565b612b7a565b9050919050565b6000612c8c82612c5f565b9050919050565b6000612c9e82612c81565b9050919050565b612cae81612c93565b82525050565b6000602082019050612cc96000830184612ca5565b92915050565b600080fd5b600060408284031215612cea57612ce9612ccf565b5b81905092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612d1857612d17612cf3565b5b8235905067ffffffffffffffff811115612d3557612d34612cf8565b5b602083019150836001820283011115612d5157612d50612cfd565b5b9250929050565b60008060008060608587031215612d7257612d71612be0565b5b6000612d8087828801612c13565b945050602085013567ffffffffffffffff811115612da157612da0612be5565b5b612dad87828801612cd4565b935050604085013567ffffffffffffffff811115612dce57612dcd612be5565b5b612dda87828801612d02565b925092505092959194509250565b612df181612b9a565b8114612dfc57600080fd5b50565b600081359050612e0e81612de8565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e6282612e19565b810181811067ffffffffffffffff82111715612e8157612e80612e2a565b5b80604052505050565b6000612e94612bd6565b9050612ea08282612e59565b919050565b600067ffffffffffffffff821115612ec057612ebf612e2a565b5b612ec982612e19565b9050602081019050919050565b82818337600083830152505050565b6000612ef8612ef384612ea5565b612e8a565b905082815260208101848484011115612f1457612f13612e14565b5b612f1f848285612ed6565b509392505050565b600082601f830112612f3c57612f3b612cf3565b5b8135612f4c848260208601612ee5565b91505092915050565b60008060408385031215612f6c57612f6b612be0565b5b6000612f7a85828601612dff565b925050602083013567ffffffffffffffff811115612f9b57612f9a612be5565b5b612fa785828601612f27565b9150509250929050565b6000819050919050565b612fc481612fb1565b82525050565b6000602082019050612fdf6000830184612fbb565b92915050565b60008083601f840112612ffb57612ffa612cf3565b5b8235905067ffffffffffffffff81111561301857613017612cf8565b5b60208301915083602082028301111561303457613033612cfd565b5b9250929050565b6000806000806040858703121561305557613054612be0565b5b600085013567ffffffffffffffff81111561307357613072612be5565b5b61307f87828801612fe5565b9450945050602085013567ffffffffffffffff8111156130a2576130a1612be5565b5b6130ae87828801612d02565b925092505092959194509250565b60006130c782612c81565b9050919050565b6130d7816130bc565b82525050565b60006020820190506130f260008301846130ce565b92915050565b60008060008060008060c0878903121561311557613114612be0565b5b600061312389828a01612dff565b965050602061313489828a01612c13565b955050604061314589828a01612c13565b945050606061315689828a01612dff565b935050608061316789828a01612dff565b92505060a061317889828a01612dff565b9150509295509295509295565b6000806000806060858703121561319f5761319e612be0565b5b60006131ad87828801612dff565b94505060206131be87828801612dff565b935050604085013567ffffffffffffffff8111156131df576131de612be5565b5b6131eb87828801612d02565b925092505092959194509250565b600081519050919050565b600082825260208201905092915050565b60005b83811015613233578082015181840152602081019050613218565b60008484015250505050565b600061324a826131f9565b6132548185613204565b9350613264818560208601613215565b61326d81612e19565b840191505092915050565b60006020820190508181036000830152613292818461323f565b905092915050565b60006132a582612b9a565b9050919050565b6132b58161329a565b81146132c057600080fd5b50565b6000813590506132d2816132ac565b92915050565b6000602082840312156132ee576132ed612be0565b5b60006132fc848285016132c3565b91505092915050565b60006020828403121561331b5761331a612be0565b5b600061332984828501612dff565b91505092915050565b600080fd5b600080fd5b600080fd5b6000808335600160200384360303811261335e5761335d61333c565b5b83810192508235915060208301925067ffffffffffffffff82111561338657613385613332565b5b60018202360383131561339c5761339b613337565b5b509250929050565b600082825260208201905092915050565b60006133c183856133a4565b93506133ce838584612ed6565b6133d783612e19565b840190509392505050565b6000604083016133f56000840184613341565b85830360008701526134088382846133b5565b925050506134196020840184613341565b858303602087015261342c8382846133b5565b925050508091505092915050565b600082825260208201905092915050565b6000613457838561343a565b9350613464838584612ed6565b61346d83612e19565b840190509392505050565b6000604082019050818103600083015261349281866133e2565b905081810360208301526134a781848661344b565b9050949350505050565b600067ffffffffffffffff8211156134cc576134cb612e2a565b5b602082029050602081019050919050565b60006134f06134eb846134b1565b612e8a565b9050808382526020820190506020840283018581111561351357613512612cfd565b5b835b8181101561353c57806135288882612dff565b845260208401935050602081019050613515565b5050509392505050565b600082601f83011261355b5761355a612cf3565b5b813561356b8482602086016134dd565b91505092915050565b600067ffffffffffffffff82111561358f5761358e612e2a565b5b602082029050602081019050919050565b60006135b36135ae84613574565b612e8a565b905080838252602082019050602084028301858111156135d6576135d5612cfd565b5b835b8181101561361d57803567ffffffffffffffff8111156135fb576135fa612cf3565b5b8086016136088982612f27565b855260208501945050506020810190506135d8565b5050509392505050565b600082601f83011261363c5761363b612cf3565b5b813561364c8482602086016135a0565b91505092915050565b600061366082612b7a565b9050919050565b61367081613655565b811461367b57600080fd5b50565b60008135905061368d81613667565b92915050565b6000819050919050565b6136a681613693565b81146136b157600080fd5b50565b6000813590506136c38161369d565b92915050565b600080600080600060a086880312156136e5576136e4612be0565b5b600086013567ffffffffffffffff81111561370357613702612be5565b5b61370f88828901613546565b955050602086013567ffffffffffffffff8111156137305761372f612be5565b5b61373c88828901613627565b945050604061374d8882890161367e565b935050606061375e888289016136b4565b925050608061376f888289016136b4565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137e582613693565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613817576138166137ab565b5b600182019050919050565b600080fd5b600080fd5b600080fd5b60008235600160e00383360303811261384d5761384c613822565b5b80830191505092915050565b6000808335600160200384360303811261387657613875613822565b5b80840192508235915067ffffffffffffffff82111561389857613897613827565b5b6020830192506060820236038313156138b4576138b361382c565b5b509250929050565b6000819050919050565b600067ffffffffffffffff82169050919050565b60006138f56138f06138eb846138bc565b612c55565b6138c6565b9050919050565b613905816138da565b82525050565b600060208201905061392060008301846138fc565b92915050565b6000815190506139358161369d565b92915050565b60006020828403121561395157613950612be0565b5b600061395f84828501613926565b91505092915050565b61397181613693565b82525050565b600060208201905061398c6000830184613968565b92915050565b6000815190506139a181612de8565b92915050565b6000602082840312156139bd576139bc612be0565b5b60006139cb84828501613992565b91505092915050565b60006139df82613693565b91506139ea83613693565b9250828203905081811115613a0257613a016137ab565b5b92915050565b7f4d69736d61746368206265747765656e20636f6e74726163742061646472657360008201527f73657320616e642063616c6c64617461206c656e677468000000000000000000602082015250565b6000613a64603783613204565b9150613a6f82613a08565b604082019050919050565b60006020820190508181036000830152613a9381613a57565b9050919050565b613aa381612fb1565b8114613aae57600080fd5b50565b600081519050613ac081613a9a565b92915050565b600060208284031215613adc57613adb612be0565b5b6000613aea84828501613ab1565b91505092915050565b600080fd5b600060a08284031215613b0e57613b0d613af3565b5b613b1860a0612e8a565b90506000613b2884828501613926565b6000830152506020613b3c84828501613926565b6020830152506040613b5084828501613926565b6040830152506060613b6484828501613ab1565b6060830152506080613b7884828501613ab1565b60808301525092915050565b600060a08284031215613b9a57613b99612be0565b5b6000613ba884828501613af8565b91505092915050565b600060ff82169050919050565b6000613bc982613bb1565b9150613bd483613bb1565b9250828201905060ff811115613bed57613bec6137ab565b5b92915050565b613bfc81613bb1565b82525050565b613c0b81612fb1565b82525050565b606082016000820151613c276000850182613bf3565b506020820151613c3a6020850182613c02565b506040820151613c4d6040850182613c02565b50505050565b7f436c6970706572556e6973776170580000000000000000000000000000000000600082015250565b6000613c89600f8361343a565b9150613c9482613c53565b602082019050919050565b600061012082019050613cb56000830189612bac565b613cc26020830188613968565b613ccf6040830187613968565b613cdc6060830186613968565b613ce96080830185612bac565b613cf660a0830184613c11565b818103610100830152613d0881613c7c565b9050979650505050505050565b600061014082019050613d2b600083018a612bac565b613d386020830189612bac565b613d456040830188613968565b613d526060830187613968565b613d5f6080830186613968565b613d6c60a0830185612bac565b613d7960c0830184613c11565b818103610120830152613d8b81613c7c565b905098975050505050505050565b600081519050919050565b600081905092915050565b6000613dba82613d99565b613dc48185613da4565b9350613dd4818560208601613215565b80840191505092915050565b6000613dec8284613daf565b915081905092915050565b50565b6000613e07600083613da4565b9150613e1282613df7565b600082019050919050565b6000613e2882613dfa565b9150819050919050565b6000604082019050613e476000830185612bac565b613e546020830184613968565b9392505050565b6000819050919050565b6000613e80613e7b613e7684613e5b565b612c55565b613693565b9050919050565b613e9081613e65565b82525050565b6000604082019050613eab6000830185612bac565b613eb86020830184613e87565b9392505050565b60008115159050919050565b613ed481613ebf565b8114613edf57600080fd5b50565b600081519050613ef181613ecb565b92915050565b600060208284031215613f0d57613f0c612be0565b5b6000613f1b84828501613ee2565b9150509291505056fea264697066735822122059a26abd89c5de7d458d7cdf617908eef6b39751d6ac20589f27743c1f18cf8b64736f6c63430008140033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.